Currently, MatchData.allocate is allowed, but almost every MatchData method called on it raise TypeError, 'uninitialized Match'.
I think MatchData should be frozen, none of its internal fields are mutable and I don't see any use case for storing instance variables on it.
Once frozen, we can implement MatchData#dup and #clone as just return self, and we don't need to check for the uninitialized case.
And Marshal can have special treatment to create an initialized MatchData directly.
At the latest dev-meeting, there was a suggestion that whereas MatchData cannot be dumped, Regexp.allocate might be used by serializer libraries.
That does not seem used in practice.
TruffleRuby already does not define Regexp.allocate, and there seems to be no compatibility issue with that except some ruby/spec specs. Regexp.new (or eval) is good enough for deserializing regexps.