Base the implementation on the llvmdo script so that we only have to
authorReid Spencer <rspencer@reidspencer.com>
Mon, 20 Sep 2004 07:22:23 +0000 (07:22 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 20 Sep 2004 07:22:23 +0000 (07:22 +0000)
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

utils/countloc.sh
utils/getsrcs.sh
utils/llvmgrep

index 75a61549716b26a74b0f15a247f5670f208c4088..cc67afe0336c685301030d1b82ecf4989b0855e6 100755 (executable)
 # The script takes no arguments but does expect to be run from the top llvm
 # source directory.
 #
-TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'`
+TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
 if test -d "$TOPDIR" ; then
   cd $TOPDIR
-  find include lib tools utils examples -type f -name '*.[cdhyltp]*' \
-      \! -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 '\
+  ./utils/llvmdo -dirs "include lib tools test utils examples" wc -l | awk '\
       BEGIN { loc=0; } \
       { loc += $1; } \
       END { print loc; }'
index 210c6980ded08042e64d66299b6958beceabd83e..2b2f7089e580a3a30a3202ca581fa4aebea5b72a 100755 (executable)
@@ -1,10 +1,10 @@
 #!/bin/sh
 # This is useful because it prints out all of the source files.  Useful for
 # greps.
-find docs include lib tools utils examples projects -name \*.\[cdhylt\]\* | grep -v Lexer.cpp | \
-       grep -v llvmAsmParser.cpp | grep -v llvmAsmParser.h | grep -v '~$' | \
-       grep -v '\.ll$' | grep -v .flc | grep -v Sparc.burm.c | grep -v '\.d$' |\
-       grep -v '\.dir$' | grep -v '\.la$' | \
-       grep -v /Burg/ | grep -v '\.lo' | grep -v '\.inc$' | grep -v '\.libs' | \
-       grep -v TableGen/FileParser.cpp | grep -v TableGen/FileParser.h
-
+TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
+if test -d "$TOPDIR" ; then
+  cd $TOPDIR
+  ./utils/llvmdo -dirs "include lib tools utils examples projects" echo
+else
+  echo "Can't find LLVM top directory in $TOPDIR"
+fi
index 8a260443725124fd88a6536efa4cbe94fbefca3e..18af4346e75e908e2f12a4483198bec88a437652 100755 (executable)
@@ -1,25 +1,10 @@
 #!/bin/sh
 # This is useful because it prints out all of the source files.  Useful for
 # greps.
-PATTERN="$*"
-TOPDIR=`pwd | sed -e 's#(.*/llvm).*#$1#'`
+TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
 if test -d "$TOPDIR" ; then
   cd $TOPDIR
-  find docs include lib tools utils examples projects -type f \
-      \( -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" {} \;
+  ./utils/llvmdo -dirs "include lib tools utils docs examples test projects" egrep -H -n "$*"
 else
   echo "Can't find LLVM top directory in $TOPDIR"
 fi