| 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;
|
|
|