Home
last modified time | relevance | path

Searched refs:isIntegerTy (Results 1 – 25 of 123) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetLibraryInfo.cpp642 return SizeTTy ? Ty == SizeTTy : Ty->isIntegerTy(); in isValidProtoForLibFunc()
652 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
657 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
664 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
667 FTy.getReturnType()->isIntegerTy()); in isValidProtoForLibFunc()
673 FTy.getParamType(1)->isIntegerTy()); in isValidProtoForLibFunc()
749 return (NumParams == 2 && FTy.getReturnType()->isIntegerTy(32) && in isValidProtoForLibFunc()
754 return (NumParams == 3 && FTy.getReturnType()->isIntegerTy(32) && in isValidProtoForLibFunc()
763 FTy.getReturnType()->isIntegerTy()); in isValidProtoForLibFunc()
800 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
[all …]
DScalarEvolutionExpander.cpp1468 if (Result->getType()->isIntegerTy()) { in expandAddRecExprLiterally()
1668 if (OpTy->isIntegerTy() != Ty->isIntegerTy()) { in visitSMaxExpr()
1693 if (OpTy->isIntegerTy() != Ty->isIntegerTy()) { in visitUMaxExpr()
1718 if (OpTy->isIntegerTy() != Ty->isIntegerTy()) { in visitSMinExpr()
1743 if (OpTy->isIntegerTy() != Ty->isIntegerTy()) { in visitUMinExpr()
1927 assert(Ty->isIntegerTy() && "Can only insert integer induction variables!"); in getOrInsertCanonicalInductionVariable()
1960 if (!LHS->getType()->isIntegerTy() || !RHS->getType()->isIntegerTy()) in replaceCongruentIVs()
1961 return RHS->getType()->isIntegerTy() && !LHS->getType()->isIntegerTy(); in replaceCongruentIVs()
2001 if (Phi->getType()->isIntegerTy() && TTI && in replaceCongruentIVs()
DIVDescriptors.cpp809 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) && in InductionDescriptor()
818 assert((IK == IK_FpInduction || Step->getType()->isIntegerTy()) && in InductionDescriptor()
1016 if (!PhiTy->isIntegerTy() && !PhiTy->isPointerTy() && !PhiTy->isFloatTy() && in isInductionPHI()
1057 if (!PhiTy->isIntegerTy() && !PhiTy->isPointerTy()) in isInductionPHI()
1093 if (PhiTy->isIntegerTy()) { in isInductionPHI()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.cpp43 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) { in runFunction()
46 if (FTy->getParamType(0)->isIntegerTy(32) && in runFunction()
61 if (FTy->getParamType(0)->isIntegerTy(32) && in runFunction()
73 if (FTy->getNumParams() == 1 && FTy->getParamType(0)->isIntegerTy(32)) { in runFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DType.h197 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } in isIntegerTy() function
200 bool isIntegerTy(unsigned Bitwidth) const;
203 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); } in isIntOrIntVectorTy()
208 return getScalarType()->isIntegerTy(BitWidth); in isIntOrIntVectorTy()
212 bool isIntOrPtrTy() const { return isIntegerTy() || isPointerTy(); } in isIntOrPtrTy()
251 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() || in isSingleValueType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64TargetTransformInfo.h160 if (Ty->isIntegerTy(8) || Ty->isIntegerTy(16) || in isLegalMaskedLoadStore()
161 Ty->isIntegerTy(32) || Ty->isIntegerTy(64)) in isLegalMaskedLoadStore()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetTransformInfo.cpp19 assert(Ty->isIntegerTy() && in getIntImmCost()
34 assert(Ty->isIntegerTy() && in getIntImmCostInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DType.h195 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } in isIntegerTy() function
198 bool isIntegerTy(unsigned Bitwidth) const;
201 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); } in isIntOrIntVectorTy()
240 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() || in isSingleValueType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCBoolRetToInt.cpp134 if (P->getType()->isIntegerTy(1)) in getPromotablePHINodes()
204 if (F.getReturnType()->isIntegerTy(1)) in runOnFunction()
210 if (U->getType()->isIntegerTy(1)) in runOnFunction()
DPPCTargetTransformInfo.cpp62 assert(Ty->isIntegerTy()); in getIntImmCost()
92 assert(Ty->isIntegerTy()); in getIntImmCostIntrin()
126 assert(Ty->isIntegerTy()); in getIntImmCostInst()
780 } else if (Val->getScalarType()->isIntegerTy() && Index != -1U) { in getVectorInstrCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAbstractCallSite.cpp128 assert(OpAsCM->getType()->isIntegerTy(64) && in AbstractCallSite()
144 assert(VarArgFlagAsCM->getType()->isIntegerTy(1) && in AbstractCallSite()
DInstructions.cpp1127 assert(getCondition()->getType()->isIntegerTy(1) && in AssertOK()
1204 assert(Amt->getType()->isIntegerTy() && in getAISize()
1726 if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy()) in isValidOperands()
1772 if (!Index->getType()->isIntegerTy()) in isValidOperands()
1843 if (!MaskTy || !MaskTy->getElementType()->isIntegerTy(32)) in isValidOperands()
2451 return getOperand(0)->getType()->isIntegerTy() && in isIntegerCast()
2452 getType()->isIntegerTy(); in isIntegerCast()
2609 if (!SrcTy->isVectorTy() && DstTy->isIntegerTy()) in isEliminableCastPair()
2621 if (SrcTy->isIntegerTy()) in isEliminableCastPair()
2895 if (S->getType()->isPointerTy() && Ty->isIntegerTy()) in CreateBitOrPointerCast()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPoisonChecking.cpp86 assert(V->getType()->isIntegerTy(1)); in isConstantFalse()
239 assert(Cond->getType()->isIntegerTy(1)); in CreateAssert()
253 assert(Cond->getType()->isIntegerTy(1)); in CreateAssertNot()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonTargetTransformInfo.cpp51 if (!cast<VectorType>(VecTy)->getElementType()->isIntegerTy()) in isTypeForHVX()
65 assert((Ty->isIntegerTy() || Ty->isFloatingPointTy()) && in getTypeNumElements()
273 if (ElemTy->isIntegerTy(32)) in getVectorInstrCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DVNCoercion.cpp110 if (!StoredValTy->isIntegerTy()) { in coerceAvailableValueToLoadTypeHelper()
278 assert(DepLI->getType()->isIntegerTy() && "Can't widen non-integer load"); in analyzeLoadFromClobberingLoad()
364 if (!SrcVal->getType()->isIntegerTy()) in getStoreValueForLoadHelper()
415 assert(SrcVal->getType()->isIntegerTy() && "Can't widen non-integer load"); in getLoadValueForLoad()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMParallelDSP.cpp161 bool is64Bit() const { return Root->getType()->isIntegerTy(64); } in is64Bit()
530 if (!Ty->isIntegerTy(32) && !Ty->isIntegerTy(64)) in MatchSMLAD()
636 SMLAD = Acc->getType()->isIntegerTy(32) ? in InsertParallelMACs()
640 SMLAD = Acc->getType()->isIntegerTy(32) ? in InsertParallelMACs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp445 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32)) in runFunctionAsMain()
447 if (!FTy->getReturnType()->isIntegerTy() && in runFunctionAsMain()
616 if (ElemTy->isIntegerTy()) in getConstantValue()
633 if (ElemTy->isIntegerTy()) in getConstantValue()
765 assert(DestTy->isIntegerTy(32) && "Invalid bitcast"); in getConstantValue()
769 assert(DestTy->isIntegerTy(64) && "Invalid bitcast"); in getConstantValue()
981 if (ElemTy->isIntegerTy()) { in getConstantValue()
1055 if (cast<VectorType>(Ty)->getElementType()->isIntegerTy()) { in StoreValueToMemory()
1113 if (ElemT->isIntegerTy()) { in LoadValueFromMemory()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp524 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) { in runFunction()
527 if (FTy->getParamType(0)->isIntegerTy(32) && in runFunction()
542 if (FTy->getParamType(0)->isIntegerTy(32) && in runFunction()
555 FTy->getParamType(0)->isIntegerTy(32)) { in runFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiTargetTransformInfo.h53 assert(Ty->isIntegerTy()); in getIntImmCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp34 assert(Ty->isIntegerTy()); in getIntImmCost()
67 assert(Ty->isIntegerTy()); in getIntImmCostInst()
185 assert(Ty->isIntegerTy()); in getIntImmCostIntrin()
773 Src->isIntegerTy(1)) { in getCastInstrCost()
873 if (ValTy->isIntegerTy() && ValTy->getScalarSizeInBits() <= 16) in getCmpSelInstrCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVVMReflect.cpp82 assert(F.getReturnType()->isIntegerTy() && in runOnFunction()
DNVPTXAsmPrinter.cpp346 if (Ty->isFloatingPointTy() || (Ty->isIntegerTy() && !Ty->isIntegerTy(128))) { in printReturnValStr()
364 } else if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in printReturnValStr()
1143 (ETy->isIntegerTy() && ETy->getScalarSizeInBits() <= 64)) { in printModuleLevelGV()
1146 if (ETy->isIntegerTy(1)) in printModuleLevelGV()
1337 if (ETy->isIntegerTy(128)) { in emitPTXGlobalVariable()
1472 if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { in emitFunctionParamList()
1520 if (Ty->isIntegerTy(1)) in emitFunctionParamList()
DNVPTXISelLowering.h465 if (!SrcTy->isIntegerTy() || !DstTy->isIntegerTy()) in isTruncateFree()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp775 bool IsSplittable = Ty->isIntegerTy() && !IsVolatile; in handleLoadOrStore()
1547 if (Ty == IRB.getInt8PtrTy(Ty->getAddressSpace()) && TargetTy->isIntegerTy(8)) in getNaturalGEPWithOffset()
1639 if (Ptr->getType()->isIntegerTy(8)) { in getAdjustedPtr()
1737 if (OldTy->isIntegerTy()) in canConvertValue()
1743 return NewTy->isIntegerTy(); in canConvertValue()
1851 assert(LTy->isIntegerTy()); in isVectorPromotionViableForSlice()
1861 assert(STy->isIntegerTy()); in isVectorPromotionViableForSlice()
1927 return !VTy->getElementType()->isIntegerTy(); in isVectorPromotionViable()
1941 assert(RHSTy->getElementType()->isIntegerTy() && in isVectorPromotionViable()
1943 assert(LHSTy->getElementType()->isIntegerTy() && in isVectorPromotionViable()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAtomicRMW.cpp138 if (RMWI.getType()->isIntegerTy() && in visitAtomicRMWInst()

12345