diff options
author | Kevin Buettner <kevinb@redhat.com> | 2015-11-05 21:40:53 -0700 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2015-11-07 11:03:49 -0700 |
commit | f01dcfd9a7954462ea08d2c7b24dad0ca5e07db2 (patch) | |
tree | 31de97d8c42616436eab61fb54b7884c1a3adf5f /gdb/testsuite/lib | |
parent | 66e749b6edfe817aa78d70c437ff59904b3b9b45 (diff) | |
download | gdb-f01dcfd9a7954462ea08d2c7b24dad0ca5e07db2.zip gdb-f01dcfd9a7954462ea08d2c7b24dad0ca5e07db2.tar.gz gdb-f01dcfd9a7954462ea08d2c7b24dad0ca5e07db2.tar.bz2 |
testsuite: Define and use gdb_target_symbol_prefix_flags_asm.
Some of the source code for the test cases in the GDB testsuite
reside in .S files containing assembly code. These files typically
define a symbol - such as main - which may, depending on the target,
require a prefix such as underscore.
For example, gdb.dwarf2/dw-compdir-oldgcc.S defines the symbol main:
main: .globl main
Some targets, such as rx-elf, require main to have an underscore
prefix. (If it doesn't, a linker error results due to not being able
to find _main required by crt0.o.) So, instead, the above should look
like this for rx-elf and other targets with this same requirement:
_main: .globl _main
This patch defines a new tcl proc in lib/gdb named
gdb_target_symbol_prefix_flags_asm. This proc returns a string
which will - assuming everything else is wired up correctly - cause
-DSYMBOL_PREFIX=_ to be passed on the command line to the compiler.
The test cases are augmented with a macro definition for SYMBOL
as follows:
#define CONCAT1(a, b) CONCAT2(a, b)
#define CONCAT2(a, b) a ## b
#ifdef SYMBOL_PREFIX
# define SYMBOL(str) CONCAT1(SYMBOL_PREFIX, str)
#else
# define SYMBOL(str) str
#endif
Symbols, such as main shown in the example earlier are then wrapped
with SYMBOL like this:
SYMBOL(main): .globl SYMBOL(main)
The net effect will be to add a prefix for those targets which need
it and add no prefix for those targets which do not.
It should be noted that there was already a proc in lib/gdb.exp
called gdb_target_symbol_prefix_flags. It still exists, but has
been significantly rewritten. (There is only one small difference
between the two versions.)
That proc used to explicitly list targets which were known to
require an underscore prefix. This is no longer done; the recently
added proc, gdb_target_symbol_prefix, is now invoked to dynamically
discover whether or not a prefix is required for that particular
target.
The difference between gdb_target_symbol_prefix_flags_asm
and gdb_target_symbol_prefix_flags is that the former returns
a bare prefix while the latter returns the prefix enclosed in
double quotes. I.e. assuming that the discovered prefix is
underscore, gdb_target_symbol_prefix_flags_asm returns:
additional_flags=-DSYMBOL_PREFIX=_
while gdb_target_symbol_prefix_flags returns:
additional_flags=-DSYMBOL_PREFIX="_"
The double-quoted version is not suitable for using with .S files
containing assembly code; there is no way to strip the double quotes
using C preprocessor constructs.
It would be possible to use the bare (non double quoted) version in
C source code. However, the supporting macros become more complicated
and therefore more difficult to maintain.
gdb/testsuite/ChangeLog:
* lib/gdb (gdb_target_symbol_prefix_flags_asm): New proc.
(gdb_target_symbol_prefix_flags): Define in terms of _asm
version.
* gdb.arch/i386-float.exp, gdb.arch/i386-permbkpt.exp,
gdb.dwarf2/dw2-canonicalize-type.exp,
gdb.dwarf2/dw2-compdir-oldgcc.exp, gdb.dwarf2/dw2-minsym-in-cu.exp,
gdb.dwarf2/dw2-op-stack-value.exp, gdb.dwarf2/dw2-unresolved.exp,
gdb.dwarf2/fission-reread.exp, gdb.dwarf2/pr13961.exp: Use flags
provided by gdb_target_symbol_prefix_flags_asm.
* gdb.dwarf2/dw2-canonicalize-type.S, gdb.dwarf2/dw2-compdir-oldgcc.S,
testsuite/gdb.dwarf2/dw2-minsym-in-cu.S,
testsuite/gdb.dwarf2/dw2-unresolved-main.c,
testsuite/gdb.dwarf2/dw2-unresolved.S, gdb.dwarf2/fission-reread.S,
gdb.dwarf2/pr13961.S: Define and use SYMBOL macro (and supporting
macros where needed). Use this macro for symbols which require
the prefix provided by SYMBOL_PREFIX.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 48 |
1 files changed, 39 insertions, 9 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 83dd0a2..a420181 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -5571,18 +5571,48 @@ proc gdb_target_symbol { symbol } { return "${prefix}${symbol}" } -# gdb_target_symbol_prefix_flags returns a string that can be added -# to gdb_compile options to define SYMBOL_PREFIX macro value -# symbol_prefix_flags returns a string that can be added -# for targets that use underscore as symbol prefix. -# TODO: find out automatically if the target needs this. +# gdb_target_symbol_prefix_flags_asm returns a string that can be +# added to gdb_compile options to define the C-preprocessor macro +# SYMBOL_PREFIX with a value that can be prepended to symbols +# for targets which require a prefix, such as underscore. +# +# This version (_asm) defines the prefix without double quotes +# surrounding the prefix. It is used to define the macro +# SYMBOL_PREFIX for assembly language files. Another version, below, +# is used for symbols in inline assembler in C/C++ files. +# +# The lack of quotes in this version (_asm) makes it possible to +# define supporting macros in the .S file. (The version which +# uses quotes for the prefix won't work for such files since it's +# impossible to define a quote-stripping macro in C.) +# +# It's possible to use this version (_asm) for C/C++ source files too, +# but a string is usually required in such files; providing a version +# (no _asm) which encloses the prefix with double quotes makes it +# somewhat easier to define the supporting macros in the test case. + +proc gdb_target_symbol_prefix_flags_asm {} { + set prefix [gdb_target_symbol_prefix] + if {$prefix ne ""} { + return "additional_flags=-DSYMBOL_PREFIX=$prefix" + } else { + return ""; + } +} + +# gdb_target_symbol_prefix_flags returns the same string as +# gdb_target_symbol_prefix_flags_asm, above, but with the prefix +# enclosed in double quotes if there is a prefix. +# +# See the comment for gdb_target_symbol_prefix_flags_asm for an +# extended discussion. proc gdb_target_symbol_prefix_flags {} { - if { [istarget "i?86-*-cygwin*"] || [istarget "i?86-*-mingw*"] - || [istarget "*-*-msdosdjgpp*"] || [istarget "*-*-go32*"] } { - return "additional_flags=-DSYMBOL_PREFIX=\"_\"" + set prefix [gdb_target_symbol_prefix] + if {$prefix ne ""} { + return "additional_flags=-DSYMBOL_PREFIX=\"$prefix\"" } else { - return "" + return ""; } } |