Searched defs:CreateCast (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DTargetFolder.h167 Constant *CreateCast(Instruction::CastOps Op, Constant *C, function in class:llvm::TargetFolder
190 return CreateCast(Instruction::BitCast, C, DestTy);
193 return CreateCast(Instruction::IntToPtr, C, DestTy);
196 return CreateCast(Instruction::PtrToInt, C, DestTy);
/external/llvm/include/llvm/IR/
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 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);
H A DIRBuilder.h1095 return CreateCast(Instruction::Trunc, V, DestTy, Name);
1098 return CreateCast(Instruction::ZExt, V, DestTy, Name);
1101 return CreateCast(Instruction::SExt, V, DestTy, Name);
1132 return CreateCast(Instruction::FPToUI, V, DestTy, Name);
1135 return CreateCast(Instruction::FPToSI, V, DestTy, Name);
1138 return CreateCast(Instruction::UIToFP, V, DestTy, Name);
1141 return CreateCast(Instruction::SIToFP, V, DestTy, Name);
1145 return CreateCast(Instruction::FPTrunc, V, DestTy, Name);
1148 return CreateCast(Instruction::FPExt, V, DestTy, Name);
1152 return CreateCast(Instructio
1190 Value *CreateCast(Instruction::CastOps Op, Value *V, Type *DestTy, function in class:llvm::IRBuilder
[all...]
/external/clang/include/clang/Sema/
H A DInitialization.h503 static InitializationKind CreateCast(SourceRange TypeRange) { function in class:clang::InitializationKind

Completed in 3514 milliseconds