Home
last modified time | relevance | path

Searched refs:RetI (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp1052 for (unsigned RetI = 0; RetI != RetCount; ++RetI) in RemoveDeadStuffFromFunction() local
1053 if (NewRetIdxs[RetI] != -1) { in RemoveDeadStuffFromFunction()
1054 Value *EV = IRB.CreateExtractValue(OldRet, RetI, "oldret"); in RemoveDeadStuffFromFunction()
1060 RetVal = IRB.CreateInsertValue(RetVal, EV, NewRetIdxs[RetI], in RemoveDeadStuffFromFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp537 MachineInstr *RetI = getReturn(B); in emitPrologue() local
538 if (!RetI || isRestoreCall(RetI->getOpcode())) in emitPrologue()
541 RetI->addOperand(MachineOperand::CreateReg(R.getReg(), false, true)); in emitPrologue()
790 MachineInstr *RetI = getReturn(MBB); in insertEpilogueInBlock() local
791 unsigned RetOpc = RetI ? RetI->getOpcode() : 0; in insertEpilogueInBlock()
810 MachineBasicBlock::iterator It = RetI; in insertEpilogueInBlock()
851 MachineInstr *NewI = BuildMI(MBB, RetI, dl, HII.get(NewOpc)) in insertEpilogueInBlock()
855 NewI->copyImplicitOps(MF, *RetI); in insertEpilogueInBlock()
856 MBB.erase(RetI); in insertEpilogueInBlock()
966 MachineInstr &RetI = MBB.back(); in updateExitPaths() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp7182 Instruction *RetI = I; in getReductionPatternCost() local
7183 if (match(RetI, m_ZExtOrSExt(m_Value()))) { in getReductionPatternCost()
7184 if (!RetI->hasOneUser()) in getReductionPatternCost()
7186 RetI = RetI->user_back(); in getReductionPatternCost()
7188 if (match(RetI, m_Mul(m_Value(), m_Value())) && in getReductionPatternCost()
7190 if (!RetI->hasOneUser()) in getReductionPatternCost()
7192 RetI = RetI->user_back(); in getReductionPatternCost()
7197 if (!InLoopReductionImmediateChains.count(RetI)) in getReductionPatternCost()
7241 return I == RetI ? RedCost : 0; in getReductionPatternCost()
7262 return I == RetI ? RedCost : 0; in getReductionPatternCost()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMExpandPseudoInsts.cpp1153 auto &RetI = *MBBI; in CMSEClearFPRegsV8() local
1154 const DebugLoc &DL = RetI.getDebugLoc(); in CMSEClearFPRegsV8()
1178 for (const MachineOperand &Op : RetI.operands()) { in CMSEClearFPRegsV8()
1259 auto &RetI = *MBBI; in CMSEClearFPRegsV81() local
1272 BuildMI(MBB, MBBI, RetI.getDebugLoc(), TII->get(ARM::VSCCLRMS)) in CMSEClearFPRegsV81()
1283 BuildMI(MBB, MBBI, RetI.getDebugLoc(), TII->get(ARM::VSCCLRMS)) in CMSEClearFPRegsV81()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2316 ReturnInst *RetI = dyn_cast<ReturnInst>(BB->getTerminator()); in dupRetToEnableTailCallOpts() local
2317 if (!RetI) in dupRetToEnableTailCallOpts()
2323 Value *V = RetI->getReturnValue(); in dupRetToEnableTailCallOpts()
2361 if (BI != RetI) in dupRetToEnableTailCallOpts()
2377 attributesPermitTailCall(F, CI, RetI, *TLI)) in dupRetToEnableTailCallOpts()
2388 attributesPermitTailCall(F, CI, RetI, *TLI)) in dupRetToEnableTailCallOpts()
2403 (void)FoldReturnIntoUncondBranch(RetI, BB, TailCallBB); in dupRetToEnableTailCallOpts()