6

我刚开始使用 Lua 作为学校作业的一部分。我想知道是否有一种简单的方法可以为 Lua 实现分析?我需要显示分配的内存、使用中的变量(无论它们的类型如何)等的东西。

我一直在寻找能够成功编译的 C++ 解决方案,但我不知道如何将它们导入 Lua 环境。

我还找到了 Shinny,但我找不到任何有关如何使其工作的文档。

4

1 回答 1

8

您可以检查几个可用的分析器,但它们中的大多数都以执行时间为目标(并且基于调试挂钩)。

要跟踪变量,您将需要使用debug.getlocaland debug.getupvalue(来自您的代码或来自调试挂钩)。

要跟踪您可以使用的内存使用情况collectgarbage(count)(可能在 之后collectgarbage(collect)),但这只会告诉您正在使用的总内存。要跟踪单个数据结构,您可能需要遍历全局变量和局部变量并计算它们占用的空间量。您可以查看此讨论以获取一些指针和实现细节。

像这样的东西将是跟踪函数调用/返回的最简单的分析器(请注意,您不应该相信它生成的绝对数字,只相信相对数字):

local calls, total, this = {}, {}, {}
debug.sethook(function(event)
  local i = debug.getinfo(2, "Sln")
  if i.what ~= 'Lua' then return end
  local func = i.name or (i.source..':'..i.linedefined)
  if event == 'call' then
    this[func] = os.clock()
  else
    local time = os.clock() - this[func]
    total[func] = (total[func] or 0) + time
    calls[func] = (calls[func] or 0) + 1
  end
end, "cr")

-- the code to debug starts here
local function DoSomethingMore(x)
  x = x / 2
end

local function DoSomething(x)
  x = x + 1
  if x % 2 then DoSomethingMore(x) end
end

for outer=1,100 do
  for inner=1,1000 do
    DoSomething(inner)
  end
end

-- the code to debug ends here; reset the hook
debug.sethook()

-- print the results
for f,time in pairs(total) do
  print(("Function %s took %.3f seconds after %d calls"):format(f, time, calls[f]))
end
于 2013-03-31T21:48:37.990 回答