Home
last modified time | relevance | path

Searched refs:BundleList (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPreISelIntrinsicLowering.cpp149 SmallVector<llvm::OperandBundleDef, 1> BundleList; in lowerObjCCall() local
150 CI->getOperandBundlesAsDefs(BundleList); in lowerObjCCall()
151 CallInst *NewCI = Builder.CreateCall(FCache, Args, BundleList); in lowerObjCCall()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1777 SmallVector<OperandBundleDef, 1> BundleList; in MoveCalls() local
1778 addOpBundleForFunclet(InsertPt->getParent(), BundleList); in MoveCalls()
1780 CallInst::Create(Decl, MyArg, BundleList, "", InsertPt->getIterator()); in MoveCalls()
1794 SmallVector<OperandBundleDef, 1> BundleList; in MoveCalls() local
1795 addOpBundleForFunclet(InsertPt->getParent(), BundleList); in MoveCalls()
1797 CallInst::Create(Decl, MyArg, BundleList, "", InsertPt->getIterator()); in MoveCalls()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp558 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForCoroEnd() local
561 BundleList.emplace_back("funclet", EHPad); in getBundlesForCoroEnd()
563 return BundleList; in getBundlesForCoroEnd()
H A DCGCleanup.cpp1318 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitSehScope() local
1321 BundleList.emplace_back("funclet", CGF.CurrentFuncletPad); in EmitSehScope()
1323 BundleList); in EmitSehScope()
H A DCGCall.cpp4805 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForFunclet() local
4806 BundleList.emplace_back("funclet", CurrentFuncletPad); in getBundlesForFunclet()
4807 return BundleList; in getBundlesForFunclet()
4826 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitNoreturnRuntimeCallOrInvoke() local
4835 BundleList); in EmitNoreturnRuntimeCallOrInvoke()
4839 llvm::CallInst *call = Builder.CreateCall(callee, args, BundleList); in EmitNoreturnRuntimeCallOrInvoke()
4869 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCallOrInvoke() local
4874 Inst = Builder.CreateCall(Callee, Args, BundleList, Name); in EmitCallOrInvoke()
4877 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, BundleList, in EmitCallOrInvoke()
5662 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCall() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3178 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in parseOptionalOperandBundles() argument
3185 if (!BundleList.empty() && in parseOptionalOperandBundles()
3210 BundleList.emplace_back(std::move(Tag), std::move(Inputs)); in parseOptionalOperandBundles()
3215 if (BundleList.empty()) in parseOptionalOperandBundles()
7295 SmallVector<OperandBundleDef, 2> BundleList; in parseInvoke() local
7304 parseOptionalOperandBundles(BundleList, PFS) || in parseInvoke()
7358 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList); in parseInvoke()
7592 SmallVector<OperandBundleDef, 2> BundleList; in parseCallBr() local
7600 parseOptionalOperandBundles(BundleList, PFS) || in parseCallBr()
7672 BundleList); in parseCallBr()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h557 parseOptionalOperandBundles(SmallVectorImpl<OperandBundleDef> &BundleList,