Skip to content

Instantly share code, notes, and snippets.

@chadbrewbaker
Created December 4, 2024 01:38
Show Gist options
  • Save chadbrewbaker/fbb7484002f4df5b32c156e4b8019690 to your computer and use it in GitHub Desktop.
Save chadbrewbaker/fbb7484002f4df5b32c156e4b8019690 to your computer and use it in GitHub Desktop.
Get type signatures for all functions in BC
#!/bin/zsh
# Process bc package
tempdir=$(mktemp -d)
# Get bc source
cd $tempdir
brew fetch bc
brew unpack bc
# Go into bc directory and run full build
cd bc-*/
./configure
make
# Compile to LLVM IR
find . -name "*.c" | while read file; do
outfile=${file:r}.ll
/opt/homebrew/opt/llvm/bin/clang -S -emit-llvm -o $outfile $file -I. -I./bc -I./h 2>/dev/null
done
# Extract function signatures
echo "Function signatures found:"
find . -name "*.ll" | while read file; do
grep "^define" $file | sed 's/define //; s/@[^ ]*//; s/%[^ ,]*//g; s/ */ /g'
done | sort | uniq -c
# Cleanup
cd ../..
rm -rf $tempdir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment