| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | BPF.cpp | 54 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 55 if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty)) in classifyArgumentType() 76 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 77 if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty)) in classifyReturnType()
|
| H A D | PNaCl.cpp | 75 } else if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 78 if (EIT->getNumBits() > 64) in classifyArgumentType() 96 if (const auto *EIT = RetTy->getAs<BitIntType>()) { in classifyReturnType() local 97 if (EIT->getNumBits() > 64) in classifyReturnType()
|
| H A D | Mips.cpp | 248 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 249 if (EIT->getNumBits() > 128 || in classifyArgumentType() 250 (EIT->getNumBits() > 64 && in classifyArgumentType() 339 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 340 if (EIT->getNumBits() > 128 || in classifyReturnType() 341 (EIT->getNumBits() > 64 && in classifyReturnType()
|
| H A D | NVPTX.cpp | 125 if (const auto *EIT = T->getAs<BitIntType>()) in isUnsupportedType() local 126 return EIT->getNumBits() > in isUnsupportedType() 205 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 206 if ((EIT->getNumBits() > 128) || in classifyArgumentType() 208 EIT->getNumBits() > 64)) in classifyArgumentType()
|
| H A D | Lanai.cpp | 133 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 134 if (EIT->getNumBits() > 64) in classifyArgumentType()
|
| H A D | CSKY.cpp | 126 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 127 if (EIT->getNumBits() < XLen) in classifyArgumentType()
|
| H A D | LoongArch.cpp | 378 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 379 if (EIT->getNumBits() < GRLen) in classifyArgumentType() 381 if (EIT->getNumBits() > 128 || in classifyArgumentType() 383 EIT->getNumBits() > 64)) in classifyArgumentType()
|
| H A D | ARC.cpp | 133 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 134 if (EIT->getNumBits() > 64) in classifyArgumentType()
|
| H A D | PPC.cpp | 727 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableTypeForABI() local 728 if (EIT->getNumBits() < 64) in isPromotableTypeForABI() 847 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 848 if (EIT->getNumBits() > 128) in classifyArgumentType() 928 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 929 if (EIT->getNumBits() > 128) in classifyReturnType()
|
| H A D | RISCV.cpp | 683 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 684 if (EIT->getNumBits() < XLen) in classifyArgumentType() 686 if (EIT->getNumBits() > 128 || in classifyArgumentType() 688 EIT->getNumBits() > 64)) in classifyArgumentType()
|
| H A D | ARM.cpp | 389 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 390 if (EIT->getNumBits() > 64) in classifyArgumentType() 598 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 599 if (EIT->getNumBits() > 64) in classifyReturnType()
|
| H A D | Sparc.cpp | 258 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyType() local 259 if (EIT->getNumBits() < 64) { in classifyType()
|
| H A D | SystemZ.cpp | 155 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local 156 if (EIT->getNumBits() < 64) in isPromotableIntegerTypeForABI()
|
| H A D | AArch64.cpp | 380 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 381 if (EIT->getNumBits() > 128) in classifyArgumentType() 553 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 554 if (EIT->getNumBits() > 128) in classifyReturnType()
|
| H A D | X86.cpp | 559 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 560 if (EIT->getNumBits() > 64) in classifyReturnType() 896 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 897 if (EIT->getNumBits() <= 64) { in classifyArgumentType()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ABIInfoImpl.cpp | 35 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 36 if (EIT->getNumBits() > in classifyArgumentType() 58 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 59 if (EIT->getNumBits() > in classifyReturnType()
|
| H A D | ABIInfo.cpp | 167 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local 168 if (EIT->getNumBits() < getContext().getTypeSize(getContext().IntTy)) in isPromotableIntegerTypeForABI()
|
| H A D | CodeGenTBAA.cpp | 353 if (const auto *EIT = dyn_cast<BitIntType>(Ty)) { in getTypeInfoHelper() local 358 Out << "_BitInt(" << EIT->getNumBits() << ')'; in getTypeInfoHelper()
|
| H A D | CodeGenTypes.cpp | 762 const auto &EIT = cast<BitIntType>(Ty); in ConvertType() local 763 ResultType = llvm::Type::getIntNTy(getLLVMContext(), EIT->getNumBits()); in ConvertType()
|
| H A D | CGExpr.cpp | 3510 const auto *EIT = T->castAs<BitIntType>(); in EmitCheckTypeDescriptor() local 3511 uint32_t Bits = EIT->getNumBits(); in EmitCheckTypeDescriptor()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 2468 const auto *EIT = cast<BitIntType>(T); in getTypeInfoImpl() local 2469 Align = Target->getBitIntAlign(EIT->getNumBits()); in getTypeInfoImpl() 2470 Width = Target->getBitIntWidth(EIT->getNumBits()); in getTypeInfoImpl() 5194 if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) in getBitIntType() local 5195 return QualType(EIT, 0); in getBitIntType() 8094 if (const auto *EIT = dyn_cast<BitIntType>(T)) in getIntegerRank() local 8095 return 0 + (EIT->getNumBits() << 3); in getIntegerRank() 12114 if (const auto *EIT = T->getAs<BitIntType>()) in getIntWidth() local 12115 return EIT->getNumBits(); in getIntWidth()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | TreeTransform.h | 7210 const BitIntType *EIT = TL.getTypePtr(); in TransformBitIntType() local 7214 Result = getDerived().RebuildBitIntType(EIT->isUnsigned(), in TransformBitIntType() 7215 EIT->getNumBits(), TL.getNameLoc()); in TransformBitIntType() 7228 const DependentBitIntType *EIT = TL.getTypePtr(); in TransformDependentBitIntType() local 7232 ExprResult BitsExpr = getDerived().TransformExpr(EIT->getNumBitsExpr()); in TransformDependentBitIntType() 7240 if (getDerived().AlwaysRebuild() || BitsExpr.get() != EIT->getNumBitsExpr()) { in TransformDependentBitIntType() 7242 EIT->isUnsigned(), BitsExpr.get(), TL.getNameLoc()); in TransformDependentBitIntType()
|
| H A D | SemaChecking.cpp | 10487 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forValueOfCanonicalType() local 10488 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forValueOfCanonicalType() 10513 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forTargetOfCanonicalType() local 10514 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forTargetOfCanonicalType()
|
| /freebsd/contrib/tzdata/ |
| H A D | NEWS | 4580 Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian
|
| /freebsd/contrib/tzcode/ |
| H A D | NEWS | 4580 Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian
|