Well, it's certainly possible, but I'm not sure it would either easy, or advisable. The problem implementing it is the same one that is motivating you - the hassle of having to pass status information on exit from an inner loop to the outer loop. The reason why I'm not sure it's advisable is that it's hard (for me at least) to see how this would have any advantage over just using a goto, either in structure, readability or maintainability.
I know there is a stigma against goto's, and you would probably find plenty of people willing to criticize the idea of exiting an inner loop by goto'ing some label in an outer loop, but at least it is explicit. In contrast, exit 2 could be difficult to follow (depending on how complex the loops are, how well they are indented, etc.), and very easy to be overlooked when modifying the code (i.e. adding an intermediate loop layer).
Just to be clear, believe it or not, nothing gets "broken" internally if you goto out of a for/next or do/loop. For all practical purposes, the exit statement is equivalent to a goto to the statement following the end of the loop.
Now, I could imagine that it might be useful to have an exit'all statement to exit all loops. But repeat'all seems a bit non-sensical.
BTW, in your example, "repeat 2" would be equivalent to a simple "exit", unless of course there was additional code between the "next y" and "next y".
By coincidence, I woke up last night thinking about the variation of the read statement you asked about awhile back. How about I focus on getting that done while we leave this open for further comment?