What can we improve in JSR292 for Java 9?

John Rose john.r.rose at oracle.com
Wed Aug 26 23:28:20 UTC 2015


On Aug 26, 2015, at 6:06 AM, Rémi Forax <forax at univ-mlv.fr> wrote:
> 
> it's less powerful but it seems you can encode all your examples of loops too.

No, I don't think so.  Multiple pred/fini pairs implement multiple loop exits.
Any loop with an "if-return" in it has an exit distinct from the loop's main test.
And each exit requires a different fini function, to encode a special result.

The match loop has this multi-exit character:

  for (int i; i < a.len; i++) {
    Object e = a[i];
    if (ok(e))  return e;  // first fini function; could also be e.payload
  }
  return null;  // second fini function; could also be throwNotFound or Optional.none

Sometimes even "&&" type predicate logic expands into multi-exit code, if the loop needs to return a value that encodes which sub-predicate caused the exit.

— John


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/mlvm-dev/attachments/20150826/2c92c06f/attachment.html>


More information about the mlvm-dev mailing list