6e33ce88ffa4ff137a6869cee4be8a8cd615c329
[deliverable/binutils-gdb.git] / ld / ldemul.h
1 /* ld-emul.h - Linker emulation header file
2 Copyright 1991, 92, 93, 94, 95, 96, 97, 1998, 2000
3 Free Software Foundation, Inc.
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
20 extern void ldemul_hll PARAMS ((char *));
21 extern void ldemul_syslib PARAMS ((char *));
22 extern void ldemul_after_parse PARAMS ((void));
23 extern void ldemul_before_parse PARAMS ((void));
24 extern void ldemul_after_open PARAMS ((void));
25 extern void ldemul_after_allocation PARAMS ((void));
26 extern void ldemul_before_allocation PARAMS ((void));
27 extern void ldemul_set_output_arch PARAMS ((void));
28 extern char *ldemul_choose_target PARAMS ((void));
29 extern void ldemul_choose_mode PARAMS ((char *));
30 extern void ldemul_list_emulations PARAMS ((FILE *));
31 extern void ldemul_list_emulation_options PARAMS ((FILE *));
32 extern char *ldemul_get_script PARAMS ((int *isfile));
33 extern void ldemul_finish PARAMS ((void));
34 extern void ldemul_set_symbols PARAMS ((void));
35 extern void ldemul_create_output_section_statements PARAMS ((void));
36 extern boolean ldemul_place_orphan
37 PARAMS ((struct lang_input_statement_struct *, asection *));
38 extern int ldemul_parse_args PARAMS ((int, char **));
39 extern boolean ldemul_unrecognized_file
40 PARAMS ((struct lang_input_statement_struct *));
41 extern boolean ldemul_recognized_file
42 PARAMS ((struct lang_input_statement_struct *));
43 extern boolean ldemul_open_dynamic_archive
44 PARAMS ((const char *, struct search_dirs *,
45 struct lang_input_statement_struct *));
46 extern char *ldemul_default_target PARAMS ((void));
47 extern void after_parse_default PARAMS ((void));
48 extern void after_open_default PARAMS ((void));
49 extern void after_allocation_default PARAMS ((void));
50 extern void before_allocation_default PARAMS ((void));
51 extern void set_output_arch_default PARAMS ((void));
52 extern void syslib_default PARAMS ((char*));
53 extern void hll_default PARAMS ((char*));
54 extern int ldemul_find_potential_libraries
55 PARAMS ((char *, struct lang_input_statement_struct *));
56
57 typedef struct ld_emulation_xfer_struct
58 {
59 /* Run before parsing the command line and script file.
60 Set the architecture, maybe other things. */
61 void (*before_parse) PARAMS ((void));
62
63 /* Handle the SYSLIB (low level library) script command. */
64 void (*syslib) PARAMS ((char *));
65
66 /* Handle the HLL (high level library) script command. */
67 void (*hll) PARAMS ((char *));
68
69 /* Run after parsing the command line and script file. */
70 void (*after_parse) PARAMS ((void));
71
72 /* Run after opening all input files, and loading the symbols. */
73 void (*after_open) PARAMS ((void));
74
75 /* Run after allocating output sections. */
76 void (*after_allocation) PARAMS ( (void));
77
78 /* Set the output architecture and machine if possible. */
79 void (*set_output_arch) PARAMS ((void));
80
81 /* Decide which target name to use. */
82 char * (*choose_target) PARAMS ((void));
83
84 /* Run before allocating output sections. */
85 void (*before_allocation) PARAMS ((void));
86
87 /* Return the appropriate linker script. */
88 char * (*get_script) PARAMS ((int *isfile));
89
90 /* The name of this emulation. */
91 char *emulation_name;
92
93 /* The output format. */
94 char *target_name;
95
96 /* Run after assigning values from the script. */
97 void (*finish) PARAMS ((void));
98
99 /* Create any output sections needed by the target. */
100 void (*create_output_section_statements) PARAMS ((void));
101
102 /* Try to open a dynamic library. ARCH is an architecture name, and
103 is normally the empty string. ENTRY is the lang_input_statement
104 that should be opened. */
105 boolean (*open_dynamic_archive)
106 PARAMS ((const char *arch, struct search_dirs *,
107 struct lang_input_statement_struct *entry));
108
109 /* Place an orphan section. Return true if it was placed, false if
110 the default action should be taken. This field may be NULL, in
111 which case the default action will always be taken. */
112 boolean (*place_orphan)
113 PARAMS ((struct lang_input_statement_struct *, asection *));
114
115 /* Run after assigning parsing with the args, but before
116 reading the script. Used to initialize symbols used in the script. */
117 void (*set_symbols) PARAMS ((void));
118
119 /* Run to parse args which the base linker doesn't
120 understand. Return non zero on sucess. */
121 int (*parse_args) PARAMS ((int, char **));
122
123 /* Run to handle files which are not recognized as object files or
124 archives. Return true if the file was handled. */
125 boolean (*unrecognized_file)
126 PARAMS ((struct lang_input_statement_struct *));
127
128 /* Run to list the command line options which parse_args handles. */
129 void (* list_options) PARAMS ((FILE *));
130
131 /* Run to specially handle files which *are* recognized as object
132 files or archives. Return true if the file was handled. */
133 boolean (*recognized_file)
134 PARAMS ((struct lang_input_statement_struct *));
135
136 /* Called when looking for libraries in a directory specified
137 via a linker command line option or linker script option.
138 Files that match the pattern "lib*.a" have already been scanned.
139 (For VMS files matching ":lib*.a" have also been scanned). */
140 int (* find_potential_libraries)
141 PARAMS ((char *, struct lang_input_statement_struct *));
142
143 } ld_emulation_xfer_type;
144
145 typedef enum
146 {
147 intel_ic960_ld_mode_enum,
148 default_mode_enum ,
149 intel_gld960_ld_mode_enum
150 } lang_emulation_mode_enum_type;
151
152 extern ld_emulation_xfer_type *ld_emulations[];
153
154 #endif
This page took 0.033151 seconds and 4 git commands to generate.