-
Notifications
You must be signed in to change notification settings - Fork 9
/
basic.cpp
224 lines (175 loc) · 5.03 KB
/
basic.cpp
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#include "codebuilder.hpp"
TEST_CASE("Instantiate machine", "[Basic]")
{
const auto program = build_and_load(R"M(
#include <api.h>
int main() {
return 666;
}
extern "C" long MyFunc() {
return 0xDEADBEEF;
})M");
Script script {program, "MyScript", "/tmp/myscript"};
REQUIRE(script.machine().return_value() == 666);
REQUIRE(script.call("MyFunc") == 0xDEADBEEF);
}
TEST_CASE("Exit game", "[Basic]")
{
const auto program = build_and_load(R"M(
#include <api.h>
using namespace api;
int main() {
Game::exit();
return 666;
})M");
bool exit_called = false;
Script::on_exit([&] (Script& script) {
script.machine().stop();
script.machine().set_result(123);
exit_called = true;
});
Script script {program, "MyScript", "/tmp/myscript"};
REQUIRE(exit_called);
REQUIRE(script.machine().return_value() == 123);
}
TEST_CASE("Verify dynamic calls work", "[Basic]")
{
const auto program = build_and_load(R"M(
#include <api.h>
int main() {
sys_empty(); /* Opaque dynamic call */
isys_empty(); /* Inlined dynamic call */
return 666;
})M");
int count = 0;
Script::set_dynamic_call("void sys_empty ()", [&] (Script&) {
count += 1;
});
Script script {program, "MyScript", "/tmp/myscript"};
REQUIRE(script.machine().return_value() == 666);
REQUIRE(count == 2);
}
TEST_CASE("Verify late dynamic calls work", "[Basic]")
{
const auto program = build_and_load(R"M(
#include <api.h>
extern "C" int my_func() {
sys_empty(); /* Opaque dynamic call */
isys_empty(); /* Inlined dynamic call */
return 666;
}
int main() {
})M");
// Unset the previous 'empty'
Script::set_dynamic_call("void sys_empty ()", nullptr);
Script script {program, "MyScript", "/tmp/myscript"};
// Add new 'empty' after initialization
int count = 0;
Script::set_dynamic_call("void sys_empty ()", [&] (Script&) {
count += 1;
});
auto ret = script.call("my_func");
REQUIRE(ret == 666);
REQUIRE(count == 2);
}
TEST_CASE("Verify dynamic calls with arguments", "[Basic]")
{
const auto program = build_and_load(R"M(
#include <api.h>
extern "C" void test_strings() {
sys_test_strings("1234", "45678", 5);
}
extern "C" void test_args() {
sys_test_3i3f(123, 456, 789, 10.0f, 100.0f, 1000.0f);
}
extern "C" void test_inlined_args() {
isys_test_3i3f(123, 456, 789, 10.0f, 100.0f, 1000.0f);
}
extern "C" void test_data() {
TestData data;
data.a = 123;
data.b = 456;
data.c = 789;
data.x = 10.0f;
data.y = 100.0f;
data.z = 1000.0f;
sys_test_data(&data, 1, &data);
}
int main() {
})M");
int strings_called = 0;
int args_called = 0;
int data_called = 0;
Script::set_dynamic_call("void sys_test_strings (const char*, const char*, size_t)",
[&] (Script& script) {
// std::string uses 1 register (as it's zero-terminated), while std::string_view uses 2
auto [str, view] = script.args<std::string, std::string_view> ();
REQUIRE(str == "1234");
REQUIRE(view == "45678");
strings_called += 1;
});
Script::set_dynamic_call("void sys_test_3i3f (int, int, int, float, float, float)",
[&] (Script& script) {
// This function uses 3 integer and 3 fp registers
auto [i1, i2, i3, f1, f2, f3] = script.args<int, int, int, float, float, float> ();
REQUIRE(i1 == 123);
REQUIRE(i2 == 456);
REQUIRE(i3 == 789);
REQUIRE(f1 == 10.0f);
REQUIRE(f2 == 100.0f);
REQUIRE(f3 == 1000.0f);
args_called += 1;
});
Script::set_dynamic_call("void sys_test_data (TestData*, int, TestData*)",
[&] (Script& script) {
struct TestData { int a = 0, b = 0, c = 0; float x = 0, y = 0, z = 0; };
// A dynamic span uses 2 registers, while pointer-to-struct uses 1 (size is known at compile time)
auto [data, data2] = script.args<std::span<TestData>, TestData*> ();
REQUIRE(data[0].a == 123);
REQUIRE(data[0].b == 456);
REQUIRE(data[0].c == 789);
REQUIRE(data[0].x == 10.0f);
REQUIRE(data[0].y == 100.0f);
REQUIRE(data[0].z == 1000.0f);
REQUIRE(data2->a == 123);
REQUIRE(data2->b == 456);
REQUIRE(data2->c == 789);
REQUIRE(data2->x == 10.0f);
REQUIRE(data2->y == 100.0f);
REQUIRE(data2->z == 1000.0f);
data_called += 1;
});
Script script {program, "MyScript", "/tmp/myscript"};
REQUIRE(strings_called == 0);
REQUIRE(args_called == 0);
auto res = script.call("test_strings");
REQUIRE(res);
REQUIRE(strings_called == 1);
REQUIRE(args_called == 0);
// Clear argument registers
for (int i = 0; i < 8; i++) {
script.machine().cpu.reg(10+i) = 0;
script.machine().cpu.registers().getfl(10+i).load_u64(0);
}
res = script.call("test_args");
REQUIRE(res);
REQUIRE(strings_called == 1);
REQUIRE(args_called == 1);
// Clear argument registers
for (int i = 0; i < 8; i++) {
script.machine().cpu.reg(10+i) = 0;
script.machine().cpu.registers().getfl(10+i).load_u64(0);
}
res = script.call("test_inlined_args");
REQUIRE(res);
REQUIRE(strings_called == 1);
REQUIRE(args_called == 2);
// Clear argument registers
for (int i = 0; i < 8; i++) {
script.machine().cpu.reg(10+i) = 0;
script.machine().cpu.registers().getfl(10+i).load_u64(0);
}
res = script.call("test_data");
REQUIRE(res);
REQUIRE(data_called == 1);
}