| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
| D | LowerAtomic.cpp | 35 Res = Builder.CreateInsertValue(UndefValue::get(CXI->getType()), Orig, 0); in LowerAtomicCmpXchgInst() 36 Res = Builder.CreateInsertValue(Res, Equal, 1); in LowerAtomicCmpXchgInst()
|
| D | CorrelatedValuePropagation.cpp | 509 Value *NewI = B.CreateInsertValue(Struct, NewOp, 0); in processOverflowIntrinsic()
|
| D | SROA.cpp | 3367 Agg = IRB.CreateInsertValue(Agg, Load, Indices, Name + ".insert"); in emitFunc()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
| D | AMDGPURewriteOutArguments.cpp | 395 NewRetVal = B.CreateInsertValue(NewRetVal, RetVal, RetIdx++); in runOnFunction() 419 Val = B.CreateInsertValue(UndefValue::get(EltTy), Val, 0); in runOnFunction() 422 NewRetVal = B.CreateInsertValue(NewRetVal, Val, RetIdx++); in runOnFunction()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
| D | AtomicExpandPass.cpp | 929 Res = Builder.CreateInsertValue(Res, FinalOldVal, 0); in expandPartwordCmpXchg() 930 Res = Builder.CreateInsertValue(Res, Success, 1); in expandPartwordCmpXchg() 994 Res = Builder.CreateInsertValue(Res, FinalOldVal, 0); in expandAtomicCmpXchgToMaskedIntrinsic() 997 Res = Builder.CreateInsertValue(Res, Success, 1); in expandAtomicCmpXchgToMaskedIntrinsic() 1084 Res = Builder.CreateInsertValue(Res, OldVal, 0); in convertCmpXchgToIntegerType() 1085 Res = Builder.CreateInsertValue(Res, Succ, 1); in convertCmpXchgToIntegerType() 1307 Res = Builder.CreateInsertValue(UndefValue::get(CI->getType()), Loaded, 0); in expandAtomicCmpXchg() 1308 Res = Builder.CreateInsertValue(Res, Success, 1); in expandAtomicCmpXchg() 1793 V = Builder.CreateInsertValue(V, ExpectedOut, 0); in expandAtomicOpToLibcall() 1794 V = Builder.CreateInsertValue(V, Result, 1); in expandAtomicOpToLibcall()
|
| D | SjLjEHPrepare.cpp | 163 LPadVal = Builder.CreateInsertValue(LPadVal, ExnVal, 0, "lpad.val"); in substituteLPadValues() 164 LPadVal = Builder.CreateInsertValue(LPadVal, SelVal, 1, "lpad.val"); in substituteLPadValues()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
| D | NVPTXGenericToNVVM.cpp | 227 Builder.CreateInsertValue(NewValue, NewOperands[i], makeArrayRef(i)); in remapConstantVectorOrConstantAggregate() 282 return Builder.CreateInsertValue(NewOperands[0], NewOperands[1], in remapConstantExpr()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
| D | CoroSplit.cpp | 208 ReturnValue = Builder.CreateInsertValue(UndefValue::get(RetStructTy), in replaceFallthroughCoroEnd() 453 Agg = Builder.CreateInsertValue(Agg, Args[I], I); in replaceRetconSuspendUses() 1306 RetV = Builder.CreateInsertValue(RetV, CastedContinuation, 0); in splitRetconCoroutine() 1308 RetV = Builder.CreateInsertValue(RetV, ReturnPHIs[I], I); in splitRetconCoroutine()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
| D | InstCombineLoadStoreAlloca.cpp | 666 return IC.replaceInstUsesWith(LI, IC.Builder.CreateInsertValue( in unpackLoadToAggregate() 700 V = IC.Builder.CreateInsertValue(V, L, i); in unpackLoadToAggregate() 715 return IC.replaceInstUsesWith(LI, IC.Builder.CreateInsertValue( in unpackLoadToAggregate() 750 V = IC.Builder.CreateInsertValue(V, L, i); in unpackLoadToAggregate()
|
| D | InstCombineCalls.cpp | 666 Res = Builder.CreateInsertValue(Res, UAddOV, 0); in simplifyX86addcarry() 667 return Builder.CreateInsertValue(Res, UAddResult, 1); in simplifyX86addcarry()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
| D | ConstantFolder.h | 272 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue() function
|
| D | NoFolder.h | 337 Instruction *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue() function
|
| D | IRBuilder.h | 966 V = CreateInsertValue(V, retVals[i], i, "mrv"); in CreateAggregateRet() 2570 Value *CreateInsertValue(Value *Agg, Value *Val, 2575 return Insert(Folder.CreateInsertValue(AggC, ValC, Idxs), Name);
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
| D | ThreadSanitizer.cpp | 705 IRB.CreateInsertValue(UndefValue::get(CASI->getType()), OldVal, 0); in instrumentAtomic() 706 Res = IRB.CreateInsertValue(Res, Success, 1); in instrumentAtomic()
|
| D | DataFlowSanitizer.cpp | 1529 IRB.CreateInsertValue(UndefValue::get(RT), RI.getReturnValue(), 0); in visitReturnInst() 1531 IRB.CreateInsertValue(InsVal, DFSF.getShadow(RI.getReturnValue()), 1); in visitReturnInst()
|
| D | MemorySanitizer.cpp | 3645 Value *Res = IRB.CreateInsertValue(AggShadow, InsShadow, I.getIndices()); in visitInsertValueInst()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
| D | TargetFolder.h | 264 Constant *CreateInsertValue(Constant *Agg, Constant *Val, in CreateInsertValue() function
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 862 Value *Pair0 = IRB.CreateInsertValue(Undef, FMCI, 0, "pair0"); in runEHOnFunction() 864 Value *Pair1 = IRB.CreateInsertValue(Pair0, TempRet0, 1, "pair1"); in runEHOnFunction()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
| D | MergeFunctions.cpp | 497 Builder.CreateInsertValue(Result, Element, makeArrayRef(I)); in createCast()
|
| D | WholeProgramDevirt.cpp | 1668 Pair = B.CreateInsertValue(Pair, LoadedValue, {0}); in scanTypeCheckedLoadUsers() 1669 Pair = B.CreateInsertValue(Pair, TypeTestCall, {1}); in scanTypeCheckedLoadUsers()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
| D | AArch64TargetTransformInfo.cpp | 818 Res = Builder.CreateInsertValue(Res, L, i); in getOrCreateResultFromMemIntrinsic()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
| D | Core.cpp | 3898 return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal), in LLVMBuildInsertValue()
|