Home
last modified time | relevance | path

Searched refs:expected_arity (Results 1 - 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/wasm/
H A Dwasm-import-wrapper-cache.h35 expected_arity(_expected_arity == kDontAdaptArgumentsSentinel in CacheKey()
42 expected_arity == rhs.expected_arity && suspend == rhs.suspend; in operator ==()
47 int expected_arity; member
55 key.expected_arity); in operator ()()
78 const FunctionSig* sig, int expected_arity,
82 int expected_arity, Suspend suspend) const;
H A Dwasm-import-wrapper-cache.cc28 int expected_arity, in Get()
32 auto it = entry_map_.find({kind, sig, expected_arity, suspend}); in Get()
39 int expected_arity, in MaybeGet()
43 auto it = entry_map_.find({kind, sig, expected_arity, suspend}); in MaybeGet()
26 Get(compiler::WasmImportCallKind kind, const FunctionSig* sig, int expected_arity, Suspend suspend) const Get() argument
37 MaybeGet(compiler::WasmImportCallKind kind, const FunctionSig* sig, int expected_arity, Suspend suspend) const MaybeGet() argument
H A Dmodule-instantiate.cc75 key->expected_arity, key->suspend, cache_scope_);
1142 int expected_arity = static_cast<int>(expected_sig->parameter_count()); in ProcessImportedFunction() local
1147 cache->MaybeGet(kind, expected_sig, expected_arity, kNoSuspend); in ProcessImportedFunction()
1153 WasmImportWrapperCache::CacheKey key(kind, expected_sig, expected_arity, in ProcessImportedFunction()
1186 int expected_arity = static_cast<int>(expected_sig->parameter_count()); in ProcessImportedFunction() local
1190 expected_arity = in ProcessImportedFunction()
1200 kind, expected_sig, expected_arity, suspend); in ProcessImportedFunction()
1601 int expected_arity = static_cast<int>(sig->parameter_count()); in CompileImportWrappers() local
1606 expected_arity = in CompileImportWrappers()
1614 WasmImportWrapperCache::CacheKey key(kind, sig, expected_arity, suspen in CompileImportWrappers()
[all...]
H A Dmodule-compiler.h73 int expected_arity, Suspend suspend,
H A Dwasm-objects.cc1472 // {expected_arity} should only be used if kind != kJSFunctionArityMismatch. in ImportWasmJSFunctionIntoTable()
1473 int expected_arity = -1; in ImportWasmJSFunctionIntoTable() local
1475 expected_arity = Handle<JSFunction>::cast(callable) in ImportWasmJSFunctionIntoTable()
1485 &env, kind, sig, false, expected_arity, suspend); in ImportWasmJSFunctionIntoTable()
2103 int expected_arity = parameter_count; in New() local
2107 expected_arity = in New()
2109 if (expected_arity != parameter_count) { in New()
2120 expected_arity, suspend) in New()
H A Dmodule-compiler.cc3947 int expected_arity, Suspend suspend, in CompileImportWrapper()
3952 WasmImportWrapperCache::CacheKey key(kind, sig, expected_arity, suspend); in CompileImportWrapper()
3959 &env, kind, sig, source_positions, expected_arity, suspend); in CompileImportWrapper()
3944 CompileImportWrapper( NativeModule* native_module, Counters* counters, compiler::WasmImportCallKind kind, const FunctionSig* sig, int expected_arity, Suspend suspend, WasmImportWrapperCache::ModificationScope* cache_scope) CompileImportWrapper() argument
/third_party/node/deps/v8/src/compiler/
H A Dwasm-compiler.h130 bool source_positions, int expected_arity, wasm::Suspend);
150 int expected_arity,
H A Dwasm-compiler.cc7081 bool BuildWasmToJSWrapper(WasmImportCallKind kind, int expected_arity,
7157 int pushed_count = std::max(expected_arity, wasm_count);
7169 for (int i = wasm_count; i < expected_arity; ++i) {
8045 const wasm::FunctionSig* sig, bool source_positions, int expected_arity,
8084 builder.BuildWasmToJSWrapper(kind, expected_arity, suspend);
8218 int expected_arity,
8237 builder.BuildWasmToJSWrapper(kind, expected_arity, suspend);
H A Djs-call-reducer.cc3588 size_t expected_arity = wasm_signature->parameter_count();
3590 while (actual_arity > expected_arity) {
3592 static_cast<int>(n.FirstArgumentIndex() + expected_arity);
3599 while (actual_arity < expected_arity) {

Completed in 39 milliseconds