/external/llvm/lib/Transforms/Utils/ |
D | BypassSlowDivision.cpp | 121 Value *ShortDivisorV = FastBuilder.CreateCast(Instruction::Trunc, Divisor, in insertFastDiv() 123 Value *ShortDividendV = FastBuilder.CreateCast(Instruction::Trunc, Dividend, in insertFastDiv() 131 Value *FastQuotientV = FastBuilder.CreateCast(Instruction::ZExt, in insertFastDiv() 134 Value *FastRemainderV = FastBuilder.CreateCast(Instruction::ZExt, in insertFastDiv()
|
/external/llvm/include/llvm/Support/ |
D | ConstantFolder.h | 155 Constant *CreateCast(Instruction::CastOps Op, Constant *C, in CreateCast() function 171 return CreateCast(Instruction::BitCast, C, DestTy); in CreateBitCast() 174 return CreateCast(Instruction::IntToPtr, C, DestTy); in CreateIntToPtr() 177 return CreateCast(Instruction::PtrToInt, C, DestTy); in CreatePtrToInt()
|
D | TargetFolder.h | 167 Constant *CreateCast(Instruction::CastOps Op, Constant *C, in CreateCast() function 190 return CreateCast(Instruction::BitCast, C, DestTy); in CreateBitCast() 193 return CreateCast(Instruction::IntToPtr, C, DestTy); in CreateIntToPtr() 196 return CreateCast(Instruction::PtrToInt, C, DestTy); in CreatePtrToInt()
|
D | NoFolder.h | 214 Instruction *CreateCast(Instruction::CastOps Op, Constant *C, in CreateCast() function 230 return CreateCast(Instruction::BitCast, C, DestTy); in CreateBitCast() 233 return CreateCast(Instruction::IntToPtr, C, DestTy); in CreateIntToPtr() 236 return CreateCast(Instruction::PtrToInt, C, DestTy); in CreatePtrToInt()
|
/external/llvm/include/llvm/IR/ |
D | IRBuilder.h | 1027 return CreateCast(Instruction::Trunc, V, DestTy, Name); 1030 return CreateCast(Instruction::ZExt, V, DestTy, Name); 1033 return CreateCast(Instruction::SExt, V, DestTy, Name); 1064 return CreateCast(Instruction::FPToUI, V, DestTy, Name); 1067 return CreateCast(Instruction::FPToSI, V, DestTy, Name); 1070 return CreateCast(Instruction::UIToFP, V, DestTy, Name); 1073 return CreateCast(Instruction::SIToFP, V, DestTy, Name); 1077 return CreateCast(Instruction::FPTrunc, V, DestTy, Name); 1080 return CreateCast(Instruction::FPExt, V, DestTy, Name); 1084 return CreateCast(Instruction::PtrToInt, V, DestTy, Name); [all …]
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXGenericToNVVM.cpp | 357 return Builder.CreateCast(Instruction::CastOps(C->getOpcode()), in remapConstantExpr()
|
/external/clang/include/clang/Sema/ |
D | Initialization.h | 486 static InitializationKind CreateCast(SourceRange TypeRange) { in CreateCast() function
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 526 NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy, in InstCombineStoreToCast()
|
D | InstructionCombining.cpp | 552 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType()); in FoldOperationIntoSelectOperand() 742 InV = Builder->CreateCast(CI->getOpcode(), in FoldOpIntoPhi()
|
D | InstCombineCalls.cpp | 1177 Args.push_back(Builder->CreateCast(opcode, *AI, PTy)); in transformConstExprCastCall()
|
/external/clang/lib/Sema/ |
D | SemaCast.cpp | 336 : InitializationKind::CreateCast(/*type range?*/ range); in tryDiagnoseOverloadedCast() 1439 : InitializationKind::CreateCast(OpRange); in TryStaticImplicitCast()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 2470 Value *ScalarCast = Builder.CreateCast(CI->getOpcode(), Induction, in vectorizeBlockInLoop() 2482 Entry[Part] = Builder.CreateCast(CI->getOpcode(), A[Part], DestTy); in vectorizeBlockInLoop()
|
D | SLPVectorizer.cpp | 1243 Value *V = Builder.CreateCast(CI->getOpcode(), InVec, VecTy); in vectorizeTree()
|
/external/llvm/lib/IR/ |
D | Core.cpp | 2290 return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val), in LLVMBuildCast()
|