blob: 9a11f9f799f499f2d34d1dea3dec48feb36db00f [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
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040026#ifndef ARRAY_SIZE
27#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
28#endif
29
Tejun Heo9281ace2007-07-17 04:03:51 -070030#define KSYM_NAME_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct sym_entry {
33 unsigned long long addr;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070034 unsigned int len;
Paulo Marquesf2df3f62008-02-06 01:37:33 -080035 unsigned int start_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 unsigned char *sym;
37};
38
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040039struct text_range {
40 const char *stext, *etext;
41 unsigned long long start, end;
42};
43
44static unsigned long long _text;
45static struct text_range text_ranges[] = {
46 { "_stext", "_etext" },
47 { "_sinittext", "_einittext" },
48 { "_stext_l1", "_etext_l1" }, /* Blackfin on-chip L1 inst SRAM */
49 { "_stext_l2", "_etext_l2" }, /* Blackfin on-chip L2 SRAM */
50};
51#define text_range_text (&text_ranges[0])
52#define text_range_inittext (&text_ranges[1])
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static struct sym_entry *table;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070055static unsigned int table_size, table_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static int all_symbols = 0;
Yoshinori Sato41f11a42005-05-01 08:59:06 -070057static char symbol_prefix_char = '\0';
Ming Leif6537f22013-11-02 09:11:33 +103058static unsigned long long kernel_start_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070060int token_profit[0x10000];
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* the table that holds the result of the compression */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070063unsigned char best_table[256][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070064unsigned char best_table_len[256];
65
66
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070067static void usage(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Ming Leif6537f22013-11-02 09:11:33 +103069 fprintf(stderr, "Usage: kallsyms [--all-symbols] "
70 "[--symbol-prefix=<prefix char>] "
71 "[--page-offset=<CONFIG_PAGE_OFFSET>] "
72 "< in.map > out.S\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 exit(1);
74}
75
76/*
77 * This ignores the intensely annoying "mapping symbols" found
78 * in ARM ELF files: $a, $t and $d.
79 */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070080static inline int is_arm_mapping_symbol(const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 return str[0] == '$' && strchr("atd", str[1])
83 && (str[2] == '\0' || str[2] == '.');
84}
85
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040086static int read_symbol_tr(const char *sym, unsigned long long addr)
87{
88 size_t i;
89 struct text_range *tr;
90
91 for (i = 0; i < ARRAY_SIZE(text_ranges); ++i) {
92 tr = &text_ranges[i];
93
94 if (strcmp(sym, tr->stext) == 0) {
95 tr->start = addr;
96 return 0;
97 } else if (strcmp(sym, tr->etext) == 0) {
98 tr->end = addr;
99 return 0;
100 }
101 }
102
103 return 1;
104}
105
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700106static int read_symbol(FILE *in, struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 char str[500];
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700109 char *sym, stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 int rc;
111
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700112 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (rc != 3) {
Jean Sacrenef894872010-09-10 23:13:33 -0600114 if (rc != EOF && fgets(str, 500, in) == NULL)
115 fprintf(stderr, "Read error or end of file.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return -1;
117 }
118
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700119 sym = str;
120 /* skip prefix char */
121 if (symbol_prefix_char && str[0] == symbol_prefix_char)
122 sym++;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* Ignore most absolute/undefined (?) symbols. */
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100125 if (strcmp(sym, "_text") == 0)
126 _text = s->addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400127 else if (read_symbol_tr(sym, s->addr) == 0)
128 /* nothing to do */;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700129 else if (toupper(stype) == 'A')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 {
131 /* Keep these useful absolute symbols */
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700132 if (strcmp(sym, "__kernel_syscall_via_break") &&
133 strcmp(sym, "__kernel_syscall_via_epc") &&
134 strcmp(sym, "__kernel_sigtramp") &&
135 strcmp(sym, "__gp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -1;
137
138 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700139 else if (toupper(stype) == 'U' ||
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700140 is_arm_mapping_symbol(sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return -1;
Ralf Baechle6f00df22005-09-06 15:16:41 -0700142 /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
143 else if (str[0] == '$')
144 return -1;
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200145 /* exclude debugging symbols */
146 else if (stype == 'N')
147 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* include the type field in the symbol name, so that it gets
150 * compressed together */
151 s->len = strlen(str) + 1;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700152 s->sym = malloc(s->len + 1);
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800153 if (!s->sym) {
154 fprintf(stderr, "kallsyms failure: "
155 "unable to allocate required amount of memory\n");
156 exit(EXIT_FAILURE);
157 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700158 strcpy((char *)s->sym + 1, str);
159 s->sym[0] = stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 return 0;
162}
163
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400164static int symbol_valid_tr(struct sym_entry *s)
165{
166 size_t i;
167 struct text_range *tr;
168
169 for (i = 0; i < ARRAY_SIZE(text_ranges); ++i) {
170 tr = &text_ranges[i];
171
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400172 if (s->addr >= tr->start && s->addr <= tr->end)
173 return 1;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400174 }
175
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400176 return 0;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400177}
178
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700179static int symbol_valid(struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 /* Symbols which vary between passes. Passes 1 and 2 must have
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100182 * identical symbol lists. The kallsyms_* symbols below are only added
183 * after pass 1, they would be included in pass 2 when --all-symbols is
184 * specified so exclude them to get a stable symbol list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
186 static char *special_symbols[] = {
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100187 "kallsyms_addresses",
188 "kallsyms_num_syms",
189 "kallsyms_names",
190 "kallsyms_markers",
191 "kallsyms_token_table",
192 "kallsyms_token_index",
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /* Exclude linker generated symbols which vary between passes */
195 "_SDA_BASE_", /* ppc */
196 "_SDA2_BASE_", /* ppc */
197 NULL };
198 int i;
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700199 int offset = 1;
200
Ming Leif6537f22013-11-02 09:11:33 +1030201 if (s->addr < kernel_start_addr)
202 return 0;
203
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700204 /* skip prefix char */
205 if (symbol_prefix_char && *(s->sym + 1) == symbol_prefix_char)
206 offset++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* if --all-symbols is not specified, then symbols outside the text
209 * and inittext sections are discarded */
210 if (!all_symbols) {
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400211 if (symbol_valid_tr(s) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800214 * _etext _einittext; they can move between pass 1 and 2 when
215 * the kallsyms data are added. If these symbols move then
216 * they may get dropped in pass 2, which breaks the kallsyms
217 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400219 if ((s->addr == text_range_text->end &&
220 strcmp((char *)s->sym + offset, text_range_text->etext)) ||
221 (s->addr == text_range_inittext->end &&
222 strcmp((char *)s->sym + offset, text_range_inittext->etext)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return 0;
224 }
225
226 /* Exclude symbols which vary between passes. */
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100227 if (strstr((char *)s->sym + offset, "_compiled."))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229
230 for (i = 0; special_symbols[i]; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700231 if( strcmp((char *)s->sym + offset, special_symbols[i]) == 0 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
233
234 return 1;
235}
236
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700237static void read_map(FILE *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 while (!feof(in)) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700240 if (table_cnt >= table_size) {
241 table_size += 10000;
242 table = realloc(table, sizeof(*table) * table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (!table) {
244 fprintf(stderr, "out of memory\n");
245 exit (1);
246 }
247 }
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800248 if (read_symbol(in, &table[table_cnt]) == 0) {
249 table[table_cnt].start_pos = table_cnt;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700250 table_cnt++;
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253}
254
255static void output_label(char *label)
256{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700257 if (symbol_prefix_char)
258 printf(".globl %c%s\n", symbol_prefix_char, label);
259 else
260 printf(".globl %s\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 printf("\tALGN\n");
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700262 if (symbol_prefix_char)
263 printf("%c%s:\n", symbol_prefix_char, label);
264 else
265 printf("%s:\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268/* uncompress a compressed symbol. When this function is called, the best table
269 * might still be compressed itself, so the function needs to be recursive */
270static int expand_symbol(unsigned char *data, int len, char *result)
271{
272 int c, rlen, total=0;
273
274 while (len) {
275 c = *data;
276 /* if the table holds a single char that is the same as the one
277 * we are looking for, then end the search */
278 if (best_table[c][0]==c && best_table_len[c]==1) {
279 *result++ = c;
280 total++;
281 } else {
282 /* if not, recurse and expand */
283 rlen = expand_symbol(best_table[c], best_table_len[c], result);
284 total += rlen;
285 result += rlen;
286 }
287 data++;
288 len--;
289 }
290 *result=0;
291
292 return total;
293}
294
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700295static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700297 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned int best_idx[256];
299 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700300 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 printf("#include <asm/types.h>\n");
303 printf("#if BITS_PER_LONG == 64\n");
304 printf("#define PTR .quad\n");
305 printf("#define ALGN .align 8\n");
306 printf("#else\n");
307 printf("#define PTR .long\n");
308 printf("#define ALGN .align 4\n");
309 printf("#endif\n");
310
Jan Beulichaad09472006-12-08 02:35:57 -0800311 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100313 /* Provide proper symbols relocatability by their '_text'
314 * relativeness. The symbol names cannot be used to construct
315 * normal symbol references as the list of symbols contains
316 * symbols that are declared static and are private to their
317 * .o files. This prevents .tmp_kallsyms.o or any other
318 * object from referencing them.
319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 output_label("kallsyms_addresses");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700321 for (i = 0; i < table_cnt; i++) {
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100322 if (toupper(table[i].sym[0]) != 'A') {
Vivek Goyal2c22d8b2006-12-07 02:14:10 +0100323 if (_text <= table[i].addr)
324 printf("\tPTR\t_text + %#llx\n",
325 table[i].addr - _text);
326 else
327 printf("\tPTR\t_text - %#llx\n",
328 _text - table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100329 } else {
330 printf("\tPTR\t%#llx\n", table[i].addr);
331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333 printf("\n");
334
335 output_label("kallsyms_num_syms");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700336 printf("\tPTR\t%d\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 printf("\n");
338
339 /* table of offset markers, that give the offset in the compressed stream
340 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800341 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
342 if (!markers) {
343 fprintf(stderr, "kallsyms failure: "
344 "unable to allocate required memory\n");
345 exit(EXIT_FAILURE);
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700350 for (i = 0; i < table_cnt; i++) {
351 if ((i & 0xFF) == 0)
352 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 printf("\t.byte 0x%02x", table[i].len);
355 for (k = 0; k < table[i].len; k++)
356 printf(", 0x%02x", table[i].sym[k]);
357 printf("\n");
358
359 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361 printf("\n");
362
363 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700364 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 printf("\tPTR\t%d\n", markers[i]);
366 printf("\n");
367
368 free(markers);
369
370 output_label("kallsyms_token_table");
371 off = 0;
372 for (i = 0; i < 256; i++) {
373 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700374 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 printf("\t.asciz\t\"%s\"\n", buf);
376 off += strlen(buf) + 1;
377 }
378 printf("\n");
379
380 output_label("kallsyms_token_index");
381 for (i = 0; i < 256; i++)
382 printf("\t.short\t%d\n", best_idx[i]);
383 printf("\n");
384}
385
386
387/* table lookup compression functions */
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/* count all the possible tokens in a symbol */
390static void learn_symbol(unsigned char *symbol, int len)
391{
392 int i;
393
394 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700395 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398/* decrease the count for all the possible tokens in a symbol */
399static void forget_symbol(unsigned char *symbol, int len)
400{
401 int i;
402
403 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700404 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700407/* remove all the invalid symbols from the table and do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408static void build_initial_tok_table(void)
409{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700410 unsigned int i, pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700412 pos = 0;
413 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if ( symbol_valid(&table[i]) ) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700415 if (pos != i)
416 table[pos] = table[i];
417 learn_symbol(table[pos].sym, table[pos].len);
418 pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700421 table_cnt = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Paulo Marques7c5d2492007-06-20 18:09:00 +0100424static void *find_token(unsigned char *str, int len, unsigned char *token)
425{
426 int i;
427
428 for (i = 0; i < len - 1; i++) {
429 if (str[i] == token[0] && str[i+1] == token[1])
430 return &str[i];
431 }
432 return NULL;
433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435/* replace a given token in all the valid symbols. Use the sampled symbols
436 * to update the counts */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700437static void compress_symbols(unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700439 unsigned int i, len, size;
440 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700442 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700445 p1 = table[i].sym;
446
447 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100448 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700449 if (!p2) continue;
450
451 /* decrease the counts for this symbol's tokens */
452 forget_symbol(table[i].sym, len);
453
454 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700457 *p2 = idx;
458 p2++;
459 size -= (p2 - p1);
460 memmove(p2, p2 + 1, size);
461 p1 = p2;
462 len--;
463
464 if (size < 2) break;
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100467 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700469 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700471 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700473 /* increase the counts for this symbol's new tokens */
474 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476}
477
478/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700479static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700481 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700484 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700486 for (i = 0; i < 0x10000; i++) {
487 if (token_profit[i] > bestprofit) {
488 best = i;
489 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return best;
493}
494
495/* this is the core of the algorithm: calculate the "best" table */
496static void optimize_result(void)
497{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700498 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 /* using the '\0' symbol last allows compress_symbols to use standard
501 * fast string functions */
502 for (i = 255; i >= 0; i--) {
503
504 /* if this table slot is empty (it is not used by an actual
505 * original char code */
506 if (!best_table_len[i]) {
507
508 /* find the token with the breates profit value */
509 best = find_best_token();
Xiaochen Wange0a04b12011-05-01 11:41:41 +0800510 if (token_profit[best] == 0)
511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700514 best_table_len[i] = 2;
515 best_table[i][0] = best & 0xFF;
516 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700519 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
522}
523
524/* start by placing the symbols that are actually used on the table */
525static void insert_real_symbols_in_table(void)
526{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700527 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 memset(best_table, 0, sizeof(best_table));
530 memset(best_table_len, 0, sizeof(best_table_len));
531
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700532 for (i = 0; i < table_cnt; i++) {
533 for (j = 0; j < table[i].len; j++) {
534 c = table[i].sym[j];
535 best_table[c][0]=c;
536 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 }
539}
540
541static void optimize_token_table(void)
542{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 build_initial_tok_table();
544
545 insert_real_symbols_in_table();
546
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700547 /* When valid symbol is not registered, exit to error */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700548 if (!table_cnt) {
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700549 fprintf(stderr, "No valid symbol.\n");
550 exit(1);
551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 optimize_result();
554}
555
Lai Jiangshanb478b7822009-03-13 15:10:26 +0800556/* guess for "linker script provide" symbol */
557static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
558{
559 const char *symbol = (char *)se->sym + 1;
560 int len = se->len - 1;
561
562 if (len < 8)
563 return 0;
564
565 if (symbol[0] != '_' || symbol[1] != '_')
566 return 0;
567
568 /* __start_XXXXX */
569 if (!memcmp(symbol + 2, "start_", 6))
570 return 1;
571
572 /* __stop_XXXXX */
573 if (!memcmp(symbol + 2, "stop_", 5))
574 return 1;
575
576 /* __end_XXXXX */
577 if (!memcmp(symbol + 2, "end_", 4))
578 return 1;
579
580 /* __XXXXX_start */
581 if (!memcmp(symbol + len - 6, "_start", 6))
582 return 1;
583
584 /* __XXXXX_end */
585 if (!memcmp(symbol + len - 4, "_end", 4))
586 return 1;
587
588 return 0;
589}
590
591static int prefix_underscores_count(const char *str)
592{
593 const char *tail = str;
594
Paul Mundta9ece532009-09-22 16:44:12 -0700595 while (*tail == '_')
Lai Jiangshanb478b7822009-03-13 15:10:26 +0800596 tail++;
597
598 return tail - str;
599}
600
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800601static int compare_symbols(const void *a, const void *b)
602{
603 const struct sym_entry *sa;
604 const struct sym_entry *sb;
605 int wa, wb;
606
607 sa = a;
608 sb = b;
609
610 /* sort by address first */
611 if (sa->addr > sb->addr)
612 return 1;
613 if (sa->addr < sb->addr)
614 return -1;
615
616 /* sort by "weakness" type */
617 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
618 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
619 if (wa != wb)
620 return wa - wb;
621
Lai Jiangshanb478b7822009-03-13 15:10:26 +0800622 /* sort by "linker script provide" type */
623 wa = may_be_linker_script_provide_symbol(sa);
624 wb = may_be_linker_script_provide_symbol(sb);
625 if (wa != wb)
626 return wa - wb;
627
628 /* sort by the number of prefix underscores */
629 wa = prefix_underscores_count((const char *)sa->sym + 1);
630 wb = prefix_underscores_count((const char *)sb->sym + 1);
631 if (wa != wb)
632 return wa - wb;
633
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800634 /* sort by initial order, so that other symbols are left undisturbed */
635 return sa->start_pos - sb->start_pos;
636}
637
638static void sort_symbols(void)
639{
640 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
641}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700643int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700645 if (argc >= 2) {
646 int i;
647 for (i = 1; i < argc; i++) {
648 if(strcmp(argv[i], "--all-symbols") == 0)
649 all_symbols = 1;
650 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
651 char *p = &argv[i][16];
652 /* skip quote */
653 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
654 p++;
655 symbol_prefix_char = *p;
Ming Leif6537f22013-11-02 09:11:33 +1030656 } else if (strncmp(argv[i], "--page-offset=", 14) == 0) {
657 const char *p = &argv[i][14];
658 kernel_start_addr = strtoull(p, NULL, 16);
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700659 } else
660 usage();
661 }
662 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 usage();
664
665 read_map(stdin);
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100666 sort_symbols();
667 optimize_token_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 write_src();
669
670 return 0;
671}