| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 199 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 D | IntrinsicLowering.cpp | 209 Type::getFloatTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
|
| H A D | ExpandLargeFpConvert.cpp | 552 Builder.CreateBitCast(Or35, Type::getFloatTy(Builder.getContext())); in expandIToFP()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Type.h | 454 static Type *getFloatTy(LLVMContext &C); 477 return Type::getFloatTy(C); in getScalarTy()
|
| H A D | DerivedTypes.h | 463 EltTy = Type::getFloatTy(VTy->getContext()); in getTruncatedElementVectorType()
|
| H A D | IRBuilder.h | 540 Type *getFloatTy() { in getFloatTy() function 541 return Type::getFloatTy(Context); in getFloatTy()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/ |
| H A D | DXILOpBuilder.cpp | 197 return Type::getFloatTy(Ctx); in getTypeFromParameterKind() 282 return Type::getFloatTy(Ctx); in getOverloadTy()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-isel-fuzzer/ |
| H A D | llvm-isel-fuzzer.cpp | 56 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createISelMutator()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Type.cpp | 41 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 D | MDBuilder.cpp | 33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
|
| H A D | AutoUpgrade.cpp | 48 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 D | Function.cpp | 1381 case IITDescriptor::Float: return Type::getFloatTy(Context); in DecodeFixedType()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-opt-fuzzer/ |
| H A D | llvm-opt-fuzzer.cpp | 46 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createOptMutator()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86LowerAMXIntrinsics.cpp | 435 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 D | AMDGPUCodeGenPrepare.cpp | 925 Type *F32Ty = Builder.getFloatTy(); in expandDivRem24Impl() 955 Builder.getFloatTy()); in expandDivRem24Impl() 1081 Type *F32Ty = Builder.getFloatTy(); in expandDivRem32()
|
| H A D | AMDGPULibFunc.cpp | 893 case AMDGPULibFunc::F32: T = Type::getFloatTy(C); break; in getIntrinsicParamType()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/ |
| H A D | ARMLegalizerInfo.cpp | 422 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx); in legalizeCustom()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVGlobalRegistry.cpp | 232 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 D | llvm-stress.cpp | 163 Type::getInt64Ty(Context), Type::getFloatTy(Context), in Modifier()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyRegStackify.cpp | 115 Type::getFloatTy(MF.getFunction().getContext()))); in convertImplicitDefToConstZero()
|
| H A D | WebAssemblyISelLowering.cpp | 456 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context); in LowerFPToInt()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 322 return llvm::Type::getFloatTy(VMContext); in getTypeForFormat()
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 800 TYPEKEYWORD("float", Type::getFloatTy(Context)); in LexIdentifier()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 1648 return Type::getFloatTy(CFP->getContext()); in shrinkFPConstant()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 88 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()
|