/external/llvm/lib/IR/ |
D | ValueTypes.cpp | 193 case MVT::f32: return Type::getFloatTy(Context); in getTypeForEVT() 231 case MVT::v1f32: return VectorType::get(Type::getFloatTy(Context), 1); in getTypeForEVT() 232 case MVT::v2f32: return VectorType::get(Type::getFloatTy(Context), 2); in getTypeForEVT() 233 case MVT::v4f32: return VectorType::get(Type::getFloatTy(Context), 4); in getTypeForEVT() 234 case MVT::v8f32: return VectorType::get(Type::getFloatTy(Context), 8); in getTypeForEVT() 235 case MVT::v16f32: return VectorType::get(Type::getFloatTy(Context), 16); in getTypeForEVT()
|
D | Type.cpp | 30 case FloatTyID : return getFloatTy(C); in getPrimitiveType() 228 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() function in Type 251 return getFloatTy(C)->getPointerTo(AS); in getFloatPtrTy()
|
D | MDBuilder.cpp | 33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
|
D | AutoUpgrade.cpp | 40 if (Arg0Type != VectorType::get(Type::getFloatTy(F->getContext()), 4)) in UpgradeSSE41Function() 764 if (Arg0->getType() != VectorType::get(Type::getFloatTy(C), 4)) in UpgradeIntrinsicCall()
|
D | Constants.cpp | 697 Ty = Type::getFloatTy(Context); in get() 2545 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size()); in get() 2568 Type *Ty = ArrayType::get(Type::getFloatTy(Context), Elts.size()); in getFP() 2622 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); in get() 2645 Type *Ty = VectorType::get(Type::getFloatTy(Context), Elts.size()); in getFP()
|
D | Function.cpp | 751 case IITDescriptor::Float: return Type::getFloatTy(Context); in DecodeFixedType()
|
D | Core.cpp | 346 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 | IRBuilderTest.cpp | 35 GV = new GlobalVariable(*M, Type::getFloatTy(Ctx), true, in SetUp()
|
D | ConstantsTest.cpp | 173 Type *FloatTy = Type::getFloatTy(getGlobalContext()); in TEST()
|
D | InstructionsTest.cpp | 183 Type *FloatTy = Type::getFloatTy(C); in TEST()
|
/external/llvm/include/llvm/IR/ |
D | TypeBuilder.h | 191 return Type::getFloatTy(C); in get() 206 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } in get()
|
D | Type.h | 385 static Type *getFloatTy(LLVMContext &C);
|
D | IRBuilder.h | 335 Type *getFloatTy() { in getFloatTy() function 336 return Type::getFloatTy(Context); in getFloatTy()
|
/external/llvm/lib/Target/R600/ |
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 | 284 return llvm::Type::getFloatTy(VMContext); in getTypeForFormat()
|
D | CGBuiltin.cpp | 4338 llvm::VectorType::get(llvm::Type::getFloatTy(getLLVMContext()), 2); in EmitAArch64BuiltinExpr() 4532 llvm::VectorType::get(llvm::Type::getFloatTy(getLLVMContext()), 2)); in EmitAArch64BuiltinExpr() 4560 llvm::VectorType::get(llvm::Type::getFloatTy(getLLVMContext()), 2)); in EmitAArch64BuiltinExpr() 4571 llvm::VectorType::get(llvm::Type::getFloatTy(getLLVMContext()), 4)); in EmitAArch64BuiltinExpr() 4916 llvm::Type *f32Type = llvm::Type::getFloatTy(getLLVMContext()); in EmitAArch64BuiltinExpr()
|
D | TargetInfo.cpp | 2342 return llvm::Type::getFloatTy(getVMContext()); in GetSSETypeAtOffset() 2349 return llvm::VectorType::get(llvm::Type::getFloatTy(getVMContext()), 2); in GetSSETypeAtOffset() 5406 PassTy = llvm::Type::getFloatTy(getVMContext()); in classifyArgumentType()
|
/external/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 682 TYPEKEYWORD("float", Type::getFloatTy(Context)); in LexIdentifier()
|
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 256 case 5: t = Type::getFloatTy(Context); break; in pickScalarType()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 1827 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 | 977 Function *F = Intrinsic::getDeclaration(M, IID, B.getFloatTy()); in optimizeUnaryDoubleFP()
|