2000-10-09 Kazu Hirata <kazu@hxi.com>
[deliverable/binutils-gdb.git] / ld / ldemul.h
CommitLineData
252b5132 1/* ld-emul.h - Linker emulation header file
5cc18311
KH
2 Copyright 1991, 92, 93, 94, 95, 96, 97, 1998, 2000
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));
28extern char *ldemul_choose_target PARAMS ((void));
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 *));
46extern char *ldemul_default_target PARAMS ((void));
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 *));
252b5132
RH
56
57typedef 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
5cc18311
KH
115 /* Run after assigning parsing with the args, but before
116 reading the script. Used to initialize symbols used in the script. */
252b5132
RH
117 void (*set_symbols) PARAMS ((void));
118
119 /* Run to parse args which the base linker doesn't
5cc18311 120 understand. Return non zero on sucess. */
252b5132
RH
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
344a211f
NC
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 *));
5cc18311 142
252b5132
RH
143} ld_emulation_xfer_type;
144
5cc18311 145typedef enum
252b5132
RH
146{
147 intel_ic960_ld_mode_enum,
148 default_mode_enum ,
149 intel_gld960_ld_mode_enum
150} lang_emulation_mode_enum_type;
151
152extern ld_emulation_xfer_type *ld_emulations[];
153
154#endif
This page took 0.059877 seconds and 4 git commands to generate.