Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp623 case TypeKind::eInteger: { in ParseType()
629 case TypeKind::eConst: in ParseType()
631 case TypeKind::ePointer: in ParseType()
633 case TypeKind::eRestrict: in ParseType()
635 case TypeKind::eVolatile: in ParseType()
637 case TypeKind::eTypedef: in ParseType()
639 case TypeKind::eArray: { in ParseType()
645 case TypeKind::eEnum: { in ParseType()
654 case TypeKind::eFunction: { in ParseType()
673 case TypeKind::eStruct: in ParseType()
[all …]
H A DSymbolFileCTF.h133 enum TypeKind : uint32_t {
139 enum TypeKind : uint32_t { global() enum
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DFormatString.h302 enum class TypeKind { DontCare, SizeT, PtrdiffT }; enum
303 TypeKind TK = TypeKind::DontCare;
313 bool isSizeT() const { return TK == TypeKind::SizeT; } in isSizeT()
315 bool isPtrdiffT() const { return TK == TypeKind::PtrdiffT; } in isPtrdiffT()
328 Res.TK = TypeKind::SizeT; in makeSizeT()
336 Res.TK = TypeKind::PtrdiffT; in makePtrdiffT()
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h128 enum TypeKind { kBool, kInteger, kFloatingPoint, kOther }; enum
171 static_cast< ::testing::internal::TypeKind>( \
183 template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
/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/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp100 enum class TypeKind { enum in __anon819a2c470111::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()
186 static bool classof(const Type *T) { return T->typeKind() == TypeKind::Void; } in classof()
196 : Type(TypeKind::Pointer), Pointee(Pointee), Const(Const) {} in PointerType()
218 return T->typeKind() == TypeKind::Pointer; in classof()
244 ScalarType(const Record *Record) : CRegularNamedType(TypeKind::Scalar) { in ScalarType()
285 return T->typeKind() == TypeKind::Scalar; in classof()
[all …]
H A DNeonEmitter.cpp144 enum TypeKind { enum in __anonfaf0748f0111::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/DebugInfo/CodeView/
H A DTypeRecordMapping.h49 std::optional<TypeLeafKind> TypeKind;
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.h157 enum TypeKind : uint8_t { enum
726 inline TypeKind getArrayIndexTypeEncoding(SourceLanguage S) { in getArrayIndexTypeEncoding()
1035 unsigned AttributeEncodingVersion(TypeKind E);
1049 unsigned AttributeEncodingVendor(TypeKind E);
/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.cpp455 dwarf::TypeKind Encoding) { in getOrCreateBaseType()
634 dwarf::TypeKind Encoding = static_cast<dwarf::TypeKind>(Op->getArg(1)); in addExpression()
H A DDwarfExpression.h279 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.cpp282 unsigned llvm::dwarf::AttributeEncodingVersion(dwarf::TypeKind ATE) { in AttributeEncodingVersion()
293 unsigned llvm::dwarf::AttributeEncodingVendor(dwarf::TypeKind ATE) { in AttributeEncodingVendor()
/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.cpp674 llvm::dwarf::TypeKind Encoding; in CreateType()
965 llvm::dwarf::TypeKind Encoding = Ty->isUnsigned() in CreateType()
975 llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float; in CreateType()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp2241 dwarf::TypeKind TK = Signed ? dwarf::DW_ATE_signed : dwarf::DW_ATE_unsigned; in getExtOps()