forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_asyncify_lists.cpp
More file actions
73 lines (64 loc) · 1.28 KB
/
test_asyncify_lists.cpp
File metadata and controls
73 lines (64 loc) · 1.28 KB
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
#include <assert.h>
#include <stdio.h>
#include <emscripten.h>
volatile int x;
int bar();
// Foo is a function that needs asyncify support.
__attribute__((noinline))
int foo(int a = 0, double b = 0) {
if (x == 1337) return bar(); // don't inline me
assert(a == b);
emscripten_sleep(1);
return 1;
}
// Bar does not.
__attribute__((noinline))
int bar() {
if (x == 1337) return foo(); // don't inline me
return 2;
}
// C++ names
struct Structy {
__attribute__((noinline))
int funcy() {
if (x == 1337) return funcy(); // don't inline me
emscripten_sleep(1);
return 3;
}
};
// Baz does, because it calls foo.
__attribute__((noinline))
void baz() {
if (x == 1337) {
// don't inline me
foo();
bar();
baz();
}
puts("baz");
printf("foo: %d\n", foo());
printf("bar: %d\n", bar());
printf("c++: %d\n", Structy().funcy());
}
// Ditto, with extern C
__attribute__((noinline))
extern "C" void c_baz() {
if (x == 1337) {
// don't inline me
foo();
bar();
baz();
}
puts("c_baz");
printf("foo: %d\n", foo());
printf("bar: %d\n", bar());
printf("c++: %d\n", Structy().funcy());
}
int main() {
baz();
EM_ASM({
Module.counter = (Module.counter || 0) + 1;
if (Module.counter > 10) throw "infinite loop?";
});
c_baz();
}