2004-06-19 20:32:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# This is useful because it prints out all of the source files. Useful for
|
|
|
|
# greps.
|
2004-07-07 21:19:01 +00:00
|
|
|
PATTERN="$*"
|
2004-06-19 20:32:55 +00:00
|
|
|
TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'`
|
|
|
|
if test -d "$TOPDIR" ; then
|
|
|
|
cd $TOPDIR
|
|
|
|
find docs include lib tools utils projects -type f \
|
|
|
|
\( -path '*/doxygen/*' -o -path '*/Burg/*' \) -prune -o \
|
|
|
|
-name '*.[cdhyl]*' \
|
|
|
|
\! -name '*~' \
|
|
|
|
\! -name '#*' \
|
|
|
|
\! -name '*.ll' \
|
|
|
|
\! -name '*.d' \
|
|
|
|
\! -name '*.dir' \
|
|
|
|
\! -name 'Sparc.burm.c' \
|
|
|
|
\! -name 'llvmAsmParser.cpp' \
|
|
|
|
\! -name 'llvmAsmParser.h' \
|
|
|
|
\! -name 'FileParser.cpp' \
|
|
|
|
\! -name 'FileParser.h' \
|
2004-07-07 21:19:01 +00:00
|
|
|
-exec egrep -H -n "$PATTERN" {} \;
|
|
|
|
else
|
|
|
|
echo "Can't find LLVM top directory in $TOPDIR"
|
2004-06-19 20:32:55 +00:00
|
|
|
fi
|