Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 289 | 289 |
| 290 // serialize.cc | 290 // serialize.cc |
| 291 DEFINE_bool(debug_serialization, false, | 291 DEFINE_bool(debug_serialization, false, |
| 292 "write debug information into the snapshot.") | 292 "write debug information into the snapshot.") |
| 293 | 293 |
| 294 // spaces.cc | 294 // spaces.cc |
| 295 DEFINE_bool(collect_heap_spill_statistics, false, | 295 DEFINE_bool(collect_heap_spill_statistics, false, |
| 296 "report heap spill statistics along with heap_stats " | 296 "report heap spill statistics along with heap_stats " |
| 297 "(requires heap_stats)") | 297 "(requires heap_stats)") |
| 298 | 298 |
| 299 // irregexp | |
| 300 DEFINE_bool(trace_regexp_assembler, false, | |
|
Erik Corry
2008/11/27 13:04:36
presumably this only exists in debug mode.
While y
| |
| 301 "trace Irregexp macro assembler calls.") | |
| 302 | |
| 299 // | 303 // |
| 300 // Logging and profiling only flags | 304 // Logging and profiling only flags |
| 301 // | 305 // |
| 302 #undef FLAG | 306 #undef FLAG |
| 303 #ifdef ENABLE_LOGGING_AND_PROFILING | 307 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 304 #define FLAG FLAG_FULL | 308 #define FLAG FLAG_FULL |
| 305 #else | 309 #else |
| 306 #define FLAG FLAG_READONLY | 310 #define FLAG FLAG_READONLY |
| 307 #endif | 311 #endif |
| 308 | 312 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 344 #undef FLAG | 348 #undef FLAG |
| 345 | 349 |
| 346 #undef DEFINE_bool | 350 #undef DEFINE_bool |
| 347 #undef DEFINE_int | 351 #undef DEFINE_int |
| 348 #undef DEFINE_string | 352 #undef DEFINE_string |
| 349 | 353 |
| 350 #undef FLAG_MODE_DECLARE | 354 #undef FLAG_MODE_DECLARE |
| 351 #undef FLAG_MODE_DEFINE | 355 #undef FLAG_MODE_DEFINE |
| 352 #undef FLAG_MODE_DEFINE_DEFAULTS | 356 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 353 #undef FLAG_MODE_META | 357 #undef FLAG_MODE_META |
| OLD | NEW |