FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Python/emscripten_trampoline_inner.c at main · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Python
/
emscripten_trampoline_inner.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (34 loc) · 1.41 KB
Breadcrumbs
cpython
/
Python
/
emscripten_trampoline_inner.c
Copy path
File metadata and controls
38 lines (34 loc) · 1.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
;
}
Back
|
FazBrowse Home
|
New Git URL