Lines Matching full:symbols
8 * Usage: nm -n vmlinux | scripts/kallsyms [--all-symbols] > symbols.S
10 * Table compression uses all the unused char codes on the symbols and
16 * Applied to kernel symbols, this usually produces a compression ratio
90 fprintf(stderr, "Usage: kallsyms [--all-symbols] [--absolute-percpu] " in usage()
105 * Symbols which vary between passes. Passes 1 and 2 must have in is_ignored_symbol()
106 * identical symbol lists. The kallsyms_* symbols below are in is_ignored_symbol()
108 * when --all-symbols is specified so exclude them to get a in is_ignored_symbol()
119 /* Exclude linker generated symbols which vary between passes */ in is_ignored_symbol()
128 "__kvm_nvhe_$", /* arm64 local symbols in non-VHE KVM namespace */ in is_ignored_symbol()
129 "__kvm_nvhe_.L", /* arm64 local symbols in non-VHE KVM namespace */ in is_ignored_symbol()
179 /* exclude debugging symbols */ in is_ignored_symbol()
184 /* Keep these useful absolute symbols */ in is_ignored_symbol()
238 /* Ignore most absolute/undefined (?) symbols. */ in read_symbol()
285 /* if --all-symbols is not specified, then symbols outside the text in symbol_valid()
291 /* Corner case. Discard any symbols with the same value as in symbol_valid()
293 * the kallsyms data are added. If these symbols move then in symbol_valid()
307 /* remove all the invalid symbols from the table */
372 /* Provide proper symbols relocatability by their '_text' relativeness. */
440 * encountered of all relative symbols, and emit in write_src()
485 * every 256 symbols */ in write_src()
515 /* Most symbols use a single byte for the length. */ in write_src()
519 /* "Big" symbols use two bytes. */ in write_src()
596 /* replace a given token in all the valid symbols. Use the sampled symbols
679 /* replace this token in all the valid symbols */ in optimize_result()
685 /* start by placing the symbols that are actually used on the table */
773 /* sort by initial order, so that other symbols are left undisturbed */ in compare_symbols()
789 * Keep the 'A' override for percpu symbols to in make_percpus_absolute()
818 {"all-symbols", no_argument, &all_symbols, 1}, in main()