Home
last modified time | relevance | path

Searched refs:OpDefs (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2302 SmallVector<OperandBundleDef, 2> OpDefs; in InlineFunction() local
2309 OpDefs.clear(); in InlineFunction()
2311 OpDefs.reserve(ICS->getNumOperandBundles()); in InlineFunction()
2318 OpDefs.emplace_back(ChildOB); in InlineFunction()
2333 OpDefs.emplace_back("deopt", std::move(MergedDeoptArgs)); in InlineFunction()
2336 Instruction *NewI = CallBase::Create(ICS, OpDefs, ICS); in InlineFunction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp315 SmallVector<OperandBundleDef, 2> OpDefs; in Create() local
319 OpDefs.emplace_back(ChildOB); in Create()
321 OpDefs.emplace_back(OpB); in Create()
322 return CallBase::Create(CI, OpDefs, InsertPt); in Create()