Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DValueTypes.cpp199 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT()
390 return FixedVectorType::get(Type::getFloatTy(Context), 1); in getTypeForEVT()
392 return FixedVectorType::get(Type::getFloatTy(Context), 2); in getTypeForEVT()
394 return FixedVectorType::get(Type::getFloatTy(Context), 3); in getTypeForEVT()
396 return FixedVectorType::get(Type::getFloatTy(Context), 4); in getTypeForEVT()
398 return FixedVectorType::get(Type::getFloatTy(Context), 5); in getTypeForEVT()
400 return FixedVectorType::get(Type::getFloatTy(Context), 6); in getTypeForEVT()
402 return FixedVectorType::get(Type::getFloatTy(Context), 7); in getTypeForEVT()
404 return FixedVectorType::get(Type::getFloatTy(Context), 8); in getTypeForEVT()
406 return FixedVectorType::get(Type::getFloatTy(Context), 9); in getTypeForEVT()
[all …]
H A DIntrinsicLowering.cpp209 Type::getFloatTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
H A DExpandLargeFpConvert.cpp552 Builder.CreateBitCast(Or35, Type::getFloatTy(Builder.getContext())); in expandIToFP()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DType.h454 static Type *getFloatTy(LLVMContext &C);
477 return Type::getFloatTy(C); in getScalarTy()
H A DDerivedTypes.h463 EltTy = Type::getFloatTy(VTy->getContext()); in getTruncatedElementVectorType()
H A DIRBuilder.h540 Type *getFloatTy() { in getFloatTy() function
541 return Type::getFloatTy(Context); in getFloatTy()
/openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/
H A DDXILOpBuilder.cpp197 return Type::getFloatTy(Ctx); in getTypeFromParameterKind()
282 return Type::getFloatTy(Ctx); in getOverloadTy()
/openbsd-src/gnu/llvm/llvm/tools/llvm-isel-fuzzer/
H A Dllvm-isel-fuzzer.cpp56 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createISelMutator()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DType.cpp41 case FloatTyID : return getFloatTy(C); in getPrimitiveType()
90 Ty = Type::getFloatTy(C); in getFloatingPointTy()
228 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() function in Type
258 return getFloatTy(C)->getPointerTo(AS); in getFloatPtrTy()
H A DMDBuilder.cpp33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
H A DAutoUpgrade.cpp48 if (Arg0Type != FixedVectorType::get(Type::getFloatTy(F->getContext()), 4)) in UpgradePTESTIntrinsic()
3948 {Builder.getFloatTy()}), in UpgradeIntrinsicCall()
4230 if (Arg0->getType() != FixedVectorType::get(Type::getFloatTy(C), 4)) in UpgradeIntrinsicCall()
H A DFunction.cpp1381 case IITDescriptor::Float: return Type::getFloatTy(Context); in DecodeFixedType()
/openbsd-src/gnu/llvm/llvm/tools/llvm-opt-fuzzer/
H A Dllvm-opt-fuzzer.cpp46 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createOptMutator()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86LowerAMXIntrinsics.cpp435 FixedVectorType *V2F32Ty = FixedVectorType::get(B.getFloatTy(), 2); in createTileDPLoops()
437 Value *EltCF32 = B.CreateBitCast(EltC, B.getFloatTy()); in createTileDPLoops()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp925 Type *F32Ty = Builder.getFloatTy(); in expandDivRem24Impl()
955 Builder.getFloatTy()); in expandDivRem24Impl()
1081 Type *F32Ty = Builder.getFloatTy(); in expandDivRem32()
H A DAMDGPULibFunc.cpp893 case AMDGPULibFunc::F32: T = Type::getFloatTy(C); break; in getIntrinsicParamType()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.cpp422 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx); in legalizeCustom()
/openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVGlobalRegistry.cpp232 LLVMFPTy = IntegerType::getFloatTy(MF.getFunction().getContext()); in buildConstantFP()
932 Type = Type::getFloatTy(Ctx); in getOrCreateSPIRVTypeByName()
/openbsd-src/gnu/llvm/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp163 Type::getInt64Ty(Context), Type::getFloatTy(Context), in Modifier()
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp115 Type::getFloatTy(MF.getFunction().getContext()))); in convertImplicitDefToConstZero()
H A DWebAssemblyISelLowering.cpp456 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context); in LowerFPToInt()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenTypes.cpp322 return llvm::Type::getFloatTy(VMContext); in getTypeForFormat()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLLexer.cpp800 TYPEKEYWORD("float", Type::getFloatTy(Context)); in LexIdentifier()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1648 return Type::getFloatTy(CFP->getContext()); in shrinkFPConstant()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp88 return Type::getFloatTy(Ctx); in getFloatTypeForLLT()
868 FromSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx)); in libcall()
882 ToSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx), in libcall()

12