Mercurial > hg-old > index.cgi
annotate lwlink/lwlink.h @ 205:42df94f30d82
checkpoint
author | lost |
---|---|
date | Sun, 19 Apr 2009 17:44:46 +0000 |
parents | 048ebb85f6ef |
children | f9f01a499525 |
rev | line source |
---|---|
112 | 1 /* |
2 lwlink.h | |
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 Contains the main defs used by the linker | |
21 */ | |
22 | |
23 | |
24 #ifndef __lwlink_h_seen__ | |
25 #define __lwlink_h_seen__ | |
26 | |
116 | 27 #include "expr.h" |
28 | |
112 | 29 #define OUTPUT_DECB 0 // DECB multirecord format |
30 #define OUTPUT_RAW 1 // raw sequence of bytes | |
187 | 31 #define OUTPUT_LWEX0 2 // LWOS LWEX binary version 0 |
112 | 32 |
116 | 33 typedef struct symtab_s symtab_t; |
34 struct symtab_s | |
35 { | |
36 unsigned char *sym; // symbol name | |
37 int offset; // local offset | |
120 | 38 // int realval; // resolved value |
116 | 39 symtab_t *next; // next symbol |
40 }; | |
41 | |
204
048ebb85f6ef
Added 8 bit external references for base page addressing mode
lost
parents:
187
diff
changeset
|
42 #define RELOC_NORM 0 // all default (16 bit) |
048ebb85f6ef
Added 8 bit external references for base page addressing mode
lost
parents:
187
diff
changeset
|
43 #define RELOC_8BIT 1 // only use the low 8 bits for the reloc |
116 | 44 typedef struct reloc_s reloc_t; |
45 struct reloc_s | |
46 { | |
47 int offset; // where in the section | |
204
048ebb85f6ef
Added 8 bit external references for base page addressing mode
lost
parents:
187
diff
changeset
|
48 int flags; // flags for the relocation |
116 | 49 lw_expr_stack_t *expr; // the expression to calculate it |
50 reloc_t *next; // ptr to next relocation | |
51 }; | |
52 | |
119 | 53 typedef struct fileinfo_s fileinfo_t; |
54 | |
116 | 55 #define SECTION_BSS 1 |
56 typedef struct | |
57 { | |
58 unsigned char *name; // name of the section | |
59 int flags; // section flags | |
60 int codesize; // size of the code | |
61 unsigned char *code; // pointer to the code | |
62 int loadaddress; // the actual load address of the section | |
119 | 63 int processed; // was the section processed yet? |
64 | |
116 | 65 symtab_t *localsyms; // local symbol table |
66 symtab_t *exportedsyms; // exported symbols table | |
67 | |
68 reloc_t *incompletes; // table of incomplete references | |
119 | 69 |
70 fileinfo_t *file; // the file we are in | |
116 | 71 } section_t; |
115 | 72 |
119 | 73 struct fileinfo_s |
115 | 74 { |
75 char *filename; | |
76 unsigned char *filedata; | |
77 long filesize; | |
116 | 78 section_t *sections; |
79 int nsections; | |
180 | 80 int islib; // set to true if the file is a "-l" option |
171 | 81 |
205 | 82 int forced; // set to true if the file is a "forced" include |
83 | |
171 | 84 // "sub" files (like in archives or libraries) |
85 int nsubs; | |
86 fileinfo_t **subs; | |
87 fileinfo_t *parent; | |
119 | 88 }; |
115 | 89 |
121 | 90 struct section_list |
91 { | |
92 section_t *ptr; // ptr to section structure | |
93 int forceaddr; // was this force to an address by the link script? | |
94 }; | |
95 | |
96 #ifndef __link_c_seen__ | |
97 extern struct section_list *sectlist; | |
98 extern int nsects; | |
99 #endif | |
116 | 100 |
101 | |
112 | 102 #ifndef __lwlink_c_seen__ |
103 | |
104 extern int debug_level; | |
105 extern int outformat; | |
106 extern char *outfile; | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
107 extern int ninputfiles; |
115 | 108 extern fileinfo_t **inputfiles; |
117 | 109 extern char *scriptfile; |
112 | 110 |
180 | 111 extern int nlibdirs; |
112 extern char **libdirs; | |
113 | |
114 extern int nscriptls; | |
115 extern char **scriptls; | |
116 | |
184
220a760ec654
Make lwlink display all undefined references instead of bailing after the first one
lost
parents:
180
diff
changeset
|
117 extern int symerr; |
220a760ec654
Make lwlink display all undefined references instead of bailing after the first one
lost
parents:
180
diff
changeset
|
118 |
185 | 119 extern char *map_file; |
120 | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
121 #define __lwlink_E__ extern |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
122 #else |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
123 #define __lwlink_E__ |
112 | 124 #endif // __lwlink_c_seen__ |
125 | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
126 __lwlink_E__ void add_input_file(char *fn); |
180 | 127 __lwlink_E__ void add_input_library(char *fn); |
128 __lwlink_E__ void add_library_search(char *fn); | |
129 __lwlink_E__ void add_section_base(char *fn); | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
130 |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
131 #undef __lwlink_E__ |
117 | 132 |
133 struct scriptline_s | |
134 { | |
135 char *sectname; // name of section, NULL for wildcard | |
136 int loadat; // address to load at (or -1) | |
137 int noflags; // flags to NOT have | |
138 int yesflags; // flags to HAVE | |
139 }; | |
140 | |
141 typedef struct | |
142 { | |
143 int nlines; // number of lines in the script | |
144 struct scriptline_s *lines; // the parsed script lines (section) | |
145 int padsize; // the size to pad to, -1 for none | |
121 | 146 char *execsym; // entry point symbol |
147 int execaddr; // execution address (entry point) | |
187 | 148 int stacksize; // stack size |
117 | 149 } linkscript_t; |
150 | |
151 #ifndef __script_c_seen__ | |
152 extern linkscript_t linkscript; | |
153 #endif | |
154 | |
112 | 155 #endif //__lwlink_h_seen__ |