blob: 5d20a2e24cd1e18814483327645f25b6c2f73d0e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Generate assembler source containing symbol information
2 *
3 * Copyright 2002 by Kai Germaschewski
4 *
5 * This software may be used and distributed according to the terms
6 * of the GNU General Public License, incorporated herein by reference.
7 *
8 * Usage: nm -n vmlinux | scripts/kallsyms [--all-symbols] > symbols.S
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Table compression uses all the unused char codes on the symbols and
11 * maps these to the most used substrings (tokens). For instance, it might
12 * map char code 0xF7 to represent "write_" and then in every symbol where
13 * "write_" appears it can be replaced by 0xF7, saving 5 bytes.
14 * The used codes themselves are also placed in the table so that the
15 * decompresion can work without "special cases".
16 * Applied to kernel symbols, this usually produces a compression ratio
17 * of about 50%.
18 *
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <ctype.h>
25
Tejun Heo9281ace2007-07-17 04:03:51 -070026#define KSYM_NAME_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028struct sym_entry {
29 unsigned long long addr;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070030 unsigned int len;
Paulo Marquesf2df3f62008-02-06 01:37:33 -080031 unsigned int start_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 unsigned char *sym;
33};
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static struct sym_entry *table;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070036static unsigned int table_size, table_cnt;
Robin Getza3b81112008-02-06 01:36:26 -080037static unsigned long long _text, _stext, _etext, _sinittext, _einittext;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static int all_symbols = 0;
Yoshinori Sato41f11a42005-05-01 08:59:06 -070039static char symbol_prefix_char = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070041int token_profit[0x10000];
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* the table that holds the result of the compression */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070044unsigned char best_table[256][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070045unsigned char best_table_len[256];
46
47
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070048static void usage(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Yoshinori Sato41f11a42005-05-01 08:59:06 -070050 fprintf(stderr, "Usage: kallsyms [--all-symbols] [--symbol-prefix=<prefix char>] < in.map > out.S\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 exit(1);
52}
53
54/*
55 * This ignores the intensely annoying "mapping symbols" found
56 * in ARM ELF files: $a, $t and $d.
57 */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070058static inline int is_arm_mapping_symbol(const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 return str[0] == '$' && strchr("atd", str[1])
61 && (str[2] == '\0' || str[2] == '.');
62}
63
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070064static int read_symbol(FILE *in, struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 char str[500];
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070067 char *sym, stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 int rc;
69
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070070 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (rc != 3) {
72 if (rc != EOF) {
73 /* skip line */
74 fgets(str, 500, in);
75 }
76 return -1;
77 }
78
Yoshinori Sato41f11a42005-05-01 08:59:06 -070079 sym = str;
80 /* skip prefix char */
81 if (symbol_prefix_char && str[0] == symbol_prefix_char)
82 sym++;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* Ignore most absolute/undefined (?) symbols. */
Eric W. Biedermanfd593d12006-12-07 02:14:04 +010085 if (strcmp(sym, "_text") == 0)
86 _text = s->addr;
87 else if (strcmp(sym, "_stext") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 _stext = s->addr;
Yoshinori Sato41f11a42005-05-01 08:59:06 -070089 else if (strcmp(sym, "_etext") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 _etext = s->addr;
Yoshinori Sato41f11a42005-05-01 08:59:06 -070091 else if (strcmp(sym, "_sinittext") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 _sinittext = s->addr;
Yoshinori Sato41f11a42005-05-01 08:59:06 -070093 else if (strcmp(sym, "_einittext") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 _einittext = s->addr;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070095 else if (toupper(stype) == 'A')
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 {
97 /* Keep these useful absolute symbols */
Yoshinori Sato41f11a42005-05-01 08:59:06 -070098 if (strcmp(sym, "__kernel_syscall_via_break") &&
99 strcmp(sym, "__kernel_syscall_via_epc") &&
100 strcmp(sym, "__kernel_sigtramp") &&
101 strcmp(sym, "__gp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return -1;
103
104 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700105 else if (toupper(stype) == 'U' ||
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700106 is_arm_mapping_symbol(sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return -1;
Ralf Baechle6f00df22005-09-06 15:16:41 -0700108 /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
109 else if (str[0] == '$')
110 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 /* include the type field in the symbol name, so that it gets
113 * compressed together */
114 s->len = strlen(str) + 1;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700115 s->sym = malloc(s->len + 1);
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800116 if (!s->sym) {
117 fprintf(stderr, "kallsyms failure: "
118 "unable to allocate required amount of memory\n");
119 exit(EXIT_FAILURE);
120 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700121 strcpy((char *)s->sym + 1, str);
122 s->sym[0] = stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 return 0;
125}
126
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700127static int symbol_valid(struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 /* Symbols which vary between passes. Passes 1 and 2 must have
130 * identical symbol lists. The kallsyms_* symbols below are only added
131 * after pass 1, they would be included in pass 2 when --all-symbols is
132 * specified so exclude them to get a stable symbol list.
133 */
134 static char *special_symbols[] = {
135 "kallsyms_addresses",
136 "kallsyms_num_syms",
137 "kallsyms_names",
138 "kallsyms_markers",
139 "kallsyms_token_table",
140 "kallsyms_token_index",
141
142 /* Exclude linker generated symbols which vary between passes */
143 "_SDA_BASE_", /* ppc */
144 "_SDA2_BASE_", /* ppc */
145 NULL };
146 int i;
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700147 int offset = 1;
148
149 /* skip prefix char */
150 if (symbol_prefix_char && *(s->sym + 1) == symbol_prefix_char)
151 offset++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /* if --all-symbols is not specified, then symbols outside the text
154 * and inittext sections are discarded */
155 if (!all_symbols) {
156 if ((s->addr < _stext || s->addr > _etext)
Robin Getza3b81112008-02-06 01:36:26 -0800157 && (s->addr < _sinittext || s->addr > _einittext))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return 0;
159 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800160 * _etext _einittext; they can move between pass 1 and 2 when
161 * the kallsyms data are added. If these symbols move then
162 * they may get dropped in pass 2, which breaks the kallsyms
163 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 */
Robin Getza3b81112008-02-06 01:36:26 -0800165 if ((s->addr == _etext &&
166 strcmp((char *)s->sym + offset, "_etext")) ||
167 (s->addr == _einittext &&
168 strcmp((char *)s->sym + offset, "_einittext")))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170 }
171
172 /* Exclude symbols which vary between passes. */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700173 if (strstr((char *)s->sym + offset, "_compiled."))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return 0;
175
176 for (i = 0; special_symbols[i]; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700177 if( strcmp((char *)s->sym + offset, special_symbols[i]) == 0 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return 0;
179
180 return 1;
181}
182
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700183static void read_map(FILE *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 while (!feof(in)) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700186 if (table_cnt >= table_size) {
187 table_size += 10000;
188 table = realloc(table, sizeof(*table) * table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!table) {
190 fprintf(stderr, "out of memory\n");
191 exit (1);
192 }
193 }
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800194 if (read_symbol(in, &table[table_cnt]) == 0) {
195 table[table_cnt].start_pos = table_cnt;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700196 table_cnt++;
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199}
200
201static void output_label(char *label)
202{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700203 if (symbol_prefix_char)
204 printf(".globl %c%s\n", symbol_prefix_char, label);
205 else
206 printf(".globl %s\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 printf("\tALGN\n");
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700208 if (symbol_prefix_char)
209 printf("%c%s:\n", symbol_prefix_char, label);
210 else
211 printf("%s:\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214/* uncompress a compressed symbol. When this function is called, the best table
215 * might still be compressed itself, so the function needs to be recursive */
216static int expand_symbol(unsigned char *data, int len, char *result)
217{
218 int c, rlen, total=0;
219
220 while (len) {
221 c = *data;
222 /* if the table holds a single char that is the same as the one
223 * we are looking for, then end the search */
224 if (best_table[c][0]==c && best_table_len[c]==1) {
225 *result++ = c;
226 total++;
227 } else {
228 /* if not, recurse and expand */
229 rlen = expand_symbol(best_table[c], best_table_len[c], result);
230 total += rlen;
231 result += rlen;
232 }
233 data++;
234 len--;
235 }
236 *result=0;
237
238 return total;
239}
240
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700241static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700243 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 unsigned int best_idx[256];
245 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700246 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 printf("#include <asm/types.h>\n");
249 printf("#if BITS_PER_LONG == 64\n");
250 printf("#define PTR .quad\n");
251 printf("#define ALGN .align 8\n");
252 printf("#else\n");
253 printf("#define PTR .long\n");
254 printf("#define ALGN .align 4\n");
255 printf("#endif\n");
256
Jan Beulichaad09472006-12-08 02:35:57 -0800257 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100259 /* Provide proper symbols relocatability by their '_text'
260 * relativeness. The symbol names cannot be used to construct
261 * normal symbol references as the list of symbols contains
262 * symbols that are declared static and are private to their
263 * .o files. This prevents .tmp_kallsyms.o or any other
264 * object from referencing them.
265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 output_label("kallsyms_addresses");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700267 for (i = 0; i < table_cnt; i++) {
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100268 if (toupper(table[i].sym[0]) != 'A') {
Vivek Goyal2c22d8b2006-12-07 02:14:10 +0100269 if (_text <= table[i].addr)
270 printf("\tPTR\t_text + %#llx\n",
271 table[i].addr - _text);
272 else
273 printf("\tPTR\t_text - %#llx\n",
274 _text - table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100275 } else {
276 printf("\tPTR\t%#llx\n", table[i].addr);
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279 printf("\n");
280
281 output_label("kallsyms_num_syms");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700282 printf("\tPTR\t%d\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 printf("\n");
284
285 /* table of offset markers, that give the offset in the compressed stream
286 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800287 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
288 if (!markers) {
289 fprintf(stderr, "kallsyms failure: "
290 "unable to allocate required memory\n");
291 exit(EXIT_FAILURE);
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700296 for (i = 0; i < table_cnt; i++) {
297 if ((i & 0xFF) == 0)
298 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 printf("\t.byte 0x%02x", table[i].len);
301 for (k = 0; k < table[i].len; k++)
302 printf(", 0x%02x", table[i].sym[k]);
303 printf("\n");
304
305 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 printf("\n");
308
309 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700310 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 printf("\tPTR\t%d\n", markers[i]);
312 printf("\n");
313
314 free(markers);
315
316 output_label("kallsyms_token_table");
317 off = 0;
318 for (i = 0; i < 256; i++) {
319 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700320 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 printf("\t.asciz\t\"%s\"\n", buf);
322 off += strlen(buf) + 1;
323 }
324 printf("\n");
325
326 output_label("kallsyms_token_index");
327 for (i = 0; i < 256; i++)
328 printf("\t.short\t%d\n", best_idx[i]);
329 printf("\n");
330}
331
332
333/* table lookup compression functions */
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/* count all the possible tokens in a symbol */
336static void learn_symbol(unsigned char *symbol, int len)
337{
338 int i;
339
340 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700341 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344/* decrease the count for all the possible tokens in a symbol */
345static void forget_symbol(unsigned char *symbol, int len)
346{
347 int i;
348
349 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700350 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700353/* remove all the invalid symbols from the table and do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static void build_initial_tok_table(void)
355{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700356 unsigned int i, pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700358 pos = 0;
359 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if ( symbol_valid(&table[i]) ) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700361 if (pos != i)
362 table[pos] = table[i];
363 learn_symbol(table[pos].sym, table[pos].len);
364 pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700367 table_cnt = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Paulo Marques7c5d2492007-06-20 18:09:00 +0100370static void *find_token(unsigned char *str, int len, unsigned char *token)
371{
372 int i;
373
374 for (i = 0; i < len - 1; i++) {
375 if (str[i] == token[0] && str[i+1] == token[1])
376 return &str[i];
377 }
378 return NULL;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/* replace a given token in all the valid symbols. Use the sampled symbols
382 * to update the counts */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700383static void compress_symbols(unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700385 unsigned int i, len, size;
386 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700388 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700391 p1 = table[i].sym;
392
393 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100394 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700395 if (!p2) continue;
396
397 /* decrease the counts for this symbol's tokens */
398 forget_symbol(table[i].sym, len);
399
400 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700403 *p2 = idx;
404 p2++;
405 size -= (p2 - p1);
406 memmove(p2, p2 + 1, size);
407 p1 = p2;
408 len--;
409
410 if (size < 2) break;
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100413 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700415 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700417 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700419 /* increase the counts for this symbol's new tokens */
420 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422}
423
424/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700425static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700427 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700430 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700432 for (i = 0; i < 0x10000; i++) {
433 if (token_profit[i] > bestprofit) {
434 best = i;
435 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return best;
439}
440
441/* this is the core of the algorithm: calculate the "best" table */
442static void optimize_result(void)
443{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700444 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /* using the '\0' symbol last allows compress_symbols to use standard
447 * fast string functions */
448 for (i = 255; i >= 0; i--) {
449
450 /* if this table slot is empty (it is not used by an actual
451 * original char code */
452 if (!best_table_len[i]) {
453
454 /* find the token with the breates profit value */
455 best = find_best_token();
456
457 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700458 best_table_len[i] = 2;
459 best_table[i][0] = best & 0xFF;
460 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700463 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 }
466}
467
468/* start by placing the symbols that are actually used on the table */
469static void insert_real_symbols_in_table(void)
470{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700471 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 memset(best_table, 0, sizeof(best_table));
474 memset(best_table_len, 0, sizeof(best_table_len));
475
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700476 for (i = 0; i < table_cnt; i++) {
477 for (j = 0; j < table[i].len; j++) {
478 c = table[i].sym[j];
479 best_table[c][0]=c;
480 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482 }
483}
484
485static void optimize_token_table(void)
486{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 build_initial_tok_table();
488
489 insert_real_symbols_in_table();
490
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700491 /* When valid symbol is not registered, exit to error */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700492 if (!table_cnt) {
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700493 fprintf(stderr, "No valid symbol.\n");
494 exit(1);
495 }
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 optimize_result();
498}
499
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800500static int compare_symbols(const void *a, const void *b)
501{
502 const struct sym_entry *sa;
503 const struct sym_entry *sb;
504 int wa, wb;
505
506 sa = a;
507 sb = b;
508
509 /* sort by address first */
510 if (sa->addr > sb->addr)
511 return 1;
512 if (sa->addr < sb->addr)
513 return -1;
514
515 /* sort by "weakness" type */
516 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
517 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
518 if (wa != wb)
519 return wa - wb;
520
521 /* sort by initial order, so that other symbols are left undisturbed */
522 return sa->start_pos - sb->start_pos;
523}
524
525static void sort_symbols(void)
526{
527 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
528}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700530int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700532 if (argc >= 2) {
533 int i;
534 for (i = 1; i < argc; i++) {
535 if(strcmp(argv[i], "--all-symbols") == 0)
536 all_symbols = 1;
537 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
538 char *p = &argv[i][16];
539 /* skip quote */
540 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
541 p++;
542 symbol_prefix_char = *p;
543 } else
544 usage();
545 }
546 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 usage();
548
549 read_map(stdin);
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800550 sort_symbols();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 optimize_token_table();
552 write_src();
553
554 return 0;
555}