Searched refs:length_for (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp151 int l = Bytecodes::length_for(code);
204 // (carefull: length_for(...) must be used first!)
205 int l = Bytecodes::length_for(code);
H A Dbytecodes.hpp400 static int length_for (Code code) { /*no check*/ return _lengths [code] & 0xF; } function in class:Bytecodes
413 static int length_for_code_at(Bytecodes::Code code, address bcp) { int l = length_for(code); return l > 0 ? l : special_length_at(code, bcp); }
H A Dbytecode.cpp98 int length = is_wide ? Bytecodes::wide_length_for(bc) : Bytecodes::length_for(bc);
H A Drewriter.cpp298 bc_length = Bytecodes::length_for(c);
H A DbytecodeTracer.cpp380 if (Bytecodes::length_for(code) == 1) {
H A DtemplateInterpreter.cpp503 step = t->is_wide() ? Bytecodes::wide_length_for(t->bytecode()) : Bytecodes::length_for(t->bytecode());
H A Dbytecodes.cpp184 assert(length_for(code) == len, "");
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.hpp141 int csize = Bytecodes::length_for(_bc); // Expected size
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp672 const int goto_length = Bytecodes::length_for(Bytecodes::_goto);
683 const int goto_w_length = Bytecodes::length_for(Bytecodes::_goto_w);
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp425 bb_mark_fct(this, bci + Bytecodes::length_for(bytecode), NULL);
429 bb_mark_fct(this, bci + Bytecodes::length_for(bytecode), NULL);
484 reachable_basicblock(this, bci + Bytecodes::length_for(bytecode), &change);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp2227 jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr);
2229 jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr_w);
H A DtemplateTable_sparc.cpp475 __ ldub(at_bcp(Bytecodes::length_for(Bytecodes::_iload)), G3_scratch);
717 __ ldub(at_bcp(Bytecodes::length_for(Bytecodes::_aload_0)), G3_scratch);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp1466 bc_length = Bytecodes::length_for(c);
1531 bc_length = Bytecodes::length_for(c);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_32.cpp512 __ load_unsigned_byte(rbx, at_bcp(Bytecodes::length_for(Bytecodes::_iload)));
805 __ load_unsigned_byte(rbx, at_bcp(Bytecodes::length_for(Bytecodes::_aload_0)));
H A DtemplateTable_x86_64.cpp531 at_bcp(Bytecodes::length_for(Bytecodes::_iload)));
818 at_bcp(Bytecodes::length_for(Bytecodes::_aload_0)));

Completed in 348 milliseconds