annotate test/suite_aggrs/mk-cases.lua @ 462:653b65580cb4

suite_aggr: - added arrays (inside of structs/unions, only, as only way to pass/return them by value) - cleanups and pregen of source
author Tassilo Philipp
date Tue, 01 Feb 2022 21:44:18 +0100
parents 236015fdf7a8
children 0f3b6898078d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
1 require"math"
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
2 local max = math.max
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
3 local maxargs = 0
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
4
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
5 local aggrs = { }
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
6 local seen_aggrs = { }
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
7
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
8
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
9 function canon_type(t)
461
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
10 -- aggregate types start with special (closing) char
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
11 c = ({ ['}'] = 'struct ', ['>'] = 'union ' })[t:sub(1,1)]
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
12 if c ~= nil then
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
13 return c..'A'..t:sub(2)
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
14 end
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
15 return t
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
16 end
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
17
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
18 function trim(l) return l:gsub("^%s+",""):gsub("%s+$","") end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
19 function mkcase(id,sig)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
20 local sig = trim(sig)
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
21 local h = { "/* ",id,":",sig," */ " }
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
22 local t = { "" }
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
23 local pos = 0
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
24 local n_nest = 0
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
25 local aggr = { }
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
26 local aggr_sig = { }
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
27 aggr[0] = { } -- non-sequential [0] collects all non-aggr types
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
28 aggr_sig[0] = ''
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
29 for i = 1, #sig do
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
30 local name = "a"..pos
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
31 local ch = sig:sub(i,i)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
32
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
33
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
34 -- aggregate nest level change?
461
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
35 if ch == '{' or ch == '<' then
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
36 n_nest = n_nest + 1
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
37 aggr[n_nest] = { }
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
38 aggr_sig[n_nest] = ''
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
39 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
40
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
41 aggr_sig[n_nest] = aggr_sig[n_nest]..ch
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
42
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
43 -- array? Just append to name of member var from prev loop
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
44 if ch:match('[%[%]0123456789]') ~= nil then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
45 aggr[n_nest][#aggr[n_nest]] = aggr[n_nest][#aggr[n_nest]]..ch
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
46 else
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
47
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
48 if ch == '}' or ch == '>' then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
49 -- register yet unseen aggregates, key is sig, val is body and name
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
50 if seen_aggrs[aggr_sig[n_nest]] == nil then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
51 aggrs[#aggrs+1] = aggr_sig[n_nest]
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
52 ch = ch..#aggrs
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
53 seen_aggrs[aggr_sig[n_nest]] = { aggr[n_nest], ch }
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
54 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
55 ch = seen_aggrs[aggr_sig[n_nest]][2]
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
56
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
57 n_nest = n_nest - 1
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
58 aggr_sig[n_nest] = aggr_sig[n_nest]..aggr_sig[n_nest+1]
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
59 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
60
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
61 if ch ~= '{' and ch ~= '}' and ch ~= '<' and ch ~= '>' then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
62 aggr[n_nest][#aggr[n_nest]+1] = canon_type(ch)
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
63 aggr[n_nest][#aggr[n_nest]+1] = 'm'..(#aggr[n_nest] >> 1)
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
64 end
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
65
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
66 -- no nesting (= actual func args), generate case code
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
67 if n_nest == 0 then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
68 h[#h+1] = canon_type(ch)
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
69 -- aggregate types (more than one char) need copying via a func
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
70 if #h[#h] > 1 then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
71 t[#t+1] = 'f_cp'..h[#h]:sub(8)..'(V_a['..pos.."],&"..name..");"
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
72 else
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
73 t[#t+1] = "V_"..ch.."["..pos.."]="..name..";"
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
74 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
75
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
76 -- is return type or func arg?
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
77 if pos == 0 then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
78 h[#h+1] = " f"..id.."("
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
79 h[#h+1] = ''
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
80 t[#t] = '' -- clear; aggr return type handled explicitly
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
81 else
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
82 h[#h+1] = ' '..name
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
83 h[#h+1] = ","
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
84 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
85
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
86 pos = pos + 1
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
87 end
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
88 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
89 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
90 maxargs = max(maxargs, pos-1)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
91 h[#h] = "){"
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
92 if #h[6] == 1 then
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
93 t[#t+1] = "ret_"..h[6].."("..(pos-1)..")}\n"
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
94 else
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
95 t[#t+1] = "ret_a("..(pos-1)..","..h[6]..")}\n"
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
96 end
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
97 return table.concat(h,"")..table.concat(t,"")
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
98 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
99
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
100 function mkfuntab(n)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
101 local s = { "funptr G_funtab[] = {\n"}
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
102 for i = 0, n-1 do
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
103 s[#s+1] = "\t(funptr)&f"..i..",\n"
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
104 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
105 s[#s+1] = "};\n"
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
106 return table.concat(s,"")
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
107 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
108
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
109 function mksigtab(sigs)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
110 local s = { "char const * G_sigtab[] = {\n"}
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
111 for k,v in pairs(sigs) do
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
112 s[#s+1] = '\t"'..v..'",\n'
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
113 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
114 s[#s+1] = "};\n"
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
115 return table.concat(s,"")
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
116 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
117
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
118 function split_array_decl(s)
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
119 local name = s
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
120 local n = nil -- not an array
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
121 local array_i = s:find('%[')
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
122 if array_i ~= nil then
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
123 name = name:sub(1, array_i-1)
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
124 n = tonumber(s:sub(array_i):match('[0123456789]+'))
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
125 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
126 return { name, n }
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
127 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
128
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
129 function mkall()
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
130 local lineno = 0
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
131 local sigtab = { }
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
132 local cases = ''
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
133 for line in io.lines() do
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
134 local sig = trim(line)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
135 cases = cases..mkcase(lineno,sig)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
136 sigtab[#sigtab+1] = sig
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
137 lineno = lineno + 1
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
138 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
139
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
140 agg_sizes = {}
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
141 agg_sigs = {}
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
142 agg_names = {}
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
143 for a = 1, #aggrs do
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
144 local k = aggrs[a]
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
145 local v = seen_aggrs[k]
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
146 local at = canon_type(v[2]) -- aggregate type
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
147 local am = v[1] -- aggregate members
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
148
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
149 agg_sizes[#agg_sizes + 1] = 'sizeof('..at..')'
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
150 agg_sigs [#agg_sigs + 1] = k
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
151 agg_names[#agg_names + 1] = at:sub(8)
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
152
461
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
153 -- aggregate def
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
154 io.write('/* '..k..' */\n')
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
155 io.write(at..' { ')
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
156 for i = 1, #am, 2 do
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
157 io.write(am[i]..' '..am[i+1]..'; ')
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
158 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
159 io.write("};\n")
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
160
461
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
161 -- aggregate cp and cmp funcs
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
162 s = {
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
163 'void f_cp'..at:sub(8)..'('..at..' *x, const '..at..' *y) { ',
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
164 'int f_cmp'..at:sub(8)..'(const '..at..' *x, const '..at..' *y) { return '
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
165 }
441
e59e381b4fca - suite_aggrs: silenced warning, generated real case list
Tassilo Philipp
parents: 438
diff changeset
166 o = { '=', '==', 'f_cp', 'f_cmp', '; ', ' && ', '', '1' }
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
167 for t = 1, 2 do
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
168 io.write(s[t])
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
169 local b = {}
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
170 for i = 1, #am, 2 do
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
171 local m = split_array_decl(am[i+1])
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
172 local fmt = ''
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
173 if m[2] ~= nil then -- need array suffixes?
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
174 fmt = '[%d]'
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
175 else
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
176 m[2] = 1
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
177 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
178
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
179 for j = 1, m[2] do
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
180 name = m[1]..string.format(fmt, j-1)
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
181 if string.match(am[i], ' ') then -- aggregate canonical types contain at least one space
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
182 b[#b+1] = o[t+2]..am[i]:sub(8)..'(&x->'..name..', &y->'..name..')'
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
183 else
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
184 b[#b+1] = 'x->'..name..' '..o[t]..' y->'..name
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
185 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
186 end
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
187 end
461
236015fdf7a8 suite_aggrs:
Tassilo Philipp
parents: 441
diff changeset
188 if #b == 0 then -- to handle empty aggregates
441
e59e381b4fca - suite_aggrs: silenced warning, generated real case list
Tassilo Philipp
parents: 438
diff changeset
189 b[1] = o[t+6]
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
190 end
434
3d2c5d156d78 - test/suite_aggrs: support for nested structs, now
Tassilo Philipp
parents: 433
diff changeset
191 io.write(table.concat(b,o[t+4]).."; };\n")
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
192 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
193
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
194 -- convenient dcnewstruct helper funcs
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
195 io.write('DCstruct* f_touchdcst'..at:sub(8)..'() {\n\tstatic DCstruct* at = NULL;\n\tif(!at) {\n\t\tat = dcNewStruct('..(#am>>1)..', sizeof('..at..'), DC_TRUE);\n\t\t')
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
196 for i = 1, #am, 2 do
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
197 local m = split_array_decl(am[i+1])
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
198 if m[2] == nil then -- need array suffixes?
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
199 m[2] = 1
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
200 end
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
201 if string.match(am[i], ' ') then -- aggregate canonical types contain at least one space
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
202 io.write('dcStructField(at, DC_SIGCHAR_STRUCT, offsetof('..at..', '..m[1]..'), '..m[2]..', f_touchdcst'..am[i]:sub(8)..'());\n\t\t')
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
203 else
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
204 io.write("dcStructField(at, '"..am[i].."', offsetof("..at..', '..m[1]..'), '..m[2]..');\n\t\t')
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
205 end
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
206 end
462
653b65580cb4 suite_aggr:
Tassilo Philipp
parents: 461
diff changeset
207 io.write("dcCloseStruct(at);\n\t}\n\treturn at;\n};\n")
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
208 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
209
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
210 -- make table.concat work
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
211 if #agg_names > 0 then
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
212 table.insert(agg_names, 1, '')
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
213 end
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
214
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
215 io.write(cases)
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
216 io.write(mkfuntab(lineno))
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
217 io.write(mksigtab(sigtab))
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
218 io.write('const char* G_agg_sigs[] = {\n\t"'..table.concat(agg_sigs, '",\n\t"')..'"\n};\n')
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
219 io.write('int G_agg_sizes[] = {\n\t'..table.concat(agg_sizes, ',\n\t')..'\n};\n')
438
b4ddad459690 suite_aggr;
Tassilo Philipp
parents: 435
diff changeset
220 io.write('funptr G_agg_touchdcstfuncs[] = {'..string.sub(table.concat(agg_names, ',\n\t(funptr)&f_touchdcst'),2)..'\n};\n')
433
45662241d9cd suite_aggrs now handling struct by value return types, also
Tassilo Philipp
parents: 432
diff changeset
221 io.write('funptr G_agg_cmpfuncs[] = {'..string.sub(table.concat(agg_names, ',\n\t(funptr)&f_cmp'),2)..'\n};\n')
432
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
222 io.write("int G_maxargs = "..maxargs..";\n")
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
223 end
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
224
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
225 mkall()
167faab0c0be first usable version of test suite for aggregates, handling only non-nested struct params, at the moment;
Tassilo Philipp
parents:
diff changeset
226