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

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp184 int low_key() const { return get_Java_u4_at(aligned_offset(1 + 1*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.hpp55 int low_key() const { return _low_key; } function in class:SwitchRange
H A Dc1_LIRGenerator.cpp2376 int low_key = one_range->low_key(); local
2379 if (low_key == high_key) {
2380 __ cmp(lir_cond_equal, value, low_key);
2382 } else if (high_key - low_key == 1) {
2383 __ cmp(lir_cond_equal, value, low_key);
2389 __ cmp(lir_cond_less, value, low_key);

Completed in 243 milliseconds