Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCoroutine.cpp386 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForCoroEnd() local
389 BundleList.emplace_back("funclet", EHPad); in getBundlesForCoroEnd()
391 return BundleList; in getBundlesForCoroEnd()
H A DCGCall.cpp3708 SmallVector<llvm::OperandBundleDef, 1> BundleList; in getBundlesForFunclet() local
3712 return BundleList; in getBundlesForFunclet()
3717 return BundleList; in getBundlesForFunclet()
3719 BundleList.emplace_back("funclet", CurrentFuncletPad); in getBundlesForFunclet()
3720 return BundleList; in getBundlesForFunclet()
3737 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitNoreturnRuntimeCallOrInvoke() local
3746 BundleList); in EmitNoreturnRuntimeCallOrInvoke()
3781 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCallOrInvoke() local
3786 Inst = Builder.CreateCall(Callee, Args, BundleList, Name); in EmitCallOrInvoke()
4340 SmallVector<llvm::OperandBundleDef, 1> BundleList = in EmitCall() local
[all …]
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp2430 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) { in ParseOptionalOperandBundles() argument
2437 if (!BundleList.empty() && in ParseOptionalOperandBundles()
2462 BundleList.emplace_back(std::move(Tag), std::move(Inputs)); in ParseOptionalOperandBundles()
2467 if (BundleList.empty()) in ParseOptionalOperandBundles()
5880 SmallVector<OperandBundleDef, 2> BundleList; in ParseInvoke() local
5889 ParseOptionalOperandBundles(BundleList, PFS) || in ParseInvoke()
5955 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList); in ParseInvoke()
6503 SmallVector<OperandBundleDef, 2> BundleList; in ParseCall() local
6520 ParseOptionalOperandBundles(BundleList, PFS)) in ParseCall()
6586 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList); in ParseCall()
H A DLLParser.h501 ParseOptionalOperandBundles(SmallVectorImpl<OperandBundleDef> &BundleList,