Searched defs:high_key (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp185 int high_key() const { return get_Java_u4_at(aligned_offset(1 + 2*jintSize)); } function in class:Bytecode_tableswitch
187 int length() { return high_key()-low_key()+1; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.hpp54 int high_key() const { return _high_key; } function in class:SwitchRange
H A Dc1_LIRGenerator.cpp2377 int high_key = one_range->high_key(); local
2379 if (low_key == high_key) {
2382 } else if (high_key - low_key == 1) {
2385 __ cmp(lir_cond_equal, value, high_key);
2391 __ cmp(lir_cond_lessEqual, value, high_key);

Completed in 2115 milliseconds