[llvm-commits] CVS: llvm/utils/countloc.sh llvmgrep getsrcs.sh

Reid Spencer reid at x10sys.com
Mon Sep 20 00:22:34 PDT 2004



Changes in directory llvm/utils:

countloc.sh updated: 1.2 -> 1.3
llvmgrep updated: 1.5 -> 1.6
getsrcs.sh updated: 1.19 -> 1.20
---
Log message:

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.


---
Diffs of the changes:  (+11 -38)

Index: llvm/utils/countloc.sh
diff -u llvm/utils/countloc.sh:1.2 llvm/utils/countloc.sh:1.3
--- llvm/utils/countloc.sh:1.2	Mon Sep 20 00:01:04 2004
+++ llvm/utils/countloc.sh	Mon Sep 20 02:22:23 2004
@@ -15,22 +15,10 @@
 # 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: llvm/utils/llvmgrep
diff -u llvm/utils/llvmgrep:1.5 llvm/utils/llvmgrep:1.6
--- llvm/utils/llvmgrep:1.5	Fri Sep 17 23:40:46 2004
+++ llvm/utils/llvmgrep	Mon Sep 20 02:22:23 2004
@@ -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


Index: llvm/utils/getsrcs.sh
diff -u llvm/utils/getsrcs.sh:1.19 llvm/utils/getsrcs.sh:1.20
--- llvm/utils/getsrcs.sh:1.19	Tue Aug 24 12:42:33 2004
+++ llvm/utils/getsrcs.sh	Mon Sep 20 02:22:23 2004
@@ -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






More information about the llvm-commits mailing list