File: test_asyncify_lists.cpp

package info (click to toggle)
emscripten 2.0.12~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108,440 kB
  • sloc: ansic: 510,324; cpp: 384,763; javascript: 84,341; python: 51,362; sh: 50,019; pascal: 4,159; makefile: 3,409; asm: 2,150; lisp: 1,869; ruby: 488; cs: 142
file content (73 lines) | stat: -rw-r--r-- 1,309 bytes parent folder | download | duplicates (4)
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
#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();
}