37 return type_system_sp->IsAggregateType(
m_type);
44 return type_system_sp->IsAnonymousType(
m_type);
51 return type_system_sp->IsScopedEnumerationType(
m_type);
56 bool *is_incomplete)
const {
59 return type_system_sp->IsArrayType(
m_type, element_type_ptr, size,
63 element_type_ptr->
Clear();
67 *is_incomplete =
false;
72 uint64_t *size)
const {
75 return type_system_sp->IsVectorType(
m_type, element_type, size);
82 return type_system_sp->IsRuntimeGeneratedType(
m_type);
89 return type_system_sp->IsCharType(
m_type);
96 return type_system_sp->IsCompleteType(
m_type);
103 return type_system_sp->IsForcefullyCompleted(
m_type);
110 return type_system_sp->IsConst(
m_type);
117 return type_system_sp->GetPtrAuthKey(
m_type);
124 return type_system_sp->GetPtrAuthDiscriminator(
m_type);
131 return type_system_sp->GetPtrAuthAddressDiversity(
m_type);
138 return type_system_sp->IsFunctionType(
m_type);
147 return type_system_sp->IsHomogeneousAggregate(
m_type, base_type_ptr);
154 return type_system_sp->GetNumberOfFunctionArguments(
m_type);
169 return type_system_sp->IsFunctionPointerType(
m_type);
176 return type_system_sp->IsMemberFunctionPointerType(
m_type);
183 return type_system_sp->IsMemberDataPointerType(
m_type);
191 return type_system_sp->IsBlockPointerType(
m_type, function_pointer_type_ptr);
198 return type_system_sp->IsIntegerType(
m_type, is_signed);
205 return type_system_sp->IsEnumerationType(
m_type, is_signed);
216 return type_system_sp->IsPointerType(
m_type, pointee_type);
219 pointee_type->
Clear();
226 return type_system_sp->IsPointerOrReferenceType(
m_type, pointee_type);
229 pointee_type->
Clear();
234 bool *is_rvalue)
const {
237 return type_system_sp->IsReferenceType(
m_type, pointee_type, is_rvalue);
240 pointee_type->
Clear();
247 return type_system_sp->ShouldTreatScalarValueAsAddress(
m_type);
259 return type_system_sp->IsFloatingPointType(
m_type);
271 return type_system_sp->IsDefined(
m_type);
278 return type_system_sp->IsPolymorphicClass(
m_type);
284 bool check_cplusplus,
285 bool check_objc)
const {
288 return type_system_sp->IsPossibleDynamicType(
m_type, dynamic_pointee_type,
289 check_cplusplus, check_objc);
296 return type_system_sp->IsScalarType(
m_type);
303 return type_system_sp->IsTemplateType(
m_type);
310 return type_system_sp->IsTypedefType(
m_type);
317 return type_system_sp->IsVoidType(
m_type);
324 return type_system_sp->HasPointerAuthQualifier(
m_type);
345 return type_system_sp->IsBeingDefined(
m_type);
350 bool is_signed =
false;
355 bool is_signed =
false;
393 return type_system_sp->IsPromotableIntegerType(
m_type);
410 (lldb::eTypeClassClass | lldb::eTypeClassStruct |
411 lldb::eTypeClassUnion);
416 bool carry_virtual)
const {
418 return carry_virtual;
420 if (!carry_virtual) {
422 for (uint32_t i = 0; i < num_virtual_bases; ++i) {
425 if (base.IsVirtualBase(target_base, virtual_base,
428 *virtual_base = base;
436 for (uint32_t i = 0; i < num_direct_bases; ++i) {
439 if (base.IsVirtualBase(target_base, virtual_base, carry_virtual))
458 if (name.IsEmpty() || canonical_name.IsEmpty())
461 if (name == canonical_name)
462 return llvm::formatv(
"'{0}'", name);
464 return llvm::formatv(
"'{0}' (canonically referred to as '{1}')", name,
474 return name == rhs_name;
479 case lldb::eTypeClassClass:
481 case lldb::eTypeClassEnumeration:
483 case lldb::eTypeClassStruct:
485 case lldb::eTypeClassUnion:
490 llvm_unreachable(
"All cases are covered by code above.");
497 for (uint32_t i = 0; i < num_direct_bases; ++i) {
512 return type_system_sp->GetCompleteType(
m_type);
519 return type_system_sp->GetPointerByteSize();
526 return type_system_sp->GetTypeName(
m_type, BaseOnly);
534 return type_system_sp->GetDisplayTypeName(
m_type);
541 return type_system_sp->GetMangledTypeName(
m_type);
550 return type_system_sp->GetTypeInfo(
m_type,
551 pointee_or_element_compiler_type);
558 return type_system_sp->GetMinimumLanguage(
m_type);
565 return type_system_sp->GetTypeClass(
m_type);
566 return lldb::eTypeClassInvalid;
584 return type_system_sp->GetTypeQualifiers(
m_type);
594 return type_system_sp->GetArrayElementType(
m_type, exe_scope);
602 return type_system_sp->GetArrayType(
m_type, size);
631 return type_system_sp->GetFunctionArgumentCount(
m_type);
639 return type_system_sp->GetFunctionArgumentTypeAtIndex(
m_type, idx);
647 return type_system_sp->GetFunctionReturnType(
m_type);
655 return type_system_sp->GetNumMemberFunctions(
m_type);
663 return type_system_sp->GetMemberFunctionAtIndex(
m_type, idx);
678 return type_system_sp->GetPointeeType(
m_type);
686 return type_system_sp->GetPointerType(
m_type);
742 uint32_t payload)
const {
767llvm::Expected<uint64_t>
771 return type_system_sp->GetBitSize(
m_type, exe_scope);
772 return llvm::createStringError(
"Invalid type: Cannot determine size");
775llvm::Expected<uint64_t>
778 if (!bit_size_or_err)
779 return bit_size_or_err.takeError();
780 return (*bit_size_or_err + 7) / 8;
787 return type_system_sp->GetTypeBitAlign(
m_type, exe_scope);
794 return type_system_sp->GetEncoding(
m_type);
801 return type_system_sp->GetFormat(
m_type);
805llvm::Expected<uint32_t>
810 return type_system_sp->GetNumChildren(
m_type, omit_empty_base_classes,
812 return llvm::createStringError(
"invalid type");
818 return type_system_sp->GetBasicTypeEnumeration(
m_type);
825 const llvm::APSInt &value)>
const &callback)
const {
828 return type_system_sp->ForEachEnumerator(
m_type, callback);
834 return type_system_sp->GetNumFields(
m_type);
839 uint64_t *bit_offset_ptr,
840 uint32_t *bitfield_bit_size_ptr,
841 bool *is_bitfield_ptr)
const {
845 bitfield_bit_size_ptr, is_bitfield_ptr);
852 return type_system_sp->GetNumDirectBaseClasses(
m_type);
859 return type_system_sp->GetNumVirtualBaseClasses(
m_type);
865 uint32_t *bit_offset_ptr)
const {
875 uint32_t *bit_offset_ptr)
const {
891 uint32_t &deref_byte_size, int32_t &deref_byte_offset,
ValueObject *valobj,
892 uint64_t &language_flags)
const {
895 return type_system_sp->GetDereferencedType(
896 m_type, exe_ctx, deref_name, deref_byte_size, deref_byte_offset,
897 valobj, language_flags);
903 bool omit_empty_base_classes,
bool ignore_array_bounds,
904 std::string &child_name, uint32_t &child_byte_size,
905 int32_t &child_byte_offset, uint32_t &child_bitfield_bit_size,
906 uint32_t &child_bitfield_bit_offset,
bool &child_is_base_class,
907 bool &child_is_deref_of_parent,
ValueObject *valobj,
908 uint64_t &language_flags)
const {
911 return type_system_sp->GetChildCompilerTypeAtIndex(
912 m_type, exe_ctx, idx, transparent_pointers, omit_empty_base_classes,
913 ignore_array_bounds, child_name, child_byte_size, child_byte_offset,
914 child_bitfield_bit_size, child_bitfield_bit_offset,
915 child_is_base_class, child_is_deref_of_parent, valobj,
954 llvm::StringRef name,
bool omit_empty_base_classes,
955 std::vector<uint32_t> &child_indexes)
const {
956 if (
IsValid() && !name.empty()) {
958 return type_system_sp->GetIndexOfChildMemberWithName(
959 m_type, name, omit_empty_base_classes, child_indexes);
966 if (
IsValid() && !name.empty()) {
968 return type_system_sp->GetDirectNestedTypeWithName(
m_type, name);
976 return type_system_sp->GetNumTemplateArguments(
m_type, expand_pack);
985 return type_system_sp->GetTemplateArgumentKind(
m_type, idx, expand_pack);
990 bool expand_pack)
const {
993 return type_system_sp->GetTypeTemplateArgument(
m_type, idx, expand_pack);
998std::optional<CompilerType::IntegralTemplateArgument>
1002 return type_system_sp->GetIntegralTemplateArgument(
m_type, idx, expand_pack);
1003 return std::nullopt;
1016 return type_system_sp->ShouldPrintAsOneLiner(
m_type, valobj);
1023 return type_system_sp->IsMeaninglessWithoutDynamicResolution(
m_type);
1031llvm::Expected<uint32_t>
1033 bool omit_empty_base_classes)
const {
1034 if (
IsValid() && !name.empty()) {
1036 return type_system_sp->GetIndexOfChildWithName(
m_type, name,
1037 omit_empty_base_classes);
1039 return llvm::createStringError(
"Type has no child named '%s'",
1040 name.str().c_str());
1048 uint32_t bitfield_bit_size,
1049 uint32_t bitfield_bit_offset,
1053 return type_system_sp->DumpTypeValue(
1054 m_type, *s, format, data, byte_offset, byte_size, bitfield_bit_size,
1055 bitfield_bit_offset, exe_scope);
1062 type_system_sp->DumpTypeDescription(
m_type, level);
1069 type_system_sp->DumpTypeDescription(
m_type, *s, level);
1076 return type_system_sp->dump(
m_type);
1077 llvm::errs() <<
"<invalid>\n";
1083 size_t data_byte_size,
Scalar &value,
1098 if (!byte_size_or_err) {
1101 "Cannot get value as scalar: Cannot determine type size: {0}");
1104 uint64_t byte_size = *byte_size_or_err;
1118 if (byte_size <=
sizeof(
unsigned long long)) {
1119 uint64_t uval64 = data.
GetMaxU64(&offset, byte_size);
1120 if (byte_size <=
sizeof(
unsigned int)) {
1121 value = (
unsigned int)uval64;
1123 }
else if (byte_size <=
sizeof(
unsigned long)) {
1124 value = (
unsigned long)uval64;
1126 }
else if (byte_size <=
sizeof(
unsigned long long)) {
1127 value = (
unsigned long long)uval64;
1135 if (byte_size <=
sizeof(
long long)) {
1136 int64_t sval64 = data.
GetMaxS64(&offset, byte_size);
1137 if (byte_size <=
sizeof(
int)) {
1138 value = (int)sval64;
1140 }
else if (byte_size <=
sizeof(
long)) {
1141 value = (long)sval64;
1143 }
else if (byte_size <=
sizeof(
long long)) {
1144 value = (
long long)sval64;
1152 if (byte_size <=
sizeof(
long double)) {
1155 if (byte_size ==
sizeof(
float)) {
1156 if (
sizeof(
float) ==
sizeof(uint32_t)) {
1157 u32 = data.
GetU32(&offset);
1158 value = *((
float *)&u32);
1160 }
else if (
sizeof(
float) ==
sizeof(uint64_t)) {
1161 u64 = data.
GetU64(&offset);
1162 value = *((
float *)&u64);
1165 }
else if (byte_size ==
sizeof(
double)) {
1166 if (
sizeof(
double) ==
sizeof(uint32_t)) {
1167 u32 = data.
GetU32(&offset);
1168 value = *((
double *)&u32);
1170 }
else if (
sizeof(
double) ==
sizeof(uint64_t)) {
1171 u64 = data.
GetU64(&offset);
1172 value = *((
double *)&u64);
1175 }
else if (byte_size ==
sizeof(
long double)) {
1176 if (
sizeof(
long double) ==
sizeof(uint32_t)) {
1177 u32 = data.
GetU32(&offset);
1178 value = *((
long double *)&u32);
1180 }
else if (
sizeof(
long double) ==
sizeof(uint64_t)) {
1181 u64 = data.
GetU64(&offset);
1182 value = *((
long double *)&u64);
1196 assert(
Verify() &&
"verification failed");
1202 assert(
Verify() &&
"verification failed");
1210 return type_system_sp->Verify(
m_type);
1241 return !(lhs == rhs);
#define LLDB_LOG_ERRORV(log, error,...)
Represents a generic declaration context in a program.
Represents a generic declaration such as a function declaration.
This is a minimal wrapper of a TypeSystem shared pointer as returned by CompilerType which conventien...
lldb::TypeSystemSP GetSharedPointer() const
bool operator==(const TypeSystemSPWrapper &other) const
lldb::TypeSystemSP m_typesystem_sp
TypeSystem * operator->() const
Only to be used in a one-off situations like if (typesystem && typesystem->method()) Do not store thi...
Generic representation of a type in a programming language.
uint32_t GetNumberOfNonEmptyBaseClasses()
Go through the base classes and count non-empty ones.
CompilerType GetTypeForFormatters() const
CompilerType GetTypeTemplateArgument(size_t idx, bool expand_pack=false) const
lldb::LanguageType GetMinimumLanguage()
bool GetValueAsScalar(const DataExtractor &data, lldb::offset_t data_offset, size_t data_byte_size, Scalar &value, ExecutionContextScope *exe_scope) const
bool Verify() const
If the type is valid, ask the TypeSystem to verify the integrity of the type to catch CompilerTypes t...
lldb::BasicType GetBasicTypeEnumeration() const
std::optional< IntegralTemplateArgument > GetIntegralTemplateArgument(size_t idx, bool expand_pack=false) const
Returns the value of the template argument and its type.
TypeSystemSPWrapper GetTypeSystem() const
Accessors.
CompilerType GetArrayType(uint64_t size) const
CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const
Create related types using the current type's AST.
bool IsPossibleDynamicType(CompilerType *target_type, bool check_cplusplus, bool check_objc) const
void SetCompilerType(lldb::TypeSystemWP type_system, lldb::opaque_compiler_type_t type)
CompilerType AddConstModifier() const
Return a new CompilerType adds a const modifier to this type if this type is valid and the type syste...
bool IsArrayType(CompilerType *element_type=nullptr, uint64_t *size=nullptr, bool *is_incomplete=nullptr) const
ConstString GetDisplayTypeName() const
CompilerType GetVirtualBaseClassAtIndex(size_t idx, uint32_t *bit_offset_ptr) const
size_t GetNumMemberFunctions() const
CompilerType GetFunctionArgumentTypeAtIndex(size_t idx) const
uint32_t IsHomogeneousAggregate(CompilerType *base_type_ptr) const
CompilerType GetFieldAtIndex(size_t idx, std::string &name, uint64_t *bit_offset_ptr, uint32_t *bitfield_bit_size_ptr, bool *is_bitfield_ptr) const
bool IsCompleteType() const
CompilerType GetRValueReferenceType() const
Return a new CompilerType that is a R value reference to this type if this type is valid and the type...
bool IsIntegerOrUnscopedEnumerationType() const
size_t GetIndexOfChildMemberWithName(llvm::StringRef name, bool omit_empty_base_classes, std::vector< uint32_t > &child_indexes) const
Lookup a child member given a name.
bool IsScalarOrUnscopedEnumerationType() const
CompilerType GetPointerType() const
Return a new CompilerType that is a pointer to this type.
bool IsContextuallyConvertibleToBool() const
This may only be defined in TypeSystemClang.
llvm::Expected< uint64_t > GetByteSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bytes.
CompilerDecl GetStaticFieldWithName(llvm::StringRef name) const
lldb::TypeClass GetTypeClass() const
lldb::opaque_compiler_type_t GetOpaqueQualType() const
size_t GetNumTemplateArguments(bool expand_pack=false) const
Return the number of template arguments the type has.
CompilerType AddVolatileModifier() const
Return a new CompilerType adds a volatile modifier to this type if this type is valid and the type sy...
bool IsVirtualBase(CompilerType target_base, CompilerType *virtual_base, bool carry_virtual=false) const
Checks whether target_base is a virtual base of type (direct or indirect).
CompilerType AddRestrictModifier() const
Return a new CompilerType adds a restrict modifier to this type if this type is valid and the type sy...
bool IsPointerToVoid() const
bool IsBeingDefined() const
lldb::TypeSystemWP m_type_system
bool HasPointerAuthQualifier() const
CompilerType GetDirectNestedTypeWithName(llvm::StringRef name) const
bool GetPtrAuthAddressDiversity() const
uint32_t GetNumVirtualBaseClasses() const
lldb::Encoding GetEncoding() const
size_t GetPointerByteSize() const
AST related queries.
CompilerType GetFunctionArgumentAtIndex(const size_t index) const
void ForEachEnumerator(std::function< bool(const CompilerType &integer_type, ConstString name, const llvm::APSInt &value)> const &callback) const
If this type is an enumeration, iterate through all of its enumerators using a callback.
bool IsMemberDataPointerType() const
LLVM_DUMP_METHOD void dump() const
Dumping types.
CompilerType GetLValueReferenceType() const
Return a new CompilerType that is a L value reference to this type if this type is valid and the type...
uint32_t GetNumFields() const
bool IsPromotableIntegerType() const
size_t GetNumberOfFunctionArguments() const
bool IsComplexType() const
bool IsIntegerOrEnumerationType(bool &is_signed) const
bool IsScopedEnumerationType() const
bool ShouldTreatScalarValueAsAddress() const
CompilerType GetNonReferenceType() const
If this type is a reference to a type (L value or R value reference), return a new type with the refe...
uint32_t GetNumDirectBaseClasses() const
bool IsMeaninglessWithoutDynamicResolution() const
bool IsBlockPointerType(CompilerType *function_pointer_type_ptr=nullptr) const
bool IsAnonymousType() const
ConstString GetTypeName(bool BaseOnly=false) const
bool IsEnumerationIntegerTypeSigned() const
CompilerType GetTypedefedType() const
If the current object represents a typedef type, get the underlying type.
bool IsReferenceType(CompilerType *pointee_type=nullptr, bool *is_rvalue=nullptr) const
bool DumpTypeValue(Stream *s, lldb::Format format, const DataExtractor &data, lldb::offset_t data_offset, size_t data_byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, ExecutionContextScope *exe_scope)
bool IsArrayOfScalarType() const
std::string TypeDescription()
bool IsAggregateType() const
CompilerType GetArrayElementType(ExecutionContextScope *exe_scope) const
Creating related types.
bool IsInteger() const
This is used when you don't care about the signedness of the integer.
llvm::Expected< CompilerType > GetDereferencedType(ExecutionContext *exe_ctx, std::string &deref_name, uint32_t &deref_byte_size, int32_t &deref_byte_offset, ValueObject *valobj, uint64_t &language_flags) const
lldb::Format GetFormat() const
CompilerType GetFullyUnqualifiedType() const
ConstString GetMangledTypeName() const
unsigned GetTypeQualifiers() const
llvm::Expected< CompilerType > GetChildCompilerTypeAtIndex(ExecutionContext *exe_ctx, size_t idx, bool transparent_pointers, bool omit_empty_base_classes, bool ignore_array_bounds, std::string &child_name, uint32_t &child_byte_size, int32_t &child_byte_offset, uint32_t &child_bitfield_bit_size, uint32_t &child_bitfield_bit_offset, bool &child_is_base_class, bool &child_is_deref_of_parent, ValueObject *valobj, uint64_t &language_flags) const
CompilerType GetDirectBaseClassAtIndex(size_t idx, uint32_t *bit_offset_ptr) const
std::optional< size_t > GetTypeBitAlign(ExecutionContextScope *exe_scope) const
const char * GetTypeTag()
bool IsFunctionPointerType() const
CompilerType GetPointeeType() const
If this type is a pointer type, return the type that the pointer points to, else return an invalid ty...
bool IsIntegerType(bool &is_signed) const
bool GetCompleteType() const
Type Completion.
bool IsUnscopedEnumerationType() const
bool IsFloatingPointType() const
Returns true for floating point types (including complex floats).
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr) const
int GetFunctionArgumentCount() const
Returns -1 if this isn't a function of if the function doesn't have a prototype Returns a value >= 0 ...
llvm::Expected< uint32_t > GetIndexOfChildWithName(llvm::StringRef name, bool omit_empty_base_classes) const
Lookup a child given a name.
unsigned GetPtrAuthDiscriminator() const
bool IsRealFloatingPointType() const
Returns true for non-complex float types.
llvm::Expected< uint32_t > GetNumChildren(bool omit_empty_base_classes, const ExecutionContext *exe_ctx) const
bool IsFunctionType() const
CompilerType GetEnumerationIntegerType() const
lldb::opaque_compiler_type_t m_type
bool CompareTypes(CompilerType rhs) const
llvm::Expected< uint64_t > GetBitSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bits.
bool IsScalarType() const
bool IsForcefullyCompleted() const
bool IsEnumerationType() const
This is used when you don't care about the signedness of the enum.
bool IsPolymorphicClass() const
unsigned GetPtrAuthKey() const
CompilerType CreateTypedef(const char *name, const CompilerDeclContext &decl_ctx, uint32_t payload) const
Create a typedef to this type using "name" as the name of the typedef this type is valid and the type...
bool IsTypedefType() const
CompilerType GetFunctionReturnType() const
bool IsRecordType() const
bool IsVectorType(CompilerType *element_type=nullptr, uint64_t *size=nullptr) const
bool IsMemberFunctionPointerType() const
CompilerType GetAtomicType() const
Return a new CompilerType that is the atomic type of this type.
bool IsTemplateType() const
bool IsNullPtrType() const
CompilerType GetCanonicalType() const
void DumpTypeDescription(lldb::DescriptionLevel level=lldb::eDescriptionLevelFull) const
Dump to stdout.
bool IsRuntimeGeneratedType() const
lldb::TemplateArgumentKind GetTemplateArgumentKind(size_t idx, bool expand_pack=false) const
LazyBool ShouldPrintAsOneLiner(ValueObject *valobj) const
TypeMemberFunctionImpl GetMemberFunctionAtIndex(size_t idx)
bool IsPointerOrReferenceType(CompilerType *pointee_type=nullptr) const
bool IsPointerToScalarType() const
CompilerType(lldb::TypeSystemWP type_system, lldb::opaque_compiler_type_t type)
Creates a CompilerType with the given TypeSystem and opaque compiler type.
bool IsPointerType(CompilerType *pointee_type=nullptr) const
CompilerType AddPtrAuthModifier(uint32_t payload) const
Return a new CompilerType adds a ptrauth modifier from the given 32-bit opaque payload to this type i...
A uniqued constant string class.
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A stream class that can stream formatted output to a file.
Interface for representing a type system.
virtual CompilerDecl GetStaticFieldWithName(lldb::opaque_compiler_type_t type, llvm::StringRef name)
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
bool operator!=(const Address &lhs, const Address &rhs)
bool operator==(const Address &lhs, const Address &rhs)
void * opaque_compiler_type_t
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
BasicType
Basic types enumeration for the public API SBType::GetBasicType().
Format
Display format definitions.
LanguageType
Programming language type.
@ eLanguageTypeC
Non-standardized C, such as K&R.
@ eTemplateArgumentKindNull
Encoding
Register encoding definitions.
@ eEncodingVector
vector registers
@ eEncodingUint
unsigned integer
@ eEncodingSint
signed integer
std::weak_ptr< lldb_private::TypeSystem > TypeSystemWP