42#include "clang/AST/CXXInheritance.h"
43#include "clang/AST/DeclBase.h"
44#include "clang/AST/DeclCXX.h"
45#include "clang/AST/DeclObjC.h"
46#include "clang/AST/DeclTemplate.h"
47#include "clang/AST/Type.h"
48#include "clang/Basic/Specifiers.h"
49#include "llvm/ADT/StringExtras.h"
50#include "llvm/DebugInfo/DWARF/DWARFAddressRange.h"
51#include "llvm/DebugInfo/DWARF/DWARFTypePrinter.h"
52#include "llvm/Demangle/Demangle.h"
62using namespace llvm::dwarf;
72 case clang::Decl::CXXRecord:
73 case clang::Decl::ClassTemplateSpecialization:
94 while (Parent.IsValid()) {
95 if (Parent.Tag() == DW_TAG_module)
97 Parent = Parent.GetParent();
108 parent = parent.GetParent()) {
110 if (tag == DW_TAG_module)
111 top_module_die = parent;
112 else if (tag == DW_TAG_compile_unit || tag == DW_TAG_partial_unit)
116 return top_module_die;
125 if (clang_module_die) {
126 const char *module_name = clang_module_die.
GetName();
138 return FieldName.starts_with(
"_vptr$")
140 || FieldName.starts_with(
"_vptr.");
146 case DW_TAG_class_type:
147 case DW_TAG_structure_type:
148 case DW_TAG_union_type:
159 assert(subprogram.
Tag() == DW_TAG_subprogram ||
160 subprogram.
Tag() == DW_TAG_inlined_subroutine ||
161 subprogram.
Tag() == DW_TAG_subroutine_type);
166 std::optional<size_t> object_pointer_index;
168 if (subprogram.
GetDIE()->GetAttributeValue(
169 subprogram.
GetCU(), DW_AT_object_pointer, form_value,
174 object_pointer_index = form_value.
Unsigned();
179 size_t param_index = 0;
180 for (
const auto &child : subprogram.
children()) {
181 if (child.Tag() != DW_TAG_formal_parameter)
184 if (param_index == object_pointer_index.value_or(0)) {
185 object_pointer = child;
199 if (object_pointer_index)
200 return object_pointer;
215 if (
const char *name = object_pointer.
GetName();
216 name && ::strcmp(name,
"this") != 0)
219 return object_pointer;
227 if (!subprogram || !object_parameter)
236 unsigned cv_quals = 0;
238 cv_quals |= clang::Qualifiers::Const;
240 cv_quals |= clang::Qualifiers::Volatile;
258 auto *obj = sym->GetMainObjectFile();
262 auto module_sp = obj->GetModule();
266 return module_sp->GetID();
271 module_id = get_module_id(
dwarf);
276 const auto die_id = die.
GetID();
292 if (!clang_module_sp)
298 std::vector<lldb_private::CompilerContext> die_context = die.
GetDeclContext();
299 TypeQuery query(die_context, TypeQueryOptions::e_module_search |
300 TypeQueryOptions::e_find_one);
305 clang_module_sp->FindTypes(query, results);
317 sym_file.ForEachExternalModule(
319 module.FindTypes(query, results);
320 pcm_type_sp = results.GetTypeMap().FirstType();
321 return (bool)pcm_type_sp;
351 auto type_sp =
dwarf->MakeType(
352 die.
GetID(), pcm_type_sp->GetName(),
353 llvm::expectedToOptional(pcm_type_sp->GetByteSize(
nullptr)),
nullptr,
375 clang::DeclContext *decl_ctx,
377 const char *type_name_cstr) {
378 auto *tag_decl_ctx = clang::dyn_cast<clang::TagDecl>(decl_ctx);
383 if (tag_decl_ctx->isCompleteDefinition() || tag_decl_ctx->isBeingDefined())
391 if (type && ast_importer.
CanImport(type)) {
396 "Unable to complete the Decl context for DIE {0} at offset "
397 "{1:x16}.\nPlease file a bug report.",
398 type_name_cstr ? type_name_cstr :
"", die.
GetOffset());
407 if (!tag_decl_ctx->hasExternalLexicalStorage()) {
415 for (
size_t i = 0; i < attributes.
Size(); ++i) {
423 case DW_AT_abstract_origin:
427 case DW_AT_accessibility:
432 case DW_AT_artificial:
436 case DW_AT_bit_stride:
440 case DW_AT_byte_size:
448 case DW_AT_alignment:
452 case DW_AT_byte_stride:
456 case DW_AT_calling_convention:
460 case DW_AT_containing_type:
464 case DW_AT_decl_file:
469 case DW_AT_decl_line:
472 case DW_AT_decl_column:
476 case DW_AT_declaration:
484 case DW_AT_enum_class:
501 case DW_AT_linkage_name:
502 case DW_AT_MIPS_linkage_name:
510 case DW_AT_signature:
514 case DW_AT_specification:
522 case DW_AT_virtuality:
526 case DW_AT_APPLE_objc_complete_type:
530 case DW_AT_APPLE_objc_direct:
534 case DW_AT_APPLE_runtime_class:
538 case DW_AT_GNU_vector:
541 case DW_AT_export_symbols:
544 case DW_AT_rvalue_reference:
547 case DW_AT_reference:
550 case DW_AT_APPLE_enum_kind:
551 enum_kind =
static_cast<clang::EnumExtensibilityAttr::Kind
>(
560 return unit->GetAbsolutePath().GetPath();
561 return "<missing DWARF unit path>";
566 bool *type_is_new_ptr) {
568 *type_is_new_ptr =
false;
578 clang::DeclContext *context =
581 dwarf->GetObjectFile()->GetModule()->LogMessage(
583 "DWARFASTParserClang::ParseTypeFromDWARF "
584 "(die = {0:x16}, decl_ctx = {1:p} (die "
585 "{2:x16})) {3} ({4}) name = '{5}')",
591 if (
auto [it, inserted] =
596 return it->getSecond()->shared_from_this();
605 if (clang::DeclContext *decl_ctx =
611 *type_is_new_ptr =
true;
617 case DW_TAG_template_alias:
618 case DW_TAG_base_type:
619 case DW_TAG_pointer_type:
620 case DW_TAG_reference_type:
621 case DW_TAG_rvalue_reference_type:
622 case DW_TAG_const_type:
623 case DW_TAG_restrict_type:
624 case DW_TAG_volatile_type:
625 case DW_TAG_LLVM_ptrauth_type:
626 case DW_TAG_atomic_type:
627 case DW_TAG_unspecified_type:
630 case DW_TAG_structure_type:
631 case DW_TAG_union_type:
632 case DW_TAG_class_type:
635 case DW_TAG_enumeration_type:
638 case DW_TAG_inlined_subroutine:
639 case DW_TAG_subprogram:
640 case DW_TAG_subroutine_type:
643 case DW_TAG_array_type:
646 case DW_TAG_ptr_to_member_type:
650 dwarf->GetObjectFile()->GetModule()->ReportError(
651 "[{0:x16}]: unhandled type tag {1:x4} ({2}), "
652 "please file a bug and "
653 "attach the file at the start of this error message",
660 dwarf->GetDIEToType()[die.
GetDIE()] = type_sp.get();
665static std::optional<uint32_t>
676 Value initialValue(0);
678 uint32_t block_length = form_value.
Unsigned();
679 uint32_t block_offset =
689 "ExtractDataMemberLocation failed: {0}");
693 return memberOffset->ResolveValue(
nullptr).UInt();
697 auto getAttr = [&](llvm::dwarf::Attribute Attr,
unsigned defaultValue = 0) {
700 const unsigned key = getAttr(DW_AT_LLVM_ptrauth_key);
701 const bool addr_disc = getAttr(DW_AT_LLVM_ptrauth_address_discriminated);
702 const unsigned extra = getAttr(DW_AT_LLVM_ptrauth_extra_discriminator);
703 const bool isapointer = getAttr(DW_AT_LLVM_ptrauth_isa_pointer);
704 const bool authenticates_null_values =
705 getAttr(DW_AT_LLVM_ptrauth_authenticates_null_values);
706 const unsigned authentication_mode_int = getAttr(
707 DW_AT_LLVM_ptrauth_authentication_mode,
708 static_cast<unsigned>(clang::PointerAuthenticationMode::SignAndAuth));
709 clang::PointerAuthenticationMode authentication_mode =
710 clang::PointerAuthenticationMode::SignAndAuth;
711 if (authentication_mode_int >=
712 static_cast<unsigned>(clang::PointerAuthenticationMode::None) &&
713 authentication_mode_int <=
714 static_cast<unsigned>(
715 clang::PointerAuthenticationMode::SignAndAuth)) {
716 authentication_mode =
717 static_cast<clang::PointerAuthenticationMode
>(authentication_mode_int);
720 "[{0:x16}]: invalid pointer authentication mode method {1:x4}",
721 die.
GetOffset(), authentication_mode_int);
723 auto ptr_auth = clang::PointerAuthQualifier::Create(
724 key, addr_disc, extra, authentication_mode, isapointer,
725 authenticates_null_values);
743 if (tag == DW_TAG_typedef || tag == DW_TAG_template_alias) {
795 case DW_TAG_unspecified_type:
796 if (attrs.
name ==
"nullptr_t" || attrs.
name ==
"decltype(nullptr)") {
805 case DW_TAG_base_type: {
813 clang_type =
m_ast.GetBuiltinTypeForDWARFEncodingAndBitSize(
817 case DW_TAG_pointer_type:
820 case DW_TAG_reference_type:
823 case DW_TAG_rvalue_reference_type:
827 case DW_TAG_template_alias:
830 case DW_TAG_const_type:
833 case DW_TAG_restrict_type:
836 case DW_TAG_volatile_type:
839 case DW_TAG_LLVM_ptrauth_type:
843 case DW_TAG_atomic_type:
850 if (tag == DW_TAG_pointer_type) {
858 if (!strcmp(child_die.GetAttributeValueAsString(DW_AT_name,
""),
863 if (function_pointer_type) {
867 bool function_type_is_new_pointer;
869 sc, function_type, &function_type_is_new_pointer);
871 if (lldb_function_type_sp) {
872 clang_type =
m_ast.CreateBlockPointerType(
873 lldb_function_type_sp->GetForwardCompilerType());
889 if (attrs.
name ==
"id") {
891 dwarf->GetObjectFile()->GetModule()->LogMessage(
893 "SymbolFileDWARF::ParseType (die = {0:x16}) {1} ({2}) '{3}' "
894 "is Objective-C 'id' built-in type.",
901 }
else if (attrs.
name ==
"Class") {
903 dwarf->GetObjectFile()->GetModule()->LogMessage(
905 "SymbolFileDWARF::ParseType (die = {0:x16}) {1} ({2}) '{3}' "
906 "is Objective-C 'Class' built-in type.",
913 }
else if (attrs.
name ==
"SEL") {
915 dwarf->GetObjectFile()->GetModule()->LogMessage(
917 "SymbolFileDWARF::ParseType (die = {0:x16}) {1} ({2}) '{3}' "
918 "is Objective-C 'selector' built-in type.",
933 if (encoding_die && encoding_die.
Tag() == DW_TAG_structure_type) {
934 llvm::StringRef struct_name = encoding_die.
GetName();
935 if (struct_name ==
"objc_object") {
937 dwarf->GetObjectFile()->GetModule()->LogMessage(
939 "SymbolFileDWARF::ParseType (die = {0:x16}) {1} ({2}) '{3}' "
940 "is 'objc_object*', which we overrode to 'id'.",
955 &attrs.
decl, clang_type, resolve_state, payload);
962 if (llvm::StringRef(die.
GetName()).contains(
"<"))
966 llvm::raw_string_ostream os(name);
967 llvm::DWARFTypePrinter<DWARFDIE> type_printer(os);
968 type_printer.appendAndTerminateTemplateParameters(die);
983 unique_typename, decl_declaration);
985 dwarf->GetUniqueDWARFASTTypeMap().Find(
986 unique_typename, decl_die, decl_declaration,
989 unique_ast_entry_type->UpdateToDefDIE(def_die, def_attrs.
decl,
994 "Failed to find {0:x16} {1} ({2}) type \"{3}\" in "
995 "UniqueDWARFASTTypeMap",
1012 def_die =
dwarf->FindDefinitionDIE(decl_die);
1016 if (debug_map_symfile) {
1024 dwarf->GetObjectFile()->GetModule()->LogMessage(
1026 "SymbolFileDWARF({0:p}) - {1:x16}}: {2} ({3}) type \"{4}\" is a "
1027 "forward declaration, complete DIE is {5}",
1030 def_die ? llvm::utohexstr(def_die.
GetID()) :
"not found");
1034 if (
auto [it, inserted] =
dwarf->GetDIEToType().try_emplace(
1039 return it->getSecond()->shared_from_this();
1050 Type *enumerator_type =
1052 if (enumerator_type)
1056 if (!enumerator_clang_type) {
1058 enumerator_clang_type =
m_ast.GetBuiltinTypeForDWARFEncodingAndBitSize(
1059 "", DW_ATE_signed, *attrs.
byte_size * 8);
1076 clang::DeclContext *type_decl_ctx =
1079 if (decl_die != def_die) {
1081 dwarf->GetDIEToType()[def_die.
GetDIE()] = type_sp.get();
1086 dwarf->GetObjectFile()->GetModule()->ReportError(
1087 "DWARF DIE at {0:x16} named \"{1}\" was not able to start its "
1088 "definition.\nPlease file a bug and attach the file at the "
1089 "start of this error message",
1095static clang::CallingConv
1098 case llvm::dwarf::DW_CC_normal:
1100 case llvm::dwarf::DW_CC_BORLAND_stdcall:
1101 return clang::CC_X86StdCall;
1102 case llvm::dwarf::DW_CC_BORLAND_msfastcall:
1103 return clang::CC_X86FastCall;
1104 case llvm::dwarf::DW_CC_LLVM_vectorcall:
1105 return clang::CC_X86VectorCall;
1106 case llvm::dwarf::DW_CC_BORLAND_pascal:
1107 return clang::CC_X86Pascal;
1108 case llvm::dwarf::DW_CC_LLVM_Win64:
1109 return clang::CC_Win64;
1110 case llvm::dwarf::DW_CC_LLVM_X86_64SysV:
1111 return clang::CC_X86_64SysV;
1112 case llvm::dwarf::DW_CC_LLVM_X86RegCall:
1113 return clang::CC_X86RegCall;
1119 LLDB_LOG(log,
"Unsupported DW_AT_calling_convention value: {0}",
1132 const auto tag = die.
Tag();
1137 TypeSP complete_objc_class_type_sp =
1138 dwarf->FindCompleteObjCDefinitionTypeForDIE(
DWARFDIE(), class_name,
1141 if (!complete_objc_class_type_sp)
1145 complete_objc_class_type_sp->GetForwardCompilerType();
1147 if (!type_clang_forward_type)
1153 clang::ObjCMethodDecl *objc_method_decl =
m_ast.AddMethodToObjCObjectType(
1157 if (!objc_method_decl) {
1158 dwarf->GetObjectFile()->GetModule()->ReportError(
1159 "[{0:x16}]: invalid Objective-C method {1:x4} ({2}), "
1160 "please file a bug and attach the file at the start of "
1161 "this error message",
1167 m_ast.SetMetadataAsUserID(objc_method_decl, die.
GetID());
1175 const DWARFDIE &object_parameter,
bool &ignore_containing_context) {
1180 Type *class_type =
dwarf->ResolveType(decl_ctx_die);
1184 if (class_type->
GetID() != decl_ctx_die.
GetID() ||
1191 std::vector<DWARFDIE> failures;
1203 return {
true, type_ptr->shared_from_this()};
1217 clang::DeclContext *spec_clang_decl_ctx =
1219 if (spec_clang_decl_ctx)
1222 dwarf->GetObjectFile()->GetModule()->ReportWarning(
1223 "{0:x8}: DW_AT_specification({1:x16}"
1227 return {
true,
nullptr};
1239 if (abs_clang_decl_ctx)
1242 dwarf->GetObjectFile()->GetModule()->ReportWarning(
1243 "{0:x8}: DW_AT_abstract_origin({1:x16}"
1247 return {
true,
nullptr};
1260 const bool is_static = !object_parameter.
IsValid();
1266 return {
true,
nullptr};
1268 const bool is_attr_used =
false;
1272 const auto accessibility =
1275 clang::CXXMethodDecl *cxx_method_decl =
m_ast.AddMethodToCXXRecordType(
1281 if (cxx_method_decl) {
1287 if (
char const *object_pointer_name = object_parameter.
GetName()) {
1289 LLDB_LOGF(log,
"Setting object pointer name: %s on method object %p.\n",
1290 object_pointer_name,
static_cast<void *
>(cxx_method_decl));
1292 m_ast.SetMetadata(cxx_method_decl, metadata);
1294 ignore_containing_context =
true;
1299 const bool type_handled = cxx_method_decl !=
nullptr || attrs.
is_artificial;
1301 return {type_handled,
nullptr};
1312 bool is_variadic =
false;
1313 bool has_template_params =
false;
1316 Type *func_type =
nullptr;
1326 std::vector<CompilerType> function_param_types;
1327 llvm::SmallVector<llvm::StringRef> function_param_names;
1332 clang::DeclContext *containing_decl_ctx =
1334 assert(containing_decl_ctx);
1338 has_template_params, function_param_types,
1339 function_param_names);
1343 bool ignore_containing_context =
false;
1354 if (is_cxx_method && has_template_params) {
1355 ignore_containing_context =
true;
1356 is_cxx_method =
false;
1359 clang::CallingConv calling_convention =
1367 return_clang_type, function_param_types, is_variadic,
1372 bool type_handled =
false;
1373 if (tag == DW_TAG_subprogram || tag == DW_TAG_inlined_subroutine) {
1374 if (std::optional<const ObjCLanguage::ObjCMethodName> objc_method =
1379 }
else if (is_cxx_method) {
1380 auto [handled, type_sp] =
1382 object_parameter, ignore_containing_context);
1386 type_handled = handled;
1390 if (!type_handled) {
1391 clang::FunctionDecl *function_decl =
nullptr;
1392 clang::FunctionDecl *template_function_decl =
nullptr;
1397 if (
dwarf->ResolveType(abs_die)) {
1398 function_decl = llvm::dyn_cast_or_null<clang::FunctionDecl>(
1401 if (function_decl) {
1407 if (!function_decl) {
1408 char *name_buf =
nullptr;
1415 llvm::ItaniumPartialDemangler D;
1417 name_buf = D.getFunctionBaseName(
nullptr,
nullptr);
1423 function_decl =
m_ast.CreateFunctionDeclaration(
1424 ignore_containing_context ?
m_ast.GetTranslationUnitDecl()
1425 : containing_decl_ctx,
1428 std::free(name_buf);
1430 if (has_template_params) {
1433 template_function_decl =
m_ast.CreateFunctionDeclaration(
1434 ignore_containing_context ?
m_ast.GetTranslationUnitDecl()
1435 : containing_decl_ctx,
1438 clang::FunctionTemplateDecl *func_template_decl =
1439 m_ast.CreateFunctionTemplateDecl(
1441 template_function_decl, template_param_infos);
1442 m_ast.CreateFunctionTemplateSpecializationInfo(
1443 template_function_decl, func_template_decl, template_param_infos);
1448 if (function_decl) {
1451 const clang::FunctionProtoType *function_prototype(
1452 llvm::cast<clang::FunctionProtoType>(
1454 const auto params =
m_ast.CreateParameterDeclarations(
1455 function_decl, *function_prototype, function_param_names);
1456 function_decl->setParams(params);
1457 if (template_function_decl)
1458 template_function_decl->setParams(params);
1463 if (
char const *object_pointer_name = object_parameter.
GetName()) {
1466 "Setting object pointer name: %s on function "
1468 object_pointer_name,
static_cast<void *
>(function_decl));
1470 m_ast.SetMetadata(function_decl, metadata);
1475 return dwarf->MakeType(
1486 Type *element_type =
dwarf->ResolveTypeUID(type_die,
true);
1495 byte_stride = array_info->byte_stride;
1496 bit_stride = array_info->bit_stride;
1498 if (byte_stride == 0 && bit_stride == 0)
1499 byte_stride = llvm::expectedToOptional(element_type->
GetByteSize(
nullptr))
1504 uint64_t array_element_bit_stride = byte_stride * 8 + bit_stride;
1506 if (array_info && array_info->element_orders.size() > 0) {
1507 auto end = array_info->element_orders.rend();
1508 for (
auto pos = array_info->element_orders.rbegin(); pos != end; ++pos) {
1509 clang_type =
m_ast.CreateArrayType(
1510 array_element_type, *pos, attrs.
is_vector);
1512 uint64_t num_elements = pos->value_or(0);
1513 array_element_type = clang_type;
1514 array_element_bit_stride = num_elements
1515 ? array_element_bit_stride * num_elements
1516 : array_element_bit_stride;
1519 clang_type =
m_ast.CreateArrayType(
1520 array_element_type, std::nullopt, attrs.
is_vector);
1524 dwarf->MakeType(die.
GetID(), empty_name, array_element_bit_stride / 8,
1527 type_sp->SetEncodingType(element_type);
1529 m_ast.SetMetadataAsUserID(type, die.
GetID());
1542 if ((class_type ==
nullptr) || (pointee_type ==
nullptr))
1549 class_clang_type, pointee_clang_type);
1551 if (std::optional<uint64_t> clang_type_size =
1552 llvm::expectedToOptional(clang_type.
GetByteSize(
nullptr))) {
1553 return dwarf->MakeType(die.
GetID(), attrs.
name, *clang_type_size,
nullptr,
1564 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> &base_classes,
1572 if (attributes.
Size() == 0)
1576 AccessType accessibility = default_accessibility;
1577 bool is_virtual =
false;
1578 bool is_base_of_class =
true;
1579 off_t member_byte_offset = 0;
1581 for (uint32_t i = 0; i < attributes.
Size(); ++i) {
1587 encoding_form = form_value;
1589 case DW_AT_data_member_location:
1590 if (
auto maybe_offset =
1592 member_byte_offset = *maybe_offset;
1595 case DW_AT_accessibility:
1600 case DW_AT_virtuality:
1601 is_virtual = form_value.
Boolean();
1611 if (base_class_type ==
nullptr) {
1612 module_sp->ReportError(
"{0:x16}: DW_TAG_inheritance failed to "
1613 "resolve the base class at {1:x16}"
1614 " from enclosing type {2:x16}. \nPlease file "
1615 "a bug and attach the file at the start of "
1616 "this error message",
1624 assert(base_class_clang_type);
1632 ast->SetObjCSuperClass(class_clang_type, base_class_clang_type);
1635 std::unique_ptr<clang::CXXBaseSpecifier> result =
1637 accessibility, is_virtual,
1642 base_classes.push_back(std::move(result));
1660 clang::CharUnits::fromQuantity(member_byte_offset)));
1673 if (sc_parent_tag == DW_TAG_compile_unit ||
1674 sc_parent_tag == DW_TAG_partial_unit) {
1676 }
else if (sc.
function !=
nullptr && sc_parent_die) {
1677 symbol_context_scope =
1679 if (symbol_context_scope ==
nullptr)
1680 symbol_context_scope = sc.
function;
1682 symbol_context_scope = sc.
module_sp.get();
1685 if (symbol_context_scope !=
nullptr)
1686 type_sp->SetSymbolContextScope(symbol_context_scope);
1703 decl_declaration.
Clear();
1704 std::string qualified_name;
1707 while (parent_decl_ctx_die) {
1711 const dw_tag_t parent_tag = parent_decl_ctx_die.
Tag();
1712 switch (parent_tag) {
1713 case DW_TAG_namespace: {
1714 if (
const char *namespace_name = parent_decl_ctx_die.
GetName()) {
1715 qualified_name.insert(0,
"::");
1716 qualified_name.insert(0, namespace_name);
1718 qualified_name.insert(0,
"(anonymous namespace)::");
1724 case DW_TAG_class_type:
1725 case DW_TAG_structure_type:
1726 case DW_TAG_union_type: {
1727 if (
const char *class_union_struct_name = parent_decl_ctx_die.
GetName()) {
1728 qualified_name.insert(0,
"::");
1729 qualified_name.insert(0,
1731 qualified_name.insert(0, class_union_struct_name);
1738 parent_decl_ctx_die.
Clear();
1743 if (qualified_name.empty())
1744 qualified_name.append(
"::");
1746 qualified_name.append(unique_typename.
GetCString());
1764 uint64_t byte_size = attrs.
byte_size.value_or(0);
1770 dwarf->GetObjectFile()->GetModule()->LogMessage(
1771 log,
"SymbolFileDWARF({0:p}) - {1:x16}: {2} has unique name: {3} ",
1776 dwarf->GetUniqueDWARFASTTypeMap().Find(
1777 unique_typename, die, unique_decl, byte_size,
1779 if (
TypeSP type_sp = unique_ast_entry_type->m_type_sp) {
1780 dwarf->GetDIEToType()[die.
GetDIE()] = type_sp.get();
1787 unique_ast_entry_type->m_is_forward_declaration) {
1788 unique_ast_entry_type->UpdateToDefDIE(die, unique_decl, byte_size);
1789 clang_type = type_sp->GetForwardCompilerType();
1793 dwarf->GetForwardDeclCompilerTypeToDIE().insert_or_assign(
1802 int tag_decl_kind = -1;
1804 if (tag == DW_TAG_structure_type) {
1805 tag_decl_kind = llvm::to_underlying(clang::TagTypeKind::Struct);
1807 }
else if (tag == DW_TAG_union_type) {
1808 tag_decl_kind = llvm::to_underlying(clang::TagTypeKind::Union);
1810 }
else if (tag == DW_TAG_class_type) {
1811 tag_decl_kind = llvm::to_underlying(clang::TagTypeKind::Class);
1824 dwarf->FindCompleteObjCDefinitionTypeForDIE(die, attrs.
name,
true);
1828 if (debug_map_symfile) {
1832 die, attrs.
name,
true);
1838 dwarf->GetObjectFile()->GetModule()->LogMessage(
1840 "SymbolFileDWARF({0:p}) - {1:x16}: {2} ({3}) type \"{4}\" is an "
1841 "incomplete objc type, complete type is {5:x8}",
1857 assert(tag_decl_kind != -1);
1859 clang::DeclContext *containing_decl_ctx =
1863 containing_decl_ctx, die,
1869 const clang::Decl::Kind containing_decl_kind =
1870 containing_decl_ctx->getDeclKind();
1882 clang::ClassTemplateDecl *class_template_decl =
1883 m_ast.ParseClassTemplateDecl(
1886 if (!class_template_decl) {
1888 dwarf->GetObjectFile()->GetModule()->LogMessage(
1890 "SymbolFileDWARF({0:p}) - {1:x16}: {2} ({3}) type \"{4}\" "
1891 "clang::ClassTemplateDecl failed to return a decl.",
1898 clang::ClassTemplateSpecializationDecl *class_specialization_decl =
1899 m_ast.CreateClassTemplateSpecializationDecl(
1901 tag_decl_kind, template_param_infos);
1902 if (!class_specialization_decl) {
1904 dwarf->GetObjectFile()->GetModule()->LogMessage(
1906 "SymbolFileDWARF({0:p}) - Failed to create specialization for "
1907 "clang::ClassTemplateDecl({1}, {2:p}).",
1908 this, llvm::StringRef(attrs.
name), class_template_decl);
1914 m_ast.CreateClassTemplateSpecializationType(class_specialization_decl);
1916 m_ast.SetMetadata(class_template_decl, metadata);
1917 m_ast.SetMetadata(class_specialization_decl, metadata);
1921 clang_type =
m_ast.CreateRecordType(
1936 clang::DeclContext *type_decl_ctx =
1944 auto unique_ast_entry_up = std::make_unique<UniqueDWARFASTType>();
1948 unique_ast_entry_up->m_type_sp = type_sp;
1949 unique_ast_entry_up->m_die = die;
1950 unique_ast_entry_up->m_declaration = unique_decl;
1951 unique_ast_entry_up->m_byte_size = byte_size;
1953 dwarf->GetUniqueDWARFASTTypeMap().Insert(unique_typename,
1954 *unique_ast_entry_up);
1962 dwarf->GetForwardDeclCompilerTypeToDIE()
1967 assert(inserted &&
"Type already in the forward declaration map!");
1976 clang::CXXRecordDecl *record_decl =
1978 if (record_decl && record_decl->getDefinition()) {
1979 record_decl->setHasTrivialSpecialMemberForCall();
1984 clang::CXXRecordDecl *record_decl =
1987 record_decl->setArgPassingRestrictions(
1988 clang::RecordArgPassingKind::CannotPassInRegs);
1998 const CompilerType &class_opaque_type,
const char *property_name,
2002 const char *property_setter_name,
const char *property_getter_name,
2027static std::optional<clang::APValue>
MakeAPValue(
const clang::ASTContext &ast,
2030 std::optional<uint64_t> bit_width =
2031 llvm::expectedToOptional(clang_type.
GetBitSize(
nullptr));
2033 return std::nullopt;
2035 bool is_signed =
false;
2038 llvm::APSInt apint(*bit_width, !is_signed);
2042 return clang::APValue(apint);
2048 return std::nullopt;
2050 return clang::APValue(llvm::APFloat(
2058 bool is_template_template_argument =
false;
2061 case DW_TAG_GNU_template_parameter_pack: {
2063 std::make_unique<TypeSystemClang::TemplateParameterInfos>());
2068 if (
const char *name = die.
GetName()) {
2073 case DW_TAG_GNU_template_template_param:
2074 is_template_template_argument =
true;
2076 case DW_TAG_template_type_parameter:
2077 case DW_TAG_template_value_parameter: {
2079 if (attributes.
Size() == 0)
2082 const char *name =
nullptr;
2083 const char *template_name =
nullptr;
2085 uint64_t uval64 = 0;
2086 bool uval64_valid =
false;
2087 bool is_default_template_arg =
false;
2089 for (
size_t i = 0; i < attributes.
Size(); ++i) {
2098 case DW_AT_GNU_template_name:
2111 case DW_AT_const_value:
2113 uval64_valid =
true;
2117 case DW_AT_default_value:
2119 is_default_template_arg = form_value.
Boolean();
2126 clang::ASTContext &ast =
m_ast.getASTContext();
2130 if (!is_template_template_argument) {
2132 if (name && !name[0])
2135 if (tag == DW_TAG_template_value_parameter && uval64_valid) {
2136 if (
auto value =
MakeAPValue(ast, clang_type, uval64)) {
2138 name, clang::TemplateArgument(
2140 std::move(*value), is_default_template_arg));
2150 is_default_template_arg));
2152 auto *tplt_type =
m_ast.CreateTemplateTemplateParmDecl(template_name);
2154 name, clang::TemplateArgument(clang::TemplateName(tplt_type),
2155 is_default_template_arg));
2177 case DW_TAG_template_type_parameter:
2178 case DW_TAG_template_value_parameter:
2179 case DW_TAG_GNU_template_parameter_pack:
2180 case DW_TAG_GNU_template_template_param:
2189 return !template_param_infos.
IsEmpty() ||
2199 std::vector<DWARFDIE> contained_type_dies;
2211 if (tag == DW_TAG_structure_type) {
2213 }
else if (tag == DW_TAG_union_type) {
2215 }
else if (tag == DW_TAG_class_type) {
2219 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> bases;
2221 std::vector<DWARFDIE> member_function_dies;
2225 contained_type_dies, delayed_properties,
2226 default_accessibility, layout_info);
2229 for (
const DWARFDIE &die : member_function_dies)
2230 dwarf->ResolveType(die);
2235 dwarf->GetObjCMethods(class_name, [&](
DWARFDIE method_die) {
2241 property.Finalize();
2251 "WARNING: Type completion aborted because forward declaration for "
2252 "'{0}' is C++ while definition is Objective-C.",
2253 llvm::StringRef(die.
GetName()));
2269 clang::CXXRecordDecl *record_decl =
2277 if (
m_ast.getASTContext().getTargetInfo().getCXXABI().isMicrosoft()) {
2278 auto IM = record_decl->calculateInheritanceModel();
2279 record_decl->addAttr(clang::MSInheritanceAttr::CreateImplicit(
2280 m_ast.getASTContext(),
true, {},
2281 clang::MSInheritanceAttr::Spelling(IM)));
2288 for (
const DWARFDIE &die : contained_type_dies)
2289 dwarf->ResolveType(die);
2291 return (
bool)clang_type;
2303 llvm::expectedToOptional(type->
GetByteSize(
nullptr)).value_or(0),
2308 return (
bool)clang_type;
2316 std::lock_guard<std::recursive_mutex> guard(
2317 dwarf->GetObjectFile()->GetModule()->GetMutex());
2330 case DW_TAG_structure_type:
2331 case DW_TAG_union_type:
2332 case DW_TAG_class_type:
2335 case DW_TAG_enumeration_type:
2339 assert(
false &&
"not a forward clang type decl!");
2356 auto opaque_decl_ctx =
2367 if (clang_decl !=
nullptr)
2368 return m_ast.GetCompilerDecl(clang_decl);
2376 return m_ast.CreateDeclContext(clang_decl_ctx);
2382 clang::DeclContext *clang_decl_ctx =
2385 return m_ast.CreateDeclContext(clang_decl_ctx);
2391 uint32_t enumerator_byte_size,
const DWARFDIE &parent_die) {
2395 size_t enumerators_added = 0;
2399 if (tag != DW_TAG_enumerator)
2403 if (attributes.
Size() == 0)
2406 const char *name =
nullptr;
2407 std::optional<uint64_t> enum_value;
2410 for (
size_t i = 0; i < attributes.
Size(); ++i) {
2415 case DW_AT_const_value:
2417 enum_value = form_value.
Signed();
2419 enum_value = form_value.
Unsigned();
2426 case DW_AT_description:
2428 case DW_AT_decl_file:
2432 case DW_AT_decl_line:
2435 case DW_AT_decl_column:
2444 if (name && name[0] && enum_value) {
2445 m_ast.AddEnumerationValueToEnumerationType(
2446 clang_type, decl, name, *enum_value, enumerator_byte_size * 8);
2447 ++enumerators_added;
2450 return enumerators_added;
2455 bool is_variadic =
false;
2456 bool has_template_params =
false;
2457 std::vector<CompilerType> param_types;
2458 llvm::SmallVector<llvm::StringRef> param_names;
2465 clang::DeclContext *containing_decl_ctx =
2467 assert(containing_decl_ctx);
2469 const unsigned cv_quals =
2473 has_template_params, param_types, param_names);
2475 for (
size_t i = 0; i < param_types.size(); i++) {
2478 sstr << param_types[i].GetTypeName();
2483 if (cv_quals & clang::Qualifiers::Const)
2491 llvm::DWARFAddressRangesVector unused_func_ranges;
2492 const char *name =
nullptr;
2493 const char *mangled =
nullptr;
2494 std::optional<int> decl_file;
2495 std::optional<int> decl_line;
2496 std::optional<int> decl_column;
2497 std::optional<int> call_file;
2498 std::optional<int> call_line;
2499 std::optional<int> call_column;
2504 if (tag != DW_TAG_subprogram)
2508 decl_line, decl_column, call_file, call_line,
2509 call_column, &frame_base)) {
2513 else if ((die.
GetParent().
Tag() == DW_TAG_compile_unit ||
2519 name && strcmp(name,
"main") != 0) {
2530 std::unique_ptr<Declaration> decl_up;
2531 if (decl_file || decl_line || decl_column)
2532 decl_up = std::make_unique<Declaration>(
2533 die.
GetCU()->
GetFile(decl_file.value_or(0)), decl_line.value_or(0),
2534 decl_column.value_or(0));
2559 Address func_addr = func_ranges[0].GetBaseAddress();
2561 func_sp = std::make_shared<Function>(
2564 func_user_id, func_name, func_type, std::move(func_addr),
2565 std::move(func_ranges));
2567 if (func_sp.get() !=
nullptr) {
2569 func_sp->GetFrameBaseExpression() = frame_base;
2571 return func_sp.get();
2580struct PropertyAttributes {
2581 explicit PropertyAttributes(
const DWARFDIE &die);
2582 const char *prop_name =
nullptr;
2583 const char *prop_getter_name =
nullptr;
2584 const char *prop_setter_name =
nullptr;
2586 uint32_t prop_attributes = 0;
2589struct DiscriminantValue {
2590 explicit DiscriminantValue(
const DWARFDIE &die,
ModuleSP module_sp);
2592 uint32_t byte_offset;
2594 DWARFFormValue type_ref;
2597struct VariantMember {
2598 explicit VariantMember(DWARFDIE &die,
ModuleSP module_sp);
2599 bool IsDefault()
const;
2601 std::optional<uint32_t> discr_value;
2602 DWARFFormValue type_ref;
2603 ConstString variant_name;
2604 uint32_t byte_offset;
2609 explicit VariantPart(
const DWARFDIE &die,
const DWARFDIE &parent_die,
2612 std::vector<VariantMember> &members();
2614 DiscriminantValue &discriminant();
2617 std::vector<VariantMember> _members;
2618 DiscriminantValue _discriminant;
2623ConstString VariantMember::GetName()
const {
return this->variant_name; }
2625bool VariantMember::IsDefault()
const {
return !discr_value; }
2627VariantMember::VariantMember(DWARFDIE &die,
lldb::ModuleSP module_sp) {
2628 assert(die.
Tag() == llvm::dwarf::DW_TAG_variant);
2632 for (
auto child_die : die.
children()) {
2633 switch (child_die.Tag()) {
2634 case llvm::dwarf::DW_TAG_member: {
2635 DWARFAttributes attributes = child_die.GetAttributes();
2636 for (std::size_t i = 0; i < attributes.
Size(); ++i) {
2637 DWARFFormValue form_value;
2642 variant_name = ConstString(form_value.
AsCString());
2645 type_ref = form_value;
2648 case DW_AT_data_member_location:
2649 if (
auto maybe_offset =
2651 byte_offset = *maybe_offset;
2668DiscriminantValue::DiscriminantValue(
const DWARFDIE &die,
ModuleSP module_sp) {
2670 DWARFAttributes attributes = referenced_die.GetAttributes();
2671 for (std::size_t i = 0; i < attributes.
Size(); ++i) {
2673 DWARFFormValue form_value;
2677 type_ref = form_value;
2679 case DW_AT_data_member_location:
2680 if (
auto maybe_offset =
2682 byte_offset = *maybe_offset;
2691VariantPart::VariantPart(
const DWARFDIE &die,
const DWARFDIE &parent_die,
2693 : _members(), _discriminant(die, module_sp) {
2695 for (
auto child : die.
children()) {
2696 if (child.Tag() == llvm::dwarf::DW_TAG_variant) {
2697 _members.push_back(VariantMember(child, module_sp));
2702std::vector<VariantMember> &VariantPart::members() {
return this->_members; }
2704DiscriminantValue &VariantPart::discriminant() {
return this->_discriminant; }
2709 for (
size_t i = 0; i < attributes.
Size(); ++i) {
2720 case DW_AT_bit_offset:
2723 case DW_AT_bit_size:
2726 case DW_AT_byte_size:
2729 case DW_AT_const_value:
2732 case DW_AT_data_bit_offset:
2735 case DW_AT_data_member_location:
2736 if (
auto maybe_offset =
2741 case DW_AT_accessibility:
2745 case DW_AT_artificial:
2748 case DW_AT_declaration:
2775PropertyAttributes::PropertyAttributes(
const DWARFDIE &die) {
2778 for (
size_t i = 0; i < attributes.
Size(); ++i) {
2783 case DW_AT_APPLE_property_name:
2786 case DW_AT_APPLE_property_getter:
2787 prop_getter_name = form_value.
AsCString();
2789 case DW_AT_APPLE_property_setter:
2790 prop_setter_name = form_value.
AsCString();
2792 case DW_AT_APPLE_property_attribute:
2793 prop_attributes = form_value.
Unsigned();
2803 ConstString fixed_setter;
2807 if (prop_getter_name && prop_getter_name[0] ==
'-') {
2808 std::optional<const ObjCLanguage::ObjCMethodName> prop_getter_method =
2810 if (prop_getter_method)
2812 ConstString(prop_getter_method->GetSelector()).GetCString();
2815 if (prop_setter_name && prop_setter_name[0] ==
'-') {
2816 std::optional<const ObjCLanguage::ObjCMethodName> prop_setter_method =
2818 if (prop_setter_method)
2820 ConstString(prop_setter_method->GetSelector()).GetCString();
2824 if (!prop_getter_name)
2825 prop_getter_name = prop_name;
2826 if (!prop_setter_name && prop_name[0] &&
2827 !(prop_attributes & DW_APPLE_PROPERTY_readonly)) {
2830 ss.
Printf(
"set%c%s:", toupper(prop_name[0]), &prop_name[1]);
2833 prop_setter_name = fixed_setter.
GetCString();
2842 assert(die.
Tag() == DW_TAG_APPLE_property);
2847 const PropertyAttributes propAttrs(die);
2849 if (!propAttrs.prop_name) {
2850 module_sp->ReportError(
"{0:x8}: DW_TAG_APPLE_property has no name.",
2857 module_sp->ReportError(
2858 "{0:x8}: DW_TAG_APPLE_property '{1}' refers to type {2:x16}"
2859 " which was unable to be parsed",
2860 die.
GetID(), propAttrs.prop_name,
2867 delayed_properties.emplace_back(
2868 class_clang_type, propAttrs.prop_name,
2870 propAttrs.prop_getter_name, propAttrs.prop_attributes, metadata);
2876 assert(qt->isIntegralOrEnumerationType());
2879 return llvm::createStringError(llvm::inconvertibleErrorCode(),
2880 "TypeSystem not clang");
2884 const unsigned type_bits = ast.getIntWidth(qt);
2885 const bool is_unsigned = qt->isUnsignedIntegerType();
2889 constexpr std::size_t max_bit_size = 64;
2894 if (type_bits > max_bit_size) {
2895 auto msg = llvm::formatv(
"Can only parse integers with up to {0} bits, but "
2896 "given integer has {1} bits.",
2897 max_bit_size, type_bits);
2898 return llvm::createStringError(llvm::inconvertibleErrorCode(), msg.str());
2902 llvm::APInt result(max_bit_size, form_value.
Unsigned(), !is_unsigned);
2908 const unsigned required_bits =
2909 is_unsigned ? result.getActiveBits() : result.getSignificantBits();
2912 if (required_bits > type_bits) {
2913 std::string value_as_str = is_unsigned
2914 ? std::to_string(form_value.
Unsigned())
2915 : std::to_string(form_value.
Signed());
2916 auto msg = llvm::formatv(
"Can't store {0} value {1} in integer with {2} "
2918 (is_unsigned ?
"unsigned" :
"signed"),
2919 value_as_str, type_bits);
2920 return llvm::createStringError(llvm::inconvertibleErrorCode(), msg.str());
2924 if (result.getBitWidth() > type_bits)
2925 result = result.trunc(type_bits);
2933 assert(die.
Tag() == DW_TAG_member || die.
Tag() == DW_TAG_variable);
2940 auto accessibility =
2945 class_clang_type, attrs.
name, ct, accessibility);
2947 LLDB_LOG(log,
"Failed to add variable to the record type");
2956 llvm::Expected<llvm::APInt> const_value_or_err =
2958 if (!const_value_or_err) {
2960 "Failed to add const value to variable {1}: {0}",
2961 v->getQualifiedNameAsString());
2975 assert(die.
Tag() == DW_TAG_member);
2980 const uint64_t parent_byte_size =
2982 const uint64_t parent_bit_size =
3007 module_sp->ReportError(
3008 "{0:x8}: DW_TAG_member '{1}' refers to type {2:x16}"
3009 " which was unable to be parsed",
3012 module_sp->ReportError(
"{0:x8}: DW_TAG_member refers to type {1:x16}"
3013 " which was unable to be parsed",
3019 const uint64_t character_width = 8;
3023 ? default_accessibility
3032 this_field_info.
bit_offset = field_bit_offset;
3040 byte_size = llvm::expectedToOptional(member_type->
GetByteSize(
nullptr));
3044 this_field_info.
bit_offset += byte_size.value_or(0) * 8;
3058 !(parent_die.
Tag() == DW_TAG_union_type &&
3060 ((this_field_info.
bit_offset >= parent_bit_size) ||
3066 "{0:x16}: {1} ({2}) bitfield named \"{3}\" has invalid "
3067 "bit offset ({4:x8}) member will be ignored. Please file a bug "
3069 "compiler and include the preprocessed output for {5}\n",
3076 field_bit_offset = this_field_info.
bit_offset;
3081 bool detect_unnamed_bitfields =
true;
3084 detect_unnamed_bitfields =
3087 if (detect_unnamed_bitfields)
3089 last_field_info, this_field_info);
3091 last_field_info = this_field_info;
3096 this_field_info.
bit_offset = field_bit_offset;
3100 if (std::optional<uint64_t> clang_type_size =
3101 llvm::expectedToOptional(member_type->
GetByteSize(
nullptr))) {
3102 this_field_info.
bit_size = *clang_type_size * character_width;
3109 last_field_info = this_field_info;
3129 class_clang_type, attrs.
name, member_clang_type, accessibility,
3132 m_ast.SetMetadataAsUserID(field_decl, die.
GetID());
3135 std::make_pair(field_decl, field_bit_offset));
3140 std::vector<std::unique_ptr<clang::CXXBaseSpecifier>> &base_classes,
3141 std::vector<DWARFDIE> &member_function_dies,
3142 std::vector<DWARFDIE> &contained_type_dies,
3160 case DW_TAG_APPLE_property:
3164 case DW_TAG_variant_part:
3167 default_accessibility, layout_info);
3171 case DW_TAG_variable: {
3177 default_accessibility, layout_info, last_field_info);
3180 case DW_TAG_subprogram:
3182 member_function_dies.push_back(die);
3185 case DW_TAG_inheritance:
3187 module_sp, base_classes, layout_info);
3191 if (llvm::dwarf::isType(tag))
3192 contained_type_dies.push_back(die);
3201 clang::DeclContext *containing_decl_ctx,
const DWARFDIE &parent_die,
3202 bool &is_variadic,
bool &has_template_params,
3203 std::vector<CompilerType> &function_param_types,
3211 case DW_TAG_formal_parameter: {
3221 function_param_names.emplace_back(die.
GetName());
3225 case DW_TAG_unspecified_parameters:
3229 case DW_TAG_template_type_parameter:
3230 case DW_TAG_template_value_parameter:
3231 case DW_TAG_GNU_template_parameter_pack:
3237 has_template_params =
true;
3245 assert(function_param_names.size() == function_param_types.size());
3252 switch (die.
Tag()) {
3253 case DW_TAG_constant:
3254 case DW_TAG_formal_parameter:
3255 case DW_TAG_imported_declaration:
3256 case DW_TAG_imported_module:
3258 case DW_TAG_variable:
3272 return cache_pos->second;
3287 clang::Decl *decl =
nullptr;
3288 switch (die.
Tag()) {
3289 case DW_TAG_variable:
3290 case DW_TAG_constant:
3291 case DW_TAG_formal_parameter: {
3294 if (
dwarf && type) {
3295 const char *name = die.
GetName();
3296 clang::DeclContext *decl_context =
3298 dwarf->GetDeclContextContainingUID(die.
GetID()));
3299 decl =
m_ast.CreateVariableDeclaration(
3305 case DW_TAG_imported_declaration: {
3310 if (imported_decl) {
3311 clang::DeclContext *decl_context =
3313 dwarf->GetDeclContextContainingUID(die.
GetID()));
3314 if (clang::NamedDecl *clang_imported_decl =
3315 llvm::dyn_cast<clang::NamedDecl>(
3317 decl =
m_ast.CreateUsingDeclaration(
3323 case DW_TAG_imported_module: {
3330 if (imported_decl_ctx) {
3331 clang::DeclContext *decl_context =
3333 dwarf->GetDeclContextContainingUID(die.
GetID()));
3334 if (clang::NamespaceDecl *ns_decl =
3337 decl =
m_ast.CreateUsingDirectiveDeclaration(
3359 bool try_parsing_type =
true;
3360 switch (die.
Tag()) {
3361 case DW_TAG_compile_unit:
3362 case DW_TAG_partial_unit:
3363 decl_ctx =
m_ast.GetTranslationUnitDecl();
3364 try_parsing_type =
false;
3367 case DW_TAG_namespace:
3369 try_parsing_type =
false;
3372 case DW_TAG_imported_declaration:
3374 try_parsing_type =
false;
3377 case DW_TAG_lexical_block:
3379 try_parsing_type =
false;
3386 if (decl_ctx ==
nullptr && try_parsing_type) {
3406 parent = parent.GetParent()) {
3408 if (tag == DW_TAG_module) {
3428 switch (die.
Tag()) {
3429 case DW_TAG_subprogram:
3430 case DW_TAG_inlined_subroutine:
3440 if (candidate.GetReferencedDIE(DW_AT_abstract_origin)) {
3447 assert(0 &&
"Shouldn't call GetContainingFunctionWithAbstractOrigin on "
3448 "something not in a function");
3454 if (candidate.GetReferencedDIE(DW_AT_abstract_origin)) {
3476 assert(die.
Tag() == DW_TAG_lexical_block);
3477 DWARFDIE containing_function_with_abstract_origin =
3479 if (!containing_function_with_abstract_origin) {
3483 die, containing_function_with_abstract_origin);
3490 if (die && die.
Tag() == DW_TAG_lexical_block) {
3491 clang::BlockDecl *decl =
3496 clang::DeclContext *decl_context =
3510clang::NamespaceDecl *
3512 if (die && die.
Tag() == DW_TAG_namespace) {
3515 clang::NamespaceDecl *namespace_decl =
3518 return namespace_decl;
3520 const char *namespace_name = die.
GetName();
3521 clang::DeclContext *containing_decl_ctx =
3526 namespace_decl =
m_ast.GetUniqueNamespaceDeclaration(
3532 return namespace_decl;
3538clang::NamespaceDecl *
3540 assert(die && die.
Tag() == DW_TAG_imported_declaration);
3546 return static_cast<clang::NamespaceDecl *
>(it->getSecond());
3548 clang::NamespaceDecl *namespace_decl =
nullptr;
3555 switch (imported_uid.
Tag()) {
3556 case DW_TAG_imported_declaration:
3559 case DW_TAG_namespace:
3566 if (!namespace_decl)
3571 return namespace_decl;
3578 DWARFDIE decl_ctx_die =
dwarf->GetDeclContextDIEContainingDIE(die);
3580 if (decl_ctx_die_copy)
3581 *decl_ctx_die_copy = decl_ctx_die;
3584 clang::DeclContext *clang_decl_ctx =
3587 return clang_decl_ctx;
3589 return m_ast.GetTranslationUnitDecl();
3613 if (!class_type || !src_class_die || !dst_class_die)
3615 if (src_class_die.
Tag() != dst_class_die.
Tag())
3625 if (die.
Tag() != DW_TAG_subprogram)
3637 map_artificial.Append(const_name, die);
3639 map.Append(const_name, die);
3648 src_die = src_die.GetSibling()) {
3649 gather(src_die, src_name_to_die, src_name_to_die_artificial);
3652 dst_die = dst_die.GetSibling()) {
3653 gather(dst_die, dst_name_to_die, dst_name_to_die_artificial);
3655 const uint32_t src_size = src_name_to_die.
GetSize();
3656 const uint32_t dst_size = dst_name_to_die.
GetSize();
3659 bool fast_path =
true;
3661 if (src_size != dst_size)
3667 for (idx = 0; idx < src_size; ++idx) {
3671 if (src_die.
Tag() != dst_die.
Tag())
3678 if (src_name == dst_name || (strcmp(src_name, dst_name) == 0))
3685 auto *src_dwarf_ast_parser = llvm::cast<DWARFASTParserClang>(
3687 auto *dst_dwarf_ast_parser = llvm::cast<DWARFASTParserClang>(
3691 clang::DeclContext *dst_decl_ctx =
3692 dst_dwarf_ast_parser->m_die_to_decl_ctx[dst.GetDIE()];
3694 src_dwarf_ast_parser->LinkDeclContextToDIE(dst_decl_ctx, src);
3696 if (
Type *src_child_type = die_to_type.lookup(src.
GetDIE()))
3697 die_to_type[dst.GetDIE()] = src_child_type;
3704 for (idx = 0; idx < src_size; ++idx) {
3714 src_name_to_die.
Sort();
3716 for (idx = 0; idx < dst_size; ++idx) {
3721 if (src_die && (src_die.
Tag() == dst_die.
Tag()))
3722 link(src_die, dst_die);
3724 failures.push_back(dst_die);
3729 const uint32_t src_size_artificial = src_name_to_die_artificial.
GetSize();
3730 const uint32_t dst_size_artificial = dst_name_to_die_artificial.
GetSize();
3732 if (src_size_artificial && dst_size_artificial) {
3733 dst_name_to_die_artificial.
Sort();
3735 for (idx = 0; idx < src_size_artificial; ++idx) {
3741 dst_name_to_die_artificial.
Find(src_name_artificial,
DWARFDIE());
3745 link(src_die, dst_die);
3749 if (dst_size_artificial) {
3750 for (idx = 0; idx < dst_size_artificial; ++idx) {
3756 return !failures.empty();
3760 FieldInfo const &last_field_info, uint64_t last_field_end,
3765 if (this_field_info.
bit_offset <= last_field_end)
3779 const bool have_base = layout_info.
base_offsets.size() != 0;
3780 const bool this_is_first_field =
3782 const bool first_field_is_vptr =
3785 if (have_base && (this_is_first_field || first_field_is_vptr))
3796 const uint64_t word_width = 32;
3804 if (last_field_end != 0 && ((last_field_end % word_width) != 0))
3805 last_field_end += word_width - (last_field_end % word_width);
3810 current_field, class_layout_info))
3815 const uint64_t unnamed_bit_size = current_field.
bit_offset - last_field_end;
3816 const uint64_t unnamed_bit_offset = last_field_end;
3818 clang::FieldDecl *unnamed_bitfield_decl =
3820 class_clang_type, llvm::StringRef(),
3825 std::make_pair(unnamed_bitfield_decl, unnamed_bit_offset));
3833 assert(die.
Tag() == llvm::dwarf::DW_TAG_variant_part);
3839 VariantPart variants(die, parent_die, module_sp);
3841 auto discriminant_type =
3842 die.
ResolveTypeUID(variants.discriminant().type_ref.Reference());
3844 auto decl_context =
m_ast.GetDeclContextForType(class_clang_type);
3846 auto inner_holder =
m_ast.CreateRecordType(
3849 llvm::formatv(
"{0}$Inner", class_clang_type.
GetTypeName(
false))),
3851 m_ast.StartTagDeclarationDefinition(inner_holder);
3852 m_ast.SetIsPacked(inner_holder);
3854 for (
auto member : variants.members()) {
3856 auto has_discriminant = !member.IsDefault();
3858 auto member_type = die.
ResolveTypeUID(member.type_ref.Reference());
3860 auto field_type =
m_ast.CreateRecordType(
3863 std::string(llvm::formatv(
"{0}$Variant", member.GetName())),
3864 llvm::to_underlying(clang::TagTypeKind::Struct),
3867 m_ast.StartTagDeclarationDefinition(field_type);
3868 auto offset = member.byte_offset;
3870 if (has_discriminant) {
3871 m_ast.AddFieldToRecordType(
3872 field_type,
"$discr$", discriminant_type->GetFullCompilerType(),
3875 llvm::expectedToOptional(discriminant_type->GetByteSize(
nullptr))
3879 m_ast.AddFieldToRecordType(field_type,
"value",
3880 member_type->GetFullCompilerType(),
3883 m_ast.CompleteTagDeclarationDefinition(field_type);
3885 auto name = has_discriminant
3886 ? llvm::formatv(
"$variant${0}", member.discr_value.value())
3887 : std::string(
"$variant$");
3890 m_ast.AddFieldToRecordType(inner_holder, llvm::StringRef(name),
3891 field_type, default_accesibility, 0);
3896 auto inner_field =
m_ast.AddFieldToRecordType(class_clang_type,
3897 llvm::StringRef(
"$variants$"),
3900 m_ast.CompleteTagDeclarationDefinition(inner_holder);
static bool DeclKindIsCXXClass(clang::Decl::Kind decl_kind)
static std::string GetUnitName(const DWARFDIE &die)
static std::string MakeLLDBFuncAsmLabel(const DWARFDIE &die)
static unsigned GetCXXMethodCVQuals(const DWARFDIE &subprogram, const DWARFDIE &object_parameter)
In order to determine the CV-qualifiers for a C++ class method in DWARF, we have to look at the CV-qu...
static clang::CallingConv ConvertDWARFCallingConventionToClang(const ParsedDWARFTypeAttributes &attrs)
static bool IsSubroutine(const DWARFDIE &die)
static TypePayloadClang GetPtrAuthMofidierPayload(const DWARFDIE &die)
static std::optional< clang::APValue > MakeAPValue(const clang::ASTContext &ast, CompilerType clang_type, uint64_t value)
static bool TagIsRecordType(dw_tag_t tag)
Returns true for C++ constructs represented by clang::CXXRecordDecl.
static lldb::ModuleSP GetContainingClangModule(const DWARFDIE &die)
static DWARFDIE FindFirstChildWithAbstractOrigin(const DWARFDIE &block, const DWARFDIE &function)
static DWARFDIE FindAnyChildWithAbstractOrigin(const DWARFDIE &context)
static bool IsClangModuleFwdDecl(const DWARFDIE &Die)
Detect a forward declaration that is nested in a DW_TAG_module.
static DWARFDIE GetContainingClangModuleDIE(const DWARFDIE &die)
static DWARFDIE GetContainingFunctionWithAbstractOrigin(const DWARFDIE &die)
static void PrepareContextToReceiveMembers(TypeSystemClang &ast, ClangASTImporter &ast_importer, clang::DeclContext *decl_ctx, DWARFDIE die, const char *type_name_cstr)
This function ensures we are able to add members (nested types, functions, etc.) to this type.
static std::optional< uint32_t > ExtractDataMemberLocation(DWARFDIE const &die, DWARFFormValue const &form_value, ModuleSP module_sp)
static bool ShouldIgnoreArtificialField(llvm::StringRef FieldName)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF(log,...)
#define LLDB_LOG_ERROR(log, error,...)
#define DIE_IS_BEING_PARSED
static llvm::StringRef GetName(XcodeSDK::Type type)
const char * m_property_getter_name
CompilerType m_class_opaque_type
CompilerType m_property_opaque_type
const char * m_property_setter_name
uint32_t m_property_attributes
DelayedAddObjCClassProperty(const CompilerType &class_opaque_type, const char *property_name, const CompilerType &property_opaque_type, const char *property_setter_name, const char *property_getter_name, uint32_t property_attributes, ClangASTMetadata metadata)
ClangASTMetadata m_metadata
const char * m_property_name
lldb::TypeSP ParsePointerToMemberType(const lldb_private::plugin::dwarf::DWARFDIE &die, const ParsedDWARFTypeAttributes &attrs)
bool CompleteEnumType(const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::Type *type, const lldb_private::CompilerType &clang_type)
void ParseRustVariantPart(lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::plugin::dwarf::DWARFDIE &parent_die, const lldb_private::CompilerType &class_clang_type, const lldb::AccessType default_accesibility, lldb_private::ClangASTImporter::LayoutInfo &layout_info)
Parses DW_TAG_variant_part DIE into a structure that encodes all variants Note that this is currently...
clang::NamespaceDecl * ResolveImportedDeclarationDIE(const lldb_private::plugin::dwarf::DWARFDIE &die)
Returns the namespace decl that a DW_TAG_imported_declaration imports.
void CreateStaticMemberVariable(const lldb_private::plugin::dwarf::DWARFDIE &die, const MemberAttributes &attrs, const lldb_private::CompilerType &class_clang_type)
If the specified 'die' represents a static data member, creates a 'clang::VarDecl' for it and attache...
std::unique_ptr< lldb_private::ClangASTImporter > m_clang_ast_importer_up
lldb::TypeSP ParseEnum(const lldb_private::SymbolContext &sc, const lldb_private::plugin::dwarf::DWARFDIE &die, ParsedDWARFTypeAttributes &attrs)
std::string GetDIEClassTemplateParams(lldb_private::plugin::dwarf::DWARFDIE die) override
Returns the template parameters of a class DWARFDIE as a string.
bool CompleteRecordType(const lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::CompilerType &clang_type)
lldb::TypeSP UpdateSymbolContextScopeForType(const lldb_private::SymbolContext &sc, const lldb_private::plugin::dwarf::DWARFDIE &die, lldb::TypeSP type_sp)
If type_sp is valid, calculate and set its symbol context scope, and update the type list for its bac...
lldb_private::TypeSystemClang & m_ast
bool ShouldCreateUnnamedBitfield(FieldInfo const &last_field_info, uint64_t last_field_end, FieldInfo const &this_field_info, lldb_private::ClangASTImporter::LayoutInfo const &layout_info) const
Returns 'true' if we should create an unnamed bitfield and add it to the parser's current AST.
bool CompleteTypeFromDWARF(const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::Type *type, const lldb_private::CompilerType &compiler_type) override
lldb::TypeSP ParseArrayType(const lldb_private::plugin::dwarf::DWARFDIE &die, const ParsedDWARFTypeAttributes &attrs)
lldb_private::ClangASTImporter & GetClangASTImporter()
clang::BlockDecl * ResolveBlockDIE(const lldb_private::plugin::dwarf::DWARFDIE &die)
lldb::TypeSP ParseTypeFromDWARF(const lldb_private::SymbolContext &sc, const lldb_private::plugin::dwarf::DWARFDIE &die, bool *type_is_new_ptr) override
clang::DeclContext * GetClangDeclContextContainingDIE(const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::plugin::dwarf::DWARFDIE *decl_ctx_die)
lldb_private::plugin::dwarf::DWARFDIE GetObjectParameter(const lldb_private::plugin::dwarf::DWARFDIE &subprogram, const lldb_private::plugin::dwarf::DWARFDIE &decl_ctx_die)
Get the object parameter DIE if one exists, otherwise returns a default DWARFDIE.
clang::DeclContext * GetDeclContextForBlock(const lldb_private::plugin::dwarf::DWARFDIE &die)
void ParseInheritance(const lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::plugin::dwarf::DWARFDIE &parent_die, const lldb_private::CompilerType class_clang_type, const lldb::AccessType default_accessibility, const lldb::ModuleSP &module_sp, std::vector< std::unique_ptr< clang::CXXBaseSpecifier > > &base_classes, lldb_private::ClangASTImporter::LayoutInfo &layout_info)
Parses a DW_TAG_inheritance DIE into a base/super class.
bool ParseChildMembers(const lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::CompilerType &class_compiler_type, std::vector< std::unique_ptr< clang::CXXBaseSpecifier > > &base_classes, std::vector< lldb_private::plugin::dwarf::DWARFDIE > &member_function_dies, std::vector< lldb_private::plugin::dwarf::DWARFDIE > &contained_type_dies, DelayedPropertyList &delayed_properties, const lldb::AccessType default_accessibility, lldb_private::ClangASTImporter::LayoutInfo &layout_info)
lldb::TypeSP ParseTypeModifier(const lldb_private::SymbolContext &sc, const lldb_private::plugin::dwarf::DWARFDIE &die, ParsedDWARFTypeAttributes &attrs)
lldb::TypeSP ParseTypeFromClangModule(const lldb_private::SymbolContext &sc, const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::Log *log)
Follow Clang Module Skeleton CU references to find a type definition.
DIEToDeclContextMap m_die_to_decl_ctx
void ParseObjCProperty(const lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::plugin::dwarf::DWARFDIE &parent_die, const lldb_private::CompilerType &class_clang_type, DelayedPropertyList &delayed_properties)
Parses a DW_TAG_APPLE_property DIE and appends the parsed data to the list of delayed Objective-C pro...
void EnsureAllDIEsInDeclContextHaveBeenParsed(lldb_private::CompilerDeclContext decl_context) override
clang::NamespaceDecl * ResolveNamespaceDIE(const lldb_private::plugin::dwarf::DWARFDIE &die)
void GetUniqueTypeNameAndDeclaration(const lldb_private::plugin::dwarf::DWARFDIE &die, lldb::LanguageType language, lldb_private::ConstString &unique_typename, lldb_private::Declaration &decl_declaration)
lldb_private::ConstString ConstructDemangledNameFromDWARF(const lldb_private::plugin::dwarf::DWARFDIE &die) override
lldb_private::CompilerDeclContext GetDeclContextContainingUIDFromDWARF(const lldb_private::plugin::dwarf::DWARFDIE &die) override
lldb::TypeSP ParseStructureLikeDIE(const lldb_private::SymbolContext &sc, const lldb_private::plugin::dwarf::DWARFDIE &die, ParsedDWARFTypeAttributes &attrs)
Parse a structure, class, or union type DIE.
DIEToDeclMap m_die_to_decl
size_t ParseChildEnumerators(const lldb_private::CompilerType &compiler_type, bool is_signed, uint32_t enumerator_byte_size, const lldb_private::plugin::dwarf::DWARFDIE &parent_die)
bool ParseObjCMethod(const lldb_private::ObjCLanguage::ObjCMethodName &objc_method, const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::CompilerType clang_type, const ParsedDWARFTypeAttributes &attrs, bool is_variadic)
Helper function called by ParseSubroutine when parsing ObjC-methods.
~DWARFASTParserClang() override
std::vector< DelayedAddObjCClassProperty > DelayedPropertyList
bool CopyUniqueClassMethodTypes(const lldb_private::plugin::dwarf::DWARFDIE &src_class_die, const lldb_private::plugin::dwarf::DWARFDIE &dst_class_die, lldb_private::Type *class_type, std::vector< lldb_private::plugin::dwarf::DWARFDIE > &failures)
clang::DeclContext * GetClangDeclContextForDIE(const lldb_private::plugin::dwarf::DWARFDIE &die)
bool ParseTemplateDIE(const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::TypeSystemClang::TemplateParameterInfos &template_param_infos)
lldb_private::CompilerDeclContext GetDeclContextForUIDFromDWARF(const lldb_private::plugin::dwarf::DWARFDIE &die) override
llvm::Expected< llvm::APInt > ExtractIntFromFormValue(const lldb_private::CompilerType &int_type, const lldb_private::plugin::dwarf::DWARFFormValue &form_value) const
Extracts an value for a given Clang integer type from a DWARFFormValue.
clang::DeclContext * GetCachedClangDeclContextForDIE(const lldb_private::plugin::dwarf::DWARFDIE &die)
DIEToModuleMap m_die_to_module
void ParseSingleMember(const lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::plugin::dwarf::DWARFDIE &parent_die, const lldb_private::CompilerType &class_clang_type, lldb::AccessType default_accessibility, lldb_private::ClangASTImporter::LayoutInfo &layout_info, FieldInfo &last_field_info)
DeclContextToDIEMap m_decl_ctx_to_die
lldb_private::Function * ParseFunctionFromDWARF(lldb_private::CompileUnit &comp_unit, const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::AddressRanges func_ranges) override
void ParseChildParameters(clang::DeclContext *containing_decl_ctx, const lldb_private::plugin::dwarf::DWARFDIE &parent_die, bool &is_variadic, bool &has_template_params, std::vector< lldb_private::CompilerType > &function_param_types, llvm::SmallVectorImpl< llvm::StringRef > &function_param_names)
void AddUnnamedBitfieldToRecordTypeIfNeeded(lldb_private::ClangASTImporter::LayoutInfo &class_layout_info, const lldb_private::CompilerType &class_clang_type, const FieldInfo &previous_field, const FieldInfo ¤t_field)
Tries to detect whether class_clang_type contained an unnamed bit-field between previous_field and cu...
lldb::TypeSP ParseSubroutine(const lldb_private::plugin::dwarf::DWARFDIE &die, const ParsedDWARFTypeAttributes &attrs)
void MapDeclDIEToDefDIE(const lldb_private::plugin::dwarf::DWARFDIE &decl_die, const lldb_private::plugin::dwarf::DWARFDIE &def_die)
lldb_private::CompilerDecl GetDeclForUIDFromDWARF(const lldb_private::plugin::dwarf::DWARFDIE &die) override
bool ParseTemplateParameterInfos(const lldb_private::plugin::dwarf::DWARFDIE &parent_die, lldb_private::TypeSystemClang::TemplateParameterInfos &template_param_infos)
DWARFASTParserClang(lldb_private::TypeSystemClang &ast)
clang::Decl * GetClangDeclForDIE(const lldb_private::plugin::dwarf::DWARFDIE &die)
void LinkDeclContextToDIE(clang::DeclContext *decl_ctx, const lldb_private::plugin::dwarf::DWARFDIE &die)
lldb_private::OptionalClangModuleID GetOwningClangModule(const lldb_private::plugin::dwarf::DWARFDIE &die)
std::pair< bool, lldb::TypeSP > ParseCXXMethod(const lldb_private::plugin::dwarf::DWARFDIE &die, lldb_private::CompilerType clang_type, const ParsedDWARFTypeAttributes &attrs, const lldb_private::plugin::dwarf::DWARFDIE &decl_ctx_die, const lldb_private::plugin::dwarf::DWARFDIE &object_parameter, bool &ignore_containing_context)
Helper function called by ParseSubroutine when parsing C++ methods.
A section + offset based address class.
Block * FindBlockByID(lldb::user_id_t block_id)
Manages and observes all Clang AST node importing in LLDB.
CompilerType CopyType(TypeSystemClang &dst, const CompilerType &src_type)
Copies the given type and the respective declarations to the destination type system.
bool CanImport(const CompilerType &type)
Returns true iff the given type was copied from another TypeSystemClang and the original type in this...
void SetRecordLayout(clang::RecordDecl *decl, const LayoutInfo &layout)
Sets the layout for the given RecordDecl.
bool RequireCompleteType(clang::QualType type)
A class that describes a compilation unit.
void AddFunction(lldb::FunctionSP &function_sp)
Add a function to this compile unit.
Represents a generic declaration context in a program.
void * GetOpaqueDeclContext() const
Represents a generic declaration such as a function declaration.
void * GetOpaqueDecl() const
Generic representation of a type in a programming language.
bool IsEnumerationType(bool &is_signed) const
TypeSystemSPWrapper GetTypeSystem() const
Accessors.
bool IsCompleteType() const
llvm::Expected< uint64_t > GetByteSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bytes.
lldb::opaque_compiler_type_t GetOpaqueQualType() const
bool IsBeingDefined() const
bool IsIntegerOrEnumerationType(bool &is_signed) const
ConstString GetTypeName(bool BaseOnly=false) const
bool IsEnumerationIntegerTypeSigned() const
bool GetCompleteType() const
Type Completion.
llvm::Expected< uint64_t > GetBitSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bits.
bool IsFloatingPointType(bool &is_complex) const
A uniqued constant string class.
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
bool IsEmpty() const
Test for empty string.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
void SetString(llvm::StringRef s)
const char * GetCString() const
Get the string value as a C string.
"lldb/Expression/DWARFExpressionList.h" Encapsulates a range map from file address range to a single ...
bool IsValid() const
Return true if the location expression contains data.
static llvm::Expected< Value > Evaluate(ExecutionContext *exe_ctx, RegisterContext *reg_ctx, lldb::ModuleSP module_sp, const DataExtractor &opcodes, const Delegate *dwarf_cu, const lldb::RegisterKind reg_set, const Value *initial_value_ptr, const Value *object_address_ptr)
Evaluate a DWARF location expression in a particular context.
A class that describes the declaration location of a lldb object.
void SetLine(uint32_t line)
Set accessor for the declaration line number.
void SetColumn(uint16_t column)
Set accessor for the declaration column number.
void Clear()
Clear the object's state.
void SetFile(const FileSpec &file_spec)
Set accessor for the declaration file specification.
A class that describes a function.
Block & GetBlock(bool can_create)
Get accessor for the block list.
static bool LanguageIsCPlusPlus(lldb::LanguageType language)
static bool LanguageIsObjC(lldb::LanguageType language)
A class that handles mangled names.
void SetDemangledName(ConstString name)
void SetMangledName(ConstString name)
void SetValue(ConstString name)
Set the string value in this object.
lldb::ModuleSP GetModule() const
Get const accessor for the module pointer.
A class that describes an executable image and its associated object and symbol files.
static std::optional< const ObjCMethodName > Create(llvm::StringRef name, bool strict)
The static factory method for creating a ObjCMethodName.
llvm::StringRef GetClassName() const
Returns a reference to the class name.
A plug-in interface definition class for object file parsers.
virtual lldb::ByteOrder GetByteOrder() const =0
Gets whether endian swapping should occur when extracting data from this object file.
llvm::StringRef GetString() const
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
"lldb/Symbol/SymbolContextScope.h" Inherit from this if your object is part of a symbol context and c...
Defines a symbol context baton that can be handed other debug core functions.
Function * function
The Function for a given query.
lldb::ModuleSP module_sp
The Module for a given query.
CompileUnit * comp_unit
The CompileUnit for a given query.
ObjectFile * GetObjectFile() override
Provides public interface for all SymbolFiles.
lldb::TypeSP FirstType() const
The implementation of lldb::Type's m_payload field for TypeSystemClang.
A class that contains all state required for type lookups.
void AddLanguage(lldb::LanguageType language)
Add a language family to the list of languages that should produce a match.
This class tracks the state and results of a TypeQuery.
bool AlreadySearched(lldb_private::SymbolFile *sym_file)
Check if a SymbolFile object has already been searched by this type match object.
llvm::DenseSet< lldb_private::SymbolFile * > & GetSearchedSymbolFiles()
Access the set of searched symbol files.
void SetPackName(char const *name)
void SetParameterPack(std::unique_ptr< TemplateParameterInfos > args)
void InsertArg(char const *name, clang::TemplateArgument arg)
bool hasParameterPack() const
TemplateParameterInfos const & GetParameterPack() const
A TypeSystem implementation based on Clang.
static clang::FieldDecl * AddFieldToRecordType(const CompilerType &type, llvm::StringRef name, const CompilerType &field_type, lldb::AccessType access, uint32_t bitfield_bit_size)
bool SetDeclIsForcefullyCompleted(const clang::TagDecl *td)
static clang::DeclContext * GetDeclContextForType(clang::QualType type)
static bool IsCXXClassType(const CompilerType &type)
static clang::TagDecl * GetAsTagDecl(const CompilerType &type)
static void SetIntegerInitializerForVariable(clang::VarDecl *var, const llvm::APInt &init_value)
Initializes a variable with an integer value.
static void BuildIndirectFields(const CompilerType &type)
static bool CompleteTagDeclarationDefinition(const CompilerType &type)
static bool AddObjCClassProperty(const CompilerType &type, const char *property_name, const CompilerType &property_compiler_type, clang::ObjCIvarDecl *ivar_decl, const char *property_setter_name, const char *property_getter_name, uint32_t property_attributes, ClangASTMetadata metadata)
static clang::NamespaceDecl * DeclContextGetAsNamespaceDecl(const CompilerDeclContext &dc)
CompilerType GetTypeForDecl(clang::NamedDecl *decl)
static clang::DeclContext * DeclContextGetAsDeclContext(const CompilerDeclContext &dc)
static bool StartTagDeclarationDefinition(const CompilerType &type)
static clang::VarDecl * AddVariableToRecordType(const CompilerType &type, llvm::StringRef name, const CompilerType &var_type, lldb::AccessType access)
static bool IsObjCObjectOrInterfaceType(const CompilerType &type)
static void RequireCompleteType(CompilerType type)
Complete a type from debug info, or mark it as forcefully completed if there is no definition of the ...
clang::ASTContext & getASTContext() const
Returns the clang::ASTContext instance managed by this TypeSystemClang.
static CompilerType CreateMemberPointerType(const CompilerType &type, const CompilerType &pointee_type)
CompilerType GetForwardCompilerType()
uint32_t GetEncodingMask()
@ eEncodingIsRestrictUID
This type is the type whose UID is m_encoding_uid with the restrict qualifier added.
@ eEncodingIsConstUID
This type is the type whose UID is m_encoding_uid with the const qualifier added.
@ eEncodingIsVolatileUID
This type is the type whose UID is m_encoding_uid with the volatile qualifier added.
@ eEncodingIsAtomicUID
This type is the type whose UID is m_encoding_uid as an atomic type.
@ eEncodingIsLLVMPtrAuthUID
This type is a signed pointer.
@ eEncodingInvalid
Invalid encoding.
@ eEncodingIsTypedefUID
This type is alias to a type whose UID is m_encoding_uid.
@ eEncodingIsPointerUID
This type is pointer to a type whose UID is m_encoding_uid.
@ eEncodingIsLValueReferenceUID
This type is L value reference to a type whose UID is m_encoding_uid.
@ eEncodingIsRValueReferenceUID
This type is R value reference to a type whose UID is m_encoding_uid.
@ eEncodingIsUID
This type is the type whose UID is m_encoding_uid.
CompilerType GetLayoutCompilerType()
CompilerType GetFullCompilerType()
llvm::Expected< uint64_t > GetByteSize(ExecutionContextScope *exe_scope)
ConstString GetCStringAtIndex(uint32_t idx) const
T GetValueAtIndexUnchecked(uint32_t idx) const
T Find(ConstString unique_cstr, T fail_value) const
lldb_private::Type * GetTypeForDIE(const DWARFDIE &die)
DWARFASTParser(Kind kind)
static lldb::AccessType GetAccessTypeFromDWARF(uint32_t dwarf_accessibility)
static std::optional< SymbolFile::ArrayInfo > ParseChildArrayInfo(const DWARFDIE &parent_die, const ExecutionContext *exe_ctx=nullptr)
DWARFUnit * CompileUnitAtIndex(uint32_t i) const
dw_attr_t AttributeAtIndex(uint32_t i) const
bool ExtractFormValueAtIndex(uint32_t i, DWARFFormValue &form_value) const
DWARFAttributes GetAttributes(Recurse recurse=Recurse::yes) const
std::optional< uint64_t > GetAttributeValueAsOptionalUnsigned(const dw_attr_t attr) const
const DWARFDataExtractor & GetData() const
const char * GetAttributeValueAsString(const dw_attr_t attr, const char *fail_value) const
std::optional< DIERef > GetDIERef() const
SymbolFileDWARF * GetDWARF() const
DWARFUnit * GetCU() const
uint64_t GetAttributeValueAsUnsigned(const dw_attr_t attr, uint64_t fail_value) const
dw_offset_t GetOffset() const
lldb::user_id_t GetID() const
void GetName(Stream &s) const
const char * GetMangledName(bool substitute_name_allowed=true) const
DWARFDIE GetFirstChild() const
DWARFDIE GetParent() const
bool GetDIENamesAndRanges(const char *&name, const char *&mangled, llvm::DWARFAddressRangesVector &ranges, std::optional< int > &decl_file, std::optional< int > &decl_line, std::optional< int > &decl_column, std::optional< int > &call_file, std::optional< int > &call_line, std::optional< int > &call_column, DWARFExpressionList *frame_base) const
DWARFDIE GetDIE(dw_offset_t die_offset) const
llvm::iterator_range< child_iterator > children() const
The range of all the children of this DIE.
DWARFDIE GetParentDeclContextDIE() const
bool IsStructUnionOrClass() const
Type * ResolveTypeUID(const DWARFDIE &die) const
std::vector< CompilerContext > GetDeclContext(bool derive_template_names=false) const
Return this DIE's decl context as it is needed to look up types in Clang modules.
DWARFDIE GetAttributeValueAsReferenceDIE(const dw_attr_t attr) const
DWARFDeclContext GetDWARFDeclContext() const
DWARFDIE GetReferencedDIE(const dw_attr_t attr) const
Type * ResolveType() const
const char * GetQualifiedName() const
SymbolFileDWARF & GetSymbolFileDWARF() const
bool Supports_unnamed_objc_bitfields()
uint64_t GetDWARFLanguageType()
FileSpec GetFile(size_t file_idx)
lldb::TypeSP FindCompleteObjCDefinitionTypeForDIE(const DWARFDIE &die, ConstString type_name, bool must_be_implementation)
DWARFDIE FindDefinitionDIE(const DWARFDIE &die)
lldb::ModuleSP GetExternalModule(ConstString name)
static DWARFASTParser * GetDWARFParser(DWARFUnit &unit)
static lldb::LanguageType GetLanguageFamily(DWARFUnit &unit)
Same as GetLanguage() but reports all C++ versions as C++ (no version).
Type * ResolveType(const DWARFDIE &die, bool assert_not_being_parsed=true, bool resolve_function_context=false)
virtual llvm::DenseMap< const DWARFDebugInfoEntry *, Type * > & GetDIEToType()
static CompilerDecl GetDecl(const DWARFDIE &die)
static lldb::LanguageType GetLanguage(DWARFUnit &unit)
static DWARFDIE GetParentSymbolContextDIE(const DWARFDIE &die)
static CompilerDeclContext GetDeclContext(const DWARFDIE &die)
llvm::dwarf::Tag dw_tag_t
llvm::dwarf::Attribute dw_attr_t
#define UNUSED_IF_ASSERT_DISABLED(x)
llvm::StringRef DW_TAG_value_to_name(dw_tag_t tag)
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.
std::shared_ptr< lldb_private::Function > FunctionSP
LanguageType
Programming language type.
@ eLanguageTypeUnknown
Unknown or invalid language value.
@ eLanguageTypeObjC_plus_plus
Objective-C++.
@ eLanguageTypeObjC
Objective-C.
std::shared_ptr< lldb_private::Type > TypeSP
@ eEncodingSint
signed integer
std::shared_ptr< lldb_private::Module > ModuleSP
@ eRegisterKindDWARF
the register numbers seen DWARF
void SetIsArtificial(bool flag)
uint64_t GetEffectiveFieldEnd() const
If this field was folded into storage of a previous field, returns the offset in bits of where that s...
bool IsArtificial() const
uint64_t bit_offset
Offset of this field in bits from the beginning of the containing struct.
void SetEffectiveFieldEnd(uint64_t val)
bool NextBitfieldOffsetIsValid(const uint64_t next_bit_offset) const
uint64_t GetFieldEnd() const
Returns the offset in bits of where the storage this field occupies ends.
void SetIsBitfield(bool flag)
uint64_t bit_size
Size in bits that this field occupies.
bool is_bitfield
Set to 'true' if this field is a bit-field.
Parsed form of all attributes that are relevant for parsing type members.
std::optional< uint64_t > byte_size
int64_t bit_offset
Indicates how many bits into the word (according to the host endianness) the low-order bit of the fie...
uint32_t member_byte_offset
Indicates the byte offset of the word from the base address of the structure.
lldb::AccessType accessibility
lldb_private::plugin::dwarf::DWARFFormValue encoding_form
size_t bit_size
Indicates the size of the field in bits.
std::optional< lldb_private::plugin::dwarf::DWARFFormValue > const_value_form
MemberAttributes(const lldb_private::plugin::dwarf::DWARFDIE &die, const lldb_private::plugin::dwarf::DWARFDIE &parent_die, lldb::ModuleSP module_sp)
Parsed form of all attributes that are relevant for type reconstruction.
lldb_private::Declaration decl
const char * mangled_name
uint32_t encoding
Indicates ref-qualifier of C++ member function if present.
lldb_private::ConstString name
std::optional< clang::EnumExtensibilityAttr::Kind > enum_kind
lldb::AccessType accessibility
std::optional< uint64_t > alignment
bool is_complete_objc_class
lldb::LanguageType class_language
bool is_forward_declaration
std::optional< uint64_t > byte_size
lldb_private::plugin::dwarf::DWARFFormValue signature
lldb_private::plugin::dwarf::DWARFFormValue type
clang::StorageClass storage
ParsedDWARFTypeAttributes(const lldb_private::plugin::dwarf::DWARFDIE &die)
clang::RefQualifierKind ref_qual
Has a value if this DIE represents an enum that was declared with enum_extensibility.
lldb_private::plugin::dwarf::DWARFFormValue specification
lldb_private::plugin::dwarf::DWARFFormValue abstract_origin
std::optional< uint64_t > data_bit_size
lldb_private::plugin::dwarf::DWARFFormValue containing_type
size_t calling_convention
llvm::DenseMap< const clang::FieldDecl *, uint64_t > field_offsets
static clang::QualType GetQualType(const CompilerType &ct)
static CompilerType RemoveFastQualifiers(const CompilerType &ct)
static clang::TagDecl * GetAsTagDecl(const CompilerType &type)
Holds parsed information about a function call label that LLDB attaches as an AsmLabel to function AS...
std::string toString() const
Encode this FunctionCallLabel into its string representation.
lldb::user_id_t GetID() const
Get accessor for the user ID.