| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 199 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT() 376 return FixedVectorType::get(Type::getFloatTy(Context), 1); in getTypeForEVT() 378 return FixedVectorType::get(Type::getFloatTy(Context), 2); in getTypeForEVT() 380 return FixedVectorType::get(Type::getFloatTy(Context), 3); in getTypeForEVT() 382 return FixedVectorType::get(Type::getFloatTy(Context), 4); in getTypeForEVT() 384 return FixedVectorType::get(Type::getFloatTy(Context), 5); in getTypeForEVT() 386 return FixedVectorType::get(Type::getFloatTy(Context), 6); in getTypeForEVT() 388 return FixedVectorType::get(Type::getFloatTy(Context), 7); in getTypeForEVT() 390 return FixedVectorType::get(Type::getFloatTy(Context), 8); in getTypeForEVT() 392 return FixedVectorType::get(Type::getFloatTy(Context), 16); in getTypeForEVT() [all …]
|
| H A D | IntrinsicLowering.cpp | 209 Type::getFloatTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | VectorBuilderTest.cpp | 59 FixedVectorType::get(Type::getFloatTy(Context), VectorNumElements); in TEST_F() 109 FixedVectorType::get(Type::getFloatTy(Context), VectorNumElements); in TEST_F() 155 FixedVectorType::get(Type::getFloatTy(Context), VectorNumElements); in TEST_F() 190 FixedVectorType::get(Type::getFloatTy(Context), VectorNumElements); in TEST_F() 223 FixedVectorType::get(Type::getFloatTy(Context), VectorNumElements); in TEST_F()
|
| H A D | DataLayoutTest.cpp | 98 Type *const FloatTy = Type::getFloatTy(Context); in TEST()
|
| H A D | ConstantsTest.cpp | 211 Type *FloatTy = Type::getFloatTy(Context); in TEST() 437 Type::getFloatTy(Context), Type::getDoubleTy(Context)}) { in TEST() 464 Type::getFloatTy(Context), Type::getDoubleTy(Context)}) { in TEST() 670 Type *FltTy = Type::getFloatTy(Context); in TEST() 749 Type *FloatTy = Type::getFloatTy(Context); in TEST()
|
| H A D | InstructionsTest.cpp | 203 Type *FloatTy = Type::getFloatTy(C); in TEST() 402 Type *FloatTy = Type::getFloatTy(C); in TEST() 578 {Type::getFloatTy(Context), Type::getFloatTy(Context), in TEST() 603 Intrinsic::ceil, {Type::getFloatTy(Context)}, {Arg0})); in TEST() 1445 Type *FTy = Type::getFloatTy(C); in TEST() 1480 Type *FltTy = Type::getFloatTy(Context); in TEST()
|
| H A D | PatternMatch.cpp | 604 Type *FltTy = IRB.getFloatTy(); in TEST_F() 654 Type *FltTy = IRB.getFloatTy(); in TEST_F() 705 Type *FltTy = IRB.getFloatTy(); in TEST_F() 755 Type *FltTy = IRB.getFloatTy(); in TEST_F() 1121 Type *ScalarTy = IRB.getFloatTy(); in TEST_F() 1243 Type *FltTy = IRB.getFloatTy(); in TEST_F() 1501 Type *F32Ty = Type::getFloatTy(Ctx); in TEST_F()
|
| H A D | IRBuilderTest.cpp | 37 GV = new GlobalVariable(*M, Type::getFloatTy(Ctx), true, in SetUp() 302 V = Builder.CreateFPTrunc(VDouble, Type::getFloatTy(Ctx)); in TEST_F() 668 auto CalleeTy = FunctionType::get(Type::getFloatTy(Ctx), in TEST_F()
|
| /llvm-project-15.0.7/llvm/unittests/FuzzMutate/ |
| H A D | StrategiesTest.cpp | 31 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createInjectorMutator() 44 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createDeleterMutator() 55 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createInstModifierMutator()
|
| H A D | OperationsTest.cpp | 89 Constant *f32 = ConstantFP::get(Type::getFloatTy(Ctx), 0.0); in TEST()
|
| /llvm-project-15.0.7/llvm/unittests/Analysis/ |
| H A D | ValueLatticeTest.cpp | 37 auto FloatTy = Type::getFloatTy(Context); in TEST_F() 148 auto *FloatTy = IntegerType::getFloatTy(Context); in TEST_F() 186 auto *FloatTy = IntegerType::getFloatTy(Context); in TEST_F()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | Type.h | 425 static Type *getFloatTy(LLVMContext &C); 448 return Type::getFloatTy(C); in getScalarTy()
|
| H A D | DerivedTypes.h | 463 EltTy = Type::getFloatTy(VTy->getContext()); in getTruncatedElementVectorType()
|
| /llvm-project-15.0.7/llvm/lib/Target/DirectX/ |
| H A D | DXILOpBuilder.cpp | 197 return Type::getFloatTy(Ctx); in getTypeFromParameterKind() 282 return Type::getFloatTy(Ctx); in getOverloadTy()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Type.cpp | 42 case FloatTyID : return getFloatTy(C); in getPrimitiveType() 91 Ty = Type::getFloatTy(C); in getFloatingPointTy() 226 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() function in Type 256 return getFloatTy(C)->getPointerTo(AS); in getFloatPtrTy()
|
| H A D | MDBuilder.cpp | 33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
|
| /llvm-project-15.0.7/llvm/tools/llvm-isel-fuzzer/ |
| H A D | llvm-isel-fuzzer.cpp | 56 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createISelMutator()
|
| /llvm-project-15.0.7/llvm/tools/llvm-opt-fuzzer/ |
| H A D | llvm-opt-fuzzer.cpp | 46 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createOptMutator()
|
| /llvm-project-15.0.7/mlir/lib/Target/LLVMIR/ |
| H A D | TypeToLLVM.cpp | 48 [this](Float32Type) { return llvm::Type::getFloatTy(context); }) in translateType()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/unittests/Frontend/ |
| H A D | OpenMPIRBuilderTest.cpp | 3076 Type *Float32 = Type::getFloatTy(M->getContext()); in TEST_F() 3171 Type *Float32 = Type::getFloatTy(Ctx); in TEST_F() 3315 Type *FloatTy = Type::getFloatTy(M->getContext()); in TEST_F() 3321 Constant *ConstVal = ConstantFP::get(Type::getFloatTy(Ctx), 1.0); in TEST_F() 3943 Type *SumType = Builder.getFloatTy(); in TEST_F() 3972 Builder.CreateUIToFP(TID, Builder.getFloatTy(), "sum.local"); in TEST_F() 3993 SumPrivatized = Builder.CreateAlloca(Builder.getFloatTy()); in TEST_F() 4005 Builder.CreateStore(ConstantFP::get(Builder.getFloatTy(), 0.0), in TEST_F() 4185 Type *SumType = Builder.getFloatTy(); in TEST_F() 4211 Builder.CreateUIToFP(TID, Builder.getFloatTy(), "sum.local"); in TEST_F() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUCodeGenPrepare.cpp | 923 Type *F32Ty = Builder.getFloatTy(); in expandDivRem24Impl() 953 Builder.getFloatTy()); in expandDivRem24Impl() 1079 Type *F32Ty = Builder.getFloatTy(); in expandDivRem32()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMLegalizerInfo.cpp | 422 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx); in legalizeCustom()
|
| /llvm-project-15.0.7/polly/lib/Exchange/ |
| H A D | JSONExporter.cpp | 604 {"float", Type::getFloatTy(LLVMContext)}, in parseTextType()
|
| /llvm-project-15.0.7/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 160 Type::getInt64Ty(Context), Type::getFloatTy(Context), in Modifier()
|