Home
last modified time | relevance | path

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

12345678910>>...17

/external/llvm/unittests/AsmParser/
DAsmParserTest.cpp85 EXPECT_TRUE(V->getType()->isIntegerTy()); in TEST()
181 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
187 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
210 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
224 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
238 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
257 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
271 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
306 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
313 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
[all …]
/external/llvm-project/llvm/unittests/AsmParser/
DAsmParserTest.cpp84 EXPECT_TRUE(V->getType()->isIntegerTy()); in TEST()
180 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
186 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
209 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
223 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
237 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
256 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
270 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
305 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
312 ASSERT_TRUE(Ty->isIntegerTy()); in TEST()
[all …]
/external/llvm-project/llvm/lib/Analysis/
DTargetLibraryInfo.cpp643 return SizeTTy ? Ty == SizeTTy : Ty->isIntegerTy(); in isValidProtoForLibFunc()
653 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
658 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
665 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
673 FTy.getReturnType()->isIntegerTy()); in isValidProtoForLibFunc()
679 FTy.getParamType(1)->isIntegerTy()); in isValidProtoForLibFunc()
755 return (NumParams == 2 && FTy.getReturnType()->isIntegerTy(32) && in isValidProtoForLibFunc()
760 return (NumParams == 3 && FTy.getReturnType()->isIntegerTy(32) && in isValidProtoForLibFunc()
769 FTy.getReturnType()->isIntegerTy()); in isValidProtoForLibFunc()
806 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
[all …]
/external/compiler-rt/lib/ubsan/
Dubsan_value.h117 bool isIntegerTy() const { return getKind() == TK_Integer; } in isIntegerTy() function
119 return isIntegerTy() && (TypeInfo & 1); in isSignedIntegerTy()
122 return isIntegerTy() && !(TypeInfo & 1); in isUnsignedIntegerTy()
125 CHECK(isIntegerTy()); in getIntegerBitWidth()
153 CHECK(getType().isIntegerTy()); in isInlineInt()
/external/llvm-project/compiler-rt/lib/ubsan/
Dubsan_value.h116 bool isIntegerTy() const { return getKind() == TK_Integer; } in isIntegerTy() function
118 return isIntegerTy() && (TypeInfo & 1); in isSignedIntegerTy()
121 return isIntegerTy() && !(TypeInfo & 1); in isUnsignedIntegerTy()
124 CHECK(isIntegerTy()); in getIntegerBitWidth()
155 CHECK(getType().isIntegerTy()); in isInlineInt()
/external/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 …]
/external/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.cpp44 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) { in runFunction()
47 if (FTy->getParamType(0)->isIntegerTy(32) && in runFunction()
62 if (FTy->getParamType(0)->isIntegerTy(32) && in runFunction()
74 if (FTy->getNumParams() == 1 && FTy->getParamType(0)->isIntegerTy(32)) { in runFunction()
/external/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()
/external/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()
/external/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()
/external/llvm-project/llvm/include/llvm/IR/
DType.h198 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } in isIntegerTy() function
201 bool isIntegerTy(unsigned Bitwidth) const;
204 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); } in isIntOrIntVectorTy()
209 return getScalarType()->isIntegerTy(BitWidth); in isIntOrIntVectorTy()
213 bool isIntOrPtrTy() const { return isIntegerTy() || isPointerTy(); } in isIntOrPtrTy()
254 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() || in isSingleValueType()
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp171 if (Tp->isIntegerTy()) { in getRandomConstant()
193 if (Tp->isIntegerTy()) { in getRandomValue()
376 case 0: if (Ty->getScalarType()->isIntegerTy()) in Act()
378 case 1: if (Ty->getScalarType()->isIntegerTy()) in Act()
398 if (Ty->isIntegerTy()) { in Act()
400 case 0: if (Ty->isIntegerTy()) in Act()
403 case 1: if (Ty->isIntegerTy()) in Act()
407 case 6: if (Ty->isIntegerTy()) in Act()
517 if (VTy->getScalarType()->isIntegerTy() && in Act()
518 DestTy->getScalarType()->isIntegerTy()) { in Act()
[all …]
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp497 return SizeTTy ? Ty == SizeTTy : Ty->isIntegerTy(); in isValidProtoForLibFunc()
504 FTy.getReturnType()->isIntegerTy()); in isValidProtoForLibFunc()
510 FTy.getParamType(1)->isIntegerTy()); in isValidProtoForLibFunc()
531 FTy.getParamType(2)->isIntegerTy()); in isValidProtoForLibFunc()
556 FTy.getParamType(2)->isIntegerTy()); in isValidProtoForLibFunc()
563 return (NumParams == 2 && FTy.getReturnType()->isIntegerTy(32) && in isValidProtoForLibFunc()
568 return (NumParams == 3 && FTy.getReturnType()->isIntegerTy(32) && in isValidProtoForLibFunc()
571 FTy.getParamType(2)->isIntegerTy()); in isValidProtoForLibFunc()
577 FTy.getReturnType()->isIntegerTy()); in isValidProtoForLibFunc()
625 FTy.getReturnType()->isIntegerTy(32)); in isValidProtoForLibFunc()
[all …]
/external/llvm-project/llvm/lib/Target/AArch64/
DAArch64TargetTransformInfo.h182 if (Ty->isIntegerTy(8) || Ty->isIntegerTy(16) || in isLegalMaskedLoadStore()
183 Ty->isIntegerTy(32) || Ty->isIntegerTy(64)) in isLegalMaskedLoadStore()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetTransformInfo.cpp19 assert(Ty->isIntegerTy() && in getIntImmCost()
34 assert(Ty->isIntegerTy() && in getIntImmCostInst()
/external/llvm-project/polly/lib/CodeGen/
DRuntimeDebugBuilder.cpp108 if (Ty->isIntegerTy()) in isPrintable()
128 } else if (Ty->isIntegerTy()) { in prepareValuesForPrinting()
149 else if (Ty->isIntegerTy()) in prepareValuesForPrinting()
201 } else if (Ty->isIntegerTy()) { in createGPUPrinterT()
228 else if (Ty->isIntegerTy()) in createGPUPrinterT()
/external/llvm-project/llvm/lib/Target/RISCV/
DRISCVTargetTransformInfo.cpp20 assert(Ty->isIntegerTy() && in getIntImmCost()
37 assert(Ty->isIntegerTy() && in getIntImmCostInst()
/external/llvm/lib/Target/X86/
DX86ShuffleDecodeConstantPool.cpp48 if (!EltTy->isIntegerTy()) in DecodePSHUFBMask()
120 if (!VecEltTy->isIntegerTy()) in DecodeVPERMILPMask()
173 if (!VecEltTy->isIntegerTy()) in DecodeVPERMIL2PMask()
242 if (!VecEltTy->isIntegerTy()) in DecodeVPPERMMask()
/external/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp35 assert(Ty->isIntegerTy()); in getIntImmCost()
68 assert(Ty->isIntegerTy()); in getIntImmCost()
186 assert(Ty->isIntegerTy()); in getIntImmCost()
/external/llvm-project/llvm/unittests/IR/
DVPIntrinsicTest.cpp117 ASSERT_TRUE(cast<VectorType>(MaskParamType)->getElementType()->isIntegerTy(1)); in TEST_F()
124 ASSERT_TRUE(VecLenParamType->isIntegerTy(32)); in TEST_F()
/external/llvm/include/llvm/IR/
DType.h193 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } in isIntegerTy() function
196 bool isIntegerTy(unsigned Bitwidth) const;
199 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); } in isIntOrIntVectorTy()
238 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() || in isSingleValueType()
/external/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()
/external/llvm-project/llvm/lib/IR/
DAbstractCallSite.cpp129 assert(OpAsCM->getType()->isIntegerTy(64) && in AbstractCallSite()
145 assert(VarArgFlagAsCM->getType()->isIntegerTy(1) && in AbstractCallSite()
/external/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()
/external/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()

12345678910>>...17