2017-04-19 13:59:20 -07:00
|
|
|
const tests = @import("tests.zig");
|
|
|
|
|
2017-11-24 11:56:05 -08:00
|
|
|
pub fn addCases(cases: &tests.TranslateCContext) {
|
2017-04-19 13:59:20 -07:00
|
|
|
cases.addAllowWarnings("simple data types",
|
|
|
|
\\#include <stdint.h>
|
|
|
|
\\int foo(char a, unsigned char b, signed char c);
|
|
|
|
\\int foo(char a, unsigned char b, signed char c); // test a duplicate prototype
|
|
|
|
\\void bar(uint8_t a, uint16_t b, uint32_t c, uint64_t d);
|
|
|
|
\\void baz(int8_t a, int16_t b, int32_t c, int64_t d);
|
|
|
|
,
|
|
|
|
\\pub extern fn foo(a: u8, b: u8, c: i8) -> c_int;
|
|
|
|
,
|
|
|
|
\\pub extern fn bar(a: u8, b: u16, c: u32, d: u64);
|
|
|
|
,
|
|
|
|
\\pub extern fn baz(a: i8, b: i16, c: i32, d: i64);
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("noreturn attribute",
|
|
|
|
\\void foo(void) __attribute__((noreturn));
|
|
|
|
,
|
|
|
|
\\pub extern fn foo() -> noreturn;
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("simple function",
|
2017-09-02 01:11:23 -07:00
|
|
|
\\int abs(int a) {
|
|
|
|
\\ return a < 0 ? -a : a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn abs(a: c_int) -> c_int {
|
|
|
|
\\ return if (a < 0) -a else a;
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-04-19 13:59:20 -07:00
|
|
|
cases.add("enums",
|
|
|
|
\\enum Foo {
|
|
|
|
\\ FooA,
|
|
|
|
\\ FooB,
|
|
|
|
\\ Foo1,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const enum_Foo = extern enum {
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\ @"1",
|
|
|
|
\\};
|
|
|
|
,
|
2017-09-04 21:21:02 -07:00
|
|
|
\\pub const FooA = enum_Foo.A;
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
2017-09-04 21:21:02 -07:00
|
|
|
\\pub const FooB = enum_Foo.B;
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
2017-09-04 21:21:02 -07:00
|
|
|
\\pub const Foo1 = enum_Foo.@"1";
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
2017-09-02 01:11:23 -07:00
|
|
|
\\pub const Foo = enum_Foo;
|
2017-04-19 13:59:20 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("restrict -> noalias",
|
|
|
|
\\void foo(void *restrict bar, void *restrict);
|
|
|
|
,
|
|
|
|
\\pub extern fn foo(noalias bar: ?&c_void, noalias arg1: ?&c_void);
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("simple struct",
|
|
|
|
\\struct Foo {
|
|
|
|
\\ int x;
|
|
|
|
\\ char *y;
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\const struct_Foo = extern struct {
|
|
|
|
\\ x: c_int,
|
|
|
|
\\ y: ?&u8,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const Foo = struct_Foo;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("qualified struct and enum",
|
|
|
|
\\struct Foo {
|
|
|
|
\\ int x;
|
|
|
|
\\ int y;
|
|
|
|
\\};
|
|
|
|
\\enum Bar {
|
|
|
|
\\ BarA,
|
|
|
|
\\ BarB,
|
|
|
|
\\};
|
|
|
|
\\void func(struct Foo *a, enum Bar **b);
|
|
|
|
,
|
|
|
|
\\pub const struct_Foo = extern struct {
|
|
|
|
\\ x: c_int,
|
|
|
|
\\ y: c_int,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const enum_Bar = extern enum {
|
|
|
|
\\ A,
|
|
|
|
\\ B,
|
|
|
|
\\};
|
|
|
|
,
|
2017-09-04 21:21:02 -07:00
|
|
|
\\pub const BarA = enum_Bar.A;
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
2017-09-04 21:21:02 -07:00
|
|
|
\\pub const BarB = enum_Bar.B;
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
2017-09-20 21:54:08 -07:00
|
|
|
\\pub extern fn func(a: ?&struct_Foo, b: ?&(?&enum_Bar));
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
|
|
|
\\pub const Foo = struct_Foo;
|
|
|
|
,
|
|
|
|
\\pub const Bar = enum_Bar;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("constant size array",
|
|
|
|
\\void func(int array[20]);
|
|
|
|
,
|
|
|
|
\\pub extern fn func(array: ?&c_int);
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("self referential struct with function pointer",
|
|
|
|
\\struct Foo {
|
|
|
|
\\ void (*derp)(struct Foo *foo);
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const struct_Foo = extern struct {
|
|
|
|
\\ derp: ?extern fn(?&struct_Foo),
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const Foo = struct_Foo;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("struct prototype used in func",
|
|
|
|
\\struct Foo;
|
|
|
|
\\struct Foo *some_func(struct Foo *foo, int x);
|
|
|
|
,
|
|
|
|
\\pub const struct_Foo = @OpaqueType();
|
|
|
|
,
|
|
|
|
\\pub extern fn some_func(foo: ?&struct_Foo, x: c_int) -> ?&struct_Foo;
|
|
|
|
,
|
|
|
|
\\pub const Foo = struct_Foo;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("#define a char literal",
|
|
|
|
\\#define A_CHAR 'a'
|
|
|
|
,
|
|
|
|
\\pub const A_CHAR = 97;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("#define an unsigned integer literal",
|
|
|
|
\\#define CHANNEL_COUNT 24
|
|
|
|
,
|
|
|
|
\\pub const CHANNEL_COUNT = 24;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("#define referencing another #define",
|
|
|
|
\\#define THING2 THING1
|
|
|
|
\\#define THING1 1234
|
|
|
|
,
|
|
|
|
\\pub const THING1 = 1234;
|
|
|
|
,
|
|
|
|
\\pub const THING2 = THING1;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("variables",
|
|
|
|
\\extern int extern_var;
|
|
|
|
\\static const int int_var = 13;
|
|
|
|
,
|
|
|
|
\\pub extern var extern_var: c_int;
|
|
|
|
,
|
|
|
|
\\pub const int_var: c_int = 13;
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("circular struct definitions",
|
|
|
|
\\struct Bar;
|
|
|
|
\\
|
|
|
|
\\struct Foo {
|
|
|
|
\\ struct Bar *next;
|
|
|
|
\\};
|
|
|
|
\\
|
|
|
|
\\struct Bar {
|
|
|
|
\\ struct Foo *next;
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const struct_Bar = extern struct {
|
|
|
|
\\ next: ?&struct_Foo,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const struct_Foo = extern struct {
|
|
|
|
\\ next: ?&struct_Bar,
|
|
|
|
\\};
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("typedef void",
|
|
|
|
\\typedef void Foo;
|
|
|
|
\\Foo fun(Foo *a);
|
|
|
|
,
|
|
|
|
\\pub const Foo = c_void;
|
|
|
|
,
|
2017-09-04 22:22:26 -07:00
|
|
|
\\pub extern fn fun(a: ?&Foo) -> Foo;
|
2017-04-19 13:59:20 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("generate inline func for #define global extern fn",
|
|
|
|
\\extern void (*fn_ptr)(void);
|
|
|
|
\\#define foo fn_ptr
|
|
|
|
\\
|
|
|
|
\\extern char (*fn_ptr2)(int, float);
|
|
|
|
\\#define bar fn_ptr2
|
|
|
|
,
|
|
|
|
\\pub extern var fn_ptr: ?extern fn();
|
|
|
|
,
|
2017-09-04 21:45:09 -07:00
|
|
|
\\pub inline fn foo() {
|
2017-11-13 23:10:13 -08:00
|
|
|
\\ (??fn_ptr)()
|
2017-09-04 21:45:09 -07:00
|
|
|
\\}
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
|
|
|
\\pub extern var fn_ptr2: ?extern fn(c_int, f32) -> u8;
|
|
|
|
,
|
2017-09-04 21:45:09 -07:00
|
|
|
\\pub inline fn bar(arg0: c_int, arg1: f32) -> u8 {
|
2017-11-13 23:10:13 -08:00
|
|
|
\\ (??fn_ptr2)(arg0, arg1)
|
2017-09-04 21:45:09 -07:00
|
|
|
\\}
|
2017-04-19 13:59:20 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("#define string",
|
|
|
|
\\#define foo "a string"
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const foo = c"a string";
|
2017-04-19 13:59:20 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("__cdecl doesn't mess up function pointers",
|
|
|
|
\\void foo(void (__cdecl *fn_ptr)(void));
|
|
|
|
,
|
|
|
|
\\pub extern fn foo(fn_ptr: ?extern fn());
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("comment after integer literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020 /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
|
|
|
\\pub const SDL_INIT_VIDEO = 32;
|
|
|
|
);
|
|
|
|
|
2017-06-16 11:34:38 -07:00
|
|
|
cases.add("u integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020u /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_uint(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("l integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020l /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_long(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("ul integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020ul /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_ulong(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("lu integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020lu /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_ulong(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("ll integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020ll /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_longlong(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("ull integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020ull /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_ulonglong(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("llu integer suffix after hex literal",
|
|
|
|
\\#define SDL_INIT_VIDEO 0x00000020llu /**< SDL_INIT_VIDEO implies SDL_INIT_EVENTS */
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const SDL_INIT_VIDEO = c_ulonglong(32);
|
2017-06-16 11:34:38 -07:00
|
|
|
);
|
|
|
|
|
2017-04-19 13:59:20 -07:00
|
|
|
cases.add("zig keywords in C code",
|
|
|
|
\\struct comptime {
|
|
|
|
\\ int defer;
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const struct_comptime = extern struct {
|
|
|
|
\\ @"defer": c_int,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const @"comptime" = struct_comptime;
|
|
|
|
);
|
|
|
|
|
2017-09-10 13:35:56 -07:00
|
|
|
cases.add("macro defines string literal with hex",
|
|
|
|
\\#define FOO "aoeu\xab derp"
|
|
|
|
\\#define FOO2 "aoeu\x0007a derp"
|
|
|
|
\\#define FOO_CHAR '\xfF'
|
|
|
|
,
|
|
|
|
\\pub const FOO = c"aoeu\xab derp";
|
|
|
|
,
|
|
|
|
\\pub const FOO2 = c"aoeuz derp";
|
|
|
|
,
|
|
|
|
\\pub const FOO_CHAR = 255;
|
|
|
|
);
|
|
|
|
|
2017-04-19 13:59:20 -07:00
|
|
|
cases.add("macro defines string literal with octal",
|
|
|
|
\\#define FOO "aoeu\023 derp"
|
|
|
|
\\#define FOO2 "aoeu\0234 derp"
|
|
|
|
\\#define FOO_CHAR '\077'
|
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const FOO = c"aoeu\x13 derp";
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
2017-09-04 21:52:05 -07:00
|
|
|
\\pub const FOO2 = c"aoeu\x134 derp";
|
2017-04-19 13:59:20 -07:00
|
|
|
,
|
|
|
|
\\pub const FOO_CHAR = 63;
|
|
|
|
);
|
2017-09-09 21:20:09 -07:00
|
|
|
|
|
|
|
cases.add("macro with parens around negative number",
|
|
|
|
\\#define LUA_GLOBALSINDEX (-10002)
|
|
|
|
,
|
|
|
|
\\pub const LUA_GLOBALSINDEX = -10002;
|
|
|
|
);
|
2017-09-20 18:16:26 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("post increment",
|
2017-09-20 21:27:13 -07:00
|
|
|
\\unsigned foo1(unsigned a) {
|
|
|
|
\\ a++;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
\\int foo2(int a) {
|
|
|
|
\\ a++;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo1(_arg_a: c_uint) -> c_uint {
|
|
|
|
\\ var a = _arg_a;
|
|
|
|
\\ a +%= 1;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
\\export fn foo2(_arg_a: c_int) -> c_int {
|
|
|
|
\\ var a = _arg_a;
|
|
|
|
\\ a += 1;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("shift right assign",
|
2017-09-20 18:16:26 -07:00
|
|
|
\\int log2(unsigned a) {
|
|
|
|
\\ int i = 0;
|
|
|
|
\\ while (a > 0) {
|
2017-09-20 19:12:57 -07:00
|
|
|
\\ a >>= 1;
|
2017-09-20 18:16:26 -07:00
|
|
|
\\ }
|
|
|
|
\\ return i;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn log2(_arg_a: c_uint) -> c_int {
|
|
|
|
\\ var a = _arg_a;
|
|
|
|
\\ var i: c_int = 0;
|
|
|
|
\\ while (a > c_uint(0)) {
|
2017-09-20 19:12:57 -07:00
|
|
|
\\ a >>= @import("std").math.Log2Int(c_uint)(1);
|
2017-09-20 18:16:26 -07:00
|
|
|
\\ };
|
|
|
|
\\ return i;
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 19:44:24 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("if statement",
|
2017-09-20 21:27:13 -07:00
|
|
|
\\int max(int a, int b) {
|
|
|
|
\\ if (a < b)
|
|
|
|
\\ return b;
|
|
|
|
\\
|
|
|
|
\\ if (a < b)
|
|
|
|
\\ return b;
|
|
|
|
\\ else
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn max(a: c_int, b: c_int) -> c_int {
|
|
|
|
\\ if (a < b) return b;
|
|
|
|
\\ if (a < b) return b else return a;
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("==, !=",
|
2017-09-20 21:47:43 -07:00
|
|
|
\\int max(int a, int b) {
|
|
|
|
\\ if (a == b)
|
|
|
|
\\ return a;
|
|
|
|
\\ if (a != b)
|
|
|
|
\\ return b;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn max(a: c_int, b: c_int) -> c_int {
|
|
|
|
\\ if (a == b) return a;
|
|
|
|
\\ if (a != b) return b;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("add, sub, mul, div, rem",
|
2017-09-20 22:36:33 -07:00
|
|
|
\\int s(int a, int b) {
|
|
|
|
\\ int c;
|
|
|
|
\\ c = a + b;
|
|
|
|
\\ c = a - b;
|
|
|
|
\\ c = a * b;
|
|
|
|
\\ c = a / b;
|
|
|
|
\\ c = a % b;
|
|
|
|
\\}
|
|
|
|
\\unsigned u(unsigned a, unsigned b) {
|
|
|
|
\\ unsigned c;
|
|
|
|
\\ c = a + b;
|
|
|
|
\\ c = a - b;
|
|
|
|
\\ c = a * b;
|
|
|
|
\\ c = a / b;
|
|
|
|
\\ c = a % b;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn s(a: c_int, b: c_int) -> c_int {
|
|
|
|
\\ var c: c_int;
|
|
|
|
\\ c = (a + b);
|
|
|
|
\\ c = (a - b);
|
|
|
|
\\ c = (a * b);
|
|
|
|
\\ c = @divTrunc(a, b);
|
|
|
|
\\ c = @rem(a, b);
|
|
|
|
\\}
|
|
|
|
\\export fn u(a: c_uint, b: c_uint) -> c_uint {
|
|
|
|
\\ var c: c_uint;
|
|
|
|
\\ c = (a +% b);
|
|
|
|
\\ c = (a -% b);
|
|
|
|
\\ c = (a *% b);
|
|
|
|
\\ c = (a / b);
|
|
|
|
\\ c = (a % b);
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("bitwise binary operators",
|
2017-09-20 22:04:51 -07:00
|
|
|
\\int max(int a, int b) {
|
|
|
|
\\ return (a & b) ^ (a | b);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn max(a: c_int, b: c_int) -> c_int {
|
|
|
|
\\ return (a & b) ^ (a | b);
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("logical and, logical or",
|
2017-09-20 21:37:56 -07:00
|
|
|
\\int max(int a, int b) {
|
|
|
|
\\ if (a < b || a == b)
|
|
|
|
\\ return b;
|
|
|
|
\\ if (a >= b && a == b)
|
|
|
|
\\ return a;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn max(a: c_int, b: c_int) -> c_int {
|
|
|
|
\\ if ((a < b) or (a == b)) return b;
|
|
|
|
\\ if ((a >= b) and (a == b)) return a;
|
|
|
|
\\ return a;
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("assign",
|
2017-09-20 22:14:39 -07:00
|
|
|
\\int max(int a) {
|
|
|
|
\\ int tmp;
|
|
|
|
\\ tmp = a;
|
2017-09-20 22:41:07 -07:00
|
|
|
\\ a = tmp;
|
2017-09-20 22:14:39 -07:00
|
|
|
\\}
|
|
|
|
,
|
2017-09-20 22:41:07 -07:00
|
|
|
\\export fn max(_arg_a: c_int) -> c_int {
|
|
|
|
\\ var a = _arg_a;
|
2017-09-20 22:14:39 -07:00
|
|
|
\\ var tmp: c_int;
|
|
|
|
\\ tmp = a;
|
2017-09-20 22:41:07 -07:00
|
|
|
\\ a = tmp;
|
2017-09-20 22:14:39 -07:00
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("chaining assign",
|
2017-09-20 23:45:46 -07:00
|
|
|
\\void max(int a) {
|
|
|
|
\\ int b, c;
|
|
|
|
\\ c = b = a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn max(a: c_int) {
|
|
|
|
\\ var b: c_int;
|
|
|
|
\\ var c: c_int;
|
|
|
|
\\ c = {
|
|
|
|
\\ const _tmp = a;
|
|
|
|
\\ b = _tmp;
|
2017-09-20 23:49:46 -07:00
|
|
|
\\ _tmp
|
2017-09-20 23:45:46 -07:00
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("shift right assign with a fixed size type",
|
2017-09-20 19:44:24 -07:00
|
|
|
\\#include <stdint.h>
|
|
|
|
\\int log2(uint32_t a) {
|
|
|
|
\\ int i = 0;
|
|
|
|
\\ while (a > 0) {
|
|
|
|
\\ a >>= 1;
|
|
|
|
\\ }
|
|
|
|
\\ return i;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn log2(_arg_a: u32) -> c_int {
|
|
|
|
\\ var a = _arg_a;
|
|
|
|
\\ var i: c_int = 0;
|
|
|
|
\\ while (a > c_uint(0)) {
|
|
|
|
\\ a >>= u5(1);
|
|
|
|
\\ };
|
|
|
|
\\ return i;
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 20:16:44 -07:00
|
|
|
|
|
|
|
cases.add("anonymous enum",
|
|
|
|
\\enum {
|
|
|
|
\\ One,
|
|
|
|
\\ Two,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const One = 0;
|
|
|
|
\\pub const Two = 1;
|
|
|
|
);
|
2017-09-20 21:02:18 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("function call",
|
2017-09-20 21:02:18 -07:00
|
|
|
\\static void bar(void) { }
|
|
|
|
\\void foo(void) { bar(); }
|
|
|
|
,
|
|
|
|
\\pub fn bar() {}
|
|
|
|
\\export fn foo() {
|
|
|
|
\\ bar();
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 21:54:08 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("field access expression",
|
2017-09-20 21:54:08 -07:00
|
|
|
\\struct Foo {
|
|
|
|
\\ int field;
|
|
|
|
\\};
|
|
|
|
\\int read_field(struct Foo *foo) {
|
|
|
|
\\ return foo->field;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub const struct_Foo = extern struct {
|
|
|
|
\\ field: c_int,
|
|
|
|
\\};
|
|
|
|
\\export fn read_field(foo: ?&struct_Foo) -> c_int {
|
|
|
|
\\ return (??foo).field;
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 22:04:43 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("null statements",
|
2017-09-20 22:04:43 -07:00
|
|
|
\\void foo(void) {
|
|
|
|
\\ ;;;;;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {}
|
|
|
|
);
|
2017-09-20 22:22:50 -07:00
|
|
|
|
|
|
|
cases.add("undefined array global",
|
|
|
|
\\int array[100];
|
|
|
|
,
|
|
|
|
\\pub var array: [100]c_int = undefined;
|
|
|
|
);
|
2017-09-20 22:38:16 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("array access",
|
2017-09-20 22:38:16 -07:00
|
|
|
\\int array[100];
|
|
|
|
\\int foo(int index) {
|
|
|
|
\\ return array[index];
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub var array: [100]c_int = undefined;
|
|
|
|
\\export fn foo(index: c_int) -> c_int {
|
|
|
|
\\ return array[index];
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-09-20 22:54:51 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("c style cast",
|
2017-09-20 22:54:51 -07:00
|
|
|
\\int float_to_int(float a) {
|
|
|
|
\\ return (int)a;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn float_to_int(a: f32) -> c_int {
|
|
|
|
\\ return c_int(a);
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 23:31:52 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("implicit cast to void *",
|
2017-09-20 23:31:52 -07:00
|
|
|
\\void *foo(unsigned short *x) {
|
|
|
|
\\ return x;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo(x: ?&c_ushort) -> ?&c_void {
|
|
|
|
\\ return @ptrCast(?&c_void, x);
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 23:37:42 -07:00
|
|
|
|
2017-10-01 18:42:33 -07:00
|
|
|
cases.addC("sizeof",
|
2017-09-20 23:37:42 -07:00
|
|
|
\\#include <stddef.h>
|
|
|
|
\\size_t size_of(void) {
|
|
|
|
\\ return sizeof(int);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn size_of() -> usize {
|
|
|
|
\\ return @sizeOf(c_int);
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-13 18:39:46 -08:00
|
|
|
|
|
|
|
cases.addC("null pointer implicit cast",
|
|
|
|
\\int* foo(void) {
|
|
|
|
\\ return 0;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() -> ?&c_int {
|
|
|
|
\\ return null;
|
|
|
|
\\}
|
|
|
|
);
|
2017-09-20 23:31:52 -07:00
|
|
|
|
2017-11-13 18:59:32 -08:00
|
|
|
cases.addC("comma operator",
|
|
|
|
\\int foo(void) {
|
|
|
|
\\ return 1, 2;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() -> c_int {
|
|
|
|
\\ return {
|
|
|
|
\\ _ = 1;
|
|
|
|
\\ 2
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-13 19:33:41 -08:00
|
|
|
|
2017-11-13 19:49:53 -08:00
|
|
|
cases.addC("bitshift",
|
|
|
|
\\int foo(void) {
|
|
|
|
\\ return (1 << 2) >> 1;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() -> c_int {
|
|
|
|
\\ return (1 << @import("std").math.Log2Int(c_int)(2)) >> @import("std").math.Log2Int(c_int)(1);
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-11-13 20:37:30 -08:00
|
|
|
cases.addC("compound assignment operators",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ int a = 0;
|
|
|
|
\\ a += (a += 1);
|
|
|
|
\\ a -= (a -= 1);
|
|
|
|
\\ a *= (a *= 1);
|
|
|
|
\\ a &= (a &= 1);
|
|
|
|
\\ a |= (a |= 1);
|
|
|
|
\\ a ^= (a ^= 1);
|
|
|
|
\\ a >>= (a >>= 1);
|
|
|
|
\\ a <<= (a <<= 1);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {
|
|
|
|
\\ var a: c_int = 0;
|
|
|
|
\\ a += {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) + 1);
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a -= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) - 1);
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a *= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) * 1);
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a &= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) & 1);
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a |= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) | 1);
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a ^= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) ^ 1);
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a >>= @import("std").math.Log2Int(c_int)({
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = c_int(c_int(*_ref) >> @import("std").math.Log2Int(c_int)(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ });
|
|
|
|
\\ a <<= @import("std").math.Log2Int(c_int)({
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = c_int(c_int(*_ref) << @import("std").math.Log2Int(c_int)(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ });
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-13 21:19:51 -08:00
|
|
|
|
|
|
|
cases.addC("compound assignment operators unsigned",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ unsigned a = 0;
|
|
|
|
\\ a += (a += 1);
|
|
|
|
\\ a -= (a -= 1);
|
|
|
|
\\ a *= (a *= 1);
|
|
|
|
\\ a &= (a &= 1);
|
|
|
|
\\ a |= (a |= 1);
|
|
|
|
\\ a ^= (a ^= 1);
|
|
|
|
\\ a >>= (a >>= 1);
|
|
|
|
\\ a <<= (a <<= 1);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {
|
|
|
|
\\ var a: c_uint = c_uint(0);
|
|
|
|
\\ a +%= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) +% c_uint(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a -%= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) -% c_uint(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a *%= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) *% c_uint(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a &= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) & c_uint(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a |= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) | c_uint(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a ^= {
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = ((*_ref) ^ c_uint(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ a >>= @import("std").math.Log2Int(c_uint)({
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = c_uint(c_uint(*_ref) >> @import("std").math.Log2Int(c_uint)(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ });
|
|
|
|
\\ a <<= @import("std").math.Log2Int(c_uint)({
|
|
|
|
\\ const _ref = &a;
|
|
|
|
\\ (*_ref) = c_uint(c_uint(*_ref) << @import("std").math.Log2Int(c_uint)(1));
|
|
|
|
\\ *_ref
|
|
|
|
\\ });
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-11-13 19:33:41 -08:00
|
|
|
cases.addC("duplicate typedef",
|
|
|
|
\\typedef long foo;
|
|
|
|
\\typedef int bar;
|
|
|
|
\\typedef long foo;
|
|
|
|
\\typedef int baz;
|
|
|
|
,
|
|
|
|
\\pub const foo = c_long;
|
|
|
|
\\pub const bar = c_int;
|
|
|
|
\\pub const baz = c_int;
|
|
|
|
);
|
2017-11-13 21:19:51 -08:00
|
|
|
|
|
|
|
cases.addC("post increment/decrement",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ int i = 0;
|
|
|
|
\\ unsigned u = 0;
|
|
|
|
\\ i++;
|
|
|
|
\\ i--;
|
|
|
|
\\ u++;
|
|
|
|
\\ u--;
|
|
|
|
\\ i = i++;
|
|
|
|
\\ i = i--;
|
|
|
|
\\ u = u++;
|
|
|
|
\\ u = u--;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {
|
|
|
|
\\ var i: c_int = 0;
|
|
|
|
\\ var u: c_uint = c_uint(0);
|
|
|
|
\\ i += 1;
|
|
|
|
\\ i -= 1;
|
|
|
|
\\ u +%= 1;
|
|
|
|
\\ u -%= 1;
|
|
|
|
\\ i = {
|
|
|
|
\\ const _ref = &i;
|
|
|
|
\\ const _tmp = *_ref;
|
|
|
|
\\ (*_ref) += 1;
|
|
|
|
\\ _tmp
|
|
|
|
\\ };
|
|
|
|
\\ i = {
|
|
|
|
\\ const _ref = &i;
|
|
|
|
\\ const _tmp = *_ref;
|
|
|
|
\\ (*_ref) -= 1;
|
|
|
|
\\ _tmp
|
|
|
|
\\ };
|
|
|
|
\\ u = {
|
|
|
|
\\ const _ref = &u;
|
|
|
|
\\ const _tmp = *_ref;
|
|
|
|
\\ (*_ref) +%= 1;
|
|
|
|
\\ _tmp
|
|
|
|
\\ };
|
|
|
|
\\ u = {
|
|
|
|
\\ const _ref = &u;
|
|
|
|
\\ const _tmp = *_ref;
|
|
|
|
\\ (*_ref) -%= 1;
|
|
|
|
\\ _tmp
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-13 21:56:20 -08:00
|
|
|
|
2017-11-24 13:36:39 -08:00
|
|
|
cases.addC("pre increment/decrement",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ int i = 0;
|
|
|
|
\\ unsigned u = 0;
|
|
|
|
\\ ++i;
|
|
|
|
\\ --i;
|
|
|
|
\\ ++u;
|
|
|
|
\\ --u;
|
|
|
|
\\ i = ++i;
|
|
|
|
\\ i = --i;
|
|
|
|
\\ u = ++u;
|
|
|
|
\\ u = --u;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {
|
|
|
|
\\ var i: c_int = 0;
|
|
|
|
\\ var u: c_uint = c_uint(0);
|
|
|
|
\\ i += 1;
|
|
|
|
\\ i -= 1;
|
|
|
|
\\ u +%= 1;
|
|
|
|
\\ u -%= 1;
|
|
|
|
\\ i = {
|
|
|
|
\\ const _ref = &i;
|
|
|
|
\\ (*_ref) += 1;
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ i = {
|
|
|
|
\\ const _ref = &i;
|
|
|
|
\\ (*_ref) -= 1;
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ u = {
|
|
|
|
\\ const _ref = &u;
|
|
|
|
\\ (*_ref) +%= 1;
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\ u = {
|
|
|
|
\\ const _ref = &u;
|
|
|
|
\\ (*_ref) -%= 1;
|
|
|
|
\\ *_ref
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-11-13 21:56:20 -08:00
|
|
|
cases.addC("do loop",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ int a = 2;
|
|
|
|
\\ do {
|
|
|
|
\\ a--;
|
|
|
|
\\ } while (a != 0);
|
|
|
|
\\
|
|
|
|
\\ int b = 2;
|
|
|
|
\\ do
|
|
|
|
\\ b--;
|
|
|
|
\\ while (b != 0);
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {
|
|
|
|
\\ var a: c_int = 2;
|
|
|
|
\\ while (true) {
|
|
|
|
\\ a -= 1;
|
|
|
|
\\ if (!(a != 0)) break;
|
|
|
|
\\ };
|
|
|
|
\\ var b: c_int = 2;
|
|
|
|
\\ while (true) {
|
|
|
|
\\ b -= 1;
|
|
|
|
\\ if (!(b != 0)) break;
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-13 23:10:13 -08:00
|
|
|
|
|
|
|
cases.addC("deref function pointer",
|
|
|
|
\\void foo(void) {}
|
|
|
|
\\void bar(void) {
|
|
|
|
\\ void(*f)(void) = foo;
|
|
|
|
\\ f();
|
|
|
|
\\ (*(f))();
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo() {}
|
|
|
|
\\export fn bar() {
|
|
|
|
\\ var f: ?extern fn() = foo;
|
|
|
|
\\ (??f)();
|
|
|
|
\\ (??f)();
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.addC("normal deref",
|
|
|
|
\\void foo(int *x) {
|
|
|
|
\\ *x = 1;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\export fn foo(x: ?&c_int) {
|
|
|
|
\\ (*(??x)) = 1;
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-16 20:54:33 -08:00
|
|
|
|
|
|
|
cases.add("simple union",
|
|
|
|
\\union Foo {
|
|
|
|
\\ int x;
|
|
|
|
\\ double y;
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const union_Foo = extern union {
|
|
|
|
\\ x: c_int,
|
|
|
|
\\ y: f64,
|
|
|
|
\\};
|
|
|
|
,
|
|
|
|
\\pub const Foo = union_Foo;
|
|
|
|
);
|
|
|
|
|
2017-11-17 09:11:03 -08:00
|
|
|
cases.add("address of operator",
|
|
|
|
\\int foo(void) {
|
|
|
|
\\ int x = 1234;
|
|
|
|
\\ int *ptr = &x;
|
|
|
|
\\ return *ptr;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() -> c_int {
|
|
|
|
\\ var x: c_int = 1234;
|
|
|
|
\\ var ptr: ?&c_int = &x;
|
|
|
|
\\ return *(??ptr);
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-24 16:26:05 -08:00
|
|
|
|
|
|
|
cases.add("string literal",
|
|
|
|
\\const char *foo(void) {
|
|
|
|
\\ return "bar";
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() -> ?&const u8 {
|
|
|
|
\\ return c"bar";
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-24 21:25:47 -08:00
|
|
|
|
|
|
|
cases.add("return void",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ return;
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() {
|
|
|
|
\\ return;
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-24 21:57:48 -08:00
|
|
|
|
|
|
|
cases.add("for loop",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ for (int i = 0; i < 10; i += 1) { }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() {
|
|
|
|
\\ {
|
|
|
|
\\ var i: c_int = 0;
|
|
|
|
\\ while (i < 10) : (i += 1) {};
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-25 08:56:17 -08:00
|
|
|
|
2017-11-25 17:34:05 -08:00
|
|
|
cases.add("empty for loop",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ for (;;) { }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() {
|
|
|
|
\\ while (true) {};
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
2017-11-25 08:56:17 -08:00
|
|
|
cases.add("break statement",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ for (;;) {
|
|
|
|
\\ break;
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() {
|
|
|
|
\\ while (true) {
|
|
|
|
\\ break;
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
|
|
|
|
|
|
|
cases.add("continue statement",
|
|
|
|
\\void foo(void) {
|
|
|
|
\\ for (;;) {
|
|
|
|
\\ continue;
|
|
|
|
\\ }
|
|
|
|
\\}
|
|
|
|
,
|
|
|
|
\\pub fn foo() {
|
|
|
|
\\ while (true) {
|
|
|
|
\\ continue;
|
|
|
|
\\ };
|
|
|
|
\\}
|
|
|
|
);
|
2017-11-25 17:34:05 -08:00
|
|
|
|
|
|
|
//cases.add("switch statement",
|
|
|
|
// \\int foo(int x) {
|
|
|
|
// \\ switch (x) {
|
|
|
|
// \\ case 1:
|
|
|
|
// \\ x += 1;
|
|
|
|
// \\ case 2:
|
|
|
|
// \\ break;
|
|
|
|
// \\ case 3:
|
|
|
|
// \\ case 4:
|
|
|
|
// \\ return x + 1;
|
|
|
|
// \\ default:
|
|
|
|
// \\ return 10;
|
|
|
|
// \\ }
|
|
|
|
// \\ return x + 13;
|
|
|
|
// \\}
|
|
|
|
//,
|
|
|
|
// \\fn foo(_x: i32) -> i32 {
|
|
|
|
// \\ var x = _x;
|
|
|
|
// \\ switch (x) {
|
|
|
|
// \\ 1 => goto switch_case_1;
|
|
|
|
// \\ 2 => goto switch_case_2;
|
|
|
|
// \\ 3 => goto switch_case_3;
|
|
|
|
// \\ 4 => goto switch_case_4;
|
|
|
|
// \\ else => goto switch_default;
|
|
|
|
// \\ }
|
|
|
|
// \\switch_case_1:
|
|
|
|
// \\ x += 1;
|
|
|
|
// \\ goto switch_case_2;
|
|
|
|
// \\switch_case_2:
|
|
|
|
// \\ goto switch_end;
|
|
|
|
// \\switch_case_3:
|
|
|
|
// \\ goto switch_case_4;
|
|
|
|
// \\switch_case_4:
|
|
|
|
// \\ return x += 1;
|
|
|
|
// \\switch_default:
|
|
|
|
// \\ return 10;
|
|
|
|
// \\switch_end:
|
|
|
|
// \\ return x + 13;
|
|
|
|
// \\}
|
|
|
|
//);
|
2017-11-13 18:59:32 -08:00
|
|
|
}
|
2017-09-20 23:31:52 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
//float *ptrcast(int *a) {
|
|
|
|
// return (float *)a;
|
|
|
|
//}
|
|
|
|
// should translate to
|
|
|
|
// fn ptrcast(a: ?&c_int) -> ?&f32 {
|
|
|
|
// return @ptrCast(?&f32, a);
|
|
|
|
// }
|