Home
last modified time | relevance | path

Searched refs:CreateInsertValue (Results 1 – 21 of 21) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp35 Res = Builder.CreateInsertValue(UndefValue::get(CXI->getType()), Orig, 0); in LowerAtomicCmpXchgInst()
36 Res = Builder.CreateInsertValue(Res, Equal, 1); in LowerAtomicCmpXchgInst()
H A DScalarReplAggregates.cpp820 Res = Builder.CreateInsertValue(Res, Elt, i); in ConvertScalar_ExtractValue()
834 Res = Builder.CreateInsertValue(Res, Elt, i); in ConvertScalar_ExtractValue()
1928 Insert = Builder.CreateInsertValue(Insert, Load, i, "insert"); in RewriteForScalarRepl()
H A DSROA.cpp3250 Agg = IRB.CreateInsertValue(Agg, Load, Indices, Name + ".insert"); in emitFunc()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp284 Builder.CreateInsertValue(NewValue, NewOperands[i], makeArrayRef(i)); in remapConstantVectorOrConstantAggregate()
340 return Builder.CreateInsertValue(NewOperands[0], NewOperands[1], in remapConstantExpr()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp523 Res = Builder.CreateInsertValue(UndefValue::get(CI->getType()), Loaded, 0); in expandAtomicCmpXchg()
524 Res = Builder.CreateInsertValue(Res, Success, 1); in expandAtomicCmpXchg()
H A DSjLjEHPrepare.cpp179 LPadVal = Builder.CreateInsertValue(LPadVal, ExnVal, 0, "lpad.val"); in substituteLPadValues()
180 LPadVal = Builder.CreateInsertValue(LPadVal, SelVal, 1, "lpad.val"); in substituteLPadValues()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DConstantFolder.h236 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue() function
H A DNoFolder.h290 Instruction *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue() function
H A DIRBuilder.h594 V = CreateInsertValue(V, retVals[i], i, "mrv"); in CreateAggregateRet()
1491 Value *CreateInsertValue(Value *Agg, Value *Val,
1496 return Insert(Folder.CreateInsertValue(AggC, ValC, Idxs), Name);
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp535 Value *Res = IRB.CreateInsertValue(UndefValue::get(CASI->getType()), C, 0); in instrumentAtomic()
536 Res = IRB.CreateInsertValue(Res, Success, 1); in instrumentAtomic()
H A DDataFlowSanitizer.cpp1378 IRB.CreateInsertValue(UndefValue::get(RT), RI.getReturnValue(), 0); in visitReturnInst()
1380 IRB.CreateInsertValue(InsVal, DFSF.getShadow(RI.getReturnValue()), 1); in visitReturnInst()
H A DMemorySanitizer.cpp2577 Value *Res = IRB.CreateInsertValue(AggShadow, InsShadow, I.getIndices()); in visitInsertValueInst()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetFolder.h261 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue() function
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGException.cpp1636 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val"); in getEHResumeBlock()
1637 LPadVal = Builder.CreateInsertValue(LPadVal, Sel, 1, "lpad.val"); in getEHResumeBlock()
H A DMicrosoftCXXABI.cpp2511 Dst = Builder.CreateInsertValue(Dst, FirstField, Idx++); in EmitMemberPointerConversion()
2513 Dst = Builder.CreateInsertValue( in EmitMemberPointerConversion()
2516 Dst = Builder.CreateInsertValue( in EmitMemberPointerConversion()
2519 Dst = Builder.CreateInsertValue( in EmitMemberPointerConversion()
H A DItaniumCXXABI.cpp570 return Builder.CreateInsertValue(src, dstAdj, 1); in EmitMemberPointerConversion()
H A DCGBuiltin.cpp3620 Ops[1] = Builder.CreateInsertValue(Ops[1], Elt, i); in EmitARMBuiltinExpr()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp1307 Builder.CreateInsertValue(Result, Element, makeArrayRef(I)); in createCast()
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DCore.cpp2725 return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal), in LLVMBuildInsertValue()
/minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go1700 func (b Builder) CreateInsertValue(agg, elt Value, i int, name string) (v Value) { func
/minix3/external/bsd/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2475 See the method [llvm::LLVMBuilder::CreateInsertValue]. *)