]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gas: restore Dwarf info generation after macro diagnostic adjustments
authorJan Beulich <jbeulich@suse.com>
Fri, 16 Dec 2022 08:01:14 +0000 (09:01 +0100)
committerJan Beulich <jbeulich@suse.com>
Fri, 16 Dec 2022 08:01:14 +0000 (09:01 +0100)
While 6fdb723799e2 ("gas: re-work line number tracking for macros and
their expansions") was meant to leave generated Dwarf as is, it really
didn't (and the testcase intended to catch that wasn't covering the case
which broke). Its adjustment to buffer_and_nest() didn't go far enough,
leading to the "linefile" directive inserted at the top to also be
processed later in the PRĀ gas/16908 workaround (which clearly isn't
intended - it's being put there for processing during macro expansion
only). That unnoticed flaw in turn led me to work around it by a
(suspicious to me already at the time) conditional in as_where().

gas/input-scrub.c
gas/macro.c
gas/testsuite/gas/elf/dwarf-5-macro-include.d [new file with mode: 0644]
gas/testsuite/gas/elf/dwarf-5-macro-include.inc [new file with mode: 0644]
gas/testsuite/gas/elf/dwarf-5-macro-include.s [new file with mode: 0644]
gas/testsuite/gas/elf/elf.exp

index 6791ef2774904bc7c00461b991d2aef2cc625593..c967fadc0fc1d1a1f04b21b401fba61e24364c89 100644 (file)
@@ -564,9 +564,6 @@ as_where (unsigned int *linep)
 
       do
        {
-         if (!saved->is_linefile)
-           break;
-
          if (expansion != expanding_macro)
            /* Nothing.  */;
          else if (saved->logical_input_file != NULL
index c41b9c00421cae0b969402369b81ca66b922f668..714fca522702380bf86109257e17e7ce1e688a79 100644 (file)
@@ -120,8 +120,7 @@ buffer_and_nest (const char *from, const char *to, sb *ptr,
   size_t from_len;
   size_t to_len = strlen (to);
   int depth = 1;
-  size_t line_start = ptr->len;
-  size_t more = get_line (ptr);
+  size_t line_start, more;
 
   if (to_len == 4 && strcasecmp (to, "ENDR") == 0)
     {
@@ -147,6 +146,8 @@ buffer_and_nest (const char *from, const char *to, sb *ptr,
     xfree (linefile);
   }
 
+  line_start = ptr->len;
+  more = get_line (ptr);
   while (more)
     {
       /* Try to find the first pseudo op on the line.  */
diff --git a/gas/testsuite/gas/elf/dwarf-5-macro-include.d b/gas/testsuite/gas/elf/dwarf-5-macro-include.d
new file mode 100644 (file)
index 0000000..32ea638
--- /dev/null
@@ -0,0 +1,17 @@
+#as: --gdwarf-5 -I${srcdir}/$subdir
+#name: line number entries for expansions of .macro coming from .include
+#readelf: -W -wl
+# The am33 cr16 crx ft32 mn10* msp430 nds32* and rl78 targets do not evaluate the subtraction of symbols at assembly time.
+# The d30v target emits sufficiently different debug info, apparently also covering padding it inserts.
+# The riscv targets do not support the subtraction of symbols.
+#xfail: am33*-* cr16-* crx-* d30v-* ft32-* mn10*-* msp430-* nds32*-* riscv*-* rl78-*
+
+Raw dump of debug contents .*
+#...
+ Line Number Statements:
+.*Extended opcode 2: .*
+.*Special opcode .* advance Address by 0 .* and Line by 2 to 3
+.*Special opcode .* and Line by 1 to 4
+.*Special opcode .* and Line by 1 to 5
+.*Advance PC by .*
+.*Extended opcode 1: End of Sequence
diff --git a/gas/testsuite/gas/elf/dwarf-5-macro-include.inc b/gas/testsuite/gas/elf/dwarf-5-macro-include.inc
new file mode 100644 (file)
index 0000000..7322377
--- /dev/null
@@ -0,0 +1,3 @@
+       .macro m1 args:vararg
+       .nop
+       .endm
diff --git a/gas/testsuite/gas/elf/dwarf-5-macro-include.s b/gas/testsuite/gas/elf/dwarf-5-macro-include.s
new file mode 100644 (file)
index 0000000..6b6832a
--- /dev/null
@@ -0,0 +1,5 @@
+       .include "dwarf-5-macro-include.inc"
+
+       m1 1
+       m1 2
+       m1 3
index 145814b62be2653a03711b05100b558e75e15d24..105708d4e4d5f4ab02a1daf4909d7a79f3f8abc5 100644 (file)
@@ -309,6 +309,7 @@ if { [is_elf_format] } then {
     run_dump_test "dwarf-5-nop-for-line-table" $dump_opts
     run_dump_test "dwarf-5-irp" $dump_opts
     run_dump_test "dwarf-5-macro" $dump_opts
+    run_dump_test "dwarf-5-macro-include" $dump_opts
     run_dump_test "dwarf-3-func" $dump_opts
     run_dump_test "dwarf-5-func" $dump_opts
     run_dump_test "dwarf-5-func-global" $dump_opts