abi.sh changes
[musl-tools.git] / tab_c99.sh
blob3974f24a1299476250f80ab44033a33204995753
1 #!/bin/sh
3 export LC_ALL=C
4 MUSL=${MUSL:-../musl}
6 ( cd $MUSL; git log -n1 ) | awk '
7 BEGIN {
8 getline
9 hash = $2
10 getline
12 commit = "<h4>commit</h4><p>commit <a href=\"http://git.musl-libc.org/cgit/musl/commit/?id=" hash "\">" hash "</a>"
13 while (getline == 1)
14 commit = commit "<br>" $0
16 FS = "\t"
18 c99 = "data/c99"
19 syms = "data/musl.syms"
20 tags = "data/musl.tags"
22 while (getline < syms == 1)
23 sym[$2] = $1
24 while (getline < tags == 1) {
25 if ($2 ~ /bits\//)
26 s = $3 " "
27 else
28 s = "<a href=\"http://git.musl-libc.org/cgit/musl/tree/include/" $2 "#n" $4 "\">" $3 "</a> "
29 kind[$1] = kind[$1] $3
30 kindstr[$1] = kindstr[$1] s
33 legend = "<h4>legend</h4><ul><li>status: musl implementation status summary<ul>"
34 legend = legend "<li>(empty) - implemented"
35 legend = legend "<li>nosym - prototype found in include files (see decl) but not in libc.a (see sym)"
36 legend = legend "<li>nodecl - symbol is in libc.a but not declared in a public header"
37 legend = legend "<li>missing - neither in include files (see decl) nor in libc.a (see sym)"
38 legend = legend "</ul><li>sym: external symbol kind as found by `nm libc.a` (symbol kind only reported once)<ul>"
39 legend = legend "<li>C - symbol is common (uninitialized data)"
40 legend = legend "<li>D - symbol is in the initialized data section"
41 legend = legend "<li>R - symbol is in the read only data section"
42 legend = legend "<li>T - symbol is in the text section"
43 legend = legend "<li>V - weak object"
44 legend = legend "<li>W - weak symbol"
45 legend = legend "</ul><li>decl: kind of declaration as found by `ctags -R include` (every occurance is reported, arch specific definitions are not linked)<ul>"
46 legend = legend "<li>d - macro definition"
47 legend = legend "<li>t - typedef"
48 legend = legend "<li>s - struct declaration"
49 legend = legend "<li>u - union declaration"
50 legend = legend "<li>p - function prototype"
51 legend = legend "<li>x - external and forward variable declaration"
52 legend = legend "</ul></ul>"
54 print "<h3>musl vs c99 api</h3>"
55 print commit
56 print legend
57 print "<h4>table</h4><table border=1><tr><th colspan=3>musl<th colspan=4>c99<tr><th>status<th>sym<th>decl<th>name<th>header<th>proto<th>section"
58 nodecl = nosym = missing = 0
59 while (getline < c99 == 1) {
60 s = "<tr><td>"
61 if (sym[$1] && kind[$1]) {
62 s = s "&#160;"
63 } else if (sym[$1]) {
64 s = s "nodecl"
65 nodecl++
66 } else if (kind[$1] ~ /[dtsue]/) {
67 s = s "&#160;"
68 } else if (kind[$1]) {
69 s = s "nosym"
70 nosym++
71 } else {
72 s = s "missing"
73 missing++
75 s = s "<td>" sym[$1]
76 if (!sym[$1])
77 s = s "&#160;"
78 s = s "<td>" kindstr[$1]
79 if (!kind[$1])
80 s = s "&#160;"
82 s = s "<td>" $1
83 s = s "<td>" $3
84 if ($2)
85 s = s "<td>" $2
86 else
87 s = s "<td>&#160;"
88 s = s "<td>" $4
89 print s
91 print "</table>"
92 print "<h4>stats</h4><ul><li>missing: " missing "<li>nosym: " nosym "<li>nodecl: " nodecl "</ul>"
93 }' >tab_c99.html