aboutsummaryrefslogtreecommitdiffstats
path: root/wasm/tests/setjmp_test.c
blob: f263dcfa3e7d4ddf60f979169c1730b6980c6433 (plain)
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
#include "wasm/setjmp.h"
#include "wasm/asyncify.h"
#include "wasm/machine.h"
#include <stdio.h>
#include <assert.h>

void check_direct(void) {
  rb_wasm_jmp_buf buf;
  int val;
  printf("[%s] start\n", __func__);
  printf("[%s] call rb_wasm_setjmp\n", __func__);
  if ((val = rb_wasm_setjmp(buf)) == 0) {
    printf("[%s] rb_wasm_setjmp(buf) == 0\n", __func__);
    printf("[%s] call rb_wasm_longjmp(buf, 2)\n", __func__);
    rb_wasm_longjmp(buf, 2);
    assert(0 && "unreachable after longjmp");
  } else {
    printf("[%s] rb_wasm_setjmp(buf) == %d\n", __func__, val);
    printf("[%s] sp = %p\n", __func__, rb_wasm_get_stack_pointer());
    assert(val == 2 && "unexpected returned value");
  }
  printf("[%s] end\n", __func__);
}

void jump_to_dst(rb_wasm_jmp_buf *dst) {
  rb_wasm_jmp_buf buf;
  printf("[%s] start sp = %p\n", __func__, rb_wasm_get_stack_pointer());
  printf("[%s] call rb_wasm_setjmp\n", __func__);
  if (rb_wasm_setjmp(buf) == 0) {
    printf("[%s] rb_wasm_setjmp(buf) == 0\n", __func__);
    printf("[%s] call rb_wasm_longjmp(dst, 4)\n", __func__);
    rb_wasm_longjmp(*dst, 4);
    assert(0 && "unreachable after longjmp");
  } else {
    assert(0 && "unreachable");
  }
  printf("[%s] end\n", __func__);
}

void check_jump_two_level(void) {
  rb_wasm_jmp_buf buf;
  int val;
  printf("[%s] start\n", __func__);
  printf("[%s] call rb_wasm_setjmp\n", __func__);
  if ((val = rb_wasm_setjmp(buf)) == 0) {
    printf("[%s] rb_wasm_setjmp(buf) == 0\n", __func__);
    printf("[%s] call jump_to_dst(&buf)\n", __func__);
    jump_to_dst(&buf);
    assert(0 && "unreachable after longjmp");
  } else {
    printf("[%s] rb_wasm_setjmp(buf) == %d\n", __func__, val);
    assert(val == 4 && "unexpected returned value");
  }
  printf("[%s] end\n", __func__);
}

void check_reuse(void) {
  rb_wasm_jmp_buf buf;
  int val;
  printf("[%s] start\n", __func__);
  printf("[%s] call rb_wasm_setjmp\n", __func__);
  if ((val = rb_wasm_setjmp(buf)) == 0) {
    printf("[%s] rb_wasm_setjmp(buf) == 0\n", __func__);
    printf("[%s] call rb_wasm_longjmp(buf, 2)\n", __func__);
    rb_wasm_longjmp(buf, 2);
    assert(0 && "unreachable after longjmp");
  } else {
    printf("[%s] rb_wasm_setjmp(buf) == %d\n", __func__, val);
    if (val < 5) {
      printf("[%s] re-call rb_wasm_longjmp(buf, %d)\n", __func__, val + 1);
      rb_wasm_longjmp(buf, val + 1);
    }
  }
  printf("[%s] end\n", __func__);
}

void check_stack_ptr(void) {
  static void *normal_sp;
  rb_wasm_jmp_buf buf;
  normal_sp = rb_wasm_get_stack_pointer();

  printf("[%s] start sp = %p\n", __func__, normal_sp);
  printf("[%s] call rb_wasm_setjmp\n", __func__);
  if (rb_wasm_setjmp(buf) == 0) {
    printf("[%s] call jump_to_dst(&buf)\n", __func__);
    jump_to_dst(&buf);
    assert(0 && "unreachable after longjmp");
  } else {
    printf("[%s] sp = %p\n", __func__, rb_wasm_get_stack_pointer());
    assert(rb_wasm_get_stack_pointer() == normal_sp);
  }
  printf("[%s] end\n", __func__);
}

// top level function should not be inlined to stop unwinding immediately after this function returns
__attribute__((noinline))
int start(int argc, char **argv) {
  check_direct();
  check_jump_two_level();
  check_reuse();
  check_stack_ptr();
  return 0;
}

int main(int argc, char **argv) {
  extern int rb_wasm_rt_start(int (main)(int argc, char **argv), int argc, char **argv);
  return rb_wasm_rt_start(start, argc, argv);
}