Home
last modified time | relevance | path

Searched refs:TypeKind (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp629 case TypeKind::eConst: in ParseType()
631 case TypeKind::ePointer: in ParseType()
637 case TypeKind::eTypedef: in ParseType()
639 case TypeKind::eArray: { in ParseType()
645 case TypeKind::eEnum: { in ParseType()
673 case TypeKind::eStruct: in ParseType()
674 case TypeKind::eUnion: { in ParseType()
693 case TypeKind::eForward: in ParseType()
695 case TypeKind::eUnknown: in ParseType()
698 case TypeKind::eFloat: in ParseType()
[all …]
H A DSymbolFileCTF.h133 enum TypeKind : uint32_t { enum
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DFormatString.h289 enum class TypeKind { DontCare, SizeT, PtrdiffT }; enum
290 TypeKind TK = TypeKind::DontCare;
300 bool isSizeT() const { return TK == TypeKind::SizeT; } in isSizeT()
302 bool isPtrdiffT() const { return TK == TypeKind::PtrdiffT; } in isPtrdiffT()
315 Res.TK = TypeKind::SizeT; in makeSizeT()
323 Res.TK = TypeKind::PtrdiffT; in makePtrdiffT()
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.h85 u16 TypeKind; variable
113 return static_cast<Kind>(TypeKind); in getKind()
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h127 enum TypeKind { kBool, kInteger, kFloatingPoint, kOther }; enum
170 static_cast< ::testing::internal::TypeKind>( \
182 template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp100 enum class TypeKind { enum in __anonc95a670f0111::Type
134 const TypeKind TKind;
137 Type(TypeKind K) : TKind(K) {} in Type()
140 TypeKind typeKind() const { return TKind; } in typeKind()
180 VoidType() : Type(TypeKind::Void) {} in VoidType()
218 return T->typeKind() == TypeKind::Pointer; in classof()
285 return T->typeKind() == TypeKind::Scalar; in classof()
309 return T->typeKind() == TypeKind::Vector; in classof()
338 return T->typeKind() == TypeKind::MultiVector; in classof()
347 : CRegularNamedType(TypeKind::Predicate), Lanes(Lanes) {} in PredicateType()
[all …]
H A DNeonEmitter.cpp144 enum TypeKind { enum in __anon3ab808570111::Type
152 TypeKind Kind;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp233 assert(!TypeKind && "Already in a type mapping!"); in visitTypeBegin()
244 TypeKind = CVR.kind(); in visitTypeBegin()
265 assert(TypeKind && "Not in a type mapping!"); in visitTypeEnd()
270 TypeKind.reset(); in visitTypeEnd()
275 assert(TypeKind && "Not in a type mapping!"); in visitMemberBegin()
301 assert(TypeKind && "Not in a type mapping!"); in visitMemberEnd()
682 const bool IsFromOverloadList = (TypeKind == LF_METHODLIST); in visitKnownMember()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.h154 enum TypeKind : uint8_t { enum
409 inline TypeKind getArrayIndexTypeEncoding(SourceLanguage S) { in getArrayIndexTypeEncoding()
709 unsigned AttributeEncodingVersion(TypeKind E);
723 unsigned AttributeEncodingVendor(TypeKind E);
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecordMapping.h49 std::optional<TypeLeafKind> TypeKind;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h170 BaseTypeRef(unsigned BitSize, dwarf::TypeKind Encoding) : in BaseTypeRef()
173 dwarf::TypeKind Encoding;
H A DDwarfExpression.cpp454 dwarf::TypeKind Encoding) { in getOrCreateBaseType()
598 dwarf::TypeKind Encoding = static_cast<dwarf::TypeKind>(Op->getArg(1)); in addExpression()
H A DDwarfExpression.h340 unsigned getOrCreateBaseType(unsigned BitSize, dwarf::TypeKind Encoding);
H A DCodeViewDebug.cpp1806 dwarf::TypeKind Kind; in lowerTypeBasic()
1809 Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding()); in lowerTypeBasic()
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DDwarf.cpp250 unsigned llvm::dwarf::AttributeEncodingVersion(dwarf::TypeKind ATE) { in AttributeEncodingVersion()
261 unsigned llvm::dwarf::AttributeEncodingVendor(dwarf::TypeKind ATE) { in AttributeEncodingVendor()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp354 auto TypeKind = ASTNodeKind::getFromNodeKind<Type>(); in canConvertTo() local
357 if (From.isSame(TypeKind) && To.isSame(QualKind)) return true; in canConvertTo()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp3312 uint16_t TypeKind = -1; in EmitCheckTypeDescriptor() local
3316 TypeKind = 0; in EmitCheckTypeDescriptor()
3320 TypeKind = 1; in EmitCheckTypeDescriptor()
3332 Builder.getInt16(TypeKind), Builder.getInt16(TypeInfo), in EmitCheckTypeDescriptor()
H A DCGDebugInfo.cpp664 llvm::dwarf::TypeKind Encoding; in CreateType()
946 llvm::dwarf::TypeKind Encoding = Ty->isUnsigned() in CreateType()
956 llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float; in CreateType()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp2054 dwarf::TypeKind TK = Signed ? dwarf::DW_ATE_signed : dwarf::DW_ATE_unsigned; in getExtOps()