compute_delayed_physnames (origin_cu);
}
+/* Return TRUE if the given DIE is the program's "main". DWARF 4 has
+ defined a dedicated DW_AT_main_subprogram attribute to indicate the
+ starting function of the program, however with older versions the
+ DW_CC_program value of the DW_AT_calling_convention attribute was
+ used instead as the only means available. We handle both variants. */
+
+static bool
+dwarf2_func_is_main_p (struct die_info *die, struct dwarf2_cu *cu)
+{
+ if (dwarf2_flag_true_p (die, DW_AT_main_subprogram, cu))
+ return true;
+ struct attribute *attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
+ return (attr != nullptr
+ && attr->constant_value (DW_CC_normal) == DW_CC_program);
+}
+
static void
read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
{
newobj = cu->get_builder ()->push_context (0, lowpc);
newobj->name = new_symbol (die, read_type_die (die, cu), cu, templ_func);
- if (dwarf2_flag_true_p (die, DW_AT_main_subprogram, cu))
+ if (dwarf2_func_is_main_p (die, cu))
set_objfile_main_name (objfile, newobj->name->linkage_name (),
cu->lang ());
*linkage_name = attr.as_string ();
break;
+ /* DWARF 4 has defined a dedicated DW_AT_main_subprogram
+ attribute to indicate the starting function of the program... */
case DW_AT_main_subprogram:
if (attr.as_boolean ())
*flags |= IS_MAIN;
break;
+ /* ... however with older versions the DW_CC_program value of
+ the DW_AT_calling_convention attribute was used instead as
+ the only means available. We handle both variants then. */
+ case DW_AT_calling_convention:
+ if (attr.constant_value (DW_CC_normal) == DW_CC_program)
+ *flags |= IS_MAIN;
+ break;
+
case DW_AT_declaration:
is_declaration = attr.as_boolean ();
break;