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

/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.cpp82 int InvocationCounter::InterpreterBackwardBranchLimit; member in class:InvocationCounter
150 InterpreterBackwardBranchLimit = (CompileThreshold * (OnStackReplacePercentage - InterpreterProfilePercentage)) / 100;
152 InterpreterBackwardBranchLimit = ((CompileThreshold * OnStackReplacePercentage) / 100) << number_of_noncount_bits;
155 assert(0 <= InterpreterBackwardBranchLimit,
H A DinvocationCounter.hpp61 static int InterpreterBackwardBranchLimit; // A separate threshold for on stack replacement member in class:VALUE_OBJ_CLASS_SPEC
96 int get_BackwardBranchLimit() const { return InterpreterBackwardBranchLimit >> number_of_noncount_bits; }
103 bool reached_BackwardBranchLimit() const { return _counter >= (unsigned int) InterpreterBackwardBranchLimit; }

Completed in 333 milliseconds