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
];
315 free (s
->comdat_key
);
322 /* Free all remaining memory. */
328 for (i
= 0; i
< num_claimed_files
; i
++)
330 struct plugin_file_info
*info
= &claimed_files
[i
];
331 struct plugin_symtab
*symtab
= &info
->symtab
;
336 for (i
= 0; i
< num_output_files
; i
++)
337 free (output_files
[i
]);
340 free (claimed_files
);
341 claimed_files
= NULL
;
342 num_claimed_files
= 0;
344 free (arguments_file_name
);
345 arguments_file_name
= NULL
;
348 /* Dump SYMTAB to resolution file F. */
351 dump_symtab (FILE *f
, struct plugin_symtab
*symtab
)
355 for (j
= 0; j
< symtab
->nsyms
; j
++)
357 uint32_t slot
= symtab
->aux
[j
].slot
;
358 unsigned int resolution
= symtab
->syms
[j
].resolution
;
360 assert (resolution
!= LDPR_UNKNOWN
);
362 fprintf (f
, "%u %x %s %s\n", (unsigned int) slot
, symtab
->aux
[j
].id
,
363 lto_resolution_str
[resolution
],
364 symtab
->syms
[j
].name
);
368 /* Finish the conflicts' resolution information after the linker resolved
369 the original symbols */
372 finish_conflict_resolution (struct plugin_symtab
*symtab
,
373 struct plugin_symtab
*conflicts
)
377 if (conflicts
->nsyms
== 0)
380 for (i
= 0; i
< symtab
->nsyms
; i
++)
382 int resolution
= LDPR_UNKNOWN
;
384 if (symtab
->aux
[i
].next_conflict
== -1)
387 switch (symtab
->syms
[i
].def
)
390 case LDPK_COMMON
: /* ??? */
391 resolution
= LDPR_RESOLVED_IR
;
394 resolution
= LDPR_PREEMPTED_IR
;
398 resolution
= symtab
->syms
[i
].resolution
;
404 assert (resolution
!= LDPR_UNKNOWN
);
406 for (j
= symtab
->aux
[i
].next_conflict
;
408 j
= conflicts
->aux
[j
].next_conflict
)
409 conflicts
->syms
[j
].resolution
= resolution
;
413 /* Free symbol table SYMTAB. */
416 free_symtab (struct plugin_symtab
*symtab
)
424 /* Writes the relocations to disk. */
427 write_resolution (void)
432 check (resolution_file
, LDPL_FATAL
, "resolution file not specified");
433 f
= fopen (resolution_file
, "w");
434 check (f
, LDPL_FATAL
, "could not open file");
436 fprintf (f
, "%d\n", num_claimed_files
);
438 for (i
= 0; i
< num_claimed_files
; i
++)
440 struct plugin_file_info
*info
= &claimed_files
[i
];
441 struct plugin_symtab
*symtab
= &info
->symtab
;
442 struct ld_plugin_symbol
*syms
= symtab
->syms
;
444 get_symbols (info
->handle
, symtab
->nsyms
, syms
);
446 finish_conflict_resolution (symtab
, &info
->conflicts
);
448 fprintf (f
, "%s %d\n", info
->name
, symtab
->nsyms
+ info
->conflicts
.nsyms
);
449 dump_symtab (f
, symtab
);
450 if (info
->conflicts
.nsyms
)
452 dump_symtab (f
, &info
->conflicts
);
453 free_symtab (&info
->conflicts
);
459 /* Pass files generated by the lto-wrapper to the linker. FD is lto-wrapper's
463 add_output_files (FILE *f
)
467 const unsigned piece
= 32;
468 char *buf
, *s
= xmalloc (piece
);
473 if (!fgets (buf
, piece
, f
))
479 if (s
[len
- 1] != '\n')
481 s
= xrealloc (s
, len
+ piece
);
489 = xrealloc (output_files
, num_output_files
* sizeof (char *));
490 output_files
[num_output_files
- 1] = s
;
491 add_input_file (output_files
[num_output_files
- 1]);
495 /* Execute the lto-wrapper. ARGV[0] is the binary. The rest of ARGV is the
499 exec_lto_wrapper (char *argv
[])
505 FILE *wrapper_output
;
510 /* Write argv to a file to avoid a command line that is too long. */
511 arguments_file_name
= make_temp_file ("");
512 check (arguments_file_name
, LDPL_FATAL
,
513 "Failed to generate a temorary file name");
515 args
= fopen (arguments_file_name
, "w");
516 check (args
, LDPL_FATAL
, "could not open arguments file");
518 t
= writeargv (&argv
[1], args
);
519 check (t
== 0, LDPL_FATAL
, "could not write arguments");
521 check (t
== 0, LDPL_FATAL
, "could not close arguments file");
523 at_args
= concat ("@", arguments_file_name
, NULL
);
524 check (at_args
, LDPL_FATAL
, "could not allocate");
526 for (i
= 1; argv
[i
]; i
++)
529 if (a
[0] == '-' && a
[1] == 'v' && a
[2] == '\0')
531 for (i
= 0; argv
[i
]; i
++)
532 fprintf (stderr
, "%s ", argv
[i
]);
533 fprintf (stderr
, "\n");
538 new_argv
[0] = argv
[0];
539 new_argv
[1] = at_args
;
544 for (i
= 0; new_argv
[i
]; i
++)
545 fprintf (stderr
, "%s ", new_argv
[i
]);
546 fprintf (stderr
, "\n");
550 pex
= pex_init (PEX_USE_PIPES
, "lto-wrapper", NULL
);
551 check (pex
!= NULL
, LDPL_FATAL
, "could not pex_init lto-wrapper");
553 errmsg
= pex_run (pex
, 0, new_argv
[0], new_argv
, NULL
, NULL
, &t
);
554 check (errmsg
== NULL
, LDPL_FATAL
, "could not run lto-wrapper");
555 check (t
== 0, LDPL_FATAL
, "could not run lto-wrapper");
557 wrapper_output
= pex_read_output (pex
, 0);
558 check (wrapper_output
, LDPL_FATAL
, "could not read lto-wrapper output");
560 add_output_files (wrapper_output
);
562 t
= pex_get_status (pex
, 1, &status
);
563 check (t
== 1, LDPL_FATAL
, "could not get lto-wrapper exit status");
564 check (WIFEXITED (status
) && WEXITSTATUS (status
) == 0, LDPL_FATAL
,
565 "lto-wrapper failed");
572 /* Pass the original files back to the linker. */
575 use_original_files (void)
578 for (i
= 0; i
< num_claimed_files
; i
++)
580 struct plugin_file_info
*info
= &claimed_files
[i
];
581 add_input_file (info
->name
);
586 /* Called by the linker once all symbols have been read. */
588 static enum ld_plugin_status
589 all_symbols_read_handler (void)
592 unsigned num_lto_args
= num_claimed_files
+ lto_wrapper_num_args
+ 1;
594 const char **lto_arg_ptr
;
595 if (num_claimed_files
== 0)
600 use_original_files ();
604 lto_argv
= (char **) xcalloc (sizeof (char *), num_lto_args
);
605 lto_arg_ptr
= (const char **) lto_argv
;
606 assert (lto_wrapper_argv
);
612 for (i
= 0; i
< lto_wrapper_num_args
; i
++)
613 *lto_arg_ptr
++ = lto_wrapper_argv
[i
];
615 for (i
= 0; i
< num_claimed_files
; i
++)
617 struct plugin_file_info
*info
= &claimed_files
[i
];
619 *lto_arg_ptr
++ = info
->name
;
622 *lto_arg_ptr
++ = NULL
;
623 exec_lto_wrapper (lto_argv
);
627 /* --pass-through is not needed when using gold 1.11 or later. */
628 if (pass_through_items
&& gold_version
< 111)
631 for (i
= 0; i
< num_pass_through_items
; i
++)
633 if (strncmp (pass_through_items
[i
], "-l", 2) == 0)
634 add_input_library (pass_through_items
[i
] + 2);
636 add_input_file (pass_through_items
[i
]);
637 free (pass_through_items
[i
]);
638 pass_through_items
[i
] = NULL
;
640 free (pass_through_items
);
641 pass_through_items
= NULL
;
647 /* Remove temporary files at the end of the link. */
649 static enum ld_plugin_status
650 cleanup_handler (void)
658 if (arguments_file_name
)
660 t
= unlink (arguments_file_name
);
661 check (t
== 0, LDPL_FATAL
, "could not unlink arguments file");
664 for (i
= 0; i
< num_output_files
; i
++)
666 t
= unlink (output_files
[i
]);
667 check (t
== 0, LDPL_FATAL
, "could not unlink output file");
674 #define SWAP(type, a, b) \
675 do { type tmp_; tmp_ = (a); (a) = (b); (b) = tmp_; } while(0)
677 /* Compare two hash table entries */
679 static int eq_sym (const void *a
, const void *b
)
681 const struct ld_plugin_symbol
*as
= (const struct ld_plugin_symbol
*)a
;
682 const struct ld_plugin_symbol
*bs
= (const struct ld_plugin_symbol
*)b
;
684 return !strcmp (as
->name
, bs
->name
);
689 static hashval_t
hash_sym (const void *a
)
691 const struct ld_plugin_symbol
*as
= (const struct ld_plugin_symbol
*)a
;
693 return htab_hash_string (as
->name
);
696 /* Determine how strong a symbol is */
698 static int symbol_strength (struct ld_plugin_symbol
*s
)
712 /* In the ld -r case we can get dups in the LTO symbol tables, where
713 the same symbol can have different resolutions (e.g. undefined and defined).
715 We have to keep that in the LTO symbol tables, but the dups confuse
716 gold and then finally gcc by supplying incorrect resolutions.
718 Problem is that the main gold symbol table doesn't know about subids
719 and does not distingush the same symbols in different states.
721 So we drop duplicates from the linker visible symbol table
722 and keep them in a private table. Then later do own symbol
723 resolution for the duplicated based on the results for the
726 Then when writing out the resolution file readd the dropped symbols.
728 XXX how to handle common? */
731 resolve_conflicts (struct plugin_symtab
*t
, struct plugin_symtab
*conflicts
)
733 htab_t symtab
= htab_create (t
->nsyms
, hash_sym
, eq_sym
, NULL
);
739 conflicts
->syms
= xmalloc (sizeof (struct ld_plugin_symbol
) * outlen
);
740 conflicts
->aux
= xmalloc (sizeof (struct sym_aux
) * outlen
);
742 /* Move all duplicate symbols into the auxillary conflicts table. */
744 for (i
= 0; i
< t
->nsyms
; i
++)
746 struct ld_plugin_symbol
*s
= &t
->syms
[i
];
747 struct sym_aux
*aux
= &t
->aux
[i
];
750 slot
= htab_find_slot (symtab
, s
, INSERT
);
754 struct ld_plugin_symbol
*orig
= (struct ld_plugin_symbol
*)*slot
;
755 struct sym_aux
*orig_aux
= &t
->aux
[orig
- t
->syms
];
757 /* Always let the linker resolve the strongest symbol */
758 if (symbol_strength (orig
) < symbol_strength (s
))
760 SWAP (struct ld_plugin_symbol
, *orig
, *s
);
761 SWAP (uint32_t, orig_aux
->slot
, aux
->slot
);
762 SWAP (unsigned, orig_aux
->id
, aux
->id
);
763 /* Don't swap conflict chain pointer */
766 /* Move current symbol into the conflicts table */
767 cnf
= conflicts
->nsyms
++;
768 conflicts
->syms
[cnf
] = *s
;
769 conflicts
->aux
[cnf
] = *aux
;
770 aux
= &conflicts
->aux
[cnf
];
772 /* Update conflicts chain of the original symbol */
773 aux
->next_conflict
= orig_aux
->next_conflict
;
774 orig_aux
->next_conflict
= cnf
;
779 /* Remove previous duplicates in the main table */
786 /* Put original into the hash table */
787 *slot
= &t
->syms
[out
];
791 assert (conflicts
->nsyms
<= outlen
);
792 assert (conflicts
->nsyms
+ out
== t
->nsyms
);
795 htab_delete (symtab
);
798 /* Process one section of an object file. */
801 process_symtab (void *data
, const char *name
, off_t offset
, off_t length
)
803 struct plugin_objfile
*obj
= (struct plugin_objfile
*)data
;
807 if (strncmp (name
, LTO_SECTION_PREFIX
, LTO_SECTION_PREFIX_LEN
) != 0)
810 s
= strrchr (name
, '.');
812 sscanf (s
, ".%x", &obj
->out
->id
);
813 secdata
= xmalloc (length
);
814 offset
+= obj
->file
->offset
;
815 if (offset
!= lseek (obj
->file
->fd
, offset
, SEEK_SET
)
816 || length
!= read (obj
->file
->fd
, secdata
, length
))
819 message (LDPL_FATAL
, "%s: corrupt object file", obj
->file
->name
);
820 /* Force claim_file_handler to abandon this file. */
826 translate (secdata
, secdata
+ length
, obj
->out
);
832 /* Callback used by gold to check if the plugin will claim FILE. Writes
833 the result in CLAIMED. */
835 static enum ld_plugin_status
836 claim_file_handler (const struct ld_plugin_input_file
*file
, int *claimed
)
838 enum ld_plugin_status status
;
839 struct plugin_objfile obj
;
840 struct plugin_file_info lto_file
;
844 memset (<o_file
, 0, sizeof (struct plugin_file_info
));
846 if (file
->offset
!= 0)
849 /* We pass the offset of the actual file, not the archive header.
850 Can't use PRIx64, because that's C99, so we have to print the
851 64-bit hex int as two 32-bit ones. */
853 lo
= file
->offset
& 0xffffffff;
854 hi
= ((int64_t)file
->offset
>> 32) & 0xffffffff;
855 t
= hi
? asprintf (&objname
, "%s@0x%x%08x", file
->name
, lo
, hi
)
856 : asprintf (&objname
, "%s@0x%x", file
->name
, lo
);
857 check (t
>= 0, LDPL_FATAL
, "asprintf failed");
858 lto_file
.name
= objname
;
862 lto_file
.name
= xstrdup (file
->name
);
864 lto_file
.handle
= file
->handle
;
869 obj
.out
= <o_file
.symtab
;
871 obj
.objfile
= simple_object_start_read (file
->fd
, file
->offset
, LTO_SEGMENT_NAME
,
873 /* No file, but also no error code means unrecognized format; just skip it. */
874 if (!obj
.objfile
&& !err
)
878 errmsg
= simple_object_find_sections (obj
.objfile
, process_symtab
, &obj
, &err
);
880 if (!obj
.objfile
|| errmsg
)
883 message (LDPL_FATAL
, "%s: %s: %s", file
->name
, errmsg
,
886 message (LDPL_FATAL
, "%s: %s", file
->name
, errmsg
);
894 resolve_conflicts (<o_file
.symtab
, <o_file
.conflicts
);
896 status
= add_symbols (file
->handle
, lto_file
.symtab
.nsyms
,
897 lto_file
.symtab
.syms
);
898 check (status
== LDPS_OK
, LDPL_FATAL
, "could not add symbols");
903 xrealloc (claimed_files
,
904 num_claimed_files
* sizeof (struct plugin_file_info
));
905 claimed_files
[num_claimed_files
- 1] = lto_file
;
910 free (lto_file
.name
);
914 simple_object_release_read (obj
.objfile
);
919 /* Parse the plugin options. */
922 process_option (const char *option
)
924 if (strcmp (option
, "-debug") == 0)
926 else if (strcmp (option
, "-nop") == 0)
928 else if (!strncmp (option
, "-pass-through=", strlen("-pass-through=")))
930 num_pass_through_items
++;
931 pass_through_items
= xrealloc (pass_through_items
,
932 num_pass_through_items
* sizeof (char *));
933 pass_through_items
[num_pass_through_items
- 1] =
934 xstrdup (option
+ strlen ("-pass-through="));
936 else if (!strncmp (option
, "-sym-style=", sizeof ("-sym-style=") - 1))
938 switch (option
[sizeof ("-sym-style=") - 1])
941 sym_style
= ss_win32
;
944 sym_style
= ss_uscore
;
954 char *opt
= xstrdup (option
);
955 lto_wrapper_num_args
+= 1;
956 size
= lto_wrapper_num_args
* sizeof (char *);
957 lto_wrapper_argv
= (char **) xrealloc (lto_wrapper_argv
, size
);
958 lto_wrapper_argv
[lto_wrapper_num_args
- 1] = opt
;
959 if (strncmp (option
, "-fresolution=", sizeof ("-fresolution=") - 1) == 0)
960 resolution_file
= opt
+ sizeof ("-fresolution=") - 1;
964 /* Called by gold after loading the plugin. TV is the transfer vector. */
966 enum ld_plugin_status
967 onload (struct ld_plugin_tv
*tv
)
969 struct ld_plugin_tv
*p
;
970 enum ld_plugin_status status
;
978 message
= p
->tv_u
.tv_message
;
980 case LDPT_REGISTER_CLAIM_FILE_HOOK
:
981 register_claim_file
= p
->tv_u
.tv_register_claim_file
;
983 case LDPT_ADD_SYMBOLS
:
984 add_symbols
= p
->tv_u
.tv_add_symbols
;
986 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK
:
987 register_all_symbols_read
= p
->tv_u
.tv_register_all_symbols_read
;
989 case LDPT_GET_SYMBOLS
:
990 get_symbols
= p
->tv_u
.tv_get_symbols
;
992 case LDPT_REGISTER_CLEANUP_HOOK
:
993 register_cleanup
= p
->tv_u
.tv_register_cleanup
;
995 case LDPT_ADD_INPUT_FILE
:
996 add_input_file
= p
->tv_u
.tv_add_input_file
;
998 case LDPT_ADD_INPUT_LIBRARY
:
999 add_input_library
= p
->tv_u
.tv_add_input_library
;
1002 process_option (p
->tv_u
.tv_string
);
1004 case LDPT_GOLD_VERSION
:
1005 gold_version
= p
->tv_u
.tv_val
;
1013 check (register_claim_file
, LDPL_FATAL
, "register_claim_file not found");
1014 check (add_symbols
, LDPL_FATAL
, "add_symbols not found");
1015 status
= register_claim_file (claim_file_handler
);
1016 check (status
== LDPS_OK
, LDPL_FATAL
,
1017 "could not register the claim_file callback");
1019 if (register_cleanup
)
1021 status
= register_cleanup (cleanup_handler
);
1022 check (status
== LDPS_OK
, LDPL_FATAL
,
1023 "could not register the cleanup callback");
1026 if (register_all_symbols_read
)
1028 check (get_symbols
, LDPL_FATAL
, "get_symbols not found");
1029 status
= register_all_symbols_read (all_symbols_read_handler
);
1030 check (status
== LDPS_OK
, LDPL_FATAL
,
1031 "could not register the all_symbols_read callback");