Home
last modified time | relevance | path

Searched refs:getFloatTy (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DValueTypes.cpp215 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT()
265 case MVT::v1f32: return VectorType::get(Type::getFloatTy(Context), 1); in getTypeForEVT()
266 case MVT::v2f32: return VectorType::get(Type::getFloatTy(Context), 2); in getTypeForEVT()
267 case MVT::v4f32: return VectorType::get(Type::getFloatTy(Context), 4); in getTypeForEVT()
268 case MVT::v8f32: return VectorType::get(Type::getFloatTy(Context), 8); in getTypeForEVT()
269 case MVT::v16f32: return VectorType::get(Type::getFloatTy(Context), 16); in getTypeForEVT()
H A DIntrinsicLowering.cpp45 Type::getFloatTy(M.getContext())); in EnsureFPIntrinsicsExist()
322 Type::getFloatTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DType.h398 static Type *getFloatTy(LLVMContext &C);
420 return Type::getFloatTy(C); in getScalarTy()
H A DIRBuilder.h370 Type *getFloatTy() { in getFloatTy() function
371 return Type::getFloatTy(Context); in getFloatTy()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DType.cpp43 case FloatTyID : return getFloatTy(C); in getPrimitiveType()
164 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() function in Type
189 return getFloatTy(C)->getPointerTo(AS); in getFloatPtrTy()
H A DMDBuilder.cpp34 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
H A DConstants.cpp790 Ty = Type::getFloatTy(Context); in get()
2556 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size()); in getFP()
2604 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); in get()
2627 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); in getFP()
H A DFunction.cpp911 case IITDescriptor::Float: return Type::getFloatTy(Context); in DecodeFixedType()
H A DAutoUpgrade.cpp43 if (Arg0Type != VectorType::get(Type::getFloatTy(F->getContext()), 4)) in UpgradePTESTIntrinsic()
3313 {Builder.getFloatTy()}), in UpgradeIntrinsicCall()
3428 if (Arg0->getType() != VectorType::get(Type::getFloatTy(C), 4)) in UpgradeIntrinsicCall()
H A DCore.cpp592 return (LLVMTypeRef) Type::getFloatTy(*unwrap(C)); in LLVMFloatTypeInContext()
/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp218 Type *HLTy = Size == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx); in libcall()
231 MI, MIRBuilder, Type::getDoubleTy(Ctx), Type::getFloatTy(Ctx)); in libcall()
243 MI, MIRBuilder, Type::getFloatTy(Ctx), Type::getDoubleTy(Ctx)); in libcall()
257 FromSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx)); in libcall()
271 ToSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx), in libcall()
1046 ZeroTy = Type::getFloatTy(Ctx); in lower()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp528 Type *F32Ty = Builder.getFloatTy(); in expandDivRem24()
628 Type *F32Ty = Builder.getFloatTy(); in expandDivRem32()
H A DAMDGPULibFunc.cpp895 case AMDGPULibFunc::F32: T = Type::getFloatTy(C); break; in getIntrinsicParamType()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.cpp405 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx); in legalizeCustom()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTypes.cpp300 return llvm::Type::getFloatTy(VMContext); in getTypeForFormat()
H A DTargetInfo.cpp3118 return llvm::Type::getFloatTy(getVMContext()); in GetSSETypeAtOffset()
3125 return llvm::VectorType::get(llvm::Type::getFloatTy(getVMContext()), 2); in GetSSETypeAtOffset()
5854 llvm::Type::getFloatTy(getVMContext()) : in classifyArgumentType()
6059 llvm::Type::getFloatTy(getVMContext()) : in classifyReturnType()
6757 PassTy = llvm::Type::getFloatTy(getVMContext()); in classifyArgumentType()
H A DCodeGenModule.cpp109 FloatTy = llvm::Type::getFloatTy(LLVMContext); in CodeGenModule()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp116 Type::getFloatTy(MF.getFunction().getContext()))); in ConvertImplicitDefToConstZero()
H A DWebAssemblyISelLowering.cpp325 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context); in LowerFPToInt()
/freebsd-12.1/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp317 Type::getFloatTy(Context), in pickScalarType()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp806 TYPEKEYWORD("float", Type::getFloatTy(Context)); in LexIdentifier()
/freebsd-12.1/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1896 } else if (Ty == Type::getFloatTy(CPV->getContext())) { in bufferLEByte()
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2337 Type *VTy = VectorType::get(Builder.getFloatTy(), in visitCallInst()
2358 Type *VTy = VectorType::get(Builder.getFloatTy(), in visitCallInst()
H A DInstCombineCasts.cpp1467 return Type::getFloatTy(CFP->getContext()); in shrinkFPConstant()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1080 Function *Fn = Intrinsic::getDeclaration(M, IID, B.getFloatTy()); in optimizeDoubleFP()

12