Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DPreISelIntrinsicLowering.cpp113 SmallVector<llvm::OperandBundleDef, 1> BundleList; in lowerObjCCall() local
114 CI->getOperandBundlesAsDefs(BundleList); in lowerObjCCall()
115 CallInst *NewCI = Builder.CreateCall(FCache, Args, BundleList); in lowerObjCCall()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCoroutine.cpp384 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForCoroEnd() local
387 BundleList.emplace_back("funclet", EHPad); in getBundlesForCoroEnd()
389 return BundleList; in getBundlesForCoroEnd()
H A DCGCleanup.cpp1334 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitSehScope() local
1337 BundleList.emplace_back("funclet", CGF.CurrentFuncletPad); in EmitSehScope()
1339 BundleList); in EmitSehScope()
H A DCGCall.cpp4541 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForFunclet() local
4542 BundleList.emplace_back("funclet", CurrentFuncletPad); in getBundlesForFunclet()
4543 return BundleList; in getBundlesForFunclet()
4559 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitNoreturnRuntimeCallOrInvoke() local
4568 BundleList); in EmitNoreturnRuntimeCallOrInvoke()
4572 llvm::CallInst *call = Builder.CreateCall(callee, args, BundleList); in EmitNoreturnRuntimeCallOrInvoke()
4602 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCallOrInvoke() local
4607 Inst = Builder.CreateCall(Callee, Args, BundleList, Name); in EmitCallOrInvoke()
4610 Inst = Builder.CreateInvoke(Callee, ContBB, InvokeDest, Args, BundleList, in EmitCallOrInvoke()
5396 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCall() local
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceFileWriter.h114 std::vector<BundleKey> BundleList; member
H A DResourceFileWriter.cpp489 StringTableData.BundleList.push_back(Key); in visitStringTableResource()
1285 for (auto Key : StringTableData.BundleList) { in dumpAllStringTables()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1772 SmallVector<OperandBundleDef, 1> BundleList; in MoveCalls() local
1773 addOpBundleForFunclet(InsertPt->getParent(), BundleList); in MoveCalls()
1774 CallInst *Call = CallInst::Create(Decl, MyArg, BundleList, "", InsertPt); in MoveCalls()
1787 SmallVector<OperandBundleDef, 1> BundleList; in MoveCalls() local
1788 addOpBundleForFunclet(InsertPt->getParent(), BundleList); in MoveCalls()
1789 CallInst *Call = CallInst::Create(Decl, MyArg, BundleList, "", InsertPt); in MoveCalls()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp2783 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in parseOptionalOperandBundles() argument
2790 if (!BundleList.empty() && in parseOptionalOperandBundles()
2815 BundleList.emplace_back(std::move(Tag), std::move(Inputs)); in parseOptionalOperandBundles()
2820 if (BundleList.empty()) in parseOptionalOperandBundles()
6681 SmallVector<OperandBundleDef, 2> BundleList; in parseInvoke() local
6690 parseOptionalOperandBundles(BundleList, PFS) || in parseInvoke()
6744 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList); in parseInvoke()
6978 SmallVector<OperandBundleDef, 2> BundleList; in parseCallBr() local
6986 parseOptionalOperandBundles(BundleList, PFS) || in parseCallBr()
7058 BundleList); in parseCallBr()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/AsmParser/
H A DLLParser.h528 parseOptionalOperandBundles(SmallVectorImpl<OperandBundleDef> &BundleList,