Selaa lähdekoodia

finish project framework

Mistivia 4 kuukautta sitten
vanhempi
commit
789ebeb7d0
8 muutettua tiedostoa jossa 115 lisäystä ja 1 poistoa
  1. 5 0
      .gitignore
  2. 3 1
      Makefile
  3. 43 0
      compile_commands.json
  4. 9 0
      scripts/runall.sh
  5. 3 0
      src/fvm.c
  6. 2 0
      src/fvm.h
  7. 5 0
      src/main.c
  8. 45 0
      tests/test_opcodes.c

+ 5 - 0
.gitignore

@@ -0,0 +1,5 @@
+foo
+*.o
+*.d
+*.bin
+.cache

+ 3 - 1
Makefile

@@ -1,4 +1,4 @@
-target = foo
+target = fvm
 cflags = -g
 ldflags = -lm
 cc = gcc
@@ -10,6 +10,8 @@ tests_bin=$(tests:.c=.bin)
 
 all: $(target)
 
+full: all $(tests_bin)
+
 $(target): $(obj) src/main.o
 	$(cc) $(cflags) $(ldflags) -o $@ $^
 

+ 43 - 0
compile_commands.json

@@ -0,0 +1,43 @@
+[
+  {
+    "arguments": [
+      "/usr/bin/gcc",
+      "-c",
+      "-g",
+      "-o",
+      "src/fvm.o",
+      "src/fvm.c"
+    ],
+    "directory": "/home/mistivia/repos/fvm",
+    "file": "/home/mistivia/repos/fvm/src/fvm.c",
+    "output": "/home/mistivia/repos/fvm/src/fvm.o"
+  },
+  {
+    "arguments": [
+      "/usr/bin/gcc",
+      "-c",
+      "-g",
+      "-o",
+      "src/main.o",
+      "src/main.c"
+    ],
+    "directory": "/home/mistivia/repos/fvm",
+    "file": "/home/mistivia/repos/fvm/src/main.c",
+    "output": "/home/mistivia/repos/fvm/src/main.o"
+  },
+  {
+    "arguments": [
+      "/usr/bin/gcc",
+      "-c",
+      "-Isrc/",
+      "-g",
+      "src/fvm.o",
+      "-o",
+      "tests/test_opcodes.bin",
+      "tests/test_opcodes.c"
+    ],
+    "directory": "/home/mistivia/repos/fvm",
+    "file": "/home/mistivia/repos/fvm/tests/test_opcodes.c",
+    "output": "/home/mistivia/repos/fvm/tests/test_opcodes.bin"
+  }
+]

+ 9 - 0
scripts/runall.sh

@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+for var in "$@"; do
+    ./$var
+    if [ $? -ne 0 ]; then
+        exit 255
+    fi
+done
+

+ 3 - 0
src/fvm.c

@@ -409,6 +409,9 @@ int fvm_execute(struct fvm *vm) {
       fvm_pushf(vm, (fvm_float_t)x);
       vm->pc++;
       break;
+    case FVM_OP_EXIT:
+      a = fvm_pop(vm);
+      return a;
     default:
       fprintf(stderr, "unknown opcode.\n");
       break; 

+ 2 - 0
src/fvm.h

@@ -90,6 +90,8 @@ enum fvm_op {
 
   FVM_OP_FTI,
   FVM_OP_ITF,
+
+  FVM_OP_EXIT,
 };
 
 int fvm_init(struct fvm *vm, void *code, int64_t stack_size);

+ 5 - 0
src/main.c

@@ -0,0 +1,5 @@
+#include "fvm.h"
+
+int main() {
+    return 0;
+}

+ 45 - 0
tests/test_opcodes.c

@@ -0,0 +1,45 @@
+#include <assert.h>
+#include <stdio.h>
+
+#include "fvm.h"
+
+char code[4096];
+char stack[4096];
+int code_cursor = 0;
+struct fvm vm;
+
+static void reset() {
+  vm.pc = (int64_t)code;
+  vm.sp = (int64_t)stack + 4095;
+  vm.bp = (int64_t)stack + 4095;
+  code_cursor = 0;
+}
+
+static void emit_op(enum fvm_op op) {
+  code[code_cursor] = (char)op;
+  code_cursor++;
+}
+static void emit_num(int64_t x) {
+  *(int64_t*)(code + code_cursor) = x;
+  code_cursor += 8;
+}
+
+void test_imm() {
+  printf("[TEST] imm\n");
+
+  reset();
+
+  emit_op(FVM_OP_IMM);
+  emit_num(3);
+  emit_op(FVM_OP_EXIT);
+
+  assert(fvm_execute(&vm) == 3);
+
+  printf("[PASS] imm\n");
+}
+
+int main()
+{
+  test_imm(); 
+  return 0;
+}