| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ReplaceConstant.cpp | 65 Builder.CreateCast((Instruction::CastOps)OpCode, CE->getOperand(0),
|
| Core.cpp | 3850 return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val),
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| ConstantFolder.h | 188 Constant *CreateCast(Instruction::CastOps Op, Constant *C, 212 return CreateCast(Instruction::BitCast, C, DestTy); 216 return CreateCast(Instruction::IntToPtr, C, DestTy); 220 return CreateCast(Instruction::PtrToInt, C, DestTy);
|
| NoFolder.h | 222 Instruction *CreateCast(Instruction::CastOps Op, Constant *C, 246 return CreateCast(Instruction::BitCast, C, DestTy); 250 return CreateCast(Instruction::IntToPtr, C, DestTy); 254 return CreateCast(Instruction::PtrToInt, C, DestTy);
|
| IRBuilderFolder.h | 98 virtual Value *CreateCast(Instruction::CastOps Op, Constant *C,
|
| IRBuilder.h | 1971 return CreateCast(Instruction::Trunc, V, DestTy, Name); 1975 return CreateCast(Instruction::ZExt, V, DestTy, Name); 1979 return CreateCast(Instruction::SExt, V, DestTy, Name); 2016 return CreateCast(Instruction::FPToUI, V, DestTy, Name); 2023 return CreateCast(Instruction::FPToSI, V, DestTy, Name); 2030 return CreateCast(Instruction::UIToFP, V, DestTy, Name); 2037 return CreateCast(Instruction::SIToFP, V, DestTy, Name); 2046 return CreateCast(Instruction::FPTrunc, V, DestTy, Name); 2053 return CreateCast(Instruction::FPExt, V, DestTy, Name); 2058 return CreateCast(Instruction::PtrToInt, V, DestTy, Name) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| TargetFolder.h | 176 Constant *CreateCast(Instruction::CastOps Op, Constant *C, 199 return CreateCast(Instruction::BitCast, C, DestTy); 202 return CreateCast(Instruction::IntToPtr, C, DestTy); 205 return CreateCast(Instruction::PtrToInt, C, DestTy);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| BypassSlowDivision.cpp | 295 Builder.CreateCast(Instruction::Trunc, Divisor, BypassType); 297 Builder.CreateCast(Instruction::Trunc, Dividend, BypassType); 303 Builder.CreateCast(Instruction::ZExt, ShortQV, getSlowType()); 305 Builder.CreateCast(Instruction::ZExt, ShortRV, getSlowType());
|
| ScalarEvolutionExpander.cpp | 81 Ret = Builder.CreateCast(Op, V, Ty, V->getName());
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXGenericToNVVM.cpp | 306 return Builder.CreateCast(Instruction::CastOps(C->getOpcode()),
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Initialization.h | 642 static InitializationKind CreateCast(SourceRange TypeRange) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| Scalarizer.cpp | 688 Res[I] = Builder.CreateCast(CI.getOpcode(), Op0[I], VT->getElementType(),
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| LoopVectorize.cpp | 2271 Start = Builder.CreateCast(Instruction::Trunc, Start, TruncType); 2425 : Builder.CreateCast(Instruction::SIToFP, Induction, 3520 Value *CRD = B.CreateCast(CastOp, VectorTripCount, StepType, "cast.crd"); 3531 B.CreateCast(CastOp, AdditionalBypass.second, StepType, "cast.crd"); 3756 ? B.CreateCast(Instruction::SIToFP, CountMinusOne, 5036 Value *Cast = Builder.CreateCast(CI->getOpcode(), A, DestTy);
|
| SLPVectorizer.cpp | 5046 Value *V = Builder.CreateCast(CI->getOpcode(), InVec, VecTy); 5367 V0 = Builder.CreateCast( 5369 V1 = Builder.CreateCast(
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaCast.cpp | 436 : InitializationKind::CreateCast(/*type range?*/ range); 1838 : InitializationKind::CreateCast(OpRange);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| InstructionCombining.cpp | 933 return Builder.CreateCast(Cast->getOpcode(), SO, I.getType()); 1196 InV = Builder.CreateCast(CI->getOpcode(), PN->getIncomingValue(i),
|
| InstCombineCompares.cpp | 4438 X = Builder.CreateCast(CastOp0->getOpcode(), X, YTy); 4440 Y = Builder.CreateCast(CastOp0->getOpcode(), Y, XTy);
|
| InstCombineCalls.cpp | 2662 NewArg = Builder.CreateCast(opcode, *AI, PTy);
|
| InstCombineCasts.cpp | 720 Value *NarrowOp = Builder.CreateCast(Opcode, ScalarOp, DestScalarTy);
|
| InstCombineSelect.cpp | 2968 Value *NewCast = Builder.CreateCast(CastOp, NewSI, SelType);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| AtomicExpandPass.cpp | 994 Builder.CreateCast(CastOp, AI->getValOperand(), PMV.WordType),
|
| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| ir.go | 1787 func (b Builder) CreateCast(val Value, op Opcode, t Type, name string) (v Value) {
|