Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2250 SmallVector<OperandBundleDef, 2> OpDefs; in InlineFunction() local
2257 OpDefs.clear(); in InlineFunction()
2259 OpDefs.reserve(ICS->getNumOperandBundles()); in InlineFunction()
2266 OpDefs.emplace_back(ChildOB); in InlineFunction()
2281 OpDefs.emplace_back("deopt", std::move(MergedDeoptArgs)); in InlineFunction()
2284 Instruction *NewI = CallBase::Create(ICS, OpDefs, ICS); in InlineFunction()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp282 SmallVector<OperandBundleDef, 2> OpDefs; in Create() local
286 OpDefs.emplace_back(ChildOB); in Create()
288 OpDefs.emplace_back(OpB); in Create()
289 return CallBase::Create(CI, OpDefs, InsertPt); in Create()