mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 22:04:09 +02:00
52 lines
1.4 KiB
Awk
52 lines
1.4 KiB
Awk
#!/usr/bin/env awk -f
|
|
|
|
BEGIN {
|
|
sym_prefix = ""
|
|
split("\
|
|
je_aligned_alloc \
|
|
je_calloc \
|
|
je_dallocx \
|
|
je_free \
|
|
je_mallctl \
|
|
je_mallctlbymib \
|
|
je_mallctlnametomib \
|
|
je_malloc \
|
|
je_malloc_conf \
|
|
je_malloc_conf_2_conf_harder \
|
|
je_malloc_message \
|
|
je_malloc_stats_print \
|
|
je_malloc_usable_size \
|
|
je_mallocx \
|
|
je_smallocx_54eaed1d8b56b1aa528be3bdd1877e59c56fa90c \
|
|
je_nallocx \
|
|
je_posix_memalign \
|
|
je_rallocx \
|
|
je_realloc \
|
|
je_sallocx \
|
|
je_sdallocx \
|
|
je_xallocx \
|
|
tls_callback \
|
|
", exported_symbol_names)
|
|
# Store exported symbol names as keys in exported_symbols.
|
|
for (i in exported_symbol_names) {
|
|
exported_symbols[exported_symbol_names[i]] = 1
|
|
}
|
|
}
|
|
|
|
# Process 'nm -a <c_source.o>' output.
|
|
#
|
|
# Handle lines like:
|
|
# 0000000000000008 D opt_junk
|
|
# 0000000000007574 T malloc_initialized
|
|
(NF == 3 && $2 ~ /^[ABCDGRSTVW]$/ && !($3 in exported_symbols) && $3 ~ /^[A-Za-z0-9_]+$/) {
|
|
print substr($3, 1+length(sym_prefix), length($3)-length(sym_prefix))
|
|
}
|
|
|
|
# Process 'dumpbin /SYMBOLS <c_source.obj>' output.
|
|
#
|
|
# Handle lines like:
|
|
# 353 00008098 SECT4 notype External | opt_junk
|
|
# 3F1 00000000 SECT7 notype () External | malloc_initialized
|
|
($3 ~ /^SECT[0-9]+/ && $(NF-2) == "External" && !($NF in exported_symbols)) {
|
|
print $NF
|
|
}
|