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

Unified Diff: src/objects.h

Issue 54823002: Make snapshots reproducible. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Introduced Code::WipeOutHeader. Created 7 years, 1 month 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index e8c985048455e406c77c6b4c6814261f2cb7ab41..6c2b84c9ab99d9ed1a1adf3753313d00339e7c21 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -5196,6 +5196,9 @@ class Code: public HeapObject {
void ReplaceNthCell(int n, Cell* replace_with);
+ // Slightly ugly, used in ObjectSerializer only.
Erik Corry 2013/11/04 12:41:14 Rather than insulting your own code it would be mo
Sven Panne 2013/11/04 13:03:19 Well, that would just be yet another general v8 co
Erik Corry 2013/11/04 13:20:02 Let me suggest: "The entire code object including
+ inline void WipeOutHeader();
+
class ExtraICStateStrictMode: public BitField<StrictModeFlag, 0, 1> {};
class ExtraICStateKeyedAccessStoreMode:
public BitField<KeyedAccessStoreMode, 1, 4> {}; // NOLINT

Powered by Google App Engine
This is Rietveld 408576698