Created
December 4, 2024 01:38
-
-
Save chadbrewbaker/fbb7484002f4df5b32c156e4b8019690 to your computer and use it in GitHub Desktop.
Get type signatures for all functions in BC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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