annotate libgo/mkrsysinfo.sh @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 84e7813d76e9
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 #!/bin/sh
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 # Copyright 2016 The Go Authors. All rights reserved.
kono
parents:
diff changeset
4 # Use of this source code is governed by a BSD-style
kono
parents:
diff changeset
5 # license that can be found in the LICENSE file.
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 # Create runtime_sysinfo.go from gen-sysinfo.go and errno.i.
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 OUT=tmp-runtime_sysinfo.go
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 set -e
kono
parents:
diff changeset
12
kono
parents:
diff changeset
13 echo 'package runtime' > ${OUT}
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 # Get all the consts and types, skipping ones which could not be
kono
parents:
diff changeset
16 # represented in Go and ones which we need to rewrite. We also skip
kono
parents:
diff changeset
17 # function declarations, as we don't need them here. All the symbols
kono
parents:
diff changeset
18 # will all have a leading underscore.
kono
parents:
diff changeset
19 grep -v '^// ' gen-sysinfo.go | \
kono
parents:
diff changeset
20 grep -v '^func' | \
kono
parents:
diff changeset
21 grep -v '^var ' | \
kono
parents:
diff changeset
22 grep -v '^type _timeval ' | \
kono
parents:
diff changeset
23 grep -v '^type _timespec_t ' | \
kono
parents:
diff changeset
24 grep -v '^type _timespec ' | \
kono
parents:
diff changeset
25 grep -v '^type _epoll_' | \
kono
parents:
diff changeset
26 grep -v '^type _*locale[_ ]' | \
kono
parents:
diff changeset
27 grep -v 'in6_addr' | \
kono
parents:
diff changeset
28 grep -v 'sockaddr_in6' | \
kono
parents:
diff changeset
29 sed -e 's/\([^a-zA-Z0-9_]\)_timeval\([^a-zA-Z0-9_]\)/\1timeval\2/g' \
kono
parents:
diff changeset
30 -e 's/\([^a-zA-Z0-9_]\)_timespec_t\([^a-zA-Z0-9_]\)/\1timespec\2/g' \
kono
parents:
diff changeset
31 -e 's/\([^a-zA-Z0-9_]\)_timespec\([^a-zA-Z0-9_]\)/\1timespec\2/g' \
kono
parents:
diff changeset
32 >> ${OUT}
kono
parents:
diff changeset
33
kono
parents:
diff changeset
34 # On AIX, the _arpcom struct, is filtered by the above grep sequence, as it as
kono
parents:
diff changeset
35 # a field of type _in6_addr, but other types depend on _arpcom, so we need to
kono
parents:
diff changeset
36 # put it back.
kono
parents:
diff changeset
37 grep '^type _arpcom ' gen-sysinfo.go | \
kono
parents:
diff changeset
38 sed -e 's/_in6_addr/[16]byte/' >> ${OUT}
kono
parents:
diff changeset
39
kono
parents:
diff changeset
40 # Same on Solaris for _mld_hdr_t.
kono
parents:
diff changeset
41 grep '^type _mld_hdr_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
42 sed -e 's/_in6_addr/[16]byte/' >> ${OUT}
kono
parents:
diff changeset
43
kono
parents:
diff changeset
44 # The time structures need special handling: we need to name the
kono
parents:
diff changeset
45 # types, so that we can cast integers to the right types when
kono
parents:
diff changeset
46 # assigning to the structures.
kono
parents:
diff changeset
47 timeval=`grep '^type _timeval ' gen-sysinfo.go`
kono
parents:
diff changeset
48 timeval_sec=`echo $timeval | sed -n -e 's/^.*tv_sec \([^ ]*\);.*$/\1/p'`
kono
parents:
diff changeset
49 timeval_usec=`echo $timeval | sed -n -e 's/^.*tv_usec \([^ ]*\);.*$/\1/p'`
kono
parents:
diff changeset
50 echo "type timeval_sec_t $timeval_sec" >> ${OUT}
kono
parents:
diff changeset
51 echo "type timeval_usec_t $timeval_usec" >> ${OUT}
kono
parents:
diff changeset
52 echo $timeval | \
kono
parents:
diff changeset
53 sed -e 's/type _timeval /type timeval /' \
kono
parents:
diff changeset
54 -e 's/tv_sec *[a-zA-Z0-9_]*/tv_sec timeval_sec_t/' \
kono
parents:
diff changeset
55 -e 's/tv_usec *[a-zA-Z0-9_]*/tv_usec timeval_usec_t/' >> ${OUT}
kono
parents:
diff changeset
56 echo >> ${OUT}
kono
parents:
diff changeset
57 echo "func (tv *timeval) set_usec(x int32) {" >> ${OUT}
kono
parents:
diff changeset
58 echo " tv.tv_usec = timeval_usec_t(x)" >> ${OUT}
kono
parents:
diff changeset
59 echo "}" >> ${OUT}
kono
parents:
diff changeset
60
kono
parents:
diff changeset
61 timespec=`grep '^type _timespec ' gen-sysinfo.go || true`
kono
parents:
diff changeset
62 if test "$timespec" = ""; then
kono
parents:
diff changeset
63 # IRIX 6.5 has __timespec instead.
kono
parents:
diff changeset
64 timespec=`grep '^type ___timespec ' gen-sysinfo.go || true`
kono
parents:
diff changeset
65 fi
kono
parents:
diff changeset
66 timespec_sec=`echo $timespec | sed -n -e 's/^.*tv_sec \([^ ]*\);.*$/\1/p'`
kono
parents:
diff changeset
67 timespec_nsec=`echo $timespec | sed -n -e 's/^.*tv_nsec \([^ ]*\);.*$/\1/p'`
kono
parents:
diff changeset
68 echo "type timespec_sec_t $timespec_sec" >> ${OUT}
kono
parents:
diff changeset
69 echo "type timespec_nsec_t $timespec_nsec" >> ${OUT}
kono
parents:
diff changeset
70 echo $timespec | \
kono
parents:
diff changeset
71 sed -e 's/^type ___timespec /type timespec /' \
kono
parents:
diff changeset
72 -e 's/^type _timespec /type timespec /' \
kono
parents:
diff changeset
73 -e 's/tv_sec *[a-zA-Z0-9_]*/tv_sec timespec_sec_t/' \
kono
parents:
diff changeset
74 -e 's/tv_nsec *[a-zA-Z0-9_]*/tv_nsec timespec_nsec_t/' >> ${OUT}
kono
parents:
diff changeset
75 echo >> ${OUT}
kono
parents:
diff changeset
76 echo "func (ts *timespec) set_sec(x int64) {" >> ${OUT}
kono
parents:
diff changeset
77 echo " ts.tv_sec = timespec_sec_t(x)" >> ${OUT}
kono
parents:
diff changeset
78 echo "}" >> ${OUT}
kono
parents:
diff changeset
79 echo >> ${OUT}
kono
parents:
diff changeset
80 echo "func (ts *timespec) set_nsec(x int32) {" >> ${OUT}
kono
parents:
diff changeset
81 echo " ts.tv_nsec = timespec_nsec_t(x)" >> ${OUT}
kono
parents:
diff changeset
82 echo "}" >> ${OUT}
kono
parents:
diff changeset
83
kono
parents:
diff changeset
84 # Define the epollevent struct. This needs special attention because
kono
parents:
diff changeset
85 # the C definition uses a union and is sometimes packed.
kono
parents:
diff changeset
86 if grep '^const _epoll_data_offset ' ${OUT} >/dev/null 2>&1; then
kono
parents:
diff changeset
87 val=`grep '^const _epoll_data_offset ' ${OUT} | sed -e 's/const _epoll_data_offset = \(.*\)$/\1/'`
kono
parents:
diff changeset
88 if test "$val" = "4"; then
kono
parents:
diff changeset
89 echo 'type epollevent struct { events uint32; data [8]byte }' >> ${OUT}
kono
parents:
diff changeset
90 elif test "$val" = "8"; then
kono
parents:
diff changeset
91 if test "$GOARCH" = "sparc64" -a "$GOOS" = "linux"; then
kono
parents:
diff changeset
92 echo 'type epollevent struct { events uint32; pad [4]byte; data [8]byte; _align [0]int64 }' >> ${OUT}
kono
parents:
diff changeset
93 else
kono
parents:
diff changeset
94 echo 'type epollevent struct { events uint32; pad [4]byte; data [8]byte }' >> ${OUT}
kono
parents:
diff changeset
95 fi
kono
parents:
diff changeset
96 else
kono
parents:
diff changeset
97 echo 1>&2 "unknown epoll data offset value ${val}"
kono
parents:
diff changeset
98 exit 1
kono
parents:
diff changeset
99 fi
kono
parents:
diff changeset
100 fi
kono
parents:
diff changeset
101 # Make sure EPOLLET is positive.
kono
parents:
diff changeset
102 if grep '^const _EPOLLET = [0-9]' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
103 echo "const _EPOLLETpos = _EPOLLET" >> ${OUT}
kono
parents:
diff changeset
104 else
kono
parents:
diff changeset
105 echo "const _EPOLLETpos = 0x80000000" >> ${OUT}
kono
parents:
diff changeset
106 fi
kono
parents:
diff changeset
107 # Make sure EPOLLRDHUP and EPOLL_CLOEXEC are defined.
kono
parents:
diff changeset
108 if ! grep '^const _EPOLLRDHUP' ${OUT} >/dev/null 2>&1; then
kono
parents:
diff changeset
109 echo "const _EPOLLRDHUP = 0x2000" >> ${OUT}
kono
parents:
diff changeset
110 fi
kono
parents:
diff changeset
111 if ! grep '^const _EPOLL_CLOEXEC' ${OUT} >/dev/null 2>&1; then
kono
parents:
diff changeset
112 echo "const _EPOLL_CLOEXEC = 02000000" >> ${OUT}
kono
parents:
diff changeset
113 fi
kono
parents:
diff changeset
114
kono
parents:
diff changeset
115 # AIX 7.1 is a 64 bits value for _FCLOEXEC (referenced by O_CLOEXEC)
kono
parents:
diff changeset
116 # which leads to a constant overflow when using O_CLOEXEC in some
kono
parents:
diff changeset
117 # go code. Issue wan not present in 6.1 (no O_CLOEXEC) and is no
kono
parents:
diff changeset
118 # more present in 7.2 (_FCLOEXEC is a 32 bit value).
kono
parents:
diff changeset
119 if test "${GOOS}" = "aix" && `oslevel | grep -q "^7.1"`; then
kono
parents:
diff changeset
120 sed -e 's/const __FCLOEXEC = .*/const __FCLOEXEC = 0/' ${OUT} > ${OUT}-2
kono
parents:
diff changeset
121 mv ${OUT}-2 ${OUT}
kono
parents:
diff changeset
122 fi
kono
parents:
diff changeset
123
kono
parents:
diff changeset
124 # Make sure _MAP_FAILED is defined.
kono
parents:
diff changeset
125 if ! grep '^const _MAP_FAILED =' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
126 echo "const _MAP_FAILED = ^uintptr(0)" >> ${OUT}
kono
parents:
diff changeset
127 fi
kono
parents:
diff changeset
128 # Make sure _MAP_ANON is defined.
kono
parents:
diff changeset
129 if ! grep '^const _MAP_ANON =' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
130 if grep '^const _MAP_ANONYMOUS ' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
131 echo "const _MAP_ANON = _MAP_ANONYMOUS" >> ${OUT}
kono
parents:
diff changeset
132 else
kono
parents:
diff changeset
133 echo "const _MAP_ANON = 0" >> ${OUT}
kono
parents:
diff changeset
134 fi
kono
parents:
diff changeset
135 fi
kono
parents:
diff changeset
136 # Make sure _MADV_DONTNEED is defined.
kono
parents:
diff changeset
137 if ! grep '^const _MADV_DONTNEED =' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
138 echo "const _MADV_DONTNEED = 0" >> ${OUT}
kono
parents:
diff changeset
139 fi
kono
parents:
diff changeset
140 # Make sure _MADV_FREE is defined.
kono
parents:
diff changeset
141 if ! grep '^const _MADV_FREE =' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
142 echo "const _MADV_FREE = 0" >> ${OUT}
kono
parents:
diff changeset
143 fi
kono
parents:
diff changeset
144 # Make sure _MADV_HUGEPAGE is defined.
kono
parents:
diff changeset
145 if ! grep '^const _MADV_HUGEPAGE =' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
146 echo "const _MADV_HUGEPAGE = 0" >> ${OUT}
kono
parents:
diff changeset
147 fi
kono
parents:
diff changeset
148 # Make sure _MADV_NOHUGEPAGE is defined.
kono
parents:
diff changeset
149 if ! grep '^const _MADV_NOHUGEPAGE =' gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
150 echo "const _MADV_NOHUGEPAGE = 0" >> ${OUT}
kono
parents:
diff changeset
151 fi
kono
parents:
diff changeset
152
kono
parents:
diff changeset
153 # The semt structure, for Solaris.
kono
parents:
diff changeset
154 grep '^type _sem_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
155 sed -e 's/_sem_t/semt/' >> ${OUT}
kono
parents:
diff changeset
156
kono
parents:
diff changeset
157 # Solaris 2 needs _u?pad128_t, but its default definition in terms of long
kono
parents:
diff changeset
158 # double is commented by -fdump-go-spec.
kono
parents:
diff changeset
159 if grep "^// type _pad128_t" gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
160 echo "type _pad128_t struct { _l [4]int32; }" >> ${OUT}
kono
parents:
diff changeset
161 fi
kono
parents:
diff changeset
162 if grep "^// type _upad128_t" gen-sysinfo.go > /dev/null 2>&1; then
kono
parents:
diff changeset
163 echo "type _upad128_t struct { _l [4]uint32; }" >> ${OUT}
kono
parents:
diff changeset
164 fi
kono
parents:
diff changeset
165
kono
parents:
diff changeset
166 # The Solaris 11 Update 1 _zone_net_addr_t struct.
kono
parents:
diff changeset
167 grep '^type _zone_net_addr_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
168 sed -e 's/_in6_addr/[16]byte/' \
kono
parents:
diff changeset
169 >> ${OUT}
kono
parents:
diff changeset
170
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
171 # The Solaris 11.4 _flow_arp_desc_t struct.
111
kono
parents:
diff changeset
172 grep '^type _flow_arp_desc_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
173 sed -e 's/_in6_addr_t/[16]byte/g' \
kono
parents:
diff changeset
174 >> ${OUT}
kono
parents:
diff changeset
175
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
176 # The Solaris 11.4 _flow_l3_desc_t struct.
111
kono
parents:
diff changeset
177 grep '^type _flow_l3_desc_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
178 sed -e 's/_in6_addr_t/[16]byte/g' \
kono
parents:
diff changeset
179 >> ${OUT}
kono
parents:
diff changeset
180
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
181 # The Solaris 11.3 _mac_ipaddr_t struct.
111
kono
parents:
diff changeset
182 grep '^type _mac_ipaddr_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
183 sed -e 's/_in6_addr_t/[16]byte/g' \
kono
parents:
diff changeset
184 >> ${OUT}
kono
parents:
diff changeset
185
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
186 # The Solaris 11.3 _mactun_info_t struct.
111
kono
parents:
diff changeset
187 grep '^type _mactun_info_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
188 sed -e 's/_in6_addr_t/[16]byte/g' \
kono
parents:
diff changeset
189 >> ${OUT}
kono
parents:
diff changeset
190
kono
parents:
diff changeset
191 # The Solaris port_event_t struct.
kono
parents:
diff changeset
192 grep '^type _port_event_t ' gen-sysinfo.go | \
kono
parents:
diff changeset
193 sed -e s'/_port_event_t/portevent/' \
kono
parents:
diff changeset
194 >> ${OUT}
kono
parents:
diff changeset
195
kono
parents:
diff changeset
196 # The *BSD kevent struct.
kono
parents:
diff changeset
197 grep '^type _kevent ' gen-sysinfo.go | \
kono
parents:
diff changeset
198 sed -e s'/_kevent/keventt/' \
kono
parents:
diff changeset
199 -e 's/ udata [^;}]*/ udata *byte/' \
kono
parents:
diff changeset
200 >> ${OUT}