Commit 5123b327c107db9e560fd62d50c27a3816e5a078
Committed by
Sam Ravnborg
1 parent
953fae66d1
Exists in
master
and in
7 other branches
kbuild: add sys_* entries for syscalls in tags
Currently, it is no longer possible to use the tags file to jump to system call function definitions with sys_foo, because the definitions are obscured by use of the SYSCALL_DEFINE* macros. This patch adds the appropriate option to ctags to make it see through the macro. Also, it adds the ENTRY() work already done for Exuberant to Emacs too. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Showing 1 changed file with 5 additions and 2 deletions Inline Diff
scripts/tags.sh
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # Generate tags or cscope files | 2 | # Generate tags or cscope files |
3 | # Usage tags.sh <mode> | 3 | # Usage tags.sh <mode> |
4 | # | 4 | # |
5 | # mode may be any of: tags, TAGS, cscope | 5 | # mode may be any of: tags, TAGS, cscope |
6 | # | 6 | # |
7 | # Uses the following environment variables: | 7 | # Uses the following environment variables: |
8 | # ARCH, SUBARCH, srctree, src, obj | 8 | # ARCH, SUBARCH, srctree, src, obj |
9 | 9 | ||
10 | if [ "$KBUILD_VERBOSE" = "1" ]; then | 10 | if [ "$KBUILD_VERBOSE" = "1" ]; then |
11 | set -x | 11 | set -x |
12 | fi | 12 | fi |
13 | 13 | ||
14 | # This is a duplicate of RCS_FIND_IGNORE without escaped '()' | 14 | # This is a duplicate of RCS_FIND_IGNORE without escaped '()' |
15 | ignore="( -name SCCS -o -name BitKeeper -o -name .svn -o \ | 15 | ignore="( -name SCCS -o -name BitKeeper -o -name .svn -o \ |
16 | -name CVS -o -name .pc -o -name .hg -o \ | 16 | -name CVS -o -name .pc -o -name .hg -o \ |
17 | -name .git ) \ | 17 | -name .git ) \ |
18 | -prune -o" | 18 | -prune -o" |
19 | 19 | ||
20 | # Do not use full path is we do not use O=.. builds | 20 | # Do not use full path is we do not use O=.. builds |
21 | if [ "${KBUILD_SRC}" = "" ]; then | 21 | if [ "${KBUILD_SRC}" = "" ]; then |
22 | tree= | 22 | tree= |
23 | else | 23 | else |
24 | tree=${srctree}/ | 24 | tree=${srctree}/ |
25 | fi | 25 | fi |
26 | 26 | ||
27 | # Detect if ALLSOURCE_ARCHS is set. If not, we assume SRCARCH | 27 | # Detect if ALLSOURCE_ARCHS is set. If not, we assume SRCARCH |
28 | if [ "${ALLSOURCE_ARCHS}" = "" ]; then | 28 | if [ "${ALLSOURCE_ARCHS}" = "" ]; then |
29 | ALLSOURCE_ARCHS=${SRCARCH} | 29 | ALLSOURCE_ARCHS=${SRCARCH} |
30 | fi | 30 | fi |
31 | 31 | ||
32 | # find sources in arch/$ARCH | 32 | # find sources in arch/$ARCH |
33 | find_arch_sources() | 33 | find_arch_sources() |
34 | { | 34 | { |
35 | find ${tree}arch/$1 $ignore -name "$2" -print; | 35 | find ${tree}arch/$1 $ignore -name "$2" -print; |
36 | } | 36 | } |
37 | 37 | ||
38 | # find sources in arch/$1/include | 38 | # find sources in arch/$1/include |
39 | find_arch_include_sources() | 39 | find_arch_include_sources() |
40 | { | 40 | { |
41 | find ${tree}arch/$1/include $ignore -name "$2" -print; | 41 | find ${tree}arch/$1/include $ignore -name "$2" -print; |
42 | } | 42 | } |
43 | 43 | ||
44 | # find sources in include/ | 44 | # find sources in include/ |
45 | find_include_sources() | 45 | find_include_sources() |
46 | { | 46 | { |
47 | find ${tree}include $ignore -name config -prune -o -name "$1" -print; | 47 | find ${tree}include $ignore -name config -prune -o -name "$1" -print; |
48 | } | 48 | } |
49 | 49 | ||
50 | # find sources in rest of tree | 50 | # find sources in rest of tree |
51 | # we could benefit from a list of dirs to search in here | 51 | # we could benefit from a list of dirs to search in here |
52 | find_other_sources() | 52 | find_other_sources() |
53 | { | 53 | { |
54 | find ${tree}* $ignore \ | 54 | find ${tree}* $ignore \ |
55 | \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \ | 55 | \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \ |
56 | -name "$1" -print; | 56 | -name "$1" -print; |
57 | } | 57 | } |
58 | 58 | ||
59 | find_sources() | 59 | find_sources() |
60 | { | 60 | { |
61 | find_arch_sources $1 "$2" | 61 | find_arch_sources $1 "$2" |
62 | } | 62 | } |
63 | 63 | ||
64 | all_sources() | 64 | all_sources() |
65 | { | 65 | { |
66 | for arch in $ALLSOURCE_ARCHS | 66 | for arch in $ALLSOURCE_ARCHS |
67 | do | 67 | do |
68 | find_sources $arch '*.[chS]' | 68 | find_sources $arch '*.[chS]' |
69 | done | 69 | done |
70 | if [ ! -z "$archinclude" ]; then | 70 | if [ ! -z "$archinclude" ]; then |
71 | find_arch_include_sources $archinclude '*.[chS]' | 71 | find_arch_include_sources $archinclude '*.[chS]' |
72 | fi | 72 | fi |
73 | find_include_sources '*.[chS]' | 73 | find_include_sources '*.[chS]' |
74 | find_other_sources '*.[chS]' | 74 | find_other_sources '*.[chS]' |
75 | } | 75 | } |
76 | 76 | ||
77 | all_kconfigs() | 77 | all_kconfigs() |
78 | { | 78 | { |
79 | for arch in $ALLSOURCE_ARCHS; do | 79 | for arch in $ALLSOURCE_ARCHS; do |
80 | find_sources $arch 'Kconfig*' | 80 | find_sources $arch 'Kconfig*' |
81 | done | 81 | done |
82 | find_other_sources 'Kconfig*' | 82 | find_other_sources 'Kconfig*' |
83 | } | 83 | } |
84 | 84 | ||
85 | all_defconfigs() | 85 | all_defconfigs() |
86 | { | 86 | { |
87 | find_sources $ALLSOURCE_ARCHS "defconfig" | 87 | find_sources $ALLSOURCE_ARCHS "defconfig" |
88 | } | 88 | } |
89 | 89 | ||
90 | docscope() | 90 | docscope() |
91 | { | 91 | { |
92 | (echo \-k; echo \-q; all_sources) > cscope.files | 92 | (echo \-k; echo \-q; all_sources) > cscope.files |
93 | cscope -b -f cscope.out | 93 | cscope -b -f cscope.out |
94 | } | 94 | } |
95 | 95 | ||
96 | exuberant() | 96 | exuberant() |
97 | { | 97 | { |
98 | all_sources | xargs $1 -a \ | 98 | all_sources | xargs $1 -a \ |
99 | -I __initdata,__exitdata,__acquires,__releases \ | 99 | -I __initdata,__exitdata,__acquires,__releases \ |
100 | -I __read_mostly,____cacheline_aligned \ | 100 | -I __read_mostly,____cacheline_aligned \ |
101 | -I ____cacheline_aligned_in_smp \ | 101 | -I ____cacheline_aligned_in_smp \ |
102 | -I ____cacheline_internodealigned_in_smp \ | 102 | -I ____cacheline_internodealigned_in_smp \ |
103 | -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ | 103 | -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ |
104 | --extra=+f --c-kinds=+px \ | 104 | --extra=+f --c-kinds=+px \ |
105 | --regex-asm='/^ENTRY\(([^)]*)\).*/\1/' | 105 | --regex-asm='/^ENTRY\(([^)]*)\).*/\1/' \ |
106 | --regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' | ||
106 | 107 | ||
107 | all_kconfigs | xargs $1 -a \ | 108 | all_kconfigs | xargs $1 -a \ |
108 | --langdef=kconfig --language-force=kconfig \ | 109 | --langdef=kconfig --language-force=kconfig \ |
109 | --regex-kconfig='/^[[:blank:]]*(menu|)config[[:blank:]]+([[:alnum:]_]+)/\2/' | 110 | --regex-kconfig='/^[[:blank:]]*(menu|)config[[:blank:]]+([[:alnum:]_]+)/\2/' |
110 | 111 | ||
111 | all_kconfigs | xargs $1 -a \ | 112 | all_kconfigs | xargs $1 -a \ |
112 | --langdef=kconfig --language-force=kconfig \ | 113 | --langdef=kconfig --language-force=kconfig \ |
113 | --regex-kconfig='/^[[:blank:]]*(menu|)config[[:blank:]]+([[:alnum:]_]+)/CONFIG_\2/' | 114 | --regex-kconfig='/^[[:blank:]]*(menu|)config[[:blank:]]+([[:alnum:]_]+)/CONFIG_\2/' |
114 | 115 | ||
115 | all_defconfigs | xargs -r $1 -a \ | 116 | all_defconfigs | xargs -r $1 -a \ |
116 | --langdef=dotconfig --language-force=dotconfig \ | 117 | --langdef=dotconfig --language-force=dotconfig \ |
117 | --regex-dotconfig='/^#?[[:blank:]]*(CONFIG_[[:alnum:]_]+)/\1/' | 118 | --regex-dotconfig='/^#?[[:blank:]]*(CONFIG_[[:alnum:]_]+)/\1/' |
118 | 119 | ||
119 | } | 120 | } |
120 | 121 | ||
121 | emacs() | 122 | emacs() |
122 | { | 123 | { |
123 | all_sources | xargs $1 -a | 124 | all_sources | xargs $1 -a \ |
125 | --regex='/^ENTRY(\([^)]*\)).*/\1/' \ | ||
126 | --regex='/^SYSCALL_DEFINE[0-9]?(\([^,)]*\).*/sys_\1/' | ||
124 | 127 | ||
125 | all_kconfigs | xargs $1 -a \ | 128 | all_kconfigs | xargs $1 -a \ |
126 | --regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/\3/' | 129 | --regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/\3/' |
127 | 130 | ||
128 | all_kconfigs | xargs $1 -a \ | 131 | all_kconfigs | xargs $1 -a \ |
129 | --regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/CONFIG_\3/' | 132 | --regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/CONFIG_\3/' |
130 | 133 | ||
131 | all_defconfigs | xargs -r $1 -a \ | 134 | all_defconfigs | xargs -r $1 -a \ |
132 | --regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/' | 135 | --regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/' |
133 | } | 136 | } |
134 | 137 | ||
135 | xtags() | 138 | xtags() |
136 | { | 139 | { |
137 | if $1 --version 2>&1 | grep -iq exuberant; then | 140 | if $1 --version 2>&1 | grep -iq exuberant; then |
138 | exuberant $1 | 141 | exuberant $1 |
139 | elif $1 --version 2>&1 | grep -iq emacs; then | 142 | elif $1 --version 2>&1 | grep -iq emacs; then |
140 | emacs $1 | 143 | emacs $1 |
141 | else | 144 | else |
142 | all_sources | xargs $1 -a | 145 | all_sources | xargs $1 -a |
143 | fi | 146 | fi |
144 | } | 147 | } |
145 | 148 | ||
146 | 149 | ||
147 | # Support um (which uses SUBARCH) | 150 | # Support um (which uses SUBARCH) |
148 | if [ "${ARCH}" = "um" ]; then | 151 | if [ "${ARCH}" = "um" ]; then |
149 | if [ "$SUBARCH" = "i386" ]; then | 152 | if [ "$SUBARCH" = "i386" ]; then |
150 | archinclude=x86 | 153 | archinclude=x86 |
151 | elif [ "$SUBARCH" = "x86_64" ]; then | 154 | elif [ "$SUBARCH" = "x86_64" ]; then |
152 | archinclude=x86 | 155 | archinclude=x86 |
153 | else | 156 | else |
154 | archinclude=${SUBARCH} | 157 | archinclude=${SUBARCH} |
155 | fi | 158 | fi |
156 | fi | 159 | fi |
157 | 160 | ||
158 | case "$1" in | 161 | case "$1" in |
159 | "cscope") | 162 | "cscope") |
160 | docscope | 163 | docscope |
161 | ;; | 164 | ;; |
162 | 165 | ||
163 | "tags") | 166 | "tags") |
164 | xtags ctags | 167 | xtags ctags |
165 | ;; | 168 | ;; |
166 | 169 | ||
167 | "TAGS") | 170 | "TAGS") |
168 | xtags etags | 171 | xtags etags |
169 | ;; | 172 | ;; |
170 | esac | 173 | esac |
171 | 174 |