/external/llvm/lib/Target/Mips/ |
D | Mips16ISelLowering.cpp | 305 else if (t->isDoubleTy()) { in getMips16HelperFunctionStubNumber() 315 else if (t->isDoubleTy()) { in getMips16HelperFunctionStubNumber() 389 else if (RetTy ->isDoubleTy()) { in getMips16HelperFunction() 399 else if ((RetTy->getContainedType(0)->isDoubleTy()) && in getMips16HelperFunction() 400 (RetTy->getContainedType(1)->isDoubleTy())) { in getMips16HelperFunction()
|
D | Mips16HardFloat.cpp | 81 if ((T->getContainedType(0)->isDoubleTy()) && in whichFPReturnVariant() 82 (T->getContainedType(1)->isDoubleTy())) in whichFPReturnVariant()
|
D | MipsFastISel.cpp | 656 bool IsDouble = Left->getType()->isDoubleTy(); in emitCmp()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyMCInstLower.cpp | 87 else if (Imm->getType()->isDoubleTy()) in Lower()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 693 else if (CE->getType()->isDoubleTy()) in getConstantValue() 708 else if (CE->getType()->isDoubleTy()) in getConstantValue() 725 else if (Op0->getType()->isDoubleTy()) in getConstantValue() 764 else if (DestTy->isDoubleTy()) in getConstantValue() 959 if (ElemTy->isDoubleTy()) { in getConstantValue() 1077 if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) in StoreValueToMemory() 1161 if (ElemT->isDoubleTy()) { in LoadValueFromMemory()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 308 if (CFP->getType()->isDoubleTy()) { in ReadDataFromGlobal() 420 else if (LoadTy->isDoubleTy()) in FoldReinterpretLoadFromConstPtr() 1321 if (Ty->isDoubleTy()) in GetConstantFoldFPValue() 1405 if (Ty->isDoubleTy()) in getValueAsDouble() 1428 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) in ConstantFoldScalarCall() 1551 (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy())) { in ConstantFoldScalarCall() 1650 if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy()) in ConstantFoldScalarCall() 1701 if (IntrinsicID == Intrinsic::powi && Ty->isDoubleTy()) in ConstantFoldScalarCall()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 719 if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) \ in visitBinaryOperator() 753 if (cast<VectorType>(Ty)->getElementType()->isDoubleTy()) in visitBinaryOperator() 1284 assert(SrcVal->getType()->getScalarType()->isDoubleTy() && in executeFPTruncInst() 1294 assert(SrcVal->getType()->isDoubleTy() && DstTy->isFloatTy() && in executeFPTruncInst() 1308 DstTy->getScalarType()->isDoubleTy() && "Invalid FPExt instruction"); in executeFPExtInst() 1316 assert(SrcVal->getType()->isFloatTy() && DstTy->isDoubleTy() && in executeFPExtInst() 1542 } else if (SrcElemTy->isDoubleTy()) { in executeBitCastInst() 1596 if (DstElemTy->isDoubleTy()) { in executeBitCastInst() 1610 if (DstElemTy->isDoubleTy()) in executeBitCastInst() 1628 else if (SrcTy->isDoubleTy()) { in executeBitCastInst() [all …]
|
/external/llvm/unittests/AsmParser/ |
D | AsmParserTest.cpp | 79 EXPECT_TRUE(V->getType()->isDoubleTy()); in TEST()
|
/external/llvm/include/llvm/IR/ |
D | Type.h | 136 bool isDoubleTy() const { return getTypeID() == DoubleTyID; } in isDoubleTy() function
|
/external/llvm/lib/Target/ARM/ |
D | ARMTargetTransformInfo.cpp | 323 if (Ty->isDoubleTy()) { in getFPOpCost() 464 Src->getVectorElementType()->isDoubleTy()) { in getMemoryOpCost()
|
D | ARMFastISel.cpp | 1365 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy()); in ARMEmitCmp() 1469 if (Ty->isFloatTy() || Ty->isDoubleTy()) in ARMEmitCmp() 1510 if (!I->getType()->isDoubleTy() || in SelectFPExt() 1530 V->getType()->isDoubleTy())) return false; in SelectFPTrunc() 1577 else if (Ty->isDoubleTy()) Opc = isSigned ? ARM::VSITOD : ARM::VUITOD; in SelectIToFP() 1602 else if (OpTy->isDoubleTy()) Opc = isSigned ? ARM::VTOSIZD : ARM::VTOUIZD; in SelectFPToI() 1799 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy()); in SelectBinaryFPOp()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCTargetTransformInfo.cpp | 300 if (ST->hasVSX() && Val->getScalarType()->isDoubleTy()) { in getVectorInstrCost()
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 635 if (Ty->isDoubleTy()) in TypeToFloatSemantics() 906 else if (CFP->getType()->isDoubleTy()) in getSequenceIfElementsMatch() 2369 if (Ty->isHalfTy() || Ty->isFloatTy() || Ty->isDoubleTy()) return true; in isElementTypeCompatible() 2651 if (CFP->getType()->isDoubleTy()) { in getSplat() 2718 assert(getElementType()->isDoubleTy() && in getElementAsDouble() 2730 getElementType()->isDoubleTy()) in getElementAsConstant()
|
D | ConstantFold.cpp | 594 DestTy->isDoubleTy() ? APFloat::IEEEdouble : in ConstantFoldCastInstruction()
|
D | Core.cpp | 889 if (Ty->isDoubleTy()) { in LLVMConstRealGetDouble()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 978 if (FT->getNumParams() != 1 || !FT->getReturnType()->isDoubleTy() || in optimizeUnaryDoubleFP() 979 !FT->getParamType(0)->isDoubleTy()) in optimizeUnaryDoubleFP() 1234 else if (Op->getType()->isDoubleTy()) in optimizeExp2() 1542 FT->getParamType(0)->isDoubleTy()); in isTrigLibCall()
|
D | BuildLibCalls.cpp | 235 if (!Op->getType()->isDoubleTy()) { in AppendTypeSuffix()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 2115 if (I->getType()->isDoubleTy()) { in X86SelectSIToFP() 2159 if (X86ScalarSSEf64 && I->getType()->isDoubleTy() && in X86SelectFPExt() 2171 I->getOperand(0)->getType()->isDoubleTy()) { in X86SelectFPTrunc()
|
D | X86MCInstLower.cpp | 1363 else if (CDS->getElementType()->isDoubleTy()) in EmitInstruction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1246 if (CFP->getType()->isDoubleTy()) in lookThroughFPExtensions()
|
D | InstCombineCalls.cpp | 1370 : (EltTy->isDoubleTy() ? 64 : EltTy->getIntegerBitWidth()); in visitCallInst()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 747 } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) { in emitDebugValueComment()
|
/external/llvm/lib/Transforms/Scalar/ |
D | ScalarReplAggregates.cpp | 419 } else if (In->isFloatTy() || In->isDoubleTy() || in MergeInTypeForLoadOrStore()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 2590 else if (CurTy->isDoubleTy()) in parseConstants() 2689 } else if (EltTy->isDoubleTy()) { in parseConstants()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64FastISel.cpp | 2688 if (!I->getType()->isDoubleTy() || !V->getType()->isFloatTy()) in selectFPExt() 2704 if (!I->getType()->isFloatTy() || !V->getType()->isDoubleTy()) in selectFPTrunc()
|