| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 DEFINE_bool(enable_sse3, true, | 109 DEFINE_bool(enable_sse3, true, |
| 110 "enable use of SSE3 instructions if available") | 110 "enable use of SSE3 instructions if available") |
| 111 DEFINE_bool(enable_cmov, true, | 111 DEFINE_bool(enable_cmov, true, |
| 112 "enable use of CMOV instruction if available") | 112 "enable use of CMOV instruction if available") |
| 113 DEFINE_bool(enable_rdtsc, true, | 113 DEFINE_bool(enable_rdtsc, true, |
| 114 "enable use of RDTSC instruction if available") | 114 "enable use of RDTSC instruction if available") |
| 115 DEFINE_bool(enable_sahf, true, | 115 DEFINE_bool(enable_sahf, true, |
| 116 "enable use of SAHF instruction if available (X64 only)") | 116 "enable use of SAHF instruction if available (X64 only)") |
| 117 DEFINE_bool(enable_vfp3, true, | 117 DEFINE_bool(enable_vfp3, true, |
| 118 "enable use of VFP3 instructions if available (ARM only)") | 118 "enable use of VFP3 instructions if available (ARM only)") |
| 119 DEFINE_bool(enable_armv7, true, |
| 120 "enable use of ARMv7 instructions if available (ARM only)") |
| 119 | 121 |
| 120 // bootstrapper.cc | 122 // bootstrapper.cc |
| 121 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 123 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 122 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 124 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 123 DEFINE_bool(expose_gc, false, "expose gc extension") | 125 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 124 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 126 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| 125 | 127 |
| 126 // builtins-ia32.cc | 128 // builtins-ia32.cc |
| 127 DEFINE_bool(inline_new, true, "use fast inline allocation") | 129 DEFINE_bool(inline_new, true, "use fast inline allocation") |
| 128 | 130 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 // mksnapshot.cc | 212 // mksnapshot.cc |
| 211 DEFINE_bool(h, false, "print this message") | 213 DEFINE_bool(h, false, "print this message") |
| 212 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") | 214 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") |
| 213 | 215 |
| 214 // parser.cc | 216 // parser.cc |
| 215 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 217 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 216 | 218 |
| 217 // rewriter.cc | 219 // rewriter.cc |
| 218 DEFINE_bool(optimize_ast, true, "optimize the ast") | 220 DEFINE_bool(optimize_ast, true, "optimize the ast") |
| 219 | 221 |
| 220 // simulator-arm.cc | 222 // simulator-arm.cc and simulator-mips.cc |
| 221 DEFINE_bool(trace_sim, false, "trace simulator execution") | 223 DEFINE_bool(trace_sim, false, "trace simulator execution") |
| 222 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 224 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 223 | 225 |
| 224 // top.cc | 226 // top.cc |
| 225 DEFINE_bool(trace_exception, false, | 227 DEFINE_bool(trace_exception, false, |
| 226 "print stack trace when throwing exceptions") | 228 "print stack trace when throwing exceptions") |
| 227 DEFINE_bool(preallocate_message_memory, false, | 229 DEFINE_bool(preallocate_message_memory, false, |
| 228 "preallocate some memory to build stack traces.") | 230 "preallocate some memory to build stack traces.") |
| 229 | 231 |
| 230 // usage-analyzer.cc | 232 // usage-analyzer.cc |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 #undef FLAG | 423 #undef FLAG |
| 422 | 424 |
| 423 #undef DEFINE_bool | 425 #undef DEFINE_bool |
| 424 #undef DEFINE_int | 426 #undef DEFINE_int |
| 425 #undef DEFINE_string | 427 #undef DEFINE_string |
| 426 | 428 |
| 427 #undef FLAG_MODE_DECLARE | 429 #undef FLAG_MODE_DECLARE |
| 428 #undef FLAG_MODE_DEFINE | 430 #undef FLAG_MODE_DEFINE |
| 429 #undef FLAG_MODE_DEFINE_DEFAULTS | 431 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 430 #undef FLAG_MODE_META | 432 #undef FLAG_MODE_META |
| OLD | NEW |