2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
[deliverable/binutils-gdb.git] / ld / ldemul.h
CommitLineData
252b5132 1/* ld-emul.h - Linker emulation header file
a2b64bed 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000
5cc18311 3 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GLD, the Gnu Linker.
6
7 GLD is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 1, or (at your option)
10 any later version.
11
12 GLD is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details. */
16
17#ifndef LDEMUL_H
18#define LDEMUL_H
19
252b5132
RH
20extern void ldemul_hll PARAMS ((char *));
21extern void ldemul_syslib PARAMS ((char *));
22extern void ldemul_after_parse PARAMS ((void));
23extern void ldemul_before_parse PARAMS ((void));
24extern void ldemul_after_open PARAMS ((void));
25extern void ldemul_after_allocation PARAMS ((void));
26extern void ldemul_before_allocation PARAMS ((void));
27extern void ldemul_set_output_arch PARAMS ((void));
742aeb63 28extern char *ldemul_choose_target PARAMS ((int, char**));
252b5132
RH
29extern void ldemul_choose_mode PARAMS ((char *));
30extern void ldemul_list_emulations PARAMS ((FILE *));
31extern void ldemul_list_emulation_options PARAMS ((FILE *));
32extern char *ldemul_get_script PARAMS ((int *isfile));
33extern void ldemul_finish PARAMS ((void));
34extern void ldemul_set_symbols PARAMS ((void));
35extern void ldemul_create_output_section_statements PARAMS ((void));
36extern boolean ldemul_place_orphan
37 PARAMS ((struct lang_input_statement_struct *, asection *));
38extern int ldemul_parse_args PARAMS ((int, char **));
39extern boolean ldemul_unrecognized_file
40 PARAMS ((struct lang_input_statement_struct *));
41extern boolean ldemul_recognized_file
42 PARAMS ((struct lang_input_statement_struct *));
43extern boolean ldemul_open_dynamic_archive
44 PARAMS ((const char *, struct search_dirs *,
45 struct lang_input_statement_struct *));
742aeb63 46extern char *ldemul_default_target PARAMS ((int, char**));
252b5132
RH
47extern void after_parse_default PARAMS ((void));
48extern void after_open_default PARAMS ((void));
49extern void after_allocation_default PARAMS ((void));
50extern void before_allocation_default PARAMS ((void));
51extern void set_output_arch_default PARAMS ((void));
52extern void syslib_default PARAMS ((char*));
53extern void hll_default PARAMS ((char*));
344a211f
NC
54extern int ldemul_find_potential_libraries
55 PARAMS ((char *, struct lang_input_statement_struct *));
fac1652d
AM
56extern struct bfd_elf_version_expr *ldemul_new_vers_pattern
57 PARAMS ((struct bfd_elf_version_expr *));
252b5132 58
89cdebba 59typedef struct ld_emulation_xfer_struct {
252b5132
RH
60 /* Run before parsing the command line and script file.
61 Set the architecture, maybe other things. */
62 void (*before_parse) PARAMS ((void));
63
64 /* Handle the SYSLIB (low level library) script command. */
65 void (*syslib) PARAMS ((char *));
66
67 /* Handle the HLL (high level library) script command. */
68 void (*hll) PARAMS ((char *));
69
70 /* Run after parsing the command line and script file. */
71 void (*after_parse) PARAMS ((void));
72
73 /* Run after opening all input files, and loading the symbols. */
74 void (*after_open) PARAMS ((void));
75
76 /* Run after allocating output sections. */
77 void (*after_allocation) PARAMS ( (void));
78
79 /* Set the output architecture and machine if possible. */
80 void (*set_output_arch) PARAMS ((void));
81
82 /* Decide which target name to use. */
742aeb63 83 char * (*choose_target) PARAMS ((int, char**));
252b5132
RH
84
85 /* Run before allocating output sections. */
86 void (*before_allocation) PARAMS ((void));
87
88 /* Return the appropriate linker script. */
89 char * (*get_script) PARAMS ((int *isfile));
90
91 /* The name of this emulation. */
92 char *emulation_name;
93
94 /* The output format. */
95 char *target_name;
96
97 /* Run after assigning values from the script. */
98 void (*finish) PARAMS ((void));
99
100 /* Create any output sections needed by the target. */
101 void (*create_output_section_statements) PARAMS ((void));
102
103 /* Try to open a dynamic library. ARCH is an architecture name, and
104 is normally the empty string. ENTRY is the lang_input_statement
105 that should be opened. */
106 boolean (*open_dynamic_archive)
107 PARAMS ((const char *arch, struct search_dirs *,
108 struct lang_input_statement_struct *entry));
109
110 /* Place an orphan section. Return true if it was placed, false if
111 the default action should be taken. This field may be NULL, in
112 which case the default action will always be taken. */
113 boolean (*place_orphan)
114 PARAMS ((struct lang_input_statement_struct *, asection *));
115
5cc18311
KH
116 /* Run after assigning parsing with the args, but before
117 reading the script. Used to initialize symbols used in the script. */
252b5132
RH
118 void (*set_symbols) PARAMS ((void));
119
120 /* Run to parse args which the base linker doesn't
5cc18311 121 understand. Return non zero on sucess. */
252b5132
RH
122 int (*parse_args) PARAMS ((int, char **));
123
124 /* Run to handle files which are not recognized as object files or
125 archives. Return true if the file was handled. */
126 boolean (*unrecognized_file)
127 PARAMS ((struct lang_input_statement_struct *));
128
129 /* Run to list the command line options which parse_args handles. */
130 void (* list_options) PARAMS ((FILE *));
131
132 /* Run to specially handle files which *are* recognized as object
133 files or archives. Return true if the file was handled. */
134 boolean (*recognized_file)
135 PARAMS ((struct lang_input_statement_struct *));
136
344a211f
NC
137 /* Called when looking for libraries in a directory specified
138 via a linker command line option or linker script option.
139 Files that match the pattern "lib*.a" have already been scanned.
140 (For VMS files matching ":lib*.a" have also been scanned). */
141 int (* find_potential_libraries)
142 PARAMS ((char *, struct lang_input_statement_struct *));
5cc18311 143
fac1652d
AM
144 /* Called when adding a new version pattern. PowerPC64-ELF uses
145 this hook to add a pattern matching ".foo" for every "foo". */
146 struct bfd_elf_version_expr * (*new_vers_pattern)
147 PARAMS ((struct bfd_elf_version_expr *));
148
252b5132
RH
149} ld_emulation_xfer_type;
150
89cdebba 151typedef enum {
252b5132 152 intel_ic960_ld_mode_enum,
89cdebba 153 default_mode_enum,
252b5132
RH
154 intel_gld960_ld_mode_enum
155} lang_emulation_mode_enum_type;
156
157extern ld_emulation_xfer_type *ld_emulations[];
158
159#endif
This page took 0.140913 seconds and 4 git commands to generate.