aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-06-25 12:23:04 -0600
committerTom Tromey <tom@tromey.com>2021-06-25 12:23:04 -0600
commitbf1dcdb3910e003c29c278ddb48eb56cfd045138 (patch)
tree62737349a9aa423cc10b9627593ad0b1a765778b /gdb
parent6b95f5ad9684530960eb828c76755a7b27a44e43 (diff)
downloadgdb-bf1dcdb3910e003c29c278ddb48eb56cfd045138.zip
gdb-bf1dcdb3910e003c29c278ddb48eb56cfd045138.tar.gz
gdb-bf1dcdb3910e003c29c278ddb48eb56cfd045138.tar.bz2
Consolidate CU language setting
The DWARF reader currently sets the CU's language in two different spots. It is primarily done in prepare_one_comp_unit, but read_file_scope also checks the producer and may change the language based on the result. This patch consolidates all language-setting into prepare_one_comp_unit. set_cu_language is renamed and changed not to set language_defn; instead that is done in prepare_one_comp_unit after the correct language enum value is chosen. This fixes a minor latent bug, which is that read_file_scope could set the language enum value to language_opencl, but then neglected to reset language_defn in this case. gdb/ChangeLog 2021-06-25 Tom Tromey <tom@tromey.com> * dwarf2/read.c (read_file_scope): Don't call set_cu_language. (dwarf_lang_to_enum_language): Rename from set_cu_language. Don't set language_defn. Handle DW_LANG_OpenCL. (prepare_one_comp_unit): Check producer and set language_defn.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/dwarf2/read.c75
2 files changed, 48 insertions, 34 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 5045e71..721aca3 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2021-06-25 Tom Tromey <tom@tromey.com>
+
+ * dwarf2/read.c (read_file_scope): Don't call set_cu_language.
+ (dwarf_lang_to_enum_language): Rename from set_cu_language. Don't
+ set language_defn. Handle DW_LANG_OpenCL.
+ (prepare_one_comp_unit): Check producer and set language_defn.
+
2021-06-25 Andrew Burgess <andrew.burgess@embecosm.com>
* NEWS: Mention Python BP_CATCHPOINT feature.
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
index 07bc08f..f76a84a 100644
--- a/gdb/dwarf2/read.c
+++ b/gdb/dwarf2/read.c
@@ -1173,8 +1173,6 @@ static const char *read_dwo_str_index (const struct die_reader_specs *reader,
static const char *read_stub_str_index (struct dwarf2_cu *cu,
ULONGEST str_index);
-static void set_cu_language (unsigned int, struct dwarf2_cu *);
-
static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
struct dwarf2_cu *);
@@ -10509,16 +10507,6 @@ read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
file_and_directory fnd = find_file_and_directory (die, cu);
- /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
- standardised yet. As a workaround for the language detection we fall
- back to the DW_AT_producer string. */
- if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
- cu->language = language_opencl;
-
- /* Similar hack for Go. */
- if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
- set_cu_language (DW_LANG_Go, cu);
-
cu->start_symtab (fnd.name, fnd.comp_dir, lowpc);
gdb_assert (per_objfile->sym_cu == nullptr);
@@ -20355,9 +20343,11 @@ leb128_size (const gdb_byte *buf)
}
}
-static void
-set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
+static enum language
+dwarf_lang_to_enum_language (unsigned int lang)
{
+ enum language language;
+
switch (lang)
{
case DW_LANG_C89:
@@ -20365,54 +20355,58 @@ set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
case DW_LANG_C11:
case DW_LANG_C:
case DW_LANG_UPC:
- cu->language = language_c;
+ language = language_c;
break;
case DW_LANG_Java:
case DW_LANG_C_plus_plus:
case DW_LANG_C_plus_plus_11:
case DW_LANG_C_plus_plus_14:
- cu->language = language_cplus;
+ language = language_cplus;
break;
case DW_LANG_D:
- cu->language = language_d;
+ language = language_d;
break;
case DW_LANG_Fortran77:
case DW_LANG_Fortran90:
case DW_LANG_Fortran95:
case DW_LANG_Fortran03:
case DW_LANG_Fortran08:
- cu->language = language_fortran;
+ language = language_fortran;
break;
case DW_LANG_Go:
- cu->language = language_go;
+ language = language_go;
break;
case DW_LANG_Mips_Assembler:
- cu->language = language_asm;
+ language = language_asm;
break;
case DW_LANG_Ada83:
case DW_LANG_Ada95:
- cu->language = language_ada;
+ language = language_ada;
break;
case DW_LANG_Modula2:
- cu->language = language_m2;
+ language = language_m2;
break;
case DW_LANG_Pascal83:
- cu->language = language_pascal;
+ language = language_pascal;
break;
case DW_LANG_ObjC:
- cu->language = language_objc;
+ language = language_objc;
break;
case DW_LANG_Rust:
case DW_LANG_Rust_old:
- cu->language = language_rust;
+ language = language_rust;
+ break;
+ case DW_LANG_OpenCL:
+ language = language_opencl;
break;
case DW_LANG_Cobol74:
case DW_LANG_Cobol85:
default:
- cu->language = language_minimal;
+ language = language_minimal;
break;
}
- cu->language_defn = language_def (cu->language);
+
+ return language;
}
/* Return the named attribute or NULL if not there. */
@@ -24412,17 +24406,30 @@ prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
{
struct attribute *attr;
+ cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
+
/* Set the language we're debugging. */
attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
- if (attr != nullptr)
- set_cu_language (attr->constant_value (0), cu);
- else
+ if (cu->producer != nullptr
+ && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
{
- cu->language = pretend_language;
- cu->language_defn = language_def (cu->language);
+ /* The XLCL doesn't generate DW_LANG_OpenCL because this
+ attribute is not standardised yet. As a workaround for the
+ language detection we fall back to the DW_AT_producer
+ string. */
+ cu->language = language_opencl;
}
-
- cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
+ else if (cu->producer != nullptr
+ && strstr (cu->producer, "GNU Go ") != NULL)
+ {
+ /* Similar hack for Go. */
+ cu->language = language_go;
+ }
+ else if (attr != nullptr)
+ cu->language = dwarf_lang_to_enum_language (attr->constant_value (0));
+ else
+ cu->language = pretend_language;
+ cu->language_defn = language_def (cu->language);
}
/* See read.h. */