makelintstub revision 1.8 1 1.1 cgd #!/bin/sh -
2 1.8 tv # $NetBSD: makelintstub,v 1.8 2001/11/13 18:39:10 tv Exp $
3 1.1 cgd #
4 1.7 cgd # Copyright (c) 1996, 1997 Christopher G. Demetriou
5 1.7 cgd # All rights reserved.
6 1.7 cgd #
7 1.1 cgd # Redistribution and use in source and binary forms, with or without
8 1.1 cgd # modification, are permitted provided that the following conditions
9 1.1 cgd # are met:
10 1.1 cgd # 1. Redistributions of source code must retain the above copyright
11 1.1 cgd # notice, this list of conditions and the following disclaimer.
12 1.1 cgd # 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd # notice, this list of conditions and the following disclaimer in the
14 1.1 cgd # documentation and/or other materials provided with the distribution.
15 1.1 cgd # 3. All advertising materials mentioning features or use of this software
16 1.1 cgd # must display the following acknowledgement:
17 1.7 cgd # This product includes software developed for the
18 1.7 cgd # NetBSD Project. See http://www.netbsd.org/ for
19 1.7 cgd # information about NetBSD.
20 1.1 cgd # 4. The name of the author may not be used to endorse or promote products
21 1.7 cgd # derived from this software without specific prior written permission.
22 1.7 cgd #
23 1.1 cgd # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 cgd # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 cgd # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 cgd # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 cgd # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 cgd # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 cgd # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 cgd # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 cgd # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 cgd # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.7 cgd #
34 1.7 cgd # <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
35 1.1 cgd
36 1.2 thorpej usage()
37 1.2 thorpej {
38 1.2 thorpej
39 1.2 thorpej echo "usage: $0 [-n|-p] [-o filename] object ..."
40 1.1 cgd exit 1
41 1.2 thorpej }
42 1.1 cgd
43 1.2 thorpej header()
44 1.2 thorpej {
45 1.1 cgd
46 1.2 thorpej cat <<- __EOF__
47 1.2 thorpej /*
48 1.2 thorpej * THIS IS AN AUTOMATICALLY GENERATED FILE. DO NOT EDIT.
49 1.2 thorpej */
50 1.2 thorpej
51 1.2 thorpej #include <sys/param.h>
52 1.2 thorpej #include <sys/time.h>
53 1.2 thorpej #include <sys/mount.h>
54 1.2 thorpej #include <sys/stat.h>
55 1.3 fvdl #include <ufs/ufs/dinode.h>
56 1.2 thorpej #include <ufs/lfs/lfs.h>
57 1.2 thorpej #include <sys/resource.h>
58 1.2 thorpej #include <sys/poll.h>
59 1.2 thorpej #include <sys/uio.h>
60 1.2 thorpej #include <sys/ipc.h>
61 1.2 thorpej #include <sys/msg.h>
62 1.2 thorpej #include <sys/sem.h>
63 1.2 thorpej #include <sys/shm.h>
64 1.2 thorpej #include <sys/timex.h>
65 1.2 thorpej #include <sys/socket.h>
66 1.2 thorpej #ifdef __STDC__
67 1.2 thorpej #include <stdarg.h>
68 1.2 thorpej #else
69 1.2 thorpej #include <varargs.h>
70 1.2 thorpej #endif
71 1.2 thorpej
72 1.2 thorpej __EOF__
73 1.2 thorpej }
74 1.2 thorpej
75 1.2 thorpej syscall_stub()
76 1.2 thorpej {
77 1.2 thorpej
78 1.4 mycroft syscalldump="$1"
79 1.2 thorpej syscallname="$2"
80 1.2 thorpej funcname="$3"
81 1.2 thorpej
82 1.4 mycroft arglist="`
83 1.4 mycroft sed -e 'ta
84 1.4 mycroft :a
85 1.4 mycroft s,^/\* syscall: "'"$syscallname"'" ,,
86 1.4 mycroft tb
87 1.4 mycroft d
88 1.4 mycroft :b
89 1.4 mycroft s, \*/$,,' $syscalldump
90 1.4 mycroft `"
91 1.2 thorpej
92 1.2 thorpej eval set -f -- "$arglist"
93 1.2 thorpej
94 1.4 mycroft if [ $# -lt 3 ]; then
95 1.2 thorpej echo syscall $syscallname not found! 1>&2
96 1.2 thorpej exit 1
97 1.2 thorpej fi
98 1.1 cgd
99 1.4 mycroft shift # kill "ret:"
100 1.4 mycroft returntype=$1; shift
101 1.4 mycroft shift # kill "args:"
102 1.2 thorpej
103 1.2 thorpej cat <<- __EOF__
104 1.2 thorpej /*ARGSUSED*/
105 1.2 thorpej $returntype
106 1.2 thorpej __EOF__
107 1.2 thorpej
108 1.2 thorpej # do ANSI C function header
109 1.5 mycroft echo "#ifdef __STDC__"
110 1.2 thorpej
111 1.5 mycroft echo -n "$funcname("
112 1.5 mycroft first=yes; i=1
113 1.5 mycroft for arg; do
114 1.5 mycroft if [ $first = yes ]; then
115 1.5 mycroft first=no
116 1.5 mycroft else
117 1.5 mycroft echo -n ", "
118 1.2 thorpej fi
119 1.5 mycroft case "$arg" in
120 1.5 mycroft "...") echo -n "...";;
121 1.5 mycroft *) echo -n "$arg arg$i"; i=$(($i + 1));;
122 1.5 mycroft esac
123 1.5 mycroft done
124 1.5 mycroft echo ")"
125 1.1 cgd
126 1.5 mycroft # do K&R C function header
127 1.5 mycroft echo "#else"
128 1.1 cgd
129 1.2 thorpej echo -n "$funcname("
130 1.5 mycroft first=yes; i=1
131 1.5 mycroft for arg; do
132 1.5 mycroft if [ $first = yes ]; then
133 1.5 mycroft first=no
134 1.5 mycroft else
135 1.2 thorpej echo -n ", "
136 1.2 thorpej fi
137 1.5 mycroft case "$arg" in
138 1.5 mycroft "...") echo -n "va_alist";;
139 1.5 mycroft *) echo -n "arg$i"; i=$(($i + 1));;
140 1.5 mycroft esac
141 1.2 thorpej done
142 1.2 thorpej echo ")"
143 1.2 thorpej i=1
144 1.5 mycroft for arg; do
145 1.5 mycroft case "$arg" in
146 1.5 mycroft "...") echo " va_dcl";;
147 1.5 mycroft *) echo " $arg arg$i;"; i=$(($i + 1));;
148 1.5 mycroft esac
149 1.2 thorpej done
150 1.1 cgd
151 1.2 thorpej # do function body
152 1.5 mycroft echo "#endif"
153 1.5 mycroft
154 1.2 thorpej echo "{"
155 1.2 thorpej if [ "$returntype" != "void" ]; then
156 1.2 thorpej echo " return (($returntype)0);"
157 1.2 thorpej fi
158 1.2 thorpej echo "}"
159 1.2 thorpej }
160 1.2 thorpej
161 1.2 thorpej trailer()
162 1.2 thorpej {
163 1.2 thorpej
164 1.2 thorpej cat <<- __EOF__
165 1.2 thorpej /* END */
166 1.2 thorpej __EOF__
167 1.2 thorpej }
168 1.2 thorpej
169 1.2 thorpej set -- `getopt no:ps: $*`
170 1.2 thorpej
171 1.2 thorpej pflag=NO
172 1.2 thorpej nflag=NO
173 1.2 thorpej oarg=""
174 1.2 thorpej syscallhdr=/usr/include/sys/syscall.h
175 1.4 mycroft syscalldump=/tmp/makelintstub.$$
176 1.2 thorpej
177 1.2 thorpej if test $? -ne 0; then
178 1.2 thorpej usage
179 1.2 thorpej fi
180 1.2 thorpej for i; do
181 1.2 thorpej case "$i" in
182 1.2 thorpej -n) nflag=YES; shift;;
183 1.2 thorpej -o) oarg=$2; shift; shift;;
184 1.2 thorpej -p) pflag=YES; shift;;
185 1.2 thorpej -s) syscallhdr=$2; shift; shift;;
186 1.2 thorpej --) shift; break;;
187 1.2 thorpej esac
188 1.1 cgd done
189 1.1 cgd
190 1.2 thorpej if [ $pflag = YES ] && [ $nflag = YES ]; then
191 1.2 thorpej echo "$0: -n flag and -p flag may not be used together"
192 1.2 thorpej echo ""
193 1.2 thorpej usage
194 1.2 thorpej fi
195 1.2 thorpej
196 1.2 thorpej if [ "X$oarg" != "X" ]; then
197 1.2 thorpej exec > $oarg
198 1.2 thorpej fi
199 1.2 thorpej
200 1.4 mycroft trap "rm -f $syscalldump" 0 1 2 15
201 1.4 mycroft
202 1.2 thorpej header
203 1.4 mycroft printf '#include "'"$syscallhdr"'"' | cpp -C >$syscalldump
204 1.2 thorpej for syscall; do
205 1.8 tv fnname=${syscall%.S}
206 1.2 thorpej if [ $pflag = YES ]; then
207 1.4 mycroft scname=${fnname#_}
208 1.2 thorpej else
209 1.2 thorpej scname=$fnname
210 1.1 cgd fi
211 1.4 mycroft syscall_stub $syscalldump $scname $fnname
212 1.2 thorpej echo ""
213 1.1 cgd done
214 1.2 thorpej trailer
215 1.1 cgd
216 1.1 cgd exit 0
217