Loading…
![]() String updated in the repository testing_project / Documentation: reference/tooling/luajit_memprof — Russian |
Glossary
English | Russian | ||
---|---|---|---|
No related strings found in the glossary. |
Loading…
![]() String updated in the repository testing_project / Documentation: reference/tooling/luajit_memprof — Russian |
English | Russian | ||
---|---|---|---|
No related strings found in the glossary. |
jit.off()
local str, err = misc.memprof.start("memprof_new.bin")
-- Lua doesn't create a new frame to call string.rep, and all allocations
-- are attributed not to the append() function but to the parent scope.
local function append(str, rep)
return string.rep(str, rep)
end
local t = {}
for i = 1, 1e4 do
-- table.insert is the built-in function and all corresponding
-- allocations are reported in the scope of the main chunk.
table.insert(t,
append('q', i)
)
end
local stp, err = misc.memprof.stop()
jit.off()
local str, err = misc.memprof.start("memprof_new.bin")
-- Lua не создает стековый фрейм для вызова string.rep,
-- поэтому все события аллокации
-- приписываются не функции append(), а родительской области
local function append(str, rep)
return string.rep(str, rep)
end
local t = {}
for i = 1, 1e4 do
-- table.insert — встроенная функция,
-- так что профилировщик включает все соответствующие ей
-- события аллокации в отчет по основной части кода
table.insert(t,
append('q', i)
)
end
local stp, err = misc.memprof.stop()