Searched refs:CreateCast (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp121 Value *ShortDivisorV = FastBuilder.CreateCast(Instruction::Trunc, Divisor,
123 Value *ShortDividendV = FastBuilder.CreateCast(Instruction::Trunc, Dividend,
131 Value *FastQuotientV = FastBuilder.CreateCast(Instruction::ZExt,
134 Value *FastRemainderV = FastBuilder.CreateCast(Instruction::ZExt,
/external/llvm/include/llvm/Support/
H A DConstantFolder.h155 Constant *CreateCast(Instruction::CastOps Op, Constant *C, function in class:llvm::ConstantFolder
171 return CreateCast(Instruction::BitCast, C, DestTy);
174 return CreateCast(Instruction::IntToPtr, C, DestTy);
177 return CreateCast(Instruction::PtrToInt, C, DestTy);
H A DTargetFolder.h167 Constant *CreateCast(Instruction::CastOps Op, Constant *C, function in class:llvm::TargetFolder
183 return CreateCast(Instruction::BitCast, C, DestTy);
186 return CreateCast(Instruction::IntToPtr, C, DestTy);
189 return CreateCast(Instruction::PtrToInt, C, DestTy);
H A DNoFolder.h214 Instruction *CreateCast(Instruction::CastOps Op, Constant *C, function in class:llvm::NoFolder
230 return CreateCast(Instruction::BitCast, C, DestTy);
233 return CreateCast(Instruction::IntToPtr, C, DestTy);
236 return CreateCast(Instruction::PtrToInt, C, DestTy);
/external/llvm/include/llvm/
H A DIRBuilder.h965 return CreateCast(Instruction::Trunc, V, DestTy, Name);
968 return CreateCast(Instruction::ZExt, V, DestTy, Name);
971 return CreateCast(Instruction::SExt, V, DestTy, Name);
974 return CreateCast(Instruction::FPToUI, V, DestTy, Name);
977 return CreateCast(Instruction::FPToSI, V, DestTy, Name);
980 return CreateCast(Instruction::UIToFP, V, DestTy, Name);
983 return CreateCast(Instruction::SIToFP, V, DestTy, Name);
987 return CreateCast(Instruction::FPTrunc, V, DestTy, Name);
990 return CreateCast(Instruction::FPExt, V, DestTy, Name);
994 return CreateCast(Instructio
1028 Value *CreateCast(Instruction::CastOps Op, Value *V, Type *DestTy, function in class:llvm::IRBuilder
[all...]
/external/clang/include/clang/Sema/
H A DInitialization.h423 static InitializationKind CreateCast(SourceRange TypeRange) { function in class:clang::InitializationKind
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1135 Args.push_back(Builder->CreateCast(opcode, *AI, ParamTy));
1161 Args.push_back(Builder->CreateCast(opcode, *AI, PTy));
H A DInstCombineLoadStoreAlloca.cpp537 NewCast = IC.Builder->CreateCast(opcode, SIOp0, CastDstTy,
H A DInstructionCombining.cpp531 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType());
721 InV = Builder->CreateCast(CI->getOpcode(),
/external/clang/lib/Sema/
H A DSemaCast.cpp330 : InitializationKind::CreateCast(/*type range?*/ range);
1320 : InitializationKind::CreateCast(OpRange);
/external/llvm/lib/VMCore/
H A DCore.cpp2184 return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val),

Completed in 250 milliseconds