File: emscripten_trampoline_inner.c

package info (click to toggle)
python3.14 3.14.0~rc3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 126,936 kB
  • sloc: python: 746,633; ansic: 714,303; xml: 31,250; sh: 5,915; cpp: 4,063; makefile: 1,988; objc: 787; lisp: 502; javascript: 136; asm: 75; csh: 12
file content (38 lines) | stat: -rw-r--r-- 1,446 bytes parent folder | download
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
// This file must be compiled with -mgc to enable the extra wasm-gc
// instructions. It has to be compiled separately because not enough JS runtimes
// support wasm-gc yet. If the JS runtime does not support wasm-gc (or has buggy
// support like iOS), we will use the JS trampoline fallback.

// We can't import Python.h here because it is compiled/linked with -nostdlib.
// We don't need to know what's inside PyObject* anyways. We could just call it
// void* everywhere. There are two reasons to do this:
// 1. to improve readability
// 2. eventually when we are comfortable requiring wasm-gc, we can merge this
//    into emscripten_trampoline.c without worrying about it.
typedef void PyObject;

typedef PyObject* (*three_arg)(PyObject*, PyObject*, PyObject*);
typedef PyObject* (*two_arg)(PyObject*, PyObject*);
typedef PyObject* (*one_arg)(PyObject*);
typedef PyObject* (*zero_arg)(void);

#define TRY_RETURN_CALL(ty, args...) \
  if (__builtin_wasm_test_function_pointer_signature((ty)func)) { \
    return ((ty)func)(args); \
  }

__attribute__((export_name("trampoline_call"))) PyObject*
trampoline_call(int* success,
                void* func,
                PyObject* self,
                PyObject* args,
                PyObject* kw)
{
  *success = 1;
  TRY_RETURN_CALL(three_arg, self, args, kw);
  TRY_RETURN_CALL(two_arg, self, args);
  TRY_RETURN_CALL(one_arg, self);
  TRY_RETURN_CALL(zero_arg);
  *success = 0;
  return 0;
}