teach ds-aa about mod/ref for external function calls.
[oota-llvm.git] / utils / getsrcs.sh
index 2b9de8271a1c8ed28f3e0514ebcbb2505e70aefc..c757b2c40249db507f2f6ffbe79208aa22bd0117 100755 (executable)
@@ -1,10 +1,24 @@
 #!/bin/sh
-# This is useful because it prints out all of the source files.  Useful for
-# greps.
-find docs include lib tools utils projects -name \*.\[cdhyl\]\* | 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 www/docs/doxygen | grep -v include/boost | \
-       grep -v /Burg/ | grep -v /Spiff/ | grep -v '\.lo' | grep -v '\.inc$' | grep -v '\.libs' | \
-       grep -v TableGen/FileParser.cpp | grep -v TableGen/FileParser.h
+##===- utils/getsrcs.sh - Counts Lines Of Code ---------------*- Script -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by Chris Lattner and Reid Spencer and is distributed 
+# under the # University of Illinois Open Source License. See LICENSE.TXT for 
+# details.
+# 
+##===----------------------------------------------------------------------===##
+#
+# This script just prints out the path names for all the source files in LLVM.
+#
+# Note that the implementation is based on llvmdo. See that script for more
+# details.
+##===----------------------------------------------------------------------===##
 
+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