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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 282 | 282 |
| 283 // serialize.cc | 283 // serialize.cc |
| 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(irregexp, false, "new regular expression code") | |
| 293 DEFINE_bool(trace_regexps, false, "trace Irregexp execution") | |
| 294 DEFINE_bool(trace_regexp_bytecodes, false, "trace Irregexp bytecode executon") | |
|
Erik Corry
2008/11/25 11:03:52
speling eror
Mads Ager (chromium)
2008/11/25 21:09:41
This one is still there.
Erik Corry
2008/11/26 12:18:36
Fixed.
| |
| 295 DEFINE_bool(attempt_case_independent, false, "attempt to run Irregexp case indep endent") | |
| 296 DEFINE_bool(irregexp_native, false, "use native code Irregexp implementation (IA 32 only)") | |
| 297 | |
| 292 // | 298 // |
| 293 // Logging and profiling only flags | 299 // Logging and profiling only flags |
| 294 // | 300 // |
| 295 #undef FLAG | 301 #undef FLAG |
| 296 #ifdef ENABLE_LOGGING_AND_PROFILING | 302 #ifdef ENABLE_LOGGING_AND_PROFILING |
| 297 #define FLAG FLAG_FULL | 303 #define FLAG FLAG_FULL |
| 298 #else | 304 #else |
| 299 #define FLAG FLAG_READONLY | 305 #define FLAG FLAG_READONLY |
| 300 #endif | 306 #endif |
| 301 | 307 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 337 #undef FLAG | 343 #undef FLAG |
| 338 | 344 |
| 339 #undef DEFINE_bool | 345 #undef DEFINE_bool |
| 340 #undef DEFINE_int | 346 #undef DEFINE_int |
| 341 #undef DEFINE_string | 347 #undef DEFINE_string |
| 342 | 348 |
| 343 #undef FLAG_MODE_DECLARE | 349 #undef FLAG_MODE_DECLARE |
| 344 #undef FLAG_MODE_DEFINE | 350 #undef FLAG_MODE_DEFINE |
| 345 #undef FLAG_MODE_DEFINE_DEFAULTS | 351 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 346 #undef FLAG_MODE_META | 352 #undef FLAG_MODE_META |
| OLD | NEW |