Searched defs:operandType3 (Results 1 - 3 of 3) sorted by relevance
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | ArithmeticDecoder.java | 39 public ArithmeticDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int addrMode3, int operandType3, int rtlOperation) { argument 40 super(name, addrMode1, operandType1, addrMode2, operandType2, addrMode3, operandType3);
|
H A D | SSEInstructionDecoder.java | 42 public SSEInstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int addrMode3, int operandType3) { argument 43 super(name, addrMode1, operandType1, addrMode2, operandType2, addrMode3, operandType3);
|
H A D | InstructionDecoder.java | 38 protected int operandType3; field in class:InstructionDecoder 52 this.operandType3 = INVALID_OPERANDTYPE; 68 int addrMode3, int operandType3) { 71 this.operandType3 = operandType3; 91 if( (addrMode3 != INVALID_ADDRMODE) && (operandType3 != INVALID_OPERANDTYPE) ) 92 return getOperand(bytesArray, addrMode3, operandType3, operandSize, addrSize); 67 InstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int addrMode3, int operandType3) argument
|
Completed in 294 milliseconds