Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(570)

Unified Diff: src/wasm/wasm-objects.h

Issue 2629853004: [wasm] Skip serialization of breakpoints and certion stubs (Closed)
Patch Set: Move implementation to .cc file Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/wasm/wasm-module.cc ('k') | src/wasm/wasm-objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/wasm-objects.h
diff --git a/src/wasm/wasm-objects.h b/src/wasm/wasm-objects.h
index d18c165e4a88c0751a43fa3b16763988a8b9afdf..1440e13e786272d943569d31daf5f17208ff6718 100644
--- a/src/wasm/wasm-objects.h
+++ b/src/wasm/wasm-objects.h
@@ -181,8 +181,8 @@ class WasmSharedModuleData : public FixedArray {
// Check whether this module was generated from asm.js source.
bool is_asm_js();
- // Recreate the ModuleWrapper from the module bytes after deserialization.
- static void RecreateModuleWrapper(Isolate*, Handle<WasmSharedModuleData>);
+ static void ReinitializeAfterDeserialization(Isolate*,
+ Handle<WasmSharedModuleData>);
static void AddBreakpoint(Handle<WasmSharedModuleData>, int position,
Handle<Object> break_point_object);
@@ -320,9 +320,8 @@ class WasmCompiledModule : public FixedArray {
void PrintInstancesChain();
- // Recreate the ModuleWrapper from the module bytes after deserialization.
- static void RecreateModuleWrapper(Isolate* isolate,
- Handle<WasmCompiledModule> compiled_module);
+ static void ReinitializeAfterDeserialization(Isolate*,
+ Handle<WasmCompiledModule>);
// Get the function name of the function identified by the given index.
// Returns a null handle if the function is unnamed or the name is not a valid
« no previous file with comments | « src/wasm/wasm-module.cc ('k') | src/wasm/wasm-objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698