Lines Matching defs:TII
28 STI(STI), TII(*STI.getInstrInfo()), TRI(STI.getRegisterInfo()) {}
49 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
85 const MSP430InstrInfo &TII =
107 BuildMI(MBB, MBBI, DL, TII.get(MSP430::PUSH16r))
125 BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::R4)
171 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP)
194 const MSP430InstrInfo &TII =
220 BuildMI(MBB, MBBI, DL, TII.get(MSP430::POP16r), MSP430::R4)
259 BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::SP)
264 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP)
275 BuildMI(MBB, MBBI, DL, TII.get(MSP430::ADD16ri), MSP430::SP)
322 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
330 BuildMI(MBB, MI, DL, TII.get(MSP430::PUSH16r))
347 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
350 BuildMI(MBB, MI, DL, TII.get(MSP430::POP16r), I.getReg())
359 const MSP430InstrInfo &TII =
367 uint64_t Amount = TII.getFrameSize(Old);
375 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) {
377 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP)
381 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode());
383 Amount -= TII.getFramePoppedByCallee(Old);
385 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri),
399 } else if (I->getOpcode() == TII.getCallFrameDestroyOpcode()) {
402 if (uint64_t CalleeAmt = TII.getFramePoppedByCallee(*I)) {
405 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP)