/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ValueTypes.cpp | 154 case MVT::f64: return Type::getDoubleTy(Context); in getTypeForEVT() 229 case MVT::v1f64: return VectorType::get(Type::getDoubleTy(Context), 1); in getTypeForEVT() 230 case MVT::v2f64: return VectorType::get(Type::getDoubleTy(Context), 2); in getTypeForEVT() 231 case MVT::v4f64: return VectorType::get(Type::getDoubleTy(Context), 4); in getTypeForEVT() 232 case MVT::v8f64: return VectorType::get(Type::getDoubleTy(Context), 8); in getTypeForEVT() 310 return VectorType::get(Type::getDoubleTy(Context), 1, /*Scalable=*/ true); in getTypeForEVT() 312 return VectorType::get(Type::getDoubleTy(Context), 2, /*Scalable=*/ true); in getTypeForEVT() 314 return VectorType::get(Type::getDoubleTy(Context), 4, /*Scalable=*/ true); in getTypeForEVT() 316 return VectorType::get(Type::getDoubleTy(Context), 8, /*Scalable=*/ true); in getTypeForEVT()
|
D | IntrinsicLowering.cpp | 215 Type::getDoubleTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Type.h | 412 static Type *getDoubleTy(LLVMContext &C); 435 return Type::getDoubleTy(C); in getScalarTy()
|
D | IRBuilder.h | 423 Type *getDoubleTy() { in getDoubleTy() function 424 return Type::getDoubleTy(Context); in getDoubleTy()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTypeConverter.cpp | 35 addLLVMType(IceType_f64, llvm::Type::getDoubleTy(Context)); in TypeConverter()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Type.cpp | 44 case DoubleTyID : return getDoubleTy(C); in getPrimitiveType() 169 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; } in getDoubleTy() function in Type 197 return getDoubleTy(C)->getPointerTo(AS); in getDoublePtrTy()
|
D | Constants.cpp | 874 Ty = Type::getDoubleTy(Context); in get() 2642 Type *Ty = ArrayType::get(Type::getDoubleTy(Context), Elts.size()); in getFP() 2689 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size()); in get() 2713 Type *Ty = VectorType::get(Type::getDoubleTy(Context), Elts.size()); in getFP()
|
D | Function.cpp | 980 case IITDescriptor::Double: return Type::getDoubleTy(Context); in DecodeFixedType()
|
D | Core.cpp | 603 return (LLVMTypeRef) Type::getDoubleTy(*unwrap(C)); in LLVMDoubleTypeInContext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Type.h | 381 static Type *getDoubleTy(LLVMContext &C);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMLegalizerInfo.cpp | 418 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx); in legalizeCustom()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyRegStackify.cpp | 120 Type::getDoubleTy(MF.getFunction().getContext()))); in convertImplicitDefToConstZero()
|
D | WebAssemblyISelLowering.cpp | 365 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context); in LowerFPToInt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerHelper.cpp | 531 Type *HLTy = Size == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx); in libcall() 544 MI, MIRBuilder, Type::getDoubleTy(Ctx), Type::getFloatTy(Ctx)); in libcall() 556 MI, MIRBuilder, Type::getFloatTy(Ctx), Type::getDoubleTy(Ctx)); in libcall() 571 FromSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx)); in libcall() 585 ToSize == 64 ? Type::getDoubleTy(Ctx) : Type::getFloatTy(Ctx), in libcall() 2021 ZeroTy = Type::getDoubleTy(Ctx); in lower()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 821 TYPEKEYWORD("double", Type::getDoubleTy(Context)); in LexIdentifier()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPULibFunc.cpp | 888 case AMDGPULibFunc::F64: T = Type::getDoubleTy(C); break; in getIntrinsicParamType()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 1873 } else if (Ty == Type::getDoubleTy(CPV->getContext())) { in bufferLEByte()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1471 return Type::getDoubleTy(CFP->getContext()); in shrinkFPConstant()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 1351 return B.CreateFPExt(R, B.getDoubleTy()); in optimizeDoubleFP()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactor.cpp | 1733 return T(llvm::Type::getDoubleTy(*jit->context)); in getPrintfStorageType()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1734 ResultTy = Type::getDoubleTy(Context); in parseTypeTableBody()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrInfo.cpp | 5322 Ty = Type::getDoubleTy(MF.getFunction().getContext()); in foldMemoryOperandImpl()
|