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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
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 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 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 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);

Completed in 41 milliseconds