Searched refs:length_for (Results 1 - 15 of 15) sorted by relevance
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | bytecodeStream.hpp | 151 int l = Bytecodes::length_for(code); 204 // (carefull: length_for(...) must be used first!) 205 int l = Bytecodes::length_for(code);
|
H A D | bytecodes.hpp | 400 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 D | bytecode.cpp | 98 int length = is_wide ? Bytecodes::wide_length_for(bc) : Bytecodes::length_for(bc);
|
H A D | rewriter.cpp | 298 bc_length = Bytecodes::length_for(c);
|
H A D | bytecodeTracer.cpp | 380 if (Bytecodes::length_for(code) == 1) {
|
H A D | templateInterpreter.cpp | 503 step = t->is_wide() ? Bytecodes::wide_length_for(t->bytecode()) : Bytecodes::length_for(t->bytecode());
|
H A D | bytecodes.cpp | 184 assert(length_for(code) == len, "");
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciStreams.hpp | 141 int csize = Bytecodes::length_for(_bc); // Expected size
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | relocator.cpp | 672 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 D | generateOopMap.cpp | 425 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 D | interp_masm_sparc.cpp | 2227 jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr); 2229 jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr_w);
|
H A D | templateTable_sparc.cpp | 475 __ 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 D | jvmtiRedefineClasses.cpp | 1466 bc_length = Bytecodes::length_for(c); 1531 bc_length = Bytecodes::length_for(c);
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | templateTable_x86_32.cpp | 512 __ 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 D | templateTable_x86_64.cpp | 531 at_bcp(Bytecodes::length_for(Bytecodes::_iload))); 818 at_bcp(Bytecodes::length_for(Bytecodes::_aload_0)));
|
Completed in 348 milliseconds