Home | History | Annotate | Download | only in SystemZ

Lines Matching refs:OpNum

46     void printOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
48 void printPCRelImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O);
49 void printRIAddrOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
51 void printRRIAddrOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
53 void printS16ImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O) {
54 O << (int16_t)MI->getOperand(OpNum).getImm();
56 void printU16ImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O) {
57 O << (uint16_t)MI->getOperand(OpNum).getImm();
59 void printS32ImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O) {
60 O << (int32_t)MI->getOperand(OpNum).getImm();
62 void printU32ImmOperand(const MachineInstr *MI, int OpNum, raw_ostream &O) {
63 O << (uint32_t)MI->getOperand(OpNum).getImm();
82 void SystemZAsmPrinter::printPCRelImmOperand(const MachineInstr *MI, int OpNum,
84 const MachineOperand &MO = MI->getOperand(OpNum);
121 void SystemZAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
123 const MachineOperand &MO = MI->getOperand(OpNum);
180 void SystemZAsmPrinter::printRIAddrOperand(const MachineInstr *MI, int OpNum,
183 const MachineOperand &Base = MI->getOperand(OpNum);
186 printOperand(MI, OpNum+1, O);
191 printOperand(MI, OpNum, O);
196 void SystemZAsmPrinter::printRRIAddrOperand(const MachineInstr *MI, int OpNum,
199 const MachineOperand &Base = MI->getOperand(OpNum);
200 const MachineOperand &Index = MI->getOperand(OpNum+2);
203 printOperand(MI, OpNum+1, O);
208 printOperand(MI, OpNum, O);
211 printOperand(MI, OpNum+2, O);