Base the implementation on the llvmdo script so that we only have to

maintain the logic for "what counts as a source file" in one place.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16442 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-09-20 07:22:23 +00:00
parent 8141e37109
commit b27b78f6a4
3 changed files with 11 additions and 38 deletions

View File

@ -15,22 +15,10 @@
# The script takes no arguments but does expect to be run from the top llvm # The script takes no arguments but does expect to be run from the top llvm
# source directory. # source directory.
# #
TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'` TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
if test -d "$TOPDIR" ; then if test -d "$TOPDIR" ; then
cd $TOPDIR cd $TOPDIR
find include lib tools utils examples -type f -name '*.[cdhyltp]*' \ ./utils/llvmdo -dirs "include lib tools test utils examples" wc -l | awk '\
\! -name '*~' \
\! -name '#*' \
\! -name '*.ll' \
\! -name '*.lo' \
\! -name '*.d' \
\! -name '*.dir' \
\! -name 'Sparc.burm.c' \
\! -name 'llvmAsmParser.cpp' \
\! -name 'llvmAsmParser.h' \
\! -name 'FileParser.cpp' \
\! -name 'FileParser.h' \
-exec wc -l {} \; | awk '\
BEGIN { loc=0; } \ BEGIN { loc=0; } \
{ loc += $1; } \ { loc += $1; } \
END { print loc; }' END { print loc; }'

View File

@ -1,10 +1,10 @@
#!/bin/sh #!/bin/sh
# This is useful because it prints out all of the source files. Useful for # This is useful because it prints out all of the source files. Useful for
# greps. # greps.
find docs include lib tools utils examples projects -name \*.\[cdhylt\]\* | grep -v Lexer.cpp | \ TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | \ if test -d "$TOPDIR" ; then
grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' |\ cd $TOPDIR
grep -v '\.dir$' | grep -v '\.la$' | \ ./utils/llvmdo -dirs "include lib tools utils examples projects" echo
grep -v /Burg/ | grep -v '\.lo' | grep -v '\.inc$' | grep -v '\.libs' | \ else
grep -v TableGen/FileParser.cpp | grep -v TableGen/FileParser.h echo "Can't find LLVM top directory in $TOPDIR"
fi

View File

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