applets
applets_sh
arch
archival
configs
console-tools
coreutils
debianutils
docs
e2fsprogs
editors
examples
findutils
include
init
libbb
libpwdgrp
loginutils
mailutils
miscutils
modutils
networking
printutils
procps
qemu_multiarch_testing
runit
scripts
basic
kconfig
Kbuild.include
Kbuild.src
Makefile.IMA
Makefile.build
Makefile.clean
Makefile.host
Makefile.lib
bb_release
bloat-o-meter
checkhelp.awk
checkstack.pl
cleanup_printf2puts
echo.c
find_bad_common_bufsiz
find_stray_common_vars
find_stray_empty_lines
fix_ws.sh
gcc-version.sh
gen_build_files.sh
memusage
mkconfigs
mkdiff_obj
mkdiff_obj_bloat
mkmakefile
objsizes
randomtest
randomtest.loop
sample_pmap
showasm
test_make_O
test_make_clean
trylink
selinux
shell
sysklogd
testsuite
util-linux
.gitignore
.indent.pro
AUTHORS
Config.in
INSTALL
LICENSE
Makefile
Makefile.custom
Makefile.flags
Makefile.help
README
TODO
TODO_unicode
47 lines
1.0 KiB
Bash
Executable File
47 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
usage() {
|
|
echo "Usage: ${0##*/} DIR1 DIR2"
|
|
echo
|
|
echo "Compares all object files recursivelty found in DIR1 and DIR2."
|
|
echo "Prints diff of their disassembly."
|
|
echo
|
|
exit $1
|
|
}
|
|
|
|
filter() {
|
|
# sed removes " address: " prefixes which mess up diff
|
|
sed $'s/^\\(\t*\\)[ ]*[0-9a-f][0-9a-f]*:[ \t]*/\\1/' \
|
|
| sed 's/__GI_//g'
|
|
}
|
|
|
|
test -d "$1" || usage 1
|
|
test -d "$2" || usage 1
|
|
|
|
{
|
|
(
|
|
cd "$1" || exit 1
|
|
find -name '*.o' # -o -name '*.os' # -o -name '*.so'
|
|
)
|
|
(
|
|
cd "$2" || exit 1
|
|
find -name '*.o' # -o -name '*.os' # -o -name '*.so'
|
|
)
|
|
} | sed 's:^\./::' | sort | uniq | \
|
|
(
|
|
while IFS='' read -r oname; do
|
|
if ! test -f "$1/$oname"; then
|
|
echo "Only $2/$oname"
|
|
continue
|
|
fi
|
|
if ! test -f "$2/$oname"; then
|
|
echo "Only $1/$oname"
|
|
continue
|
|
fi
|
|
diff -q -- "$1/$oname" "$2/$oname" >/dev/null && continue
|
|
(cd "$1" && { size "$oname"; objdump -dr "$oname" | filter; } >"$oname.disasm")
|
|
(cd "$2" && { size "$oname"; objdump -dr "$oname" | filter; } >"$oname.disasm")
|
|
diff -u -- "$1/$oname.disasm" "$2/$oname.disasm"
|
|
done
|
|
)
|