/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | BranchDecoder.java | 38 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 39 Operand addr = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | CallDecoder.java | 33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | ConditionalJmpDecoder.java | 36 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 37 Operand addr = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | FPInstructionDecoder.java | 42 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 43 Operand op1 = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | FPLoadDecoder.java | 34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 35 Operand op = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | FPStoreDecoder.java | 34 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 35 Operand op = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | JmpDecoder.java | 33 protected Instruction decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) { argument 34 Operand operand = getOperand1(bytesArray, operandSize, addrSize);
|
H A D | MoveDecoder.java | 34 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 D | RotateDecoder.java | 37 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 D | SSEMoveDecoder.java | 35 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 D | ArithmeticDecoder.java | 43 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 D | FPArithmeticDecoder.java | 41 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 D | LogicalDecoder.java | 40 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 D | SSEArithmeticDecoder.java | 42 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 D | SSEInstructionDecoder.java | 46 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 D | SSELogicalDecoder.java | 39 boolean addrSize, X86InstructionFactory factory) { 40 Operand op1 = getOperand1(bytesArray, operandSize, addrSize); 41 Operand op2 = getOperand2(bytesArray, operandSize, addrSize); 38 decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) argument
|
H A D | SSEShiftDecoder.java | 37 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 D | ShiftDecoder.java | 40 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 D | InstructionDecoder.java | 74 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); 134 boolean addrSize; //address-size prefix 140 addrSize = true; 142 addrSize = false; 143 this.name = getCorrectOpcodeName(name, prefixes, operandSize, addrSize); 157 decodeInstruction(byte[] bytesArray, boolean operandSize, boolean addrSize, X86InstructionFactory factory) argument 166 getCorrectOpcodeName(String oldName, int prefixes, boolean operandSize, boolean addrSize) argument 200 getOperand(byte[] bytesArray, int addrMode, int operandType, boolean operandSize, boolean addrSize) argument [all...] |