Lines Matching refs:AMD64MROp

1146     public static class AMD64MROp extends AMD64RROp {  class in AMD64Assembler
1148 …public static final AMD64MROp MOVB = new AMD64MROp("MOVB", 0x88, OpAssertion.ByteA…
1149 public static final AMD64MROp MOV = new AMD64MROp("MOV", 0x89);
1153 …public static final AMD64MROp MOVD = new AMD64MROp("MOVD", 0x66, P_0F, 0x7E, OpAssertion.IntTo…
1154 …public static final AMD64MROp MOVQ = new AMD64MROp("MOVQ", 0x66, P_0F, 0x7E, OpAssertion.IntTo…
1157 …public static final AMD64MROp MOVSS = new AMD64MROp("MOVSS", P_0F, 0x11, OpAssertion.Float…
1158 …public static final AMD64MROp MOVSD = new AMD64MROp("MOVSD", P_0F, 0x11, OpAssertion.Float…
1161 protected AMD64MROp(String opcode, int op) { in AMD64MROp() method in AMD64Assembler.AMD64MROp
1165 protected AMD64MROp(String opcode, int op, OpAssertion assertion) { in AMD64MROp() method in AMD64Assembler.AMD64MROp
1169 protected AMD64MROp(String opcode, int prefix, int op) { in AMD64MROp() method in AMD64Assembler.AMD64MROp
1173 protected AMD64MROp(String opcode, int prefix, int op, OpAssertion assertion) { in AMD64MROp() method in AMD64Assembler.AMD64MROp
1177 …protected AMD64MROp(String opcode, int prefix, int op, OpAssertion assertion, CPUFeature feature) { in AMD64MROp() method in AMD64Assembler.AMD64MROp
1181 …protected AMD64MROp(String opcode, int prefix1, int prefix2, int op, OpAssertion assertion, CPUFea… in AMD64MROp() method in AMD64Assembler.AMD64MROp
1630 private final AMD64MROp byteMrOp;
1635 private final AMD64MROp mrOp;
1642 byteMrOp = new AMD64MROp(opcode, 0, baseOp, OpAssertion.ByteAssertion); in AMD64BinaryArithmetic()
1647 mrOp = new AMD64MROp(opcode, 0, baseOp | 0x01, OpAssertion.WordOrLargerAssertion); in AMD64BinaryArithmetic()
1661 public AMD64MROp getMROpcode(OperandSize size) { in getMROpcode()