aboutsummaryrefslogtreecommitdiff
path: root/tests/addr.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 14:20:07 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 14:20:07 +0300
commit49aa680ccdac46d1d2a7f9f250999b7ff7099548 (patch)
tree1de3bd5209feadfd147f7a05d1ac925f98b747b1 /tests/addr.c
parent29718f2e84478b296c3198ae6d35cfd5d79efb14 (diff)
downloadejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.tar.gz
ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.zip
start adding tests
Diffstat (limited to 'tests/addr.c')
-rw-r--r--tests/addr.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/addr.c b/tests/addr.c
new file mode 100644
index 0000000..f524aa6
--- /dev/null
+++ b/tests/addr.c
@@ -0,0 +1,23 @@
+#include <ejit/ejit.h>
+
+int
+main (int argc, char *argv[])
+{
+ struct ejit_operand operands[2] = {
+ EJIT_OPERAND_GPR(0, EJIT_LONG),
+ EJIT_OPERAND_GPR(1, EJIT_LONG)
+ };
+
+ struct ejit_func *f = ejit_create_func(EJIT_LONG, 2, operands);
+
+ ejit_addr(j, EJIT_GPR(0), EJIT_GPR(0), EJIT_GPR(1));
+ ejit_retr(j, EJIT_GPR(0));
+
+ ejit_compile(f);
+
+ struct ejit_arg args[2] = {
+ EJIT_ARG(42, EJIT_LONG),
+ EJIT_ARG(69, EJIT_LONG)
+ };
+ ASSERT(ejit_run_func(f, 2, args) == 111);
+}