summaryrefslogtreecommitdiff
path: root/utils/llvmgrep
blob: 73cfd41b1ef24e4ef2fbc52f45cd184d8012b86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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#'`
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 '*.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
  echo "Can't find LLVM top directory in $TOPDIR"
fi