Home
last modified time | relevance | path

Searched refs:CreateFPCast (Results 1 – 13 of 13) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DNoFolder.h241 Instruction *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
242 return CastInst::CreateFPCast(C, DestTy); in CreateFPCast()
H A DIRBuilderFolder.h105 virtual Value *CreateFPCast(Constant *C, Type *DestTy) const = 0;
H A DConstantFolder.h207 Constant *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
H A DInstrTypes.h571 static CastInst *CreateFPCast(
579 static CastInst *CreateFPCast(
H A DIRBuilder.h2156 Value *CreateFPCast(Value *V, Type *DestTy, const Twine &Name = "") {
2160 return Insert(Folder.CreateFPCast(VC, DestTy), Name);
2161 return Insert(CastInst::CreateFPCast(V, DestTy), Name);
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetFolder.h193 Constant *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp96 return Builder.CreateFPCast(&V, Type::getHalfTy(V.getContext())); in convertTo16Bit()
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp3140 CastInst *CastInst::CreateFPCast(Value *C, Type *Ty, in CreateFPCast() function in CastInst
3153 CastInst *CastInst::CreateFPCast(Value *C, Type *Ty, in CreateFPCast() function in CastInst
H A DCore.cpp3874 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name)); in LLVMBuildFPCast()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1768 return CastInst::CreateFPCast(ExactResult, Ty); in visitFPTrunc()
/netbsd/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go1805 func (b Builder) CreateFPCast(val Value, t Type, name string) (v Value) { func
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp2545 return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote"); in emitArgumentDemotion()
/netbsd/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2543 See the method [llvm::LLVMBuilder::CreateFPCast]. *)