| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 // serialize.cc | 263 // serialize.cc |
| 264 DEFINE_bool(debug_serialization, false, | 264 DEFINE_bool(debug_serialization, false, |
| 265 "write debug information into the snapshot.") | 265 "write debug information into the snapshot.") |
| 266 | 266 |
| 267 // spaces.cc | 267 // spaces.cc |
| 268 DEFINE_bool(collect_heap_spill_statistics, false, | 268 DEFINE_bool(collect_heap_spill_statistics, false, |
| 269 "report heap spill statistics along with heap_stats " | 269 "report heap spill statistics along with heap_stats " |
| 270 "(requires heap_stats)") | 270 "(requires heap_stats)") |
| 271 | 271 |
| 272 DEFINE_bool(trace_regexps, false, "trace regexp execution") | 272 DEFINE_bool(trace_regexps, false, "trace regexp execution") |
| 273 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode executon") |
| 273 | 274 |
| 274 // | 275 // |
| 275 // Logging and profiling only flags | 276 // Logging and profiling only flags |
| 276 // | 277 // |
| 277 #undef FLAG | 278 #undef FLAG |
| 278 #ifdef ENABLE_LOGGING_AND_PROFILING | 279 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 279 #define FLAG FLAG_FULL | 280 #define FLAG FLAG_FULL |
| 280 #else | 281 #else |
| 281 #define FLAG FLAG_READONLY | 282 #define FLAG FLAG_READONLY |
| 282 #endif | 283 #endif |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 #undef FLAG | 320 #undef FLAG |
| 320 | 321 |
| 321 #undef DEFINE_bool | 322 #undef DEFINE_bool |
| 322 #undef DEFINE_int | 323 #undef DEFINE_int |
| 323 #undef DEFINE_string | 324 #undef DEFINE_string |
| 324 | 325 |
| 325 #undef FLAG_MODE_DECLARE | 326 #undef FLAG_MODE_DECLARE |
| 326 #undef FLAG_MODE_DEFINE | 327 #undef FLAG_MODE_DEFINE |
| 327 #undef FLAG_MODE_DEFINE_DEFAULTS | 328 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 328 #undef FLAG_MODE_META | 329 #undef FLAG_MODE_META |
| OLD | NEW |