OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
293 "enable use of ARMv7 instructions if available (ARM only)") | 293 "enable use of ARMv7 instructions if available (ARM only)") |
294 DEFINE_bool(enable_sudiv, true, | 294 DEFINE_bool(enable_sudiv, true, |
295 "enable use of SDIV and UDIV instructions if available (ARM only)") | 295 "enable use of SDIV and UDIV instructions if available (ARM only)") |
296 DEFINE_bool(enable_movw_movt, false, | 296 DEFINE_bool(enable_movw_movt, false, |
297 "enable loading 32-bit constant by means of movw/movt " | 297 "enable loading 32-bit constant by means of movw/movt " |
298 "instruction pairs (ARM only)") | 298 "instruction pairs (ARM only)") |
299 DEFINE_bool(enable_unaligned_accesses, true, | 299 DEFINE_bool(enable_unaligned_accesses, true, |
300 "enable unaligned accesses for ARMv7 (ARM only)") | 300 "enable unaligned accesses for ARMv7 (ARM only)") |
301 DEFINE_bool(enable_fpu, true, | 301 DEFINE_bool(enable_fpu, true, |
302 "enable use of MIPS FPU instructions if available (MIPS only)") | 302 "enable use of MIPS FPU instructions if available (MIPS only)") |
303 DEFINE_bool(disable_direct_deopt, false, | |
Sven Panne
2012/12/14 08:20:11
If we really need a flag (not sure about this), an
| |
304 "disable use of direct call/jump to the deoptimization entry " | |
305 "in optimized codes (X64 only)") | |
306 | |
303 | 307 |
304 // bootstrapper.cc | 308 // bootstrapper.cc |
305 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 309 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
306 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 310 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
307 DEFINE_bool(expose_gc, false, "expose gc extension") | 311 DEFINE_bool(expose_gc, false, "expose gc extension") |
308 DEFINE_bool(expose_externalize_string, false, | 312 DEFINE_bool(expose_externalize_string, false, |
309 "expose externalize string extension") | 313 "expose externalize string extension") |
310 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 314 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
311 DEFINE_bool(builtins_in_stack_traces, false, | 315 DEFINE_bool(builtins_in_stack_traces, false, |
312 "show built-in functions in stack traces") | 316 "show built-in functions in stack traces") |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
717 #undef DEFINE_bool | 721 #undef DEFINE_bool |
718 #undef DEFINE_int | 722 #undef DEFINE_int |
719 #undef DEFINE_string | 723 #undef DEFINE_string |
720 #undef DEFINE_implication | 724 #undef DEFINE_implication |
721 | 725 |
722 #undef FLAG_MODE_DECLARE | 726 #undef FLAG_MODE_DECLARE |
723 #undef FLAG_MODE_DEFINE | 727 #undef FLAG_MODE_DEFINE |
724 #undef FLAG_MODE_DEFINE_DEFAULTS | 728 #undef FLAG_MODE_DEFINE_DEFAULTS |
725 #undef FLAG_MODE_META | 729 #undef FLAG_MODE_META |
726 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 730 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |