| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 DEFINE_bool(debug_serialization, false, | 284 DEFINE_bool(debug_serialization, false, |
| 285 "write debug information into the snapshot.") | 285 "write debug information into the snapshot.") |
| 286 | 286 |
| 287 // spaces.cc | 287 // spaces.cc |
| 288 DEFINE_bool(collect_heap_spill_statistics, false, | 288 DEFINE_bool(collect_heap_spill_statistics, false, |
| 289 "report heap spill statistics along with heap_stats " | 289 "report heap spill statistics along with heap_stats " |
| 290 "(requires heap_stats)") | 290 "(requires heap_stats)") |
| 291 | 291 |
| 292 DEFINE_bool(trace_regexps, false, "trace regexp execution") | 292 DEFINE_bool(trace_regexps, false, "trace regexp execution") |
| 293 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode executon") | 293 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode executon") |
| 294 DEFINE_bool(attempt_case_independent, false, "attempt to run re2k case independe
nt") |
| 294 DEFINE_bool(re2k_native, false, "use native code regexp implementation") | 295 DEFINE_bool(re2k_native, false, "use native code regexp implementation") |
| 295 | 296 |
| 296 // | 297 // |
| 297 // Logging and profiling only flags | 298 // Logging and profiling only flags |
| 298 // | 299 // |
| 299 #undef FLAG | 300 #undef FLAG |
| 300 #ifdef ENABLE_LOGGING_AND_PROFILING | 301 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 301 #define FLAG FLAG_FULL | 302 #define FLAG FLAG_FULL |
| 302 #else | 303 #else |
| 303 #define FLAG FLAG_READONLY | 304 #define FLAG FLAG_READONLY |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 #undef FLAG | 342 #undef FLAG |
| 342 | 343 |
| 343 #undef DEFINE_bool | 344 #undef DEFINE_bool |
| 344 #undef DEFINE_int | 345 #undef DEFINE_int |
| 345 #undef DEFINE_string | 346 #undef DEFINE_string |
| 346 | 347 |
| 347 #undef FLAG_MODE_DECLARE | 348 #undef FLAG_MODE_DECLARE |
| 348 #undef FLAG_MODE_DEFINE | 349 #undef FLAG_MODE_DEFINE |
| 349 #undef FLAG_MODE_DEFINE_DEFAULTS | 350 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 350 #undef FLAG_MODE_META | 351 #undef FLAG_MODE_META |
| OLD | NEW |