Home | History | Annotate | Download | only in InstPrinter

Lines Matching refs:OpNum

54 void SystemZInstPrinter::printU4ImmOperand(const MCInst *MI, int OpNum,
56 int64_t Value = MI->getOperand(OpNum).getImm();
61 void SystemZInstPrinter::printU6ImmOperand(const MCInst *MI, int OpNum,
63 int64_t Value = MI->getOperand(OpNum).getImm();
68 void SystemZInstPrinter::printS8ImmOperand(const MCInst *MI, int OpNum,
70 int64_t Value = MI->getOperand(OpNum).getImm();
75 void SystemZInstPrinter::printU8ImmOperand(const MCInst *MI, int OpNum,
77 int64_t Value = MI->getOperand(OpNum).getImm();
82 void SystemZInstPrinter::printS16ImmOperand(const MCInst *MI, int OpNum,
84 int64_t Value = MI->getOperand(OpNum).getImm();
89 void SystemZInstPrinter::printU16ImmOperand(const MCInst *MI, int OpNum,
91 int64_t Value = MI->getOperand(OpNum).getImm();
96 void SystemZInstPrinter::printS32ImmOperand(const MCInst *MI, int OpNum,
98 int64_t Value = MI->getOperand(OpNum).getImm();
103 void SystemZInstPrinter::printU32ImmOperand(const MCInst *MI, int OpNum,
105 int64_t Value = MI->getOperand(OpNum).getImm();
110 void SystemZInstPrinter::printAccessRegOperand(const MCInst *MI, int OpNum,
112 uint64_t Value = MI->getOperand(OpNum).getImm();
117 void SystemZInstPrinter::printPCRelOperand(const MCInst *MI, int OpNum,
119 const MCOperand &MO = MI->getOperand(OpNum);
127 void SystemZInstPrinter::printCallOperand(const MCInst *MI, int OpNum,
129 const MCOperand &MO = MI->getOperand(OpNum);
139 void SystemZInstPrinter::printOperand(const MCInst *MI, int OpNum,
141 printOperand(MI->getOperand(OpNum), O);
144 void SystemZInstPrinter::printBDAddrOperand(const MCInst *MI, int OpNum,
146 printAddress(MI->getOperand(OpNum).getReg(),
147 MI->getOperand(OpNum + 1).getImm(), 0, O);
150 void SystemZInstPrinter::printBDXAddrOperand(const MCInst *MI, int OpNum,
152 printAddress(MI->getOperand(OpNum).getReg(),
153 MI->getOperand(OpNum + 1).getImm(),
154 MI->getOperand(OpNum + 2).getReg(), O);
157 void SystemZInstPrinter::printBDLAddrOperand(const MCInst *MI, int OpNum,
159 unsigned Base = MI->getOperand(OpNum).getReg();
160 uint64_t Disp = MI->getOperand(OpNum + 1).getImm();
161 uint64_t Length = MI->getOperand(OpNum + 2).getImm();
168 void SystemZInstPrinter::printCond4Operand(const MCInst *MI, int OpNum,
174 uint64_t Imm = MI->getOperand(OpNum).getImm();