Searched defs:addrMode3 (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 | 37 protected int addrMode3; field in class:InstructionDecoder 55 this.addrMode3 = INVALID_ADDRMODE; 68 int addrMode3, int operandType3) { 70 this.addrMode3 = addrMode3; 91 if( (addrMode3 != INVALID_ADDRMODE) && (operandType3 != INVALID_OPERANDTYPE) ) 92 return getOperand(bytesArray, addrMode3, operandType3, operandSize, addrSize); 146 if( isModRMPresent(addrMode1) || isModRMPresent(addrMode2) || isModRMPresent(addrMode3) ) { 67 InstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int addrMode3, int operandType3) argument
|
Completed in 60 milliseconds