Searched refs:addrMode3 (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DArithmeticDecoder.java39 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 DSSEInstructionDecoder.java42 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 DInstructionDecoder.java37 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 31 milliseconds