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

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp52 address _next_pc; // current decoding position member in class:BytecodePrinter
54 void align() { _next_pc = (address)round_to((intptr_t)_next_pc, sizeof(jint)); }
55 int get_byte() { return *(jbyte*) _next_pc++; } // signed
56 short get_short() { short i=Bytes::get_Java_u2(_next_pc); _next_pc+=2; return i; }
57 int get_int() { int i=Bytes::get_Java_u4(_next_pc); _next_pc+=4; return i; }
59 int get_index_u1() { return *(address)_next_pc++; }
60 int get_index_u2() { int i=Bytes::get_Java_u2(_next_pc); _next_p
[all...]

Completed in 30 milliseconds