summaryrefslogtreecommitdiff
path: root/test/full/example.lua
blob: 4f6090ee95b80844ad457fb0d1a139222ca60caf (plain)
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
local util   = require 'utility'
local parser = require 'parser'
local files  = require 'files'
local diag   = require 'core.diagnostics'
local config = require 'config'

-- 临时
local function testIfExit(path)
    config.config.workspace.preloadFileSize = 1000000000
    local buf = util.loadFile(path:string())
    if buf then
        local vm

        local clock = os.clock()
        local max = 100
        local need
        local parseClock = 0
        local compileClock = 0
        local total
        for i = 1, max do
            vm = TEST(buf)
            local passed = os.clock() - clock
            parseClock = parseClock + vm.parseClock
            compileClock = compileClock + vm.compileClock
            if passed >= 1.0 or i == max then
                need = passed / i
                total = i
                break
            end
        end
        print(('基准编译测试[%s]单次耗时:%.10f(解析:%.10f, 编译:%.10f)'):format(
            path:filename():string(),
            need,
            parseClock / total,
            compileClock / total
        ))

        local clock = os.clock()
        local max = 100
        local need
        local lines = parser:lines(buf)
        for i = 1, max do
            files.removeAll()
            files.open('')
            files.setText('', buf)
            diag('', function () end)
            local passed = os.clock() - clock
            if passed >= 1.0 or i == max then
                need = passed / i
                break
            end
        end
        print(('基准诊断测试[%s]单次耗时:%.10f'):format(path:filename():string(), need))
    end
end

require 'tracy' .enable()
testIfExit(ROOT / 'test' / 'example' / 'vm.txt')
testIfExit(ROOT / 'test' / 'example' / 'largeGlobal.txt')
testIfExit(ROOT / 'test' / 'example' / 'guide.txt')