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