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
|
//==============================================================================
// https://github.com/vinniefalco/LuaBridge
//
// Copyright 2012, Vinnie Falco <vinnie.falco@gmail.com>
// Copyright 2007, Nathan Reed
// SPDX-License-Identifier: MIT
#include "TestBase.h"
#include "JuceLibraryCode/BinaryData.h"
/**
Command line version of LuaBridge test suite.
*/
#include <cstdio>
#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <ctime>
using namespace std;
using namespace luabridge;
//------------------------------------------------------------------------------
/**
Simple stopwatch for measuring elapsed time.
*/
class Stopwatch
{
private:
clock_t m_start;
public:
Stopwatch ()
{
start ();
}
void start ()
{
m_start = clock ();
}
double getElapsedSeconds ()
{
clock_t now;
now = clock ();
return (double (now - m_start)) / CLOCKS_PER_SEC;
}
};
//------------------------------------------------------------------------------
/**
Classes used for performance tests.
*/
struct A
{
A () : data (0), prop (0)
{
}
void mf1 ()
{
}
void mf2 (A*)
{
}
void mf3 (A&)
{
}
virtual void vf1 ()
{
}
int data;
int prop;
int getprop () const
{
return prop;
}
void setprop (int v)
{
prop = v;
}
};
//------------------------------------------------------------------------------
void addToState (lua_State* L)
{
getGlobalNamespace (L)
.beginClass <A> ("A")
.addConstructor <void (*)(void)> ()
.addFunction ("mf1", &A::mf1)
.addFunction ("mf2", &A::mf2)
.addFunction ("mf3", &A::mf3)
.addFunction ("vf1", &A::vf1)
.addData ("data", &A::data)
.addProperty ("prop", &A::getprop, &A::setprop)
.endClass ()
;
}
void runTests (lua_State* L)
{
cout.precision (4);
int result;
luaL_dostring (L, "a = A()");
int const trials = 5;
for (int trial = 0; trial < trials; ++trial)
{
result = luaL_loadstring (L, "a:mf1 ()");
if (result != 0)
lua_error (L);
int const N = 10000000;
Stopwatch sw;
sw.start ();
for (int i = 0; i < N; ++i)
{
lua_pushvalue (L, -1);
lua_call (L, 0, 0);
}
double const seconds = sw.getElapsedSeconds ();
cout << "Elapsed time: " << seconds << endl;
}
}
void runPerformanceTests ()
{
lua_State* L = luaL_newstate ();
luaL_openlibs (L);
addToState (L);
runTests (L);
lua_close (L);
}
struct PerformanceTests : TestBase
{
};
TEST_F (PerformanceTests, AllTests)
{
addToState (L);
runTests (L);
}
|