Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2402 SmallVector<OperandBundleDef, 2> OpDefs; in InlineFunction() local
2409 OpDefs.clear(); in InlineFunction()
2411 OpDefs.reserve(ICS->getNumOperandBundles()); in InlineFunction()
2418 OpDefs.emplace_back(ChildOB); in InlineFunction()
2433 OpDefs.emplace_back("deopt", std::move(MergedDeoptArgs)); in InlineFunction()
2436 Instruction *NewI = CallBase::Create(ICS, OpDefs, ICS->getIterator()); in InlineFunction()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp314 SmallVector<OperandBundleDef, 2> OpDefs; in Create() local
318 OpDefs.emplace_back(ChildOB); in Create()
320 OpDefs.emplace_back(OpB); in Create()
321 return CallBase::Create(CI, OpDefs, InsertPt); in Create()