FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Python/emscripten_trampoline.c at main · https-github-com-nzysoft/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
https-github-com-nzysoft
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Python
/
emscripten_trampoline.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
82 lines (70 loc) · 2.24 KB
Breadcrumbs
cpython
/
Python
/
emscripten_trampoline.c
Copy path
File metadata and controls
82 lines (70 loc) · 2.24 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
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
#if
defined(
PY_CALL_TRAMPOLINE
)
#include
<emscripten.h>
// EM_JS
#include
<Python.h>
#include
"pycore_runtime.h"
// _PyRuntime
/**
* This is the GoogleChromeLabs approved way to feature detect type-reflection:
* https://github.com/GoogleChromeLabs/wasm-feature-detect/blob/main/src/detectors/type-reflection/index.js
*/
EM_JS
(
int
,
_PyEM_detect_type_reflection
, (), {
return
"Function"
in
WebAssembly
;
});
void
_Py_EmscriptenTrampoline_Init
(
_PyRuntimeState
*
runtime
)
{
runtime
->
wasm_type_reflection_available
=
_PyEM_detect_type_reflection
();
}
/**
* Backwards compatible trampoline works with all JS runtimes
*/
EM_JS
(
PyObject
*
,
_PyEM_TrampolineCall_JavaScript
, (
PyCFunctionWithKeywords
func
,
PyObject
*
arg1
,
PyObject
*
arg2
,
PyObject
*
arg3
),
{
return
wasmTable
.
get
(
func
)(
arg1
,
arg2
,
arg3
);
}
);
/**
* In runtimes with WebAssembly type reflection, count the number of parameters
* and cast to the appropriate signature
*/
EM_JS
(
int
,
_PyEM_CountFuncParams
, (
PyCFunctionWithKeywords
func
),
{
let
n
=
_PyEM_CountFuncParams
.
cache
.
get
(
func
);
if
(
n
!=
=
undefined
) {
return
n
;
}
n
=
WebAssembly
.
Function
.
type
(
wasmTable
.
get
(
func
)).
parameters
.
length
;
_PyEM_CountFuncParams
.
cache
.
set
(
func
,
n
);
return
n
;
}
_PyEM_CountFuncParams
.
cache
=
new
Map
();
)
typedef
PyObject
*
(
*
zero_arg
)(
void
);
typedef
PyObject
*
(
*
one_arg
)(
PyObject
*
);
typedef
PyObject
*
(
*
two_arg
)(
PyObject
*
,
PyObject
*
);
typedef
PyObject
*
(
*
three_arg
)(
PyObject
*
,
PyObject
*
,
PyObject
*
);
PyObject
*
_PyEM_TrampolineCall_Reflection
(
PyCFunctionWithKeywords
func
,
PyObject
*
self
,
PyObject
*
args
,
PyObject
*
kw
)
{
switch
(
_PyEM_CountFuncParams
(
func
)) {
case
0
:
return
((
zero_arg
)
func
)();
case
1
:
return
((
one_arg
)
func
)(
self
);
case
2
:
return
((
two_arg
)
func
)(
self
,
args
);
case
3
:
return
((
three_arg
)
func
)(
self
,
args
,
kw
);
default
:
PyErr_SetString
(
PyExc_SystemError
,
"Handler takes too many arguments"
);
return
NULL
;
}
}
#endif
Back
|
FazBrowse Home
|
New Git URL