Searched refs:bytesArray (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DInstructionDecoder.java74 protected Operand getOperand1(byte[] bytesArray, boolean operandSize, boolean addrSize) { argument
76 return getOperand(bytesArray, addrMode1, operandType1, operandSize, addrSize);
82 protected Operand getOperand2(byte[] bytesArray, boolean operandSize, boolean addrSize) { argument
84 return getOperand(bytesArray, addrMode2, operandType2, operandSize, addrSize);
90 protected Operand getOperand3(byte[] bytesArray, boolean operandSize, boolean addrSize) { argument
92 return getOperand(bytesArray, addrMode3, operandType3, operandSize, addrSize);
97 static int readInt32(byte[] bytesArray, int index) { argument
99 ret = readByte(bytesArray, index);
100 ret |= readByte(bytesArray, index+1) << 8;
101 ret |= readByte(bytesArray, inde
105 readInt16(byte[] bytesArray, int index) argument
111 readByte(byte[] bytesArray, int index) argument
129 decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) argument
157 decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) argument
200 getOperand(byte[] bytesArray, int addrMode, int operandType, boolean operandSize, boolean addrSize) argument
[all...]
H A DFPLoadDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
35 Operand op = getOperand1(bytesArray, operandSize, addrSize);
H A DFPStoreDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
35 Operand op = getOperand1(bytesArray, operandSize, addrSize);
H A DFPArithmeticDecoder.java41 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
42 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
43 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DLogicalDecoder.java40 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
42 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DRotateDecoder.java37 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
38 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
39 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSEArithmeticDecoder.java42 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
43 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
44 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSELogicalDecoder.java38 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, argument
40 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
41 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSEShiftDecoder.java37 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
38 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
39 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DShiftDecoder.java40 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
41 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
42 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DCallDecoder.java33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
H A DConditionalJmpDecoder.java36 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
37 Operand addr = getOperand1(bytesArray, operandSize, addrSize);
H A DFPInstructionDecoder.java42 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
43 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
H A DJmpDecoder.java33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
H A DArithmeticDecoder.java43 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
44 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
45 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
46 Operand op3 = getOperand3(bytesArray, operandSize, addrSize);
H A DSSEInstructionDecoder.java46 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
47 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
48 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
49 Operand op3 = getOperand3(bytesArray, operandSize, addrSize);
H A DBranchDecoder.java38 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
39 Operand addr = getOperand1(bytesArray, operandSize, addrSize);
H A DMoveDecoder.java34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
35 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
36 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DSSEMoveDecoder.java35 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument
36 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
37 Operand op2 = getOperand2(bytesArray, operandSize, addrSize);
H A DFloatGRPDecoder.java143 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { argument
148 int ModRM = readByte(bytesArray, byteIndex);
156 instr = instrDecoder.decode(bytesArray, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);
H A DFloatDecoder.java224 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { argument
229 int ModRM = readByte(bytesArray, byteIndex);
234 int floatOpcode = InstructionDecoder.readByte(bytesArray, instrStartIndex);
246 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
306 int ModRM = readByte(bytesArray, byteIndex);
312 instr = instrDecoder.decode(bytesArray, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);

Completed in 40 milliseconds