Home
last modified time | relevance | path

Searched refs:EIT (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DBPF.cpp54 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 DPNaCl.cpp75 } 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 DMips.cpp248 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 DNVPTX.cpp125 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 DLanai.cpp133 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local
134 if (EIT->getNumBits() > 64) in classifyArgumentType()
H A DCSKY.cpp126 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local
127 if (EIT->getNumBits() < XLen) in classifyArgumentType()
H A DLoongArch.cpp378 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 DARC.cpp133 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local
134 if (EIT->getNumBits() > 64) in classifyArgumentType()
H A DPPC.cpp727 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 DRISCV.cpp683 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 DARM.cpp389 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 DSparc.cpp258 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyType() local
259 if (EIT->getNumBits() < 64) { in classifyType()
H A DSystemZ.cpp155 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local
156 if (EIT->getNumBits() < 64) in isPromotableIntegerTypeForABI()
H A DAArch64.cpp380 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 DX86.cpp559 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 DABIInfoImpl.cpp35 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 DABIInfo.cpp167 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local
168 if (EIT->getNumBits() < getContext().getTypeSize(getContext().IntTy)) in isPromotableIntegerTypeForABI()
H A DCodeGenTBAA.cpp353 if (const auto *EIT = dyn_cast<BitIntType>(Ty)) { in getTypeInfoHelper() local
358 Out << "_BitInt(" << EIT->getNumBits() << ')'; in getTypeInfoHelper()
H A DCodeGenTypes.cpp762 const auto &EIT = cast<BitIntType>(Ty); in ConvertType() local
763 ResultType = llvm::Type::getIntNTy(getLLVMContext(), EIT->getNumBits()); in ConvertType()
H A DCGExpr.cpp3510 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 DASTContext.cpp2468 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 DTreeTransform.h7210 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 DSemaChecking.cpp10487 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 DNEWS4580 Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian
/freebsd/contrib/tzcode/
H A DNEWS4580 Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian

12