| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 // simulator-arm.cc and simulator-mips.cc | 224 // simulator-arm.cc and simulator-mips.cc |
| 225 DEFINE_bool(trace_sim, false, "trace simulator execution") | 225 DEFINE_bool(trace_sim, false, "trace simulator execution") |
| 226 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 226 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 227 | 227 |
| 228 // top.cc | 228 // top.cc |
| 229 DEFINE_bool(trace_exception, false, | 229 DEFINE_bool(trace_exception, false, |
| 230 "print stack trace when throwing exceptions") | 230 "print stack trace when throwing exceptions") |
| 231 DEFINE_bool(preallocate_message_memory, false, | 231 DEFINE_bool(preallocate_message_memory, false, |
| 232 "preallocate some memory to build stack traces.") | 232 "preallocate some memory to build stack traces.") |
| 233 | 233 |
| 234 // usage-analyzer.cc | |
| 235 DEFINE_bool(usage_computation, true, "compute variable usage counts") | |
| 236 | |
| 237 // v8.cc | 234 // v8.cc |
| 238 DEFINE_bool(preemption, false, | 235 DEFINE_bool(preemption, false, |
| 239 "activate a 100ms timer that switches between V8 threads") | 236 "activate a 100ms timer that switches between V8 threads") |
| 240 | 237 |
| 241 // Regexp | 238 // Regexp |
| 242 DEFINE_bool(trace_regexps, false, "trace regexp execution") | 239 DEFINE_bool(trace_regexps, false, "trace regexp execution") |
| 243 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") | 240 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") |
| 244 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp") | 241 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp") |
| 245 | 242 |
| 246 // Testing flags test/cctest/test-{flags,api,serialization}.cc | 243 // Testing flags test/cctest/test-{flags,api,serialization}.cc |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 #undef FLAG | 422 #undef FLAG |
| 426 | 423 |
| 427 #undef DEFINE_bool | 424 #undef DEFINE_bool |
| 428 #undef DEFINE_int | 425 #undef DEFINE_int |
| 429 #undef DEFINE_string | 426 #undef DEFINE_string |
| 430 | 427 |
| 431 #undef FLAG_MODE_DECLARE | 428 #undef FLAG_MODE_DECLARE |
| 432 #undef FLAG_MODE_DEFINE | 429 #undef FLAG_MODE_DEFINE |
| 433 #undef FLAG_MODE_DEFINE_DEFAULTS | 430 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 434 #undef FLAG_MODE_META | 431 #undef FLAG_MODE_META |
| OLD | NEW |