diff options
author | Richard Biener <rguenther@suse.de> | 2021-06-22 08:43:15 +0200 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2021-06-25 08:48:52 +0200 |
commit | c6c7ac0499c722ad03259013d6dc50e585a71860 (patch) | |
tree | bf89dc9925462e9eb0ab94e058075969483aca8b /lto-plugin | |
parent | 607c558804f70af2b8f0c39d4d349b349d56cc84 (diff) | |
download | gcc-c6c7ac0499c722ad03259013d6dc50e585a71860.zip gcc-c6c7ac0499c722ad03259013d6dc50e585a71860.tar.gz gcc-c6c7ac0499c722ad03259013d6dc50e585a71860.tar.bz2 |
add -ltrans-objects lto-plugin debug option
This adds a -ltrans-objects option to lto-plugin that by-passes
lto-wrapper invocation and instead feeds LD the final LTRANS objects
directly from the response file given as argument to the option.
This allows LD issues involving the linker-plugin path to be
debugged in an easier way with just the IR objects (their symtab)
and the LTRANS objects as testcase.
I've tested the path re-building stage2 build/genmatch from an
LTO bootstrap and got a bit-identical executable by adding
-plugin-opt=-ltrans-objects=y to the original collect2 invocation,
seeding y with the final objects as printed by building genmatch
with -save-temps -v.
2021-06-22 Richard Biener <rguenther@suse.de>
lto-plugin/
* lto-plugin.c (ltrans_objects): New global.
(all_symbols_read_handler): If -ltrans-objects was specified,
add the output files from the specified file directly.
(process_option): Handle -ltrans-objects.
Diffstat (limited to 'lto-plugin')
-rw-r--r-- | lto-plugin/lto-plugin.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lto-plugin/lto-plugin.c b/lto-plugin/lto-plugin.c index ff79f4a..6ab9822 100644 --- a/lto-plugin/lto-plugin.c +++ b/lto-plugin/lto-plugin.c @@ -190,6 +190,8 @@ static int lto_wrapper_num_args; static char **pass_through_items = NULL; static unsigned int num_pass_through_items; +static char *ltrans_objects = NULL; + static bool debug; static bool save_temps; static bool verbose; @@ -739,6 +741,14 @@ all_symbols_read_handler (void) return LDPS_OK; } + if (ltrans_objects) + { + FILE *objs = fopen (ltrans_objects, "r"); + add_output_files (objs); + fclose (objs); + return LDPS_OK; + } + lto_argv = (char **) xcalloc (sizeof (char *), num_lto_args); lto_arg_ptr = (const char **) lto_argv; assert (lto_wrapper_argv); @@ -1345,6 +1355,8 @@ process_option (const char *option) break; } } + else if (startswith (option, "-ltrans-objects=")) + ltrans_objects = xstrdup (option + strlen ("-ltrans-objects=")); else { int size; |