/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 340 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall() 351 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall() 363 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall() 368 Ops[1] = Builder.CreateIntCast(CI->getArgOperand(1), in LowerIntrinsicCall()
|
D | SafeStack.cpp | 650 ArraySize = IRB.CreateIntCast(ArraySize, IntPtrTy, false); in moveDynamicAllocasToUnsafeStack()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/Utils/ |
D | Local.h | 83 Op = Builder->CreateIntCast(Op, IntIdxTy, true, Op->getName()+".c");
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 607 IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false), in instrumentMemIntrinsic() 608 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)}); in instrumentMemIntrinsic() 615 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)}); in instrumentMemIntrinsic() 673 IRB.CreateIntCast(RMWI->getValOperand(), Ty, false), in instrumentAtomic()
|
D | SanitizerCoverage.cpp | 760 Cond = IRB.CreateIntCast(Cond, Int64Ty, false); in InjectTraceForSwitch() 798 {IRB.CreateIntCast(A1, Ty, true)}); in InjectTraceForDiv() 809 {IRB.CreateIntCast(*I, IntptrTy, true)}); in InjectTraceForGep() 842 IRB.CreateCall(CallbackFunc, {IRB.CreateIntCast(A0, Ty, true), in InjectTraceForCmp() 843 IRB.CreateIntCast(A1, Ty, true)}); in InjectTraceForCmp()
|
D | MemorySanitizer.cpp | 1085 Origin = IRB.CreateIntCast(Origin, MS.IntptrTy, /* isSigned */ false); in originToIntptr() 1911 setShadow(&I, IRB.CreateIntCast(getShadow(&I, 0), getShadowTy(&I), false, in visitPtrToIntInst() 1918 setShadow(&I, IRB.CreateIntCast(getShadow(&I, 0), getShadowTy(&I), false, in visitIntToPtrInst() 1947 V1 = IRB.CreateIntCast(V1, S1->getType(), false); in visitAnd() 1948 V2 = IRB.CreateIntCast(V2, S2->getType(), false); in visitAnd() 1969 V1 = IRB.CreateIntCast(V1, S1->getType(), false); in visitOr() 1970 V2 = IRB.CreateIntCast(V2, S2->getType(), false); in visitOr() 2089 return IRB.CreateIntCast(V, dstTy, Signed); in CreateShadowCast() 2092 return IRB.CreateIntCast(V, dstTy, Signed); in CreateShadowCast() 2095 IRB.CreateIntCast(V1, Type::getIntNTy(*MS.C, dstSizeInBits), Signed); in CreateShadowCast() [all …]
|
D | HWAddressSanitizer.cpp | 705 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)}); in instrumentMemIntrinsic() 710 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false), in instrumentMemIntrinsic() 711 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)}); in instrumentMemIntrinsic()
|
D | AddressSanitizer.cpp | 1309 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)}); in instrumentMemIntrinsic() 1314 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false), in instrumentMemIntrinsic() 1315 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)}); in instrumentMemIntrinsic() 1652 IRB.CreateIntCast(LastAccessedByte, ShadowValue->getType(), false); in createSlowPathCmp() 3273 IRB.CreateMul(IRB.CreateIntCast(AI->getArraySize(), IntptrTy, false), in handleDynamicAllocaCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/AggressiveInstCombine/ |
D | TruncInstCombine.cpp | 325 Res = Builder.CreateIntCast(I->getOperand(0), Ty, in ReduceExpressionDag() 367 Res = Builder.CreateIntCast(Res, DstTy, false); in ReduceExpressionDag()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAtomicOptimizer.cpp | 471 Mbcnt = B.CreateIntCast(Mbcnt, Ty, false); in optimizeAtomic() 525 Value *const Ctpop = B.CreateIntCast( in optimizeAtomic() 545 Value *const Ctpop = B.CreateIntCast( in optimizeAtomic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ConstantFolder.h | 198 Constant *CreateIntCast(Constant *C, Type *DestTy, in CreateIntCast() function
|
D | NoFolder.h | 262 Instruction *CreateIntCast(Constant *C, Type *DestTy, in CreateIntCast() function
|
D | IRBuilder.h | 2170 Value *CreateIntCast(Value *V, Type *DestTy, bool isSigned, 2175 return Insert(Folder.CreateIntCast(VC, DestTy, isSigned), Name); 2240 Value *CreateIntCast(Value *, Type *, const char *) = delete; 2809 OffsetValue = CreateIntCast(OffsetValue, IntPtrTy, /*isSigned*/ true, in CreateAlignmentAssumptionHelper() 2871 Alignment = CreateIntCast(Alignment, IntPtrTy, /*isSigned*/ false,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 176 Constant *CreateIntCast(Constant *C, Type *DestTy, in CreateIntCast() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BuildLibCalls.cpp | 1140 B.CreateIntCast(Char, in emitPutChar() 1180 Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/true, in emitFPutC() 1201 Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/ true, "chari"); in emitFPutCUnlocked()
|
D | SimplifyLibCalls.cpp | 1242 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(), false); in optimizeMemSet() 2258 V = B.CreateIntCast(V, B.getInt32Ty(), false); in optimizeFFS() 2273 return B.CreateIntCast(V, CI->getType(), false); in optimizeFls() 2522 return B.CreateIntCast(Len, CI->getType(), false); in optimizeSPrintFString() 3311 Value *Val = B.CreateIntCast(CI->getArgOperand(1), B.getInt8Ty(), false); in optimizeMemSetChk()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Frontend/OpenMP/ |
D | OMPIRBuilder.cpp | 319 Builder.CreateIntCast(NumThreads, Int32, /*isSigned*/ false)}; in CreateParallel()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
D | Coroutines.cpp | 508 Size = Builder.CreateIntCast(Size, in emitAlloc()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonLoopIdiomRecognition.cpp | 1388 Value *CV = IRB.CreateIntCast(V, Ty, false); in convertShiftsToLeft() 1560 R = B.CreateXor(R, B.CreateIntCast(P0, R->getType(), false)); in generate() 1902 PM = IRBuilder<>(&*At).CreateIntCast(PM, PV.Res->getType(), false); in recognize()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 866 In = Builder.CreateIntCast(In, Zext.getType(), false /*ZExt*/); in transformZExtICmp() 919 Value *IntCast = Builder.CreateIntCast(In, Zext.getType(), false); in transformZExtICmp() 1243 In = Builder.CreateIntCast(In, CI.getType(), true /*SExt*/); in transformSExtICmp()
|
D | InstCombineLoadStoreAlloca.cpp | 232 Value *V = IC.Builder.CreateIntCast(AI.getArraySize(), IntPtrTy, false); in simplifyAllocaArraySize()
|
D | InstCombineAddSub.cpp | 1676 return Builder.CreateIntCast(Result, Ty, true); in OptimizePointerDifference()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactor.cpp | 1087 …auto i8Mask = jit->builder->CreateIntCast(V(mask), llvm::VectorType::get(i1Ty, numEls, false), fal… in createMaskedLoad() 1107 …auto i1Mask = jit->builder->CreateIntCast(V(mask), llvm::VectorType::get(i1Ty, numEls, false), fal… in createMaskedStore() 1160 …auto i1Mask = jit->builder->CreateIntCast(mask, llvm::VectorType::get(i1Ty, numEls, false), false)… in createGather() 1228 …auto i1Mask = jit->builder->CreateIntCast(mask, llvm::VectorType::get(i1Ty, numEls, false), false)… in createScatter()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Core.cpp | 3803 unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy), IsSigned, Name)); in LLVMBuildIntCast2() 3808 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy), in LLVMBuildIntCast()
|
D | AutoUpgrade.cpp | 1145 Amt = Builder.CreateIntCast(Amt, Ty->getScalarType(), false); in upgradeX86Rotate() 1215 Amt = Builder.CreateIntCast(Amt, Ty->getScalarType(), false); in upgradeX86ConcatShift()
|