Searched refs:BTy (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp119 if (const BuiltinType *BTy = dyn_cast<BuiltinType>(Ty)) {
120 switch (BTy->getKind()) {
176 return createScalarTypeNode(BTy->getName(Features), getChar(), Size);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp410 void BTFDebug::visitBasicType(const DIBasicType *BTy, uint32_t &TypeId) { argument
412 uint32_t Encoding = BTy->getEncoding();
422 Encoding, BTy->getSizeInBits(), BTy->getOffsetInBits(), BTy->getName());
423 TypeId = addType(std::move(TypeEntry), BTy);
643 if (const auto *BTy = dyn_cast<DIBasicType>(Ty))
644 visitBasicType(BTy, TypeId);
H A DBPFAbstractMemberAccess.cpp602 const auto *BTy = dyn_cast<DIBasicType>(BaseTy); local
603 while (!BTy) {
609 BTy = dyn_cast<DIBasicType>(BaseTy);
611 uint32_t Encoding = BTy->getEncoding();
H A DBTFDebug.h272 void visitBasicType(const DIBasicType *BTy, uint32_t &TypeId);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp492 auto *BTy = cast<DIBasicType>(Ty); local
493 unsigned Encoding = BTy->getEncoding();
764 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIBasicType *BTy) { argument
766 StringRef Name = BTy->getName();
772 if (BTy->getTag() == dwarf::DW_TAG_unspecified_type)
776 BTy->getEncoding());
778 uint64_t Size = BTy->getSizeInBits() >> 3;
781 if (BTy->isBigEndian())
783 else if (BTy->isLittleEndian())
H A DDwarfUnit.h308 void constructTypeDIE(DIE &Buffer, const DIBasicType *BTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1525 Type *BTy = BPtr->getType()->getPointerElementType(); local
1531 if (TypeByteSize == DL.getTypeAllocSize(BTy) &&
1546 if (std::abs(Distance) > 0 && Stride > 1 && ATy == BTy &&
1557 ATy != BTy)) {
1569 if (ATy == BTy)
1578 if (ATy != BTy) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp5154 } else if (const BuiltinType* BTy = ParamTy->getAs<BuiltinType>()) {
5155 if (BTy->getKind() == BuiltinType::Float) {
7647 const BuiltinType *BTy = Ty->getAs<BuiltinType>(); local
7648 if (!BTy)
7661 return BTy->getKind() == BuiltinType::UChar ||
7662 BTy->getKind() == BuiltinType::UShort ||
7663 BTy->getKind() == BuiltinType::ULong ||
7664 BTy->getKind() == BuiltinType::ULongLong;
7667 return BTy->getKind() == BuiltinType::SChar ||
7668 BTy
[all...]
H A DSemaExpr.cpp810 const BuiltinType *BTy = Ty->getAs<BuiltinType>(); local
811 if (BTy && (BTy->getKind() == BuiltinType::Half ||
812 BTy->getKind() == BuiltinType::Float)) {
815 if (BTy->getKind() == BuiltinType::Half) {
1315 const auto *BTy = Ty->getAs<BuiltinType>(); local
1316 assert(BTy && "Expected a builtin type.");
1318 switch (BTy->getKind()) {
1350 if (BTy->isInteger())
3807 const BuiltinType *BTy local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp2400 QualType BTy = B.getType(); local
2401 assert(BTy->isStructureOrClassType() && "Base classes must be classes!");
2403 const CXXRecordDecl *BRD = BTy->getAsCXXRecordDecl();
H A DExprEngine.cpp998 QualType BTy = getContext().getBaseElementType(DTy); local
999 const CXXRecordDecl *RD = BTy->getAsCXXRecordDecl();
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1797 if (const BuiltinType *BTy = T->getAs<BuiltinType>()) {
1798 CharUnits TypeSize = Context.getTypeSizeInChars(BTy);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2045 if (BitsRecTy *BTy = dyn_cast<BitsRecTy>(getType())) {
2048 Bits.reserve(BTy->getNumBits());
2049 for (unsigned i = 0, e = BTy->getNumBits(); i < e; ++i)

Completed in 307 milliseconds