From: Andrew Cagney Date: Fri, 9 Nov 2001 04:00:00 +0000 (+0000) Subject: A simple script to indent GDB source code. X-Git-Tag: cygnus_cvs_20020108_pre~757 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6a9480ec1bae59eeacb9c52f5fcf11032ff3594;p=platform%2Fupstream%2Fbinutils.git A simple script to indent GDB source code. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7a54716..b714e78 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-11-08 Andrew Cagney + + * gdb_indent.sh: New file. + 2001-11-08 Jim Blandy * s390-tdep.c (s390_get_frame_info): Initialize got_load_addr and diff --git a/gdb/gdb_indent.sh b/gdb/gdb_indent.sh new file mode 100755 index 0000000..e54e08e --- /dev/null +++ b/gdb/gdb_indent.sh @@ -0,0 +1,62 @@ +#!/bin/sh + +# Try to find a GNU indent. There could be a BSD indent in front of a +# GNU gindent so when indent is found, keep looking. + +gindent= +indent= +paths=`echo $PATH | sed \ + -e 's/::/:.:/g' \ + -e 's/^:/.:/' \ + -e 's/:$/:./' \ + -e 's/:/ /g'` +for path in $paths +do + if test ! -n "${gindent}" -a -x ${path}/gindent + then + gindent=${path}/gindent + break + elif test ! -n "${indent}" -a -x ${path}/indent + then + indent=${path}/indent + fi +done + +if test -n "${gindent}" +then + indent=${gindent} +elif test -n "${indent}" +then + : +else + echo "Indent not found" 1>&2 +fi + + +# Check that the indent found is both GNU and a reasonable version. +# Different indent versions give different indentation. + +case `${indent} --version 2>/dev/null < /dev/null` in + GNU*2.2.6 ) ;; + *GNU* ) echo "Incorrect version of GNU indent" 1>&2 ;; + * ) echo "Indent is not GNU" 1>&2 ;; +esac + + +# Check that we're in the GDB source directory + +case `pwd` in + */gdb ) ;; + * ) echo "Not in GDB directory" 1>&2 ; exit 1 ;; +esac + + +# Run indent per GDB specs + +types="-T FILE `cat *.h | sed -n \ + -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_ftype\).*$/-T \1/p' \ + -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_func\).*$/-T \1/p' \ + -e 's/^typedef.*[^a-zA-Z0-9_]\([a-zA-Z0-9_]*[a-zA-Z0-9_]\);$/-T \1/p' \ + | sort -u`" + +${indent} ${types} "$@"