Searched refs:instrStartIndex (Results 1 - 23 of 23) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DFPLoadDecoder.java36 int size = byteIndex - instrStartIndex;
H A DFPStoreDecoder.java36 int size = byteIndex - instrStartIndex;
H A DFloatGRPDecoder.java143 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { argument
145 this.instrStartIndex = instrStartIndex;
156 instr = instrDecoder.decode(bytesArray, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);
H A DCallDecoder.java35 int size = byteIndex - instrStartIndex;
H A DConditionalJmpDecoder.java41 return factory.newCondJmpInstruction(name, (X86PCRelativeAddress)addr, byteIndex-instrStartIndex, prefixes);
H A DFPInstructionDecoder.java44 int size = byteIndex - instrStartIndex;
H A DJmpDecoder.java35 int size = byteIndex - instrStartIndex;
H A DBranchDecoder.java43 int size = byteIndex - instrStartIndex;
H A DFPArithmeticDecoder.java44 int size = byteIndex - instrStartIndex;
H A DLogicalDecoder.java43 int size = byteIndex - instrStartIndex;
H A DRotateDecoder.java40 int size = byteIndex - instrStartIndex;
H A DSSEArithmeticDecoder.java45 int size = byteIndex - instrStartIndex;
H A DSSELogicalDecoder.java42 int size = byteIndex - instrStartIndex;
H A DSSEShiftDecoder.java40 int size = byteIndex - instrStartIndex;
H A DShiftDecoder.java43 int size = byteIndex - instrStartIndex;
H A DFloatDecoder.java224 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { argument
226 this.instrStartIndex = instrStartIndex;
234 int floatOpcode = InstructionDecoder.readByte(bytesArray, instrStartIndex);
246 instr = instrDecoder.decode(bytesArray, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);
H A DArithmeticDecoder.java47 int size = byteIndex - instrStartIndex;
H A DMoveDecoder.java37 int size = byteIndex - instrStartIndex;
H A DSSEInstructionDecoder.java50 int size = byteIndex - instrStartIndex;
H A DSSEMoveDecoder.java38 int size = byteIndex - instrStartIndex;
H A DInstructionDecoder.java46 protected int instrStartIndex; field in class:InstructionDecoder
129 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { argument
131 this.instrStartIndex = instrStartIndex;
161 int size = byteIndex - instrStartIndex;
479 //disp = disp + (byteIndex-instrStartIndex);
H A DGRPDecoder.java301 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { argument
303 this.instrStartIndex = instrStartIndex;
312 instr = instrDecoder.decode(bytesArray, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);
H A DX86Disassembler.java1511 int instrStartIndex = 0;
1515 instrStartIndex = byteIndex;
1549 instr = instrDecoder.decode(code, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);

Completed in 42 milliseconds