comparison src/share/vm/oops/method.cpp @ 7154:5d0bb7d52783

changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
author Doug Simon <doug.simon@oracle.com>
date Wed, 12 Dec 2012 21:36:40 +0100
parents 679e6584c177
children 291ffc492eb6
comparison
equal deleted inserted replaced
7153:c421c19b7bf8 7154:5d0bb7d52783
119 set_interpreter_invocation_count(0); 119 set_interpreter_invocation_count(0);
120 invocation_counter()->init(); 120 invocation_counter()->init();
121 backedge_counter()->init(); 121 backedge_counter()->init();
122 clear_number_of_breakpoints(); 122 clear_number_of_breakpoints();
123 123
124 #ifdef GRAAL
125 set_graal_invocation_time(0L);
126 set_graal_priority(0);
127 #endif
128
124 #ifdef TIERED 129 #ifdef TIERED
125 set_rate(0); 130 set_rate(0);
126 set_prev_event_count(0); 131 set_prev_event_count(0);
127 set_prev_time(0); 132 set_prev_time(0);
128 #endif 133 #endif