From c39c29bf4c52a85d7c83cc8b66ae45e265f9e078 Mon Sep 17 00:00:00 2001 From: Yong He Date: Mon, 28 Apr 2025 11:42:22 -0700 Subject: Add Slang Byte Code generation and interpreter. (#6896) * Add Slang Byte Code generation and interpreter. * Fix compile issues. * format code * More compile fix. * Fix clang issue. * Fix more clang issues. * Another clang fix. * Fix clang issues. * Fix another clang issue. * Fix wasm build. * Update building.md * Fix test-server. * Fix compile error. * Fix bug. --------- Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com> --- tests/byte-code/hello.slang | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/byte-code/hello.slang (limited to 'tests/byte-code/hello.slang') diff --git a/tests/byte-code/hello.slang b/tests/byte-code/hello.slang new file mode 100644 index 000000000..f3c13cbab --- /dev/null +++ b/tests/byte-code/hello.slang @@ -0,0 +1,17 @@ +//TEST:INTERPRET(filecheck=BC): -disasm +//TEST:INTERPRET(filecheck=CHECK): + +int main(int argc, NativeString* argv) +{ + printf("hello world\n"); + for (int i = 0; i < argc; ++i) + { + printf("%s\n", argv[i]); + } + return 100; +} + +// CHECK: hello world +// CHECK: {{.*}}hello.slang +// BC: func main +// BC: ret \ No newline at end of file -- cgit v1.2.3