Searched refs:getBytecodeOrBPAt (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWideable.java36 return (prevBci > -1 && method.getBytecodeOrBPAt(prevBci) == Bytecodes._wide);
H A DBytecodeStream.java96 code = _method.getBytecodeOrBPAt(_bci + 1);
132 : (_method.getBytecodeOrBPAt(bci() + 1) & 0xFF); }
133 public int getIndexU1() { return _method.getBytecodeOrBPAt(bci() + 1) & 0xFF; }
138 public int getIndexU1Cpcache() { return _method.getBytecodeOrBPAt(bci() + 1) & 0xFF; }
143 return _method.getBytecodeOrBPAt(bci);
H A DBytecode.java49 public int getIndexU1() { return method.getBytecodeOrBPAt(bci() + 1) & 0xFF; }
59 public int getIndexU1Cpcache() { return method.getBytecodeOrBPAt(bci() + 1) & 0xFF; }
H A DBytecodeDisassembler.java118 int hotspotcode = method.getBytecodeOrBPAt(bci);
H A DBytecodes.java311 return wideLengthFor(method.getBytecodeOrBPAt(bci + 1));
356 return method.getBytecodeOrBPAt(bci);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstMethod.java159 public int getBytecodeOrBPAt(int bci) { method in class:ConstMethod
164 return (byte) getBytecodeOrBPAt(bci);
170 int hi = getBytecodeOrBPAt(bci);
171 int lo = getBytecodeOrBPAt(bci + 1);
178 int hi = getBytecodeOrBPAt(bci);
179 int lo = getBytecodeOrBPAt(bci + 1);
190 int b4 = getBytecodeOrBPAt(bci);
191 int b3 = getBytecodeOrBPAt(bci + 1);
192 int b2 = getBytecodeOrBPAt(bci + 2);
193 int b1 = getBytecodeOrBPAt(bc
[all...]
H A DMethod.java166 public int getBytecodeOrBPAt(int bci) { method in class:Method
167 return getConstMethod().getBytecodeOrBPAt(bci);
H A DGenerateOopMap.java782 System.err.print(" 0x" + Long.toHexString(method().getBytecodeOrBPAt(i)));

Completed in 46 milliseconds