1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
local helper = require "spec.helper"
local function get_line_or_throw(src)
return helper.get_chstate_after_stage("linearize", src).top_line
end
local function get_line(src)
local ok, res = pcall(get_line_or_throw, src)
if ok or type(res) == "table" then
return res
else
error(res, 0)
end
end
local function item_to_string(item)
if item.tag == "Jump" or item.tag == "Cjump" then
return item.tag .. " -> " .. tostring(item.to)
elseif item.tag == "Eval" then
return "Eval " .. item.node.tag
elseif item.tag == "Local" then
local buf = {}
for _, node in ipairs(item.lhs) do
table.insert(buf, ("%s (%d..%d)"):format(node.var.name, node.var.scope_start, node.var.scope_end))
end
return "Local " .. table.concat(buf, ", ")
else
return item.tag
end
end
local function get_line_as_string(src)
local line = get_line(src)
local buf = {}
for i, item in ipairs(line.items) do
buf[i] = tostring(i) .. ": " .. item_to_string(item)
end
return table.concat(buf, "\n")
end
local function value_info_to_string(item)
local buf = {}
for var, value in pairs(item.set_variables) do
table.insert(buf, ("%s (%s / %s%s%s%s)"):format(
var.name, var.type, value.type,
value.empty and ", empty" or "",
value.secondaries and (", " .. tostring(#value.secondaries) .. " secondaries") or "",
value.secondaries and value.secondaries.used and ", used" or ""))
end
table.sort(buf)
return item.tag .. ": " .. table.concat(buf, ", ")
end
local function get_value_info_as_string(src)
local line = get_line(src)
local buf = {}
for _, item in ipairs(line.items) do
if item.tag == "Local" or item.tag == "Set" then
assert.is_table(item.set_variables)
table.insert(buf, value_info_to_string(item))
end
end
return table.concat(buf, "\n")
end
describe("linearize", function()
describe("when handling post-parse syntax errors", function()
it("detects gotos without labels", function()
assert.same({line = 1, offset = 1, end_offset = 4, msg = "no visible label 'fail'"},
get_line("goto fail"))
end)
it("detects break outside loops", function()
assert.same({line = 1, offset = 1, end_offset = 5, msg = "'break' is not inside a loop"},
get_line("break"))
assert.same({line = 1, offset = 28, end_offset = 32, msg = "'break' is not inside a loop"},
get_line("while true do function f() break end end"))
end)
it("detects duplicate labels", function()
assert.same({line = 2, offset = 10, end_offset = 17, prev_line = 1, prev_offset = 1, prev_end_offset = 8,
msg = "label 'fail' already defined on line 1"},
get_line("::fail::\n::fail::"))
end)
it("detects varargs outside vararg functions", function()
assert.same({line = 1, offset = 21, end_offset = 23, msg = "cannot use '...' outside a vararg function"},
get_line("function f() return ... end"))
assert.same({line = 1, offset = 42, end_offset = 44, msg = "cannot use '...' outside a vararg function"},
get_line("function f(...) return function() return ... end end"))
end)
end)
describe("when linearizing flow", function()
it("linearizes empty source correctly", function()
assert.equal("1: Local ... (2..1)", get_line_as_string(""))
end)
it("linearizes do-end blocks correctly", function()
assert.equal([[
1: Local ... (2..4)
2: Noop
3: Noop
4: Eval Call]], get_line_as_string([[
do end
do print(foo) end]]))
end)
it("linearizes loops correctly", function()
assert.equal([[
1: Local ... (2..8)
2: Noop
3: Eval Id
4: Cjump -> 9
5: Local s (6..6)
6: Eval Call
7: Noop
8: Jump -> 3]], get_line_as_string([[
while cond do
local s = io.read()
print(s)
end]]))
assert.equal([[
1: Local ... (2..6)
2: Noop
3: Local s (4..5)
4: Eval Call
5: Eval Id
6: Cjump -> 3]], get_line_as_string([[
repeat
local s = io.read()
print(s)
until cond]]))
assert.equal([[
1: Local ... (2..9)
2: Noop
3: Eval Number
4: Eval Op
5: Cjump -> 10
6: Local i (7..7)
7: Eval Call
8: Noop
9: Jump -> 5]], get_line_as_string([[
for i = 1, #t do
print(t[i])
end]]))
assert.equal([[
1: Local ... (2..8)
2: Noop
3: Eval Call
4: Cjump -> 9
5: Local k (6..6), v (6..6)
6: Eval Call
7: Noop
8: Jump -> 4]], get_line_as_string([[
for k, v in pairs(t) do
print(k, v)
end]]))
end)
it("linearizes loops with literal condition correctly", function()
assert.equal([[
1: Local ... (2..6)
2: Noop
3: Eval Number
4: Eval Call
5: Noop
6: Jump -> 3]], get_line_as_string([[
while 1 do
foo()
end]]))
assert.equal([[
1: Local ... (2..7)
2: Noop
3: Eval False
4: Jump -> 8
5: Eval Call
6: Noop
7: Jump -> 3]], get_line_as_string([[
while false do
foo()
end]]))
assert.equal([[
1: Local ... (2..4)
2: Noop
3: Eval Call
4: Eval True]], get_line_as_string([[
repeat
foo()
until true]]))
assert.equal([[
1: Local ... (2..5)
2: Noop
3: Eval Call
4: Eval Nil
5: Jump -> 3]], get_line_as_string([[
repeat
foo()
until nil]]))
end)
it("linearizes nested loops and breaks correctly", function()
assert.equal([[
1: Local ... (2..24)
2: Noop
3: Eval Call
4: Cjump -> 25
5: Eval Call
6: Noop
7: Eval Call
8: Cjump -> 18
9: Eval Call
10: Noop
11: Eval Call
12: Cjump -> 15
13: Jump -> 18
14: Jump -> 15
15: Eval Call
16: Noop
17: Jump -> 7
18: Noop
19: Eval Call
20: Cjump -> 23
21: Jump -> 25
22: Jump -> 23
23: Noop
24: Jump -> 3]], get_line_as_string([[
while cond() do
stmts()
while cond() do
stmts()
if cond() then
break
end
stmts()
end
if cond() then
break
end
end]]))
end)
it("linearizes if correctly", function()
assert.equal([[
1: Local ... (2..15)
2: Noop
3: Eval Call
4: Cjump -> 16
5: Noop
6: Eval Call
7: Cjump -> 10
8: Eval Call
9: Jump -> 15
10: Eval Call
11: Cjump -> 14
12: Eval Call
13: Jump -> 15
14: Eval Call
15: Jump -> 16]], get_line_as_string([[
if cond() then
if cond() then
stmts()
elseif cond() then
stmts()
else
stmts()
end
end]]))
end)
it("linearizes if with literal condition correctly", function()
assert.equal([[
1: Local ... (2..14)
2: Noop
3: Eval True
4: Noop
5: Eval Call
6: Cjump -> 9
7: Eval Call
8: Jump -> 14
9: Eval False
10: Jump -> 13
11: Eval Call
12: Jump -> 14
13: Eval Call
14: Jump -> 15]], get_line_as_string([[
if true then
if cond() then
stmts()
elseif false then
stmts()
else
stmts()
end
end]]))
end)
it("linearizes gotos correctly", function()
assert.equal([[
1: Local ... (2..13)
2: Eval Call
3: Noop
4: Jump -> 2
5: Eval Call
6: Noop
7: Jump -> 9
8: Eval Call
9: Eval Call
10: Noop
11: Noop
12: Jump -> 14
13: Eval Call]], get_line_as_string([[
::label1::
stmts()
goto label1
stmts()
goto label2
stmts()
::label2::
stmts()
do
goto label2
stmts()
::label2::
end]]))
end)
end)
describe("when registering values", function()
it("registers values in empty chunk correctly", function()
assert.equal([[
Local: ... (arg / arg)]], get_value_info_as_string(""))
end)
it("registers values in assignments correctly", function()
assert.equal([[
Local: ... (arg / arg)
Local: a (var / var)
Set: a (var / var)]], get_value_info_as_string([[
local a = b
a = d]]))
end)
it("registers empty values correctly", function()
assert.equal([[
Local: ... (arg / arg)
Local: a (var / var), b (var / var, empty)
Set: a (var / var), b (var / var)]], get_value_info_as_string([[
local a, b = 4
a, b = 5]]))
end)
it("registers function values as of type func", function()
assert.equal([[
Local: ... (arg / arg)
Local: f (var / func)]], get_value_info_as_string([[
local function f() end]]))
end)
it("registers overwritten args and counters as of type var", function()
assert.equal([[
Local: ... (arg / arg)
Local: i (loopi / loopi)
Set: i (loopi / var)]], get_value_info_as_string([[
for i = 1, 10 do i = 6 end]]))
end)
it("registers groups of secondary values", function()
assert.equal([[
Local: ... (arg / arg)
Local: a (var / var), b (var / var, 2 secondaries), c (var / var, 2 secondaries)
Set: a (var / var), b (var / var, 2 secondaries), c (var / var, 2 secondaries)]], get_value_info_as_string([[
local a, b, c = f(), g()
a, b, c = f(), g()]]))
end)
it("marks groups of secondary values used if one of values is put into global or index", function()
assert.equal([[
Local: ... (arg / arg)
Local: a (var / var, empty)
Set: a (var / var, 1 secondaries, used)]], get_value_info_as_string([[
local a
g, a = f()]]))
end)
end)
end)
|