Home
last modified time | relevance | path

Searched refs:DoubleTy (Results 1 – 25 of 31) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypeCache.h39 llvm::Type *HalfTy, *BFloatTy, *FloatTy, *DoubleTy; member
H A DCGBuiltin.cpp6371 return llvm::FixedVectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
6385 return llvm::FixedVectorType::get(CGF->DoubleTy, (1 << IsQuad)); in GetFloatNeonType()
7762 Ty = DoubleTy; in EmitCommonNeonBuiltinExpr()
9123 Ty = DoubleTy; in EmitARMBuiltinExpr()
11711 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy; in EmitAArch64BuiltinExpr()
11853 auto *Ty = llvm::FixedVectorType::get(DoubleTy, 2); in EmitAArch64BuiltinExpr()
11939 Ops[0] = Builder.CreateBitCast(Ops[0], DoubleTy); in EmitAArch64BuiltinExpr()
11940 Ops[1] = Builder.CreateBitCast(Ops[1], DoubleTy); in EmitAArch64BuiltinExpr()
12050 Builder.CreateBitCast(Ops[1], llvm::FixedVectorType::get(DoubleTy, 1)); in EmitAArch64BuiltinExpr()
12056 Builder.CreateBitCast(Ops[1], llvm::FixedVectorType::get(DoubleTy, 2)); in EmitAArch64BuiltinExpr()
[all …]
H A DCGExprComplex.cpp298 return CGF.getContext().DoubleTy; in GetHigherPrecisionFPType()
H A DCGStmtOpenMP.cpp3747 CGF.CGM.getIntrinsic(llvm::Intrinsic::log2, CGF.DoubleTy); in emitScanBasedDirective()
3749 CGF.Builder.CreateUIToFP(OMPScanNumIterations, CGF.DoubleTy); in emitScanBasedDirective()
3751 F = CGF.CGM.getIntrinsic(llvm::Intrinsic::ceil, CGF.DoubleTy); in emitScanBasedDirective()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DProfileSummary.cpp36 Type *DoubleTy = Type::getDoubleTy(Context); in getKeyFPValMD() local
38 ConstantAsMetadata::get(ConstantFP::get(DoubleTy, Val))}; in getKeyFPValMD()
H A DLLVMContextImpl.cpp40 FloatTy(C, Type::FloatTyID), DoubleTy(C, Type::DoubleTyID), in LLVMContextImpl()
H A DType.cpp242 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; } in getDoubleTy()
H A DLLVMContextImpl.h1583 Type VoidTy, LabelTy, HalfTy, BFloatTy, FloatTy, DoubleTy, MetadataTy,
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaPPC.cpp213 ArgType != QualType(Context.DoubleTy) && in CheckPPCBuiltinFunctionCall()
235 ArgType = QualType(Context.DoubleTy); in CheckPPCBuiltinFunctionCall()
H A DSema.cpp449 auto AtomicDoubleT = Context.getAtomicType(Context.DoubleTy); in Initialize()
2078 bool IsDouble = UnqualTy == Context.DoubleTy; in checkTypeSupport()
H A DSemaARM.cpp385 return Context.DoubleTy; in getNeonEltType()
H A DSemaRISCV.cpp126 QT = Context.DoubleTy; in RVVType2Qual()
H A DOpenCLBuiltins.td354 def Double : Type<"double", QualType<"Context.DoubleTy">>;
415 …AtomicDouble : Type<"atomic_double", QualType<"Context.getAtomicType(Context.DoubleTy)">>;
H A DSemaExpr.cpp802 if (Context.getFloatingTypeOrder(Context.DoubleTy, Ty) > 0) in UsualUnaryConversions()
806 Context.getComplexType(Context.DoubleTy), in UsualUnaryConversions()
808 : ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast); in UsualUnaryConversions()
884 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get(); in DefaultArgumentPromotion()
3832 Ty = !getLangOpts().HLSL ? Context.LongDoubleTy : Context.DoubleTy; in ActOnNumericConstant()
3840 Ty = Context.DoubleTy; in ActOnNumericConstant()
3844 if (Ty == Context.DoubleTy) { in ActOnNumericConstant()
16429 PromoteType = Context.DoubleTy; in BuildVAArgExpr()
H A DSemaType.cpp1147 Result = Context.DoubleTy; in ConvertDeclSpecToType()
5171 ParamTy = Context.DoubleTy; in GetFullTypeForDeclarator()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp310 return ast_ctx.DoubleTy; in BuildType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp604 return Ctx.DoubleTy; in getScalarArgType()
610 return Ctx.DoubleTy; in getScalarArgType()
H A DScanfFormatString.cpp325 return ArgType::PtrTo(Ctx.DoubleTy); in getArgType()
H A DFormatString.cpp505 if (T == C.DoubleTy) in matchesType()
H A DASTContext.cpp1255 InitBuiltinType(DoubleTy, BuiltinType::Double); in InitBuiltinTypes()
4336 return SVE_ELTTY(DoubleTy, 2, 1); in getBuiltinVectorTypeInfo()
4338 return SVE_ELTTY(DoubleTy, 2, 2); in getBuiltinVectorTypeInfo()
4340 return SVE_ELTTY(DoubleTy, 2, 3); in getBuiltinVectorTypeInfo()
4342 return SVE_ELTTY(DoubleTy, 2, 4); in getBuiltinVectorTypeInfo()
4358 return {ElBits == 16 ? Float16Ty : (ElBits == 32 ? FloatTy : DoubleTy), \ in getBuiltinVectorTypeInfo()
11799 Type = Context.DoubleTy; in DecodeTypeFromStr()
12604 return DoubleTy; in getRealTypeForBitwidth()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def207 FLOATING_TYPE(Double, DoubleTy)
H A DASTContext.h1130 CanQualType FloatTy, DoubleTy, LongDoubleTy, Float128Ty, Ibm128Ty; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp787 if (QualTypeMatchesBitSize(bit_size, ast, ast.DoubleTy)) in GetBuiltinTypeForEncodingAndBitSize()
788 return GetType(ast.DoubleTy); in GetBuiltinTypeForEncodingAndBitSize()
926 CanQualType DoubleComplexTy = ast.getComplexType(ast.DoubleTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
946 QualTypeMatchesBitSize(bit_size, ast, ast.DoubleTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
947 return GetType(ast.DoubleTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
954 if (QualTypeMatchesBitSize(bit_size, ast, ast.DoubleTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
955 return GetType(ast.DoubleTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
2050 return ast->DoubleTy.getAsOpaquePtr(); in GetOpaqueCompilerType()
2056 return ast->getComplexType(ast->DoubleTy).getAsOpaquePtr(); in GetOpaqueCompilerType()
4717 else if (bit_size == ast.getTypeSize(ast.DoubleTy)) in GetFloatTypeSemantics()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DX86.cpp1955 } else if (ET == getContext().DoubleTy) { in classify()
3172 : llvm::StructType::get(CGF.DoubleTy, CGF.DoubleTy); in EmitVAArg()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp397 case kCFNumberDoubleType: T = Ctx.DoubleTy; break; in GetCFNumberSize()

12