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

Unified Diff: src/serialize.cc

Issue 1935: New static flags system (Closed)
Patch Set: Merge, again. Created 12 years, 3 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/scopes.cc ('k') | src/simulator-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index 6478a9070a305098f1d94e443fbc8c933abb0531..a6c53612e3e6776a634a6921d7454e74ee0430d2 100644
--- a/src/serialize.cc
+++ b/src/serialize.cc
@@ -41,12 +41,6 @@
namespace v8 { namespace internal {
-#ifdef DEBUG
-DEFINE_bool(debug_serialization, false,
- "write debug information into the snapshot.");
-#endif
-
-
// Encoding: a RelativeAddress must be able to fit in a pointer:
// it is encoded as an Address with (from MS to LS bits):
// 27 bits identifying a word in the space, in one of three formats:
@@ -1021,12 +1015,6 @@ void Serializer::PutHeader() {
}
-#ifdef ENABLE_LOGGING_AND_PROFILING
- DECLARE_bool(log_code);
- DECLARE_string(logfile);
-#endif
-
-
void Serializer::PutLog() {
#ifdef ENABLE_LOGGING_AND_PROFILING
if (FLAG_log_code) {
@@ -1301,10 +1289,6 @@ void Deserializer::VisitRuntimeEntry(RelocInfo* rinfo) {
}
-DECLARE_bool(use_ic);
-DECLARE_bool(debug_code);
-DECLARE_bool(lazy);
-
void Deserializer::GetFlags() {
reader_.ExpectC('F');
int argc = reader_.GetInt() + 1;
« no previous file with comments | « src/scopes.cc ('k') | src/simulator-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698