comparison src/share/vm/runtime/deoptimization.hpp @ 14124:7ad529321294

make: remove GRAALVM and introduce COMPILERGRAAL. fix client hosted-mode
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 10 Mar 2014 16:26:10 +0100
parents a9604b40f5e7
children d8041d695d19
comparison
equal deleted inserted replaced
14123:dc41eab09fe8 14124:7ad529321294
307 else 307 else
308 return trap_request; 308 return trap_request;
309 } 309 }
310 static int make_trap_request(DeoptReason reason, DeoptAction action, 310 static int make_trap_request(DeoptReason reason, DeoptAction action,
311 int index = -1) { 311 int index = -1) {
312 #ifdef GRAALVM 312 #if defined(COMPILERGRAAL) && !defined(COMPILER1) && !defined(COMPILER2)
313 assert(index == -1, "Graal does not use index"); 313 assert(index == -1, "Graal does not use index");
314 #endif 314 #endif
315 315
316 assert((1 << _reason_bits) >= Reason_LIMIT, "enough bits"); 316 assert((1 << _reason_bits) >= Reason_LIMIT, "enough bits");
317 assert((1 << _action_bits) >= Action_LIMIT, "enough bits"); 317 assert((1 << _action_bits) >= Action_LIMIT, "enough bits");