[asperl] fixups to make it build and pass tests under both compilers
[p5sagit/p5-mst-13.2.git] / emacs / ptags
CommitLineData
3ee700d1 1# Make a TAGS file for emacs ``M-x find-tag'' from all <c,h,y,xs> source files.
2# (``make realclean'' first to avoid generated files, or ``make'' first
3# to get tags from all files.)
4#
5# (IZ: to be a happier jumper: install 'imenu-go.el' from
6# ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs.)
7#
8# (Some tags should probably live in their own subdirs, like those in x2p/,
9# but I have never been interested in x2p anyway.)
10#
11# Hallvard B Furuseth <h.b.furuseth@usit.uio.no>, Aug -96.
12#
13# Ilya Zakharevich, Oct 97: minor comments, add CPerl scan;
14# Use Hallvard's scan for XS files - since he processes the "C" part too -
15# but with a lot of improvements: now it is no worse than CPerl's one.
16
17# Avoid builitin on OS/2:
18if test ! -z "$OS2_SHELL"; then alias find=gnufind; fi
19
20# Insure proper order (.h after .c, .xs before .c in subdirs):
21topfiles="`echo ' ' *.y *.c *.h ' ' | sed 's/ embed.h / /'`"
22subdirfiles="`( find ./*/* -name '*.[cy]' -print | sort ; find ./*/* -name '*.[hH]' -print | sort )`"
23xsfiles="`find . -name '*.xs' -print | sort`"
24
25# What is `etags -d'?
26
27# These are example lines for global variables and PP-code:
28## IEXT SV * Iparsehook;
29## IEXT char * Isplitstr IINIT(" ");
30## dEXTCONST char rcsid[] = "perl.c\nPatch level: ###\n";
31## PP(pp_const)
6ee623d5 32## PERLVARI(Grsfp, PerlIO *, Nullfp)
33## PERLVAR(cvcache, HV *)
3ee700d1 34
35set x -d -l c \
36 -r '/[dI]?EXT\(CONST\)?[ \t*]+\([a-zA-Z_0-9]+[ \t*]+\)*\([a-zA-Z_0-9]+\)[ \t]*\($\|;\|\[\|[ \t]I+NIT[ \t]*(\|\/\*\)/\3/' \
37 -r '/IEXT[ \t][^\/]*[ \t*]I\([a-zA-Z_][a-zA-Z_0-9]*\)[\[; \t]/\1/' \
6ee623d5 38 -r '/PERLVAR[a-zA-Z_0-9]*[ \t]*([ \t]*[GIT]?\([a-zA-Z_][a-zA-Z_0-9]*\)[ \t]*,/\1/' \
3ee700d1 39 -r '/PP[ \t]*([ \t]*\([^ \t()]*\)[ \t]*)/\1/'
40
41shift
42
43rm -f TAGS.tmp TAGS.tm2
44
45# Process lines like this: #define MEM_ALIGNBYTES $alignbytes /**/
46etags -o TAGS.tmp \
47 -l none -r '/#\(\$[a-zA-Z_0-9]+\|define\)[ \t]+\([a-zA-Z_0-9]+\)/\2/' \
48 config_h.SH
49etags -o TAGS.tmp -a "$@" $topfiles
50etags -o TAGS.tmp -a -D -l none -r '/#define.*\t\(Perl_.*\)/\1/' embed.h
51
52# Add MODULE lines to TAG files (to be postprocessed later),
53# and BOOT: lines (in DynaLoader processed twice?)
54
55# This skips too many XSUBs:
56
57# etags -o TAGS.tmp -a -d -l c \
58# -r '/MODULE[ \t=]+\(.*PACKAGE[ \t]*=[ \t]*\)?\([^ \t]+\)\([ \t]*PREFIX[ \t]*=[ \t]*\([^ \t]+\)\)?/\2/' \
59# -r '/[ \t]*BOOT:/' \
60# $xsfiles
61
62etags -o TAGS.tmp -a -d -l c \
63 -r '/MODULE[ \t=]+\(.*PACKAGE[ \t]*=[ \t]*\)?\([^ \t]+\)\([ \t]*PREFIX[ \t]*=[ \t]*\([^ \t]+\)\)?/\2/' \
64 -r '/[ \t]*BOOT:/' \
65 -r '/\([_a-zA-Z][a-zA-Z0-9_:]*\)(/' \
66 $xsfiles
67
68# -r '/MODULE[ \t=]+\(.*PACKAGE[ \t]*=[ \t]*\)?\([^ \t]+\)/\2/' \
69# -r '/MODULE.*PREFIX[ \t]*=[ \t]*\([^ \t]+\)/\1/' \
70# $xsfiles
71
72etags -o TAGS.tmp -a "$@" $subdirfiles
73
74if ! test -f emacs/cperl-mode.elc ; then
75 ( cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el )
76fi
77
78# This should work with newer Emaxen
79
80cp TAGS.tmp TAGS
81if emacs -batch -q -no-site-file -l emacs/cperl-mode.elc -f cperl-add-tags-recurse-noxs ; then
82 mv TAGS TAGS.tmp
83fi
84
85perl -w014pe '
86 $update = s/^PP\(\177\d+,\d+\n//gm;
87 $update += s/^(I?EXT.*[ \t])IINIT[ \t]*\((\177)/$1$2/gm;
88 if (/^\n*[^\s,]+\.xs,/s) {
89 $mod = $cmod = $bmod = $pref = "";
90 s/^(.*\n)\1+/$1/mg; # Remove duplicate lines
91 $_ = join("", map {
92 if (/^MODULE[ \t]*=[ \t]*(\S+)(?:[ \t]+PACKAGE[ \t]*=[ \t]*(\S+))?[ \t\177]/m) {
93 $mod = $+;
94 ($bmod = $mod) =~ tr/:/_/;
95 $cmod = "XS_${bmod}_";
96 $pref = "";
97 if (s/[ \t]+PREFIX[ \t]*=[ \t]*([^\s\177]+)(\177)/$+/) {
98 $pref = $1;
99 $pref =~ s/([^\w\s])/\\$1/g;
100 $pref = "(?:$pref)?";
101 }
102 } elsif ($mod ne "") {
103 # Ref points for Module::subr, XS_Module_subr, subr
104 s/^($pref(\w+)[ \t()]*\177)(\d+,\d+)$/$1${mod}::${2}\01$3\n$1$2\01$3\n$1$cmod$2\01$3/gm;
105 # Ref for Module::bootstrap bootstrap boot_Module
106 s/^([ \t]*BOOT:\177)(\d+,\d+)$/$1${mod}::bootstrap\01$2\n${1}bootstrap\01$2\n${1}boot_$bmod\01$2/gm;
107 }
108 $_;
109 } split(/(\nMODULE[ \t]*=[^\n\177]+\177)/));
110
111 $update = 1;
112 }
113 if ($update) {
114 $chars = chomp;
115 s/^((\n.+,)\d+)/ $2 . (length($_) - length($1) - 1) /e;
116 $_ .= ("\f" x $chars);
117 }' TAGS.tmp > TAGS.tm2
118
119rm -f TAGS
120mv TAGS.tm2 TAGS
121rm -f TAGS.tmp
122
123
124