Mercurial > hg-old > index.cgi
annotate lwlink/main.c @ 185:b89adfb0d174
Added support for outputting a linkmap
author | lost |
---|---|
date | Sat, 21 Mar 2009 19:47:45 +0000 |
parents | 833d392fec82 |
children | 857cb407229e |
rev | line source |
---|---|
112 | 1 /* |
2 main.c | |
118 | 3 Copyright © 2009 William Astle |
112 | 4 |
5 This file is part of LWLINK. | |
6 | |
7 LWLINK is free software: you can redistribute it and/or modify it under the | |
8 terms of the GNU General Public License as published by the Free Software | |
9 Foundation, either version 3 of the License, or (at your option) any later | |
10 version. | |
11 | |
12 This program is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
15 more details. | |
16 | |
17 You should have received a copy of the GNU General Public License along with | |
18 this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 | |
21 Implements the program startup code | |
22 | |
23 */ | |
24 | |
25 #ifdef HAVE_CONFIG_H | |
26 #include "config.h" | |
27 #endif | |
28 | |
29 #include <argp.h> | |
30 #include <errno.h> | |
31 #include <stdio.h> | |
32 #include <stdlib.h> | |
182
833d392fec82
Arranged for lwasm and lwlink to remove the output file in case they fail
lost
parents:
180
diff
changeset
|
33 #include <unistd.h> |
112 | 34 |
35 #include "lwlink.h" | |
36 | |
37 // command line option handling | |
142 | 38 const char *argp_program_version = "LWLINK from " PACKAGE_STRING; |
112 | 39 const char *argp_program_bug_address = PACKAGE_BUGREPORT; |
40 | |
41 static error_t parse_opts(int key, char *arg, struct argp_state *state) | |
42 { | |
43 switch (key) | |
44 { | |
45 case 'o': | |
46 // output | |
47 outfile = arg; | |
48 break; | |
49 | |
117 | 50 case 's': |
51 // script file | |
52 scriptfile = arg; | |
53 break; | |
54 | |
112 | 55 case 'd': |
56 // debug | |
57 debug_level++; | |
58 break; | |
59 | |
60 case 'b': | |
61 // decb output | |
62 outformat = OUTPUT_DECB; | |
63 break; | |
64 | |
65 case 'r': | |
66 // raw binary output | |
67 outformat = OUTPUT_RAW; | |
68 break; | |
69 | |
70 case 'f': | |
71 // output format | |
72 if (!strcasecmp(arg, "decb")) | |
73 outformat = OUTPUT_DECB; | |
74 else if (!strcasecmp(arg, "raw")) | |
75 outformat = OUTPUT_RAW; | |
76 else | |
77 { | |
78 fprintf(stderr, "Invalid output format: %s\n", arg); | |
79 exit(1); | |
80 } | |
81 break; | |
82 case ARGP_KEY_END: | |
83 // done; sanity check | |
84 if (!outfile) | |
85 outfile = "a.out"; | |
86 break; | |
87 | |
180 | 88 case 'l': |
89 add_input_library(arg); | |
90 break; | |
91 | |
92 case 'L': | |
93 add_library_search(arg); | |
94 break; | |
95 | |
96 case 0x100: | |
97 add_section_base(arg); | |
98 break; | |
185 | 99 |
100 case 'm': | |
101 map_file = arg; | |
102 break; | |
103 | |
112 | 104 case ARGP_KEY_ARG: |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
105 add_input_file(arg); |
112 | 106 break; |
107 | |
108 default: | |
109 return ARGP_ERR_UNKNOWN; | |
110 } | |
111 return 0; | |
112 } | |
113 | |
114 static struct argp_option options[] = | |
115 { | |
116 { "output", 'o', "FILE", 0, | |
117 "Output to FILE"}, | |
118 { "debug", 'd', 0, 0, | |
119 "Set debug mode"}, | |
120 { "format", 'f', "TYPE", 0, | |
149 | 121 "Select output format: decb, raw"}, |
112 | 122 { "decb", 'b', 0, 0, |
123 "Generate DECB .bin format output, equivalent of --format=decb"}, | |
124 { "raw", 'r', 0, 0, | |
125 "Generate raw binary format output, equivalent of --format=raw"}, | |
125
f9bfc2986023
Actually allow script file to be specified and fix segfault on parsing script file
lost
parents:
121
diff
changeset
|
126 { "script", 's', "FILE", 0, |
180 | 127 "Specify the linking script (overrides the built in defaults)"}, |
128 { "library", 'l', "LIBSPEC", 0, | |
129 "Read library libLIBSPEC.a from the search path" }, | |
130 { "library-path", 'L', "DIR", 0, | |
131 "Add DIR to the library search path" }, | |
132 { "section-base", 0x100, "SECT=BASE", 0, | |
133 "Load section SECT at BASE" }, | |
185 | 134 { "map", 'm', "FILE", 0, |
135 "Output informaiton about the link" }, | |
112 | 136 { 0 } |
137 }; | |
138 | |
139 static struct argp argp = | |
140 { | |
141 options, | |
142 parse_opts, | |
143 "<input file> ...", | |
144 "LWLINK, a HD6309 and MC6809 cross-linker" | |
145 }; | |
146 | |
115 | 147 extern void read_files(void); |
117 | 148 extern void setup_script(void); |
119 | 149 extern void resolve_sections(void); |
121 | 150 extern void resolve_references(void); |
151 extern void do_output(void); | |
185 | 152 extern void display_map(void); |
115 | 153 |
112 | 154 // main function; parse command line, set up assembler state, and run the |
155 // assembler on the first file | |
156 int main(int argc, char **argv) | |
157 { | |
158 argp_parse(&argp, argc, argv, 0, 0, NULL); | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
159 if (ninputfiles == 0) |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
160 { |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
161 fprintf(stderr, "No input files\n"); |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
162 exit(1); |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
163 } |
115 | 164 |
182
833d392fec82
Arranged for lwasm and lwlink to remove the output file in case they fail
lost
parents:
180
diff
changeset
|
165 unlink(outfile); |
833d392fec82
Arranged for lwasm and lwlink to remove the output file in case they fail
lost
parents:
180
diff
changeset
|
166 |
119 | 167 // handle the linker script |
117 | 168 setup_script(); |
169 | |
115 | 170 // read the input files |
171 read_files(); | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
172 |
119 | 173 // resolve section bases and section order |
174 resolve_sections(); | |
175 | |
121 | 176 // resolve incomplete references |
177 resolve_references(); | |
178 | |
179 // do the actual output | |
180 do_output(); | |
185 | 181 |
182 // display/output the link map | |
183 if (map_file) | |
184 display_map(); | |
185 | |
112 | 186 exit(0); |
187 } |