Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2025 SmallVector<OperandBundleDef, 2> OpDefs; in InlineFunction() local
2032 OpDefs.clear(); in InlineFunction()
2034 OpDefs.reserve(ICS->getNumOperandBundles()); in InlineFunction()
2041 OpDefs.emplace_back(ChildOB); in InlineFunction()
2056 OpDefs.emplace_back("deopt", std::move(MergedDeoptArgs)); in InlineFunction()
2059 Instruction *NewI = CallBase::Create(ICS, OpDefs, ICS); in InlineFunction()
/llvm-project-15.0.7/llvm/lib/IR/
H A DInstructions.cpp271 SmallVector<OperandBundleDef, 2> OpDefs; in Create() local
275 OpDefs.emplace_back(ChildOB); in Create()
277 OpDefs.emplace_back(OpB); in Create()
278 return CallBase::Create(CI, OpDefs, InsertPt); in Create()