1 /* LTO plugin for gold and/or GNU ld.
2 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
3 Contributed by Rafael Avila de Espindola (espindola@google.com).
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING3. If not see
17 <http://www.gnu.org/licenses/>. */
19 /* The plugin has only one external function: onload. Gold passes it an array of
20 function that the plugin uses to communicate back to gold.
22 With the functions provided by gold, the plugin can be notified when
23 gold first analyzes a file and pass a symbol table back to gold. The plugin
24 is also notified when all symbols have been read and it is time to generate
25 machine code for the necessary symbols.
27 More information at http://gcc.gnu.org/wiki/whopr/driver.
29 This plugin should be passed the lto-wrapper options and will forward them.
30 It also has 2 options of its own:
31 -debug: Print the command line used to run lto-wrapper.
32 -nop: Instead of running lto-wrapper, pass the original to the plugin. This
33 only works if the input files are hybrid. */
49 #include <sys/types.h>
50 #ifdef HAVE_SYS_WAIT_H
54 #define WIFEXITED(S) (((S) & 0xff) == 0)
57 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
59 #include <libiberty.h>
61 #include "../gcc/lto/common.h"
62 #include "simple-object.h"
63 #include "plugin-api.h"
65 /* Handle opening elf files on hosts, such as Windows, that may use
66 text file handling that will break binary access. */
71 /* Segment name for LTO sections. This is only used for Mach-O.
72 FIXME: This needs to be kept in sync with darwin.c. */
74 #define LTO_SEGMENT_NAME "__GNU_LTO"
76 /* LTO magic section name. */
78 #define LTO_SECTION_PREFIX ".gnu.lto_.symtab"
79 #define LTO_SECTION_PREFIX_LEN (sizeof (LTO_SECTION_PREFIX) - 1)
81 /* The part of the symbol table the plugin has to keep track of. Note that we
82 must keep SYMS until all_symbols_read is called to give the linker time to
83 copy the symbol information. */
89 unsigned next_conflict
;
96 struct ld_plugin_symbol
*syms
;
100 /* Encapsulates object file data during symbol scan. */
101 struct plugin_objfile
104 simple_object_read
*objfile
;
105 struct plugin_symtab
*out
;
106 const struct ld_plugin_input_file
*file
;
109 /* All that we have to remember about a file. */
111 struct plugin_file_info
115 struct plugin_symtab symtab
;
116 struct plugin_symtab conflicts
;
119 /* Until ASM_OUTPUT_LABELREF can be hookized and decoupled from
120 stdio file streams, we do simple label translation here. */
124 ss_none
, /* No underscore prefix. */
125 ss_win32
, /* Underscore prefix any symbol not beginning with '@'. */
126 ss_uscore
, /* Underscore prefix all symbols. */
129 static char *arguments_file_name
;
130 static ld_plugin_register_claim_file register_claim_file
;
131 static ld_plugin_register_all_symbols_read register_all_symbols_read
;
132 static ld_plugin_get_symbols get_symbols
;
133 static ld_plugin_register_cleanup register_cleanup
;
134 static ld_plugin_add_input_file add_input_file
;
135 static ld_plugin_add_input_library add_input_library
;
136 static ld_plugin_message message
;
137 static ld_plugin_add_symbols add_symbols
;
139 static struct plugin_file_info
*claimed_files
= NULL
;
140 static unsigned int num_claimed_files
= 0;
142 static char **output_files
= NULL
;
143 static unsigned int num_output_files
= 0;
145 static char **lto_wrapper_argv
;
146 static int lto_wrapper_num_args
;
148 static char **pass_through_items
= NULL
;
149 static unsigned int num_pass_through_items
;
153 static char *resolution_file
= NULL
;
155 /* The version of gold being used, or -1 if not gold. The number is
156 MAJOR * 100 + MINOR. */
157 static int gold_version
= -1;
159 /* Not used by default, but can be overridden at runtime
160 by using -plugin-opt=-sym-style={none,win32,underscore|uscore}
161 (in fact, only first letter of style arg is checked.) */
162 static enum symbol_style sym_style
= ss_none
;
165 check_1 (int gate
, enum ld_plugin_level level
, const char *text
)
171 message (level
, text
);
174 /* If there is no nicer way to inform the user, fallback to stderr. */
175 fprintf (stderr
, "%s\n", text
);
176 if (level
== LDPL_FATAL
)
181 /* This little wrapper allows check to be called with a non-integer
182 first argument, such as a pointer that must be non-NULL. We can't
183 use c99 bool type to coerce it into range, so we explicitly test. */
184 #define check(GATE, LEVEL, TEXT) check_1 (((GATE) != 0), (LEVEL), (TEXT))
186 /* Parse an entry of the IL symbol table. The data to be parsed is pointed
187 by P and the result is written in ENTRY. The slot number is stored in SLOT.
188 Returns the address of the next entry. */
191 parse_table_entry (char *p
, struct ld_plugin_symbol
*entry
,
195 enum ld_plugin_symbol_kind translate_kind
[] =
204 enum ld_plugin_symbol_visibility translate_visibility
[] =
217 /* cf. Duff's device. */
219 entry
->name
= xstrdup (p
);
224 entry
->name
= concat ("_", p
, NULL
);
227 check (0, LDPL_FATAL
, "invalid symbol style requested");
234 entry
->version
= NULL
;
236 entry
->comdat_key
= p
;
241 if (strlen (entry
->comdat_key
) == 0)
242 entry
->comdat_key
= NULL
;
244 entry
->comdat_key
= xstrdup (entry
->comdat_key
);
247 check (t
<= 4, LDPL_FATAL
, "invalid symbol kind found");
248 entry
->def
= translate_kind
[t
];
252 check (t
<= 3, LDPL_FATAL
, "invalid symbol visibility found");
253 entry
->visibility
= translate_visibility
[t
];
256 memcpy (&entry
->size
, p
, sizeof (uint64_t));
259 memcpy (&aux
->slot
, p
, sizeof (uint32_t));
262 entry
->resolution
= LDPR_UNKNOWN
;
264 aux
->next_conflict
= -1;
269 /* Translate the IL symbol table located between DATA and END. Append the
270 slots and symbols to OUT. */
273 translate (char *data
, char *end
, struct plugin_symtab
*out
)
276 struct ld_plugin_symbol
*syms
= NULL
;
279 /* This overestimates the output buffer sizes, but at least
280 the algorithm is O(1) now. */
282 len
= (end
- data
)/8 + out
->nsyms
+ 1;
283 syms
= xrealloc (out
->syms
, len
* sizeof (struct ld_plugin_symbol
));
284 aux
= xrealloc (out
->aux
, len
* sizeof (struct sym_aux
));
286 for (n
= out
->nsyms
; data
< end
; n
++)
289 data
= parse_table_entry (data
, &syms
[n
], &aux
[n
]);
299 /* Free all memory that is no longer needed after writing the symbol
306 for (i
= 0; i
< num_claimed_files
; i
++)
308 struct plugin_file_info
*info
= &claimed_files
[i
];
309 struct plugin_symtab
*symtab
= &info
->symtab
;
311 for (j
= 0; j
< symtab
->nsyms
; j
++)
313 struct ld_plugin_symbol
*s
= &symtab
->syms
[j
];
316 free (s
->comdat_key
);
323 /* Free all remaining memory. */
329 for (i
= 0; i
< num_claimed_files
; i
++)
331 struct plugin_file_info
*info
= &claimed_files
[i
];
332 struct plugin_symtab
*symtab
= &info
->symtab
;
337 for (i
= 0; i
< num_output_files
; i
++)
338 free (output_files
[i
]);
341 free (claimed_files
);
342 claimed_files
= NULL
;
343 num_claimed_files
= 0;
345 if (arguments_file_name
)
346 free (arguments_file_name
);
347 arguments_file_name
= NULL
;
350 /* Dump SYMTAB to resolution file F. */
353 dump_symtab (FILE *f
, struct plugin_symtab
*symtab
)
357 for (j
= 0; j
< symtab
->nsyms
; j
++)
359 uint32_t slot
= symtab
->aux
[j
].slot
;
360 unsigned int resolution
= symtab
->syms
[j
].resolution
;
362 assert (resolution
!= LDPR_UNKNOWN
);
364 fprintf (f
, "%u %x %s %s\n", (unsigned int) slot
, symtab
->aux
[j
].id
,
365 lto_resolution_str
[resolution
],
366 symtab
->syms
[j
].name
);
370 /* Finish the conflicts' resolution information after the linker resolved
371 the original symbols */
374 finish_conflict_resolution (struct plugin_symtab
*symtab
,
375 struct plugin_symtab
*conflicts
)
379 if (conflicts
->nsyms
== 0)
382 for (i
= 0; i
< symtab
->nsyms
; i
++)
384 int resolution
= LDPR_UNKNOWN
;
386 if (symtab
->aux
[i
].next_conflict
== -1)
389 switch (symtab
->syms
[i
].def
)
392 case LDPK_COMMON
: /* ??? */
393 resolution
= LDPR_RESOLVED_IR
;
396 resolution
= LDPR_PREEMPTED_IR
;
400 resolution
= symtab
->syms
[i
].resolution
;
406 assert (resolution
!= LDPR_UNKNOWN
);
408 for (j
= symtab
->aux
[i
].next_conflict
;
410 j
= conflicts
->aux
[j
].next_conflict
)
411 conflicts
->syms
[j
].resolution
= resolution
;
415 /* Free symbol table SYMTAB. */
418 free_symtab (struct plugin_symtab
*symtab
)
426 /* Writes the relocations to disk. */
429 write_resolution (void)
434 check (resolution_file
, LDPL_FATAL
, "resolution file not specified");
435 f
= fopen (resolution_file
, "w");
436 check (f
, LDPL_FATAL
, "could not open file");
438 fprintf (f
, "%d\n", num_claimed_files
);
440 for (i
= 0; i
< num_claimed_files
; i
++)
442 struct plugin_file_info
*info
= &claimed_files
[i
];
443 struct plugin_symtab
*symtab
= &info
->symtab
;
444 struct ld_plugin_symbol
*syms
= symtab
->syms
;
446 get_symbols (info
->handle
, symtab
->nsyms
, syms
);
448 finish_conflict_resolution (symtab
, &info
->conflicts
);
450 fprintf (f
, "%s %d\n", info
->name
, symtab
->nsyms
+ info
->conflicts
.nsyms
);
451 dump_symtab (f
, symtab
);
452 if (info
->conflicts
.nsyms
)
454 dump_symtab (f
, &info
->conflicts
);
455 free_symtab (&info
->conflicts
);
461 /* Pass files generated by the lto-wrapper to the linker. FD is lto-wrapper's
465 add_output_files (FILE *f
)
469 const unsigned piece
= 32;
470 char *buf
, *s
= xmalloc (piece
);
475 if (!fgets (buf
, piece
, f
))
481 if (s
[len
- 1] != '\n')
483 s
= xrealloc (s
, len
+ piece
);
491 = xrealloc (output_files
, num_output_files
* sizeof (char *));
492 output_files
[num_output_files
- 1] = s
;
493 add_input_file (output_files
[num_output_files
- 1]);
497 /* Execute the lto-wrapper. ARGV[0] is the binary. The rest of ARGV is the
501 exec_lto_wrapper (char *argv
[])
507 FILE *wrapper_output
;
512 /* Write argv to a file to avoid a command line that is too long. */
513 arguments_file_name
= make_temp_file ("");
514 check (arguments_file_name
, LDPL_FATAL
,
515 "Failed to generate a temorary file name");
517 args
= fopen (arguments_file_name
, "w");
518 check (args
, LDPL_FATAL
, "could not open arguments file");
520 t
= writeargv (&argv
[1], args
);
521 check (t
== 0, LDPL_FATAL
, "could not write arguments");
523 check (t
== 0, LDPL_FATAL
, "could not close arguments file");
525 at_args
= concat ("@", arguments_file_name
, NULL
);
526 check (at_args
, LDPL_FATAL
, "could not allocate");
528 for (i
= 1; argv
[i
]; i
++)
531 if (a
[0] == '-' && a
[1] == 'v' && a
[2] == '\0')
533 for (i
= 0; argv
[i
]; i
++)
534 fprintf (stderr
, "%s ", argv
[i
]);
535 fprintf (stderr
, "\n");
540 new_argv
[0] = argv
[0];
541 new_argv
[1] = at_args
;
546 for (i
= 0; new_argv
[i
]; i
++)
547 fprintf (stderr
, "%s ", new_argv
[i
]);
548 fprintf (stderr
, "\n");
552 pex
= pex_init (PEX_USE_PIPES
, "lto-wrapper", NULL
);
553 check (pex
!= NULL
, LDPL_FATAL
, "could not pex_init lto-wrapper");
555 errmsg
= pex_run (pex
, 0, new_argv
[0], new_argv
, NULL
, NULL
, &t
);
556 check (errmsg
== NULL
, LDPL_FATAL
, "could not run lto-wrapper");
557 check (t
== 0, LDPL_FATAL
, "could not run lto-wrapper");
559 wrapper_output
= pex_read_output (pex
, 0);
560 check (wrapper_output
, LDPL_FATAL
, "could not read lto-wrapper output");
562 add_output_files (wrapper_output
);
564 t
= pex_get_status (pex
, 1, &status
);
565 check (t
== 1, LDPL_FATAL
, "could not get lto-wrapper exit status");
566 check (WIFEXITED (status
) && WEXITSTATUS (status
) == 0, LDPL_FATAL
,
567 "lto-wrapper failed");
574 /* Pass the original files back to the linker. */
577 use_original_files (void)
580 for (i
= 0; i
< num_claimed_files
; i
++)
582 struct plugin_file_info
*info
= &claimed_files
[i
];
583 add_input_file (info
->name
);
588 /* Called by the linker once all symbols have been read. */
590 static enum ld_plugin_status
591 all_symbols_read_handler (void)
594 unsigned num_lto_args
= num_claimed_files
+ lto_wrapper_num_args
+ 1;
596 const char **lto_arg_ptr
;
597 if (num_claimed_files
== 0)
602 use_original_files ();
606 lto_argv
= (char **) xcalloc (sizeof (char *), num_lto_args
);
607 lto_arg_ptr
= (const char **) lto_argv
;
608 assert (lto_wrapper_argv
);
614 for (i
= 0; i
< lto_wrapper_num_args
; i
++)
615 *lto_arg_ptr
++ = lto_wrapper_argv
[i
];
617 for (i
= 0; i
< num_claimed_files
; i
++)
619 struct plugin_file_info
*info
= &claimed_files
[i
];
621 *lto_arg_ptr
++ = info
->name
;
624 *lto_arg_ptr
++ = NULL
;
625 exec_lto_wrapper (lto_argv
);
629 /* --pass-through is not needed when using gold 1.11 or later. */
630 if (pass_through_items
&& gold_version
< 111)
633 for (i
= 0; i
< num_pass_through_items
; i
++)
635 if (strncmp (pass_through_items
[i
], "-l", 2) == 0)
636 add_input_library (pass_through_items
[i
] + 2);
638 add_input_file (pass_through_items
[i
]);
639 free (pass_through_items
[i
]);
640 pass_through_items
[i
] = NULL
;
642 free (pass_through_items
);
643 pass_through_items
= NULL
;
649 /* Remove temporary files at the end of the link. */
651 static enum ld_plugin_status
652 cleanup_handler (void)
660 if (arguments_file_name
)
662 t
= unlink (arguments_file_name
);
663 check (t
== 0, LDPL_FATAL
, "could not unlink arguments file");
666 for (i
= 0; i
< num_output_files
; i
++)
668 t
= unlink (output_files
[i
]);
669 check (t
== 0, LDPL_FATAL
, "could not unlink output file");
676 #define SWAP(type, a, b) \
677 do { type tmp_; tmp_ = (a); (a) = (b); (b) = tmp_; } while(0)
679 /* Compare two hash table entries */
681 static int eq_sym (const void *a
, const void *b
)
683 const struct ld_plugin_symbol
*as
= (const struct ld_plugin_symbol
*)a
;
684 const struct ld_plugin_symbol
*bs
= (const struct ld_plugin_symbol
*)b
;
686 return !strcmp (as
->name
, bs
->name
);
691 static hashval_t
hash_sym (const void *a
)
693 const struct ld_plugin_symbol
*as
= (const struct ld_plugin_symbol
*)a
;
695 return htab_hash_string (as
->name
);
698 /* Determine how strong a symbol is */
700 static int symbol_strength (struct ld_plugin_symbol
*s
)
714 /* In the ld -r case we can get dups in the LTO symbol tables, where
715 the same symbol can have different resolutions (e.g. undefined and defined).
717 We have to keep that in the LTO symbol tables, but the dups confuse
718 gold and then finally gcc by supplying incorrect resolutions.
720 Problem is that the main gold symbol table doesn't know about subids
721 and does not distingush the same symbols in different states.
723 So we drop duplicates from the linker visible symbol table
724 and keep them in a private table. Then later do own symbol
725 resolution for the duplicated based on the results for the
728 Then when writing out the resolution file readd the dropped symbols.
730 XXX how to handle common? */
733 resolve_conflicts (struct plugin_symtab
*t
, struct plugin_symtab
*conflicts
)
735 htab_t symtab
= htab_create (t
->nsyms
, hash_sym
, eq_sym
, NULL
);
741 conflicts
->syms
= xmalloc (sizeof (struct ld_plugin_symbol
) * outlen
);
742 conflicts
->aux
= xmalloc (sizeof (struct sym_aux
) * outlen
);
744 /* Move all duplicate symbols into the auxillary conflicts table. */
746 for (i
= 0; i
< t
->nsyms
; i
++)
748 struct ld_plugin_symbol
*s
= &t
->syms
[i
];
749 struct sym_aux
*aux
= &t
->aux
[i
];
752 slot
= htab_find_slot (symtab
, s
, INSERT
);
756 struct ld_plugin_symbol
*orig
= (struct ld_plugin_symbol
*)*slot
;
757 struct sym_aux
*orig_aux
= &t
->aux
[orig
- t
->syms
];
759 /* Always let the linker resolve the strongest symbol */
760 if (symbol_strength (orig
) < symbol_strength (s
))
762 SWAP (struct ld_plugin_symbol
, *orig
, *s
);
763 SWAP (uint32_t, orig_aux
->slot
, aux
->slot
);
764 SWAP (unsigned, orig_aux
->id
, aux
->id
);
765 /* Don't swap conflict chain pointer */
768 /* Move current symbol into the conflicts table */
769 cnf
= conflicts
->nsyms
++;
770 conflicts
->syms
[cnf
] = *s
;
771 conflicts
->aux
[cnf
] = *aux
;
772 aux
= &conflicts
->aux
[cnf
];
774 /* Update conflicts chain of the original symbol */
775 aux
->next_conflict
= orig_aux
->next_conflict
;
776 orig_aux
->next_conflict
= cnf
;
781 /* Remove previous duplicates in the main table */
788 /* Put original into the hash table */
789 *slot
= &t
->syms
[out
];
793 assert (conflicts
->nsyms
<= outlen
);
794 assert (conflicts
->nsyms
+ out
== t
->nsyms
);
797 htab_delete (symtab
);
800 /* Process one section of an object file. */
803 process_symtab (void *data
, const char *name
, off_t offset
, off_t length
)
805 struct plugin_objfile
*obj
= (struct plugin_objfile
*)data
;
809 if (strncmp (name
, LTO_SECTION_PREFIX
, LTO_SECTION_PREFIX_LEN
) != 0)
812 s
= strrchr (name
, '.');
814 sscanf (s
, ".%x", &obj
->out
->id
);
815 secdata
= xmalloc (length
);
816 offset
+= obj
->file
->offset
;
817 if (offset
!= lseek (obj
->file
->fd
, offset
, SEEK_SET
)
818 || length
!= read (obj
->file
->fd
, secdata
, length
))
821 message (LDPL_FATAL
, "%s: corrupt object file", obj
->file
->name
);
822 /* Force claim_file_handler to abandon this file. */
828 translate (secdata
, secdata
+ length
, obj
->out
);
834 /* Callback used by gold to check if the plugin will claim FILE. Writes
835 the result in CLAIMED. */
837 static enum ld_plugin_status
838 claim_file_handler (const struct ld_plugin_input_file
*file
, int *claimed
)
840 enum ld_plugin_status status
;
841 struct plugin_objfile obj
;
842 struct plugin_file_info lto_file
;
846 memset (<o_file
, 0, sizeof (struct plugin_file_info
));
848 if (file
->offset
!= 0)
851 /* We pass the offset of the actual file, not the archive header.
852 Can't use PRIx64, because that's C99, so we have to print the
853 64-bit hex int as two 32-bit ones. */
855 lo
= file
->offset
& 0xffffffff;
856 hi
= ((int64_t)file
->offset
>> 32) & 0xffffffff;
857 int t
= hi
? asprintf (&objname
, "%s@0x%x%08x", file
->name
, lo
, hi
)
858 : asprintf (&objname
, "%s@0x%x", file
->name
, lo
);
859 check (t
>= 0, LDPL_FATAL
, "asprintf failed");
860 lto_file
.name
= objname
;
864 lto_file
.name
= xstrdup (file
->name
);
866 lto_file
.handle
= file
->handle
;
871 obj
.out
= <o_file
.symtab
;
873 obj
.objfile
= simple_object_start_read (file
->fd
, file
->offset
, LTO_SEGMENT_NAME
,
875 /* No file, but also no error code means unrecognized format; just skip it. */
876 if (!obj
.objfile
&& !err
)
880 errmsg
= simple_object_find_sections (obj
.objfile
, process_symtab
, &obj
, &err
);
882 if (!obj
.objfile
|| errmsg
)
885 message (LDPL_FATAL
, "%s: %s: %s", file
->name
, errmsg
,
888 message (LDPL_FATAL
, "%s: %s", file
->name
, errmsg
);
896 resolve_conflicts (<o_file
.symtab
, <o_file
.conflicts
);
898 status
= add_symbols (file
->handle
, lto_file
.symtab
.nsyms
,
899 lto_file
.symtab
.syms
);
900 check (status
== LDPS_OK
, LDPL_FATAL
, "could not add symbols");
905 xrealloc (claimed_files
,
906 num_claimed_files
* sizeof (struct plugin_file_info
));
907 claimed_files
[num_claimed_files
- 1] = lto_file
;
912 free (lto_file
.name
);
916 simple_object_release_read (obj
.objfile
);
921 /* Parse the plugin options. */
924 process_option (const char *option
)
926 if (strcmp (option
, "-debug") == 0)
928 else if (strcmp (option
, "-nop") == 0)
930 else if (!strncmp (option
, "-pass-through=", strlen("-pass-through=")))
932 num_pass_through_items
++;
933 pass_through_items
= xrealloc (pass_through_items
,
934 num_pass_through_items
* sizeof (char *));
935 pass_through_items
[num_pass_through_items
- 1] =
936 xstrdup (option
+ strlen ("-pass-through="));
938 else if (!strncmp (option
, "-sym-style=", sizeof ("-sym-style=") - 1))
940 switch (option
[sizeof ("-sym-style=") - 1])
943 sym_style
= ss_win32
;
946 sym_style
= ss_uscore
;
956 char *opt
= xstrdup (option
);
957 lto_wrapper_num_args
+= 1;
958 size
= lto_wrapper_num_args
* sizeof (char *);
959 lto_wrapper_argv
= (char **) xrealloc (lto_wrapper_argv
, size
);
960 lto_wrapper_argv
[lto_wrapper_num_args
- 1] = opt
;
961 if (strncmp (option
, "-fresolution=", sizeof ("-fresolution=") - 1) == 0)
962 resolution_file
= opt
+ sizeof ("-fresolution=") - 1;
966 /* Called by gold after loading the plugin. TV is the transfer vector. */
968 enum ld_plugin_status
969 onload (struct ld_plugin_tv
*tv
)
971 struct ld_plugin_tv
*p
;
972 enum ld_plugin_status status
;
980 message
= p
->tv_u
.tv_message
;
982 case LDPT_REGISTER_CLAIM_FILE_HOOK
:
983 register_claim_file
= p
->tv_u
.tv_register_claim_file
;
985 case LDPT_ADD_SYMBOLS
:
986 add_symbols
= p
->tv_u
.tv_add_symbols
;
988 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK
:
989 register_all_symbols_read
= p
->tv_u
.tv_register_all_symbols_read
;
991 case LDPT_GET_SYMBOLS
:
992 get_symbols
= p
->tv_u
.tv_get_symbols
;
994 case LDPT_REGISTER_CLEANUP_HOOK
:
995 register_cleanup
= p
->tv_u
.tv_register_cleanup
;
997 case LDPT_ADD_INPUT_FILE
:
998 add_input_file
= p
->tv_u
.tv_add_input_file
;
1000 case LDPT_ADD_INPUT_LIBRARY
:
1001 add_input_library
= p
->tv_u
.tv_add_input_library
;
1004 process_option (p
->tv_u
.tv_string
);
1006 case LDPT_GOLD_VERSION
:
1007 gold_version
= p
->tv_u
.tv_val
;
1015 check (register_claim_file
, LDPL_FATAL
, "register_claim_file not found");
1016 check (add_symbols
, LDPL_FATAL
, "add_symbols not found");
1017 status
= register_claim_file (claim_file_handler
);
1018 check (status
== LDPS_OK
, LDPL_FATAL
,
1019 "could not register the claim_file callback");
1021 if (register_cleanup
)
1023 status
= register_cleanup (cleanup_handler
);
1024 check (status
== LDPS_OK
, LDPL_FATAL
,
1025 "could not register the cleanup callback");
1028 if (register_all_symbols_read
)
1030 check (get_symbols
, LDPL_FATAL
, "get_symbols not found");
1031 status
= register_all_symbols_read (all_symbols_read_handler
);
1032 check (status
== LDPS_OK
, LDPL_FATAL
,
1033 "could not register the all_symbols_read callback");