Searched refs:addrMode2 (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DFPInstructionDecoder.java38 public FPInstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2) { argument
39 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DArithmeticDecoder.java35 public ArithmeticDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { argument
36 super(name, addrMode1, operandType1, addrMode2, operandType2);
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 DSSEInstructionDecoder.java38 public SSEInstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2) { argument
39 super(name, addrMode1, operandType1, addrMode2, operandType2);
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 DFPArithmeticDecoder.java36 public FPArithmeticDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { argument
37 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DLogicalDecoder.java36 public LogicalDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { argument
37 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DRotateDecoder.java34 public RotateDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2) { argument
35 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DSSEArithmeticDecoder.java37 public SSEArithmeticDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { argument
38 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DSSELogicalDecoder.java32 public SSELogicalDecoder(String name, int addrMode1, int operandType1, int addrMode2, argument
34 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DSSEShiftDecoder.java32 public SSEShiftDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { argument
33 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DShiftDecoder.java36 public ShiftDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, int rtlOperation) { argument
37 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DMoveDecoder.java30 public MoveDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2) { argument
31 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DSSEMoveDecoder.java31 public SSEMoveDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2) { argument
32 super(name, addrMode1, operandType1, addrMode2, operandType2);
H A DInstructionDecoder.java35 protected int addrMode2; field in class:InstructionDecoder
54 this.addrMode2 = INVALID_ADDRMODE;
62 public InstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2) { argument
64 this.addrMode2 = addrMode2;
67 public InstructionDecoder(String name, int addrMode1, int operandType1, int addrMode2, int operandType2, argument
69 this(name, addrMode1, operandType1, addrMode2, operandType2);
83 if( (addrMode2 != INVALID_ADDRMODE) && (operandType2 != INVALID_OPERANDTYPE) )
84 return getOperand(bytesArray, addrMode2, operandType2, operandSize, addrSize);
146 if( isModRMPresent(addrMode1) || isModRMPresent(addrMode2) || isModRMPresen
[all...]

Completed in 34 milliseconds