mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-16 06:45:44 +08:00
557e77a676
- Add SUBRK and DIVRK bytecode instructions - Enables future performance optimizations Miscellaneous - Small performance improvements to new non-strict mode - Introduce more scripts for fuzzing - Improcements to dataflow analysis
79 lines
1.2 KiB
Lua
79 lines
1.2 KiB
Lua
-- This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
print("testing interrupts")
|
|
|
|
-- this function will be called by C code with a special interrupt handler that validates hit locations
|
|
function test()
|
|
function foo()
|
|
for i=1,10 do end
|
|
return
|
|
end
|
|
|
|
foo()
|
|
|
|
function bar()
|
|
local i = 0
|
|
while i < 10 do
|
|
i += i + 1
|
|
end
|
|
end
|
|
|
|
bar()
|
|
|
|
function baz()
|
|
end
|
|
|
|
baz()
|
|
end
|
|
|
|
-- these functions will be called by C code with a special interrupt handler that terminates after a few invocations
|
|
function infloop1()
|
|
while true do end
|
|
end
|
|
|
|
function infloop2()
|
|
while true do continue end
|
|
end
|
|
|
|
function infloop3()
|
|
repeat until false
|
|
end
|
|
|
|
function infloop4()
|
|
repeat continue until false
|
|
end
|
|
|
|
function infloop5()
|
|
for i=0,0,0 do end
|
|
end
|
|
|
|
function infloop6()
|
|
for i=0,0,0 do continue end
|
|
end
|
|
|
|
function infloop7()
|
|
for i=1,math.huge do end
|
|
end
|
|
|
|
function infloop8()
|
|
for i=1,math.huge do continue end
|
|
end
|
|
|
|
function infloop9()
|
|
-- technically not a loop, but an exponentially recursive function
|
|
local function boom()
|
|
boom()
|
|
boom()
|
|
end
|
|
boom()
|
|
end
|
|
|
|
function infloop10()
|
|
for l0=4096,0,0 do
|
|
repeat
|
|
continue
|
|
until function<t0>() end
|
|
end
|
|
end
|
|
|
|
return "OK"
|