comparison src/share/vm/runtime/thread.cpp @ 13089:77fbf02f701c

re-enabled protection against recursive Graal compilation requests with Graal specific _graal_compiling field in JavaThread
author Doug Simon <doug.simon@oracle.com>
date Wed, 20 Nov 2013 19:27:49 +0100
parents 096c224171c4
children 5465ba051280
comparison
equal deleted inserted replaced
13088:514e809bd97d 13089:77fbf02f701c
1479 _in_deopt_handler = 0; 1479 _in_deopt_handler = 0;
1480 _doing_unsafe_access = false; 1480 _doing_unsafe_access = false;
1481 _stack_guard_state = stack_guard_unused; 1481 _stack_guard_state = stack_guard_unused;
1482 #ifdef GRAAL 1482 #ifdef GRAAL
1483 _graal_alternate_call_target = NULL; 1483 _graal_alternate_call_target = NULL;
1484 _graal_implicit_exception_pc = NULL;
1485 _graal_compiling = false;
1484 #if GRAAL_COUNTERS_SIZE > 0 1486 #if GRAAL_COUNTERS_SIZE > 0
1485 for (int i = 0; i < GRAAL_COUNTERS_SIZE; i++) { 1487 for (int i = 0; i < GRAAL_COUNTERS_SIZE; i++) {
1486 _graal_counters[i] = 0; 1488 _graal_counters[i] = 0;
1487 } 1489 }
1488 #endif // GRAAL_COUNTER_SIZE > 0 1490 #endif // GRAAL_COUNTER_SIZE > 0