RFR: CODETOOLS-7902971: jcstress: Interepreted mode match is incorrect

Aleksey Shipilev shade at openjdk.java.net
Sun Jun 13 10:29:17 UTC 2021


Look here:


                // If this actor runs in interpreted mode, then actor method should not be compiled.
                // Allow run loop to be compiled with the best compiler available.
                if (CompileMode.isInt(cm, a)) {
                    pw.println(" {");
                    pw.println(" match: "+" + task.name + "::" + an + "",");


The "+" sign there is a copy-paste error from a relevant "inline" block. But "+" makes no sense in "match", and it would always mismatch. That means the "interpreter" split configuration are actually compiling.

-------------

Commit messages:
 - Fix interpreter

Changes: https://git.openjdk.java.net/jcstress/pull/74/files
 Webrev: https://webrevs.openjdk.java.net/?repo=jcstress&pr=74&range=00
  Issue: https://bugs.openjdk.java.net/browse/CODETOOLS-7902971
  Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod
  Patch: https://git.openjdk.java.net/jcstress/pull/74.diff
  Fetch: git fetch https://git.openjdk.java.net/jcstress pull/74/head:pull/74

PR: https://git.openjdk.java.net/jcstress/pull/74


More information about the jcstress-dev mailing list