Lines Matching defs:TII
31 STI(STI), TII(*STI.getInstrInfo()), TRI(STI.getRegisterInfo()) {}
52 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
88 const MSP430InstrInfo &TII =
110 BuildMI(MBB, MBBI, DL, TII.get(MSP430::PUSH16r))
128 BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::R4)
174 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP)
197 const MSP430InstrInfo &TII =
223 BuildMI(MBB, MBBI, DL, TII.get(MSP430::POP16r), MSP430::R4)
262 BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::SP)
267 BuildMI(MBB, MBBI, DL, TII.get(MSP430::SUB16ri), MSP430::SP)
278 BuildMI(MBB, MBBI, DL, TII.get(MSP430::ADD16ri), MSP430::SP)
325 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
333 BuildMI(MBB, MI, DL, TII.get(MSP430::PUSH16r))
350 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
353 BuildMI(MBB, MI, DL, TII.get(MSP430::POP16r), I.getReg())
362 const MSP430InstrInfo &TII =
370 uint64_t Amount = TII.getFrameSize(Old);
378 if (Old.getOpcode() == TII.getCallFrameSetupOpcode()) {
380 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP)
384 assert(Old.getOpcode() == TII.getCallFrameDestroyOpcode());
386 Amount -= TII.getFramePoppedByCallee(Old);
388 New = BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::ADD16ri),
402 } else if (I->getOpcode() == TII.getCallFrameDestroyOpcode()) {
405 if (uint64_t CalleeAmt = TII.getFramePoppedByCallee(*I)) {
408 BuildMI(MF, Old.getDebugLoc(), TII.get(MSP430::SUB16ri), MSP430::SP)