/external/llvm/lib/IR/ |
D | ValueTypes.cpp | 212 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT() 260 case MVT::v1f32: return VectorType::get(Type::getFloatTy(Context), 1); in getTypeForEVT() 261 case MVT::v2f32: return VectorType::get(Type::getFloatTy(Context), 2); in getTypeForEVT() 262 case MVT::v4f32: return VectorType::get(Type::getFloatTy(Context), 4); in getTypeForEVT() 263 case MVT::v8f32: return VectorType::get(Type::getFloatTy(Context), 8); in getTypeForEVT() 264 case MVT::v16f32: return VectorType::get(Type::getFloatTy(Context), 16); in getTypeForEVT()
|
D | Type.cpp | 30 case FloatTyID : return getFloatTy(C); in getPrimitiveType() 221 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() function in Type 246 return getFloatTy(C)->getPointerTo(AS); in getFloatPtrTy()
|
D | MDBuilder.cpp | 33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
|
D | AutoUpgrade.cpp | 41 if (Arg0Type != VectorType::get(Type::getFloatTy(F->getContext()), 4)) in UpgradeSSE41Function() 757 if (Arg0->getType() != VectorType::get(Type::getFloatTy(C), 4)) in UpgradeIntrinsicCall()
|
D | Constants.cpp | 723 Ty = Type::getFloatTy(Context); in get() 2508 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size()); in get() 2531 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size()); in getFP() 2585 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); in get() 2608 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); in getFP()
|
D | Function.cpp | 768 case IITDescriptor::Float: return Type::getFloatTy(Context); in DecodeFixedType()
|
D | Core.cpp | 354 return (LLVMTypeRef) Type::getFloatTy(*unwrap(C)); in LLVMFloatTypeInContext()
|
/external/llvm/unittests/IR/ |
D | PatternMatch.cpp | 69 Type *FltTy = IRB.getFloatTy(); in TEST_F() 108 Type *FltTy = IRB.getFloatTy(); in TEST_F() 147 Type *FltTy = IRB.getFloatTy(); in TEST_F() 186 Type *FltTy = IRB.getFloatTy(); in TEST_F()
|
D | TypeBuilderTest.cpp | 58 …EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<float, false>::get(getGlobalContext()… in TEST() 61 …EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, true>::get(getGlob… in TEST() 62 …EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, false>::get(getGlo… in TEST()
|
D | ConstantsTest.cpp | 174 Type *FloatTy = Type::getFloatTy(getGlobalContext()); in TEST() 406 for (Type *T : {Type::getHalfTy(Context), Type::getFloatTy(Context), in TEST() 428 for (Type *T : {Type::getHalfTy(Context), Type::getFloatTy(Context), in TEST()
|
D | IRBuilderTest.cpp | 35 GV = new GlobalVariable(*M, Type::getFloatTy(Ctx), true, in SetUp() 212 auto CalleeTy = FunctionType::get(Type::getFloatTy(Ctx), in TEST_F()
|
D | InstructionsTest.cpp | 183 Type *FloatTy = Type::getFloatTy(C); in TEST()
|
/external/llvm/include/llvm/IR/ |
D | TypeBuilder.h | 199 return Type::getFloatTy(C); in get() 214 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } in get()
|
D | Type.h | 377 static Type *getFloatTy(LLVMContext &C);
|
D | IRBuilder.h | 331 Type *getFloatTy() { in getFloatTy() function 332 return Type::getFloatTy(Context); in getFloatTy()
|
/external/llvm/lib/Target/AMDGPU/ |
D | R600TextureIntrinsicsReplacer.cpp | 215 FloatType = Type::getFloatTy(Ctx); in doInitialization()
|
/external/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 45 Type::getFloatTy(M.getContext())); in EnsureFPIntrinsicsExist() 325 Type::getFloatTy(CI->getContext())); in ReplaceFPIntrinsicWithCall()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTypes.cpp | 285 return llvm::Type::getFloatTy(VMContext); in getTypeForFormat()
|
D | TargetInfo.cpp | 2664 return llvm::Type::getFloatTy(getVMContext()); in GetSSETypeAtOffset() 2671 return llvm::VectorType::get(llvm::Type::getFloatTy(getVMContext()), 2); in GetSSETypeAtOffset() 5006 llvm::Type::getFloatTy(getVMContext()) : in classifyArgumentType() 5202 llvm::Type::getFloatTy(getVMContext()) : in classifyReturnType() 5865 PassTy = llvm::Type::getFloatTy(getVMContext()); in classifyArgumentType()
|
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 278 Type::getFloatTy(Context), in pickScalarType()
|
/external/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 697 TYPEKEYWORD("float", Type::getFloatTy(Context)); in LexIdentifier()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 1004 Type *VTy = VectorType::get(Builder->getFloatTy(), in visitCallInst() 1025 Type *VTy = VectorType::get(Builder->getFloatTy(), in visitCallInst()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 1858 if (Ty == Type::getFloatTy(CPV->getContext())) { in bufferLEByte()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 223 if (CFP->getType() == Type::getFloatTy(CFP->getContext())) in printCFP()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 1000 Function *F = Intrinsic::getDeclaration(M, IID, B.getFloatTy()); in optimizeUnaryDoubleFP()
|