Searched refs:WasmImportCallKind (Results 1 - 8 of 8) sorted by relevance
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-import-wrapper-cache.h | 31 CacheKey(const compiler::WasmImportCallKind& _kind, const FunctionSig* _sig, in CacheKey() 45 compiler::WasmImportCallKind kind; 77 V8_EXPORT_PRIVATE WasmCode* Get(compiler::WasmImportCallKind kind, 81 WasmCode* MaybeGet(compiler::WasmImportCallKind kind, const FunctionSig* sig,
|
H A D | wasm-import-wrapper-cache.cc | 26 WasmCode* WasmImportWrapperCache::Get(compiler::WasmImportCallKind kind, in Get() 37 WasmCode* WasmImportWrapperCache::MaybeGet(compiler::WasmImportCallKind kind, in MaybeGet()
|
H A D | module-instantiate.cc | 1122 compiler::WasmImportCallKind kind = resolved.kind; in ProcessImportedFunction() 1125 case compiler::WasmImportCallKind::kLinkError: in ProcessImportedFunction() 1129 case compiler::WasmImportCallKind::kWasmToWasm: { in ProcessImportedFunction() 1140 case compiler::WasmImportCallKind::kWasmToCapi: { in ProcessImportedFunction() 1170 case compiler::WasmImportCallKind::kWasmToJSFastApi: { in ProcessImportedFunction() 1187 if (kind == compiler::WasmImportCallKind::kJSFunctionArityMismatch) { in ProcessImportedFunction() 1208 DCHECK(kind >= compiler::WasmImportCallKind::kFirstMathIntrinsic && in ProcessImportedFunction() 1209 kind <= compiler::WasmImportCallKind::kLastMathIntrinsic); in ProcessImportedFunction() 1593 compiler::WasmImportCallKind kind = resolved.kind; in CompileImportWrappers() 1594 if (kind == compiler::WasmImportCallKind in CompileImportWrappers() [all...] |
H A D | module-compiler.h | 72 compiler::WasmImportCallKind kind, const FunctionSig* sig,
|
H A D | wasm-objects.cc | 586 auto kind = compiler::WasmImportCallKind::kWasmToCapi; in UpdateDispatchTables() 1468 compiler::WasmImportCallKind kind = resolved.kind; in ImportWasmJSFunctionIntoTable() 1470 DCHECK_NE(compiler::WasmImportCallKind::kLinkError, kind); in ImportWasmJSFunctionIntoTable() 1474 if (kind == compiler::WasmImportCallKind ::kJSFunctionArityMismatch) { in ImportWasmJSFunctionIntoTable() 2102 using CK = compiler::WasmImportCallKind; in New()
|
H A D | module-compiler.cc | 3946 compiler::WasmImportCallKind kind, const FunctionSig* sig, in CompileImportWrapper()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | wasm-compiler.h | 72 enum class WasmImportCallKind : uint8_t { class 110 constexpr WasmImportCallKind kDefaultImportCallKind = 111 WasmImportCallKind::kJSFunctionArityMatch; 114 WasmImportCallKind kind; 129 wasm::CompilationEnv* env, WasmImportCallKind, const wasm::FunctionSig*, 149 WasmImportCallKind kind,
|
H A D | wasm-compiler.cc | 7081 bool BuildWasmToJSWrapper(WasmImportCallKind kind, int expected_arity, 7092 if (kind == WasmImportCallKind::kRuntimeTypeError) { 7117 case WasmImportCallKind::kJSFunctionArityMatch: { 7156 case WasmImportCallKind::kJSFunctionArityMismatch: { 7192 case WasmImportCallKind::kUseCallBuiltin: { 7795 return {WasmImportCallKind::kLinkError, callable, no_suspender}; 7801 return {WasmImportCallKind::kWasmToWasm, callable, no_suspender}; 7816 return {WasmImportCallKind::kLinkError, callable, no_suspender}; 7824 return {WasmImportCallKind::kLinkError, callable, no_suspender}; 7826 return {WasmImportCallKind [all...] |
Completed in 28 milliseconds