Searched defs:InterpreterProfileLimit (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.cpp83 int InvocationCounter::InterpreterProfileLimit; member in class:InvocationCounter
143 InterpreterProfileLimit = ((CompileThreshold * InterpreterProfilePercentage) / 100)<< number_of_noncount_bits;
157 assert(0 <= InterpreterProfileLimit &&
158 InterpreterProfileLimit <= InterpreterInvocationLimit,
H A DinvocationCounter.hpp62 static int InterpreterProfileLimit; // Profiling threshold scaled for interpreter use member in class:VALUE_OBJ_CLASS_SPEC
97 int get_ProfileLimit() const { return InterpreterProfileLimit >> number_of_noncount_bits; }
107 return (_counter && count_mask) + back_edge_count->_counter >= (unsigned int) InterpreterProfileLimit;

Completed in 36 milliseconds