Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DNoFolder.h133 Instruction *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
134 return CastInst::CreateFPCast(C, DestTy); in CreateFPCast()
H A DIRBuilderFolder.h84 virtual Value *CreateFPCast(Constant *C, Type *DestTy) const = 0;
H A DConstantFolder.h196 Constant *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
H A DInstrTypes.h567 static CastInst *CreateFPCast(
575 static CastInst *CreateFPCast(
H A DIRBuilder.h2098 Value *CreateFPCast(Value *V, Type *DestTy, const Twine &Name = "") {
2102 return Insert(Folder.CreateFPCast(VC, DestTy), Name);
2103 return Insert(CastInst::CreateFPCast(V, DestTy), Name);
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DInstSimplifyFolder.h136 Value *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
139 return ConstFolder.CreateFPCast(C, DestTy); in CreateFPCast()
H A DTargetFolder.h205 Constant *CreateFPCast(Constant *C, Type *DestTy) const override { in CreateFPCast() function
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp110 return Builder.CreateFPCast(&V, Type::getHalfTy(V.getContext())); in convertTo16Bit()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp3548 CastInst *CastInst::CreateFPCast(Value *C, Type *Ty, in CreateFPCast() function in CastInst
3561 CastInst *CastInst::CreateFPCast(Value *C, Type *Ty, in CreateFPCast() function in CastInst
H A DCore.cpp3801 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name)); in LLVMBuildFPCast()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1862 return CastInst::CreateFPCast(ExactResult, Ty); in visitFPTrunc()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCall.cpp2679 return CGF.Builder.CreateFPCast(value, varType, "arg.unpromote"); in emitArgumentDemotion()
/openbsd-src/gnu/llvm/llvm/bindings/ocaml/llvm/
H A Dllvm.mli2485 See the method [llvm::LLVMBuilder::CreateFPCast]. *)