Home
last modified time | relevance | path

Searched refs:WasmExportedFunction (Results 1 - 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/runtime/
H A Druntime-test-wasm.cc459 CHECK(WasmExportedFunction::IsWasmExportedFunction(*function)); in RUNTIME_FUNCTION()
460 Handle<WasmExportedFunction> exp_fun = in RUNTIME_FUNCTION()
461 Handle<WasmExportedFunction>::cast(function); in RUNTIME_FUNCTION()
474 CHECK(WasmExportedFunction::IsWasmExportedFunction(*function)); in RUNTIME_FUNCTION()
475 Handle<WasmExportedFunction> exp_fun = in RUNTIME_FUNCTION()
476 Handle<WasmExportedFunction>::cast(function); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects.cc353 if (WasmExportedFunction::IsWasmExportedFunction(*external)) { in SetFunctionTableEntry()
354 auto exported_function = Handle<WasmExportedFunction>::cast(external); in SetFunctionTableEntry()
638 // The {WasmExportedFunction} will be created lazily. in SetFunctionTablePlaceholder()
666 if (WasmExportedFunction::IsWasmExportedFunction(*element)) { in GetFunctionTableEntry()
667 auto target_func = Handle<WasmExportedFunction>::cast(element); in GetFunctionTableEntry()
1418 auto external = Handle<WasmExternalFunction>::cast(WasmExportedFunction::New( in GetOrCreateWasmInternalFunction()
1879 bool WasmExportedFunction::IsWasmExportedFunction(Object object) { in IsWasmExportedFunction()
1932 WasmInstanceObject WasmExportedFunction::instance() { in instance()
1936 int WasmExportedFunction::function_index() { in function_index()
1940 Handle<WasmExportedFunction> WasmExportedFunctio
[all...]
H A Dwasm-objects-inl.h277 // WasmExportedFunction
278 WasmExportedFunction::WasmExportedFunction(Address ptr) : JSFunction(ptr) { in WasmExportedFunction() function in v8::internal::WasmExportedFunction
281 CAST_ACCESSOR(WasmExportedFunction)
H A Dwasm-objects.h49 class WasmExportedFunction;
591 class WasmExportedFunction : public JSFunction { class
598 V8_EXPORT_PRIVATE static Handle<WasmExportedFunction> New(
613 DECL_CAST(WasmExportedFunction)
614 OBJECT_CONSTRUCTORS(WasmExportedFunction, JSFunction);
661 // - {WasmExportedFunction}: A proper Wasm function exported from a module.
708 // Information for a WasmExportedFunction which is referenced as the function
H A Dc-api.cc1274 if (i::WasmExportedFunction::IsWasmExportedFunction(*obj)) {
1370 // TODO(jkummerow): Generalize for WasmExportedFunction and WasmCapiFunction.
1477 DCHECK(i::WasmExportedFunction::IsWasmExportedFunction(*func));
1478 i::Handle<i::WasmExportedFunction> function =
1479 i::Handle<i::WasmExportedFunction>::cast(func);
1489 DCHECK(i::WasmExportedFunction::IsWasmExportedFunction(*func));
1490 i::Handle<i::WasmExportedFunction> function =
1491 i::Handle<i::WasmExportedFunction>::cast(func);
1502 DCHECK(i::WasmExportedFunction::IsWasmExportedFunction(*func));
1503 i::Handle<i::WasmExportedFunction> functio
[all...]
H A Dmodule-compiler.cc1300 WasmExportedFunction::IsWasmExportedFunction( in Process()
1303 // external function (WasmExportedFunction). Mark the target for inlining in Process()
1305 WasmExportedFunction target = WasmExportedFunction::cast( in Process()
1337 // - it is not a wasm-defined function (WasmExportedFunction) in Process()
1342 if (!WasmExportedFunction::IsWasmExportedFunction( in Process()
1346 WasmExportedFunction target = in Process()
1347 WasmExportedFunction::cast(internal.external()); in Process()
H A Dwasm-js.cc1876 if (i::WasmExportedFunction::IsWasmExportedFunction(*callable)) { in WebAssemblyFunction()
1877 if (*i::Handle<i::WasmExportedFunction>::cast(callable)->sig() == *sig) { in WebAssemblyFunction()
1915 if (i::WasmExportedFunction::IsWasmExportedFunction(*arg0)) { in WebAssemblyFunctionType()
1917 i::Handle<i::WasmExportedFunction>::cast(arg0); in WebAssemblyFunctionType()
2593 i::Handle<i::WasmExternalFunction>::cast(i::WasmExportedFunction::New( in WebAssemblySuspenderReturnPromiseOnSuspend()
2619 if (i::WasmExportedFunction::IsWasmExportedFunction(*arg0)) { in WebAssemblySuspenderSuspendOnReturnedPromise()
H A Dmodule-instantiate.cc301 Handle<WasmExportedFunction> start_function_;
778 start_function_ = WasmExportedFunction::New( in Build()
1131 auto imported_function = Handle<WasmExportedFunction>::cast(js_receiver); in ProcessImportedFunction()
/third_party/node/deps/v8/src/objects/
H A Dshared-function-info.cc290 return WasmExportedFunction::GetDebugName( in DebugNameCStr()
/third_party/node/deps/v8/src/diagnostics/
H A Dobjects-printer.cc1565 if (WasmExportedFunction::IsWasmExportedFunction(*this)) { in JSFunctionPrint()
1566 WasmExportedFunction function = WasmExportedFunction::cast(*this); in JSFunctionPrint()
/third_party/node/deps/v8/src/compiler/
H A Dwasm-compiler.cc7683 std::unique_ptr<char[]> debug_name = WasmExportedFunction::GetDebugName(sig);
7792 if (WasmExportedFunction::IsWasmExportedFunction(*callable)) {
7793 auto imported_function = Handle<WasmExportedFunction>::cast(callable);

Completed in 42 milliseconds