Home
last modified time | relevance | path

Searched refs:CreateExtractValue (Results 1 – 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPoisonChecking.cpp120 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generatePoisonChecksForBinOp()
125 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generatePoisonChecksForBinOp()
133 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generatePoisonChecksForBinOp()
138 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generatePoisonChecksForBinOp()
146 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generatePoisonChecksForBinOp()
151 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generatePoisonChecksForBinOp()
DMemorySanitizer.cpp1457 Value *ShadowPtr = IRB.CreateExtractValue(ShadowOriginPtrs, 0); in getShadowOriginPtrKernel()
1459 Value *OriginPtr = IRB.CreateExtractValue(ShadowOriginPtrs, 1); in getShadowOriginPtrKernel()
3632 Value *ResShadow = IRB.CreateExtractValue(AggShadow, I.getIndices()); in visitExtractValueInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAtomicExpandPass.cpp444 Value *Loaded = Builder.CreateExtractValue(Pair, 0, "loaded"); in expandAtomicLoadToCmpXchg()
517 Success = Builder.CreateExtractValue(Pair, 1, "success"); in createCmpXchgInstFun()
518 NewLoaded = Builder.CreateExtractValue(Pair, 0, "newloaded"); in createCmpXchgInstFun()
903 Value *OldVal = Builder.CreateExtractValue(NewCI, 0); in expandPartwordCmpXchg()
904 Value *Success = Builder.CreateExtractValue(NewCI, 1); in expandPartwordCmpXchg()
1078 Value *OldVal = Builder.CreateExtractValue(NewCI, 0); in convertCmpXchgToIntegerType()
1079 Value *Succ = Builder.CreateExtractValue(NewCI, 1); in convertCmpXchgToIntegerType()
1595 Success = Builder.CreateExtractValue(Pair, 1, "success"); in expandAtomicRMWToLibcall()
1596 NewLoaded = Builder.CreateExtractValue(Pair, 0, "newloaded"); in expandAtomicRMWToLibcall()
DCodeGenPrepare.cpp1227 Value *Math = Builder.CreateExtractValue(MathOV, 0, "math"); in replaceMathCmpWithIntrinsic()
1228 Value *OV = Builder.CreateExtractValue(MathOV, 1, "ov"); in replaceMathCmpWithIntrinsic()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPURewriteOutArguments.cpp460 Value *Val = B.CreateExtractValue(StubCall, RetIdx++); in runOnFunction()
470 B.CreateRet(B.CreateExtractValue(StubCall, 0)); in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp1195 V = IC.Builder.CreateExtractValue(V, 0); in unpackStoreToAggregate()
1226 auto *Val = IC.Builder.CreateExtractValue(V, i, EltName); in unpackStoreToAggregate()
1241 V = IC.Builder.CreateExtractValue(V, 0); in unpackStoreToAggregate()
1276 auto *Val = IC.Builder.CreateExtractValue(V, i, EltName); in unpackStoreToAggregate()
DInstCombineCompares.cpp1327 Value *Add = Builder.CreateExtractValue(Call, 0, "sadd.result"); in processUGT_ADDCST_ADD()
3689 replaceInstUsesWith(*Mul, Builder.CreateExtractValue(Call, 0, "umul.val")); in foldUnsignedMultiplicationOverflowCheck()
3691 Value *Res = Builder.CreateExtractValue(Call, 1, "umul.ov"); in foldUnsignedMultiplicationOverflowCheck()
4728 Value *Mul = Builder.CreateExtractValue(Call, 0, "umul.value"); in processUMulZExtIdiom()
4782 Value *Res = Builder.CreateExtractValue(Call, 1); in processUMulZExtIdiom()
DInstCombineCalls.cpp662 Value *UAddResult = Builder.CreateExtractValue(UAdd, 0); in simplifyX86addcarry()
663 Value *UAddOV = Builder.CreateZExt(Builder.CreateExtractValue(UAdd, 1), in simplifyX86addcarry()
DInstructionCombining.cpp2738 Value *NewEV = Builder.CreateExtractValue(IV->getAggregateOperand(), in visitExtractValueInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXGenericToNVVM.cpp279 return Builder.CreateExtractValue(NewOperands[0], C->getIndices()); in remapConstantExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantFolder.h267 Constant *CreateExtractValue(Constant *Agg, in CreateExtractValue() function
DNoFolder.h332 Instruction *CreateExtractValue(Constant *Agg, in CreateExtractValue() function
DIRBuilder.h2562 Value *CreateExtractValue(Value *Agg,
2566 return Insert(Folder.CreateExtractValue(AggC, Idxs), Name);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetFolder.h259 Constant *CreateExtractValue(Constant *Agg, in CreateExtractValue() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyLowerEmscriptenEHSjLj.cpp800 Value *Low = IRB.CreateExtractValue(Input, 0, "low"); in runEHOnFunction()
851 Value *EV = IRB.CreateExtractValue(Clause, makeArrayRef(J), "filter"); in runEHOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp493 Builder, Builder.CreateExtractValue(V, makeArrayRef(I)), in createCast()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1379 Real = B.CreateExtractValue(Op, 0, "real"); in optimizeCAbs()
1380 Imag = B.CreateExtractValue(Op, 1, "imag"); in optimizeCAbs()
2159 Sin = B.CreateExtractValue(SinCos, 0, "sinpi"); in insertSinCosCall()
2160 Cos = B.CreateExtractValue(SinCos, 1, "cospi"); in insertSinCosCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp3433 Value *Data = Builder.CreateExtractValue(NewCall, 1); in UpgradeIntrinsicCall()
3439 Value *CF = Builder.CreateExtractValue(NewCall, 0); in UpgradeIntrinsicCall()
3655 Value *Data = Builder.CreateExtractValue(NewCall, 1); in UpgradeIntrinsicCall()
3661 Value *TSC = Builder.CreateExtractValue(NewCall, 0); in UpgradeIntrinsicCall()
DCore.cpp3892 return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name)); in LLVMBuildExtractValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp2288 Value *MulV = Builder.CreateExtractValue(Mul, 0, "mul.result"); in generateOverflowCheck()
2289 Value *OfMul = Builder.CreateExtractValue(Mul, 1, "mul.overflow"); in generateOverflowCheck()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp3406 IRB.CreateExtractValue(Agg, Indices, Name + ".extract"); in emitFunc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp9207 Value *SubVec = Builder.CreateExtractValue(LdN, Index); in lowerInterleavedLoad()
13119 Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo"); in emitLoadLinked()
13120 Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi"); in emitLoadLinked()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactor.cpp1421 return V(jit->builder->CreateExtractValue( in createAtomicCompareExchange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp16913 Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo"); in emitLoadLinked()
16914 Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi"); in emitLoadLinked()
17139 Value *SubVec = Builder.CreateExtractValue(VldN, Index); in lowerInterleavedLoad()