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.cpp183 SmallVector<llvm::OperandBundleDef, 1> BundleList; in lowerObjCCall() local
184 CI->getOperandBundlesAsDefs(BundleList); in lowerObjCCall()
185 CallInst *NewCI = Builder.CreateCall(FCache, Args, BundleList); in lowerObjCCall()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1771 SmallVector<OperandBundleDef, 1> BundleList; in MoveCalls() local
1772 addOpBundleForFunclet(InsertPt->getParent(), BundleList); in MoveCalls()
1774 CallInst::Create(Decl, Arg, BundleList, "", InsertPt->getIterator()); in MoveCalls()
1785 SmallVector<OperandBundleDef, 1> BundleList; in MoveCalls() local
1786 addOpBundleForFunclet(InsertPt->getParent(), BundleList); in MoveCalls()
1788 CallInst::Create(Decl, Arg, BundleList, "", InsertPt->getIterator()); in MoveCalls()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp559 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForCoroEnd() local
562 BundleList.emplace_back("funclet", EHPad); in getBundlesForCoroEnd()
564 return BundleList; in getBundlesForCoroEnd()
H A DCGCleanup.cpp1336 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitSehScope() local
1339 BundleList.emplace_back("funclet", CGF.CurrentFuncletPad); in EmitSehScope()
1340 CGF.Builder.CreateInvoke(SehCppScope, Cont, InvokeDest, {}, BundleList); in EmitSehScope()
H A DCGCall.cpp4983 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForFunclet() local
4984 BundleList.emplace_back("funclet", CurrentFuncletPad); in getBundlesForFunclet()
4985 return BundleList; in getBundlesForFunclet()
5004 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitNoreturnRuntimeCallOrInvoke() local
5009 callee, getUnreachableBlock(), getInvokeDest(), args, BundleList); in EmitNoreturnRuntimeCallOrInvoke()
5013 llvm::CallInst *call = Builder.CreateCall(callee, args, BundleList); in EmitNoreturnRuntimeCallOrInvoke()
5043 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCallOrInvoke() local
5048 Inst = Builder.CreateCall(Callee, Args, BundleList, Name); in EmitCallOrInvoke()
5051 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, BundleList, in EmitCallOrInvoke()
5848 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCall() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3269 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in parseOptionalOperandBundles() argument
3276 if (!BundleList.empty() && in parseOptionalOperandBundles()
3307 BundleList.emplace_back(std::move(Tag), std::move(Inputs)); in parseOptionalOperandBundles()
3312 if (BundleList.empty()) in parseOptionalOperandBundles()
7609 SmallVector<OperandBundleDef, 2> BundleList; in parseInvoke() local
7618 parseOptionalOperandBundles(BundleList, PFS) || in parseInvoke()
7672 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList); in parseInvoke()
7906 SmallVector<OperandBundleDef, 2> BundleList; in parseCallBr() local
7914 parseOptionalOperandBundles(BundleList, PFS) || in parseCallBr()
7987 BundleList); in parseCallBr()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h561 parseOptionalOperandBundles(SmallVectorImpl<OperandBundleDef> &BundleList,