| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ValueTypes.cpp | 195 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT() 366 return FixedVectorType::get(Type::getFloatTy(Context), 1); in getTypeForEVT() 368 return FixedVectorType::get(Type::getFloatTy(Context), 2); in getTypeForEVT() 370 return FixedVectorType::get(Type::getFloatTy(Context), 3); in getTypeForEVT() 372 return FixedVectorType::get(Type::getFloatTy(Context), 4); in getTypeForEVT() 374 return FixedVectorType::get(Type::getFloatTy(Context), 5); in getTypeForEVT() 376 return FixedVectorType::get(Type::getFloatTy(Context), 6); in getTypeForEVT() 378 return FixedVectorType::get(Type::getFloatTy(Context), 7); in getTypeForEVT() 380 return FixedVectorType::get(Type::getFloatTy(Context), 8); in getTypeForEVT() 382 return FixedVectorType::get(Type::getFloatTy(Context), 16); in getTypeForEVT() [all …]
|
| H A D | IntrinsicLowering.cpp | 209 Type::getFloatTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Type.h | 416 static Type *getFloatTy(LLVMContext &C); 439 return Type::getFloatTy(C); in getScalarTy() 453 Ty = Type::getFloatTy(C); in getFloatingPointTy()
|
| H A D | DerivedTypes.h | 462 EltTy = Type::getFloatTy(VTy->getContext()); in getTruncatedElementVectorType()
|
| H A D | IRBuilder.h | 546 Type *getFloatTy() { in getFloatTy() function 547 return Type::getFloatTy(Context); in getFloatTy()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Type.cpp | 44 case FloatTyID : return getFloatTy(C); in getPrimitiveType() 190 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() function in Type 220 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 | 47 if (Arg0Type != FixedVectorType::get(Type::getFloatTy(F->getContext()), 4)) in UpgradePTESTIntrinsic() 3650 {Builder.getFloatTy()}), in UpgradeIntrinsicCall() 3816 if (Arg0->getType() != FixedVectorType::get(Type::getFloatTy(C), 4)) in UpgradeIntrinsicCall()
|
| H A D | Function.cpp | 1207 case IITDescriptor::Float: return Type::getFloatTy(Context); in DecodeFixedType()
|
| H A D | Constants.cpp | 3093 auto *Ty = FixedVectorType::get(Type::getFloatTy(Context), Elts.size()); in get()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86LowerAMXIntrinsics.cpp | 434 FixedVectorType *V2F32Ty = FixedVectorType::get(B.getFloatTy(), 2); in createTileDPLoops() 436 Value *EltCF32 = B.CreateBitCast(EltC, B.getFloatTy()); in createTileDPLoops()
|
| H A D | X86TargetTransformInfo.cpp | 3972 FixedVectorType::get(Type::getFloatTy(ValVTy->getContext()), 4); in getArithmeticReductionCost() 4272 ShufTy = FixedVectorType::get(Type::getFloatTy(ValTy->getContext()), 4); in getMinMaxReductionCost()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUCodeGenPrepare.cpp | 903 Type *F32Ty = Builder.getFloatTy(); in expandDivRem24Impl() 933 Builder.getFloatTy()); in expandDivRem24Impl() 1059 Type *F32Ty = Builder.getFloatTy(); in expandDivRem32()
|
| H A D | AMDGPULibFunc.cpp | 890 case AMDGPULibFunc::F32: T = Type::getFloatTy(C); break; in getIntrinsicParamType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMLegalizerInfo.cpp | 421 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx); in legalizeCustom()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 319 Type::getFloatTy(Context), in pickScalarType()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 313 return llvm::Type::getFloatTy(VMContext); in getTypeForFormat()
|
| H A D | TargetInfo.cpp | 3410 return llvm::Type::getFloatTy(getVMContext()); in GetSSETypeAtOffset() 3417 return llvm::FixedVectorType::get(llvm::Type::getFloatTy(getVMContext()), in GetSSETypeAtOffset() 5620 llvm::Type::getFloatTy(getVMContext()), 4); in coerceIllegalVector() 7624 PassTy = llvm::Type::getFloatTy(getVMContext()); in classifyArgumentType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyRegStackify.cpp | 116 Type::getFloatTy(MF.getFunction().getContext()))); in convertImplicitDefToConstZero()
|
| H A D | WebAssemblyISelLowering.cpp | 427 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context); in LowerFPToInt()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 841 TYPEKEYWORD("float", Type::getFloatTy(Context)); in LexIdentifier()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1858 } else if (Ty == Type::getFloatTy(CPV->getContext())) { in bufferLEByte()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 82 return Type::getFloatTy(Ctx); in getFloatTypeForLLT() 785 FromSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx)); in libcall() 799 ToSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx), in libcall()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 1628 return Type::getFloatTy(CFP->getContext()); in shrinkFPConstant()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyLibCalls.cpp | 1317 Function *Fn = Intrinsic::getDeclaration(M, IID, B.getFloatTy()); in optimizeDoubleFP()
|