/external/llvm/unittests/AsmParser/ |
D | AsmParserTest.cpp | 85 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/ |
D | AsmParserTest.cpp | 84 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/ |
D | TargetLibraryInfo.cpp | 643 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/ |
D | ubsan_value.h | 117 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/ |
D | ubsan_value.h | 116 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/ |
D | TargetLibraryInfo.cpp | 642 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/ |
D | OrcMCJITReplacement.cpp | 44 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/ |
D | OrcMCJITReplacement.cpp | 43 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/ |
D | Type.h | 197 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/ |
D | AArch64TargetTransformInfo.h | 160 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/ |
D | Type.h | 198 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/ |
D | llvm-stress.cpp | 171 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/ |
D | TargetLibraryInfo.cpp | 497 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/ |
D | AArch64TargetTransformInfo.h | 182 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/ |
D | RISCVTargetTransformInfo.cpp | 19 assert(Ty->isIntegerTy() && in getIntImmCost() 34 assert(Ty->isIntegerTy() && in getIntImmCostInst()
|
/external/llvm-project/polly/lib/CodeGen/ |
D | RuntimeDebugBuilder.cpp | 108 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/ |
D | RISCVTargetTransformInfo.cpp | 20 assert(Ty->isIntegerTy() && in getIntImmCost() 37 assert(Ty->isIntegerTy() && in getIntImmCostInst()
|
/external/llvm/lib/Target/X86/ |
D | X86ShuffleDecodeConstantPool.cpp | 48 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/ |
D | SystemZTargetTransformInfo.cpp | 35 assert(Ty->isIntegerTy()); in getIntImmCost() 68 assert(Ty->isIntegerTy()); in getIntImmCost() 186 assert(Ty->isIntegerTy()); in getIntImmCost()
|
/external/llvm-project/llvm/unittests/IR/ |
D | VPIntrinsicTest.cpp | 117 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/ |
D | Type.h | 193 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/ |
D | Type.h | 195 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/ |
D | AbstractCallSite.cpp | 129 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/ |
D | AbstractCallSite.cpp | 128 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/ |
D | PPCBoolRetToInt.cpp | 134 if (P->getType()->isIntegerTy(1)) in getPromotablePHINodes() 204 if (F.getReturnType()->isIntegerTy(1)) in runOnFunction() 210 if (U->getType()->isIntegerTy(1)) in runOnFunction()
|