RFR (XXL): JEP 243: Java-Level JVM Compiler Interface

Roland Westrelin roland.westrelin at oracle.com
Fri Sep 18 11:14:50 UTC 2015


> http://cr.openjdk.java.net/~kvn/JVMCI/webrev.hotspot/ <http://cr.openjdk.java.net/~kvn/JVMCI/webrev.hotspot/>

sharedRuntime.cpp

 539   if (!((NativeInstruction*)pc)->is_safepoint_poll()) {
 540     tty->print_cr("bad pc: %p", pc);
 541     Disassembler::decode(cb);
 542     assert(false, "Only polling locations are used for safepoint");
 543   }

Shouldn’t that be under #idef ASSERT?

I looked at the c++ files except src/share/vm/gc stuff. I didn’t go over the java files or makefile changes. What I looked at is ok.

Roland.


More information about the hotspot-dev mailing list