| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 "enable use of ARMv7 instructions if available (ARM only)") | 296 "enable use of ARMv7 instructions if available (ARM only)") |
| 297 DEFINE_bool(enable_sudiv, true, | 297 DEFINE_bool(enable_sudiv, true, |
| 298 "enable use of SDIV and UDIV instructions if available (ARM only)") | 298 "enable use of SDIV and UDIV instructions if available (ARM only)") |
| 299 DEFINE_bool(enable_movw_movt, false, | 299 DEFINE_bool(enable_movw_movt, false, |
| 300 "enable loading 32-bit constant by means of movw/movt " | 300 "enable loading 32-bit constant by means of movw/movt " |
| 301 "instruction pairs (ARM only)") | 301 "instruction pairs (ARM only)") |
| 302 DEFINE_bool(enable_unaligned_accesses, true, | 302 DEFINE_bool(enable_unaligned_accesses, true, |
| 303 "enable unaligned accesses for ARMv7 (ARM only)") | 303 "enable unaligned accesses for ARMv7 (ARM only)") |
| 304 DEFINE_bool(enable_fpu, true, | 304 DEFINE_bool(enable_fpu, true, |
| 305 "enable use of MIPS FPU instructions if available (MIPS only)") | 305 "enable use of MIPS FPU instructions if available (MIPS only)") |
| 306 DEFINE_bool(enable_vldr_imm, false, |
| 307 "enable use of constant pools for double immediate (ARM only)") |
| 306 | 308 |
| 307 // bootstrapper.cc | 309 // bootstrapper.cc |
| 308 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 310 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 309 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 311 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 310 DEFINE_bool(expose_gc, false, "expose gc extension") | 312 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 311 DEFINE_bool(expose_externalize_string, false, | 313 DEFINE_bool(expose_externalize_string, false, |
| 312 "expose externalize string extension") | 314 "expose externalize string extension") |
| 313 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 315 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| 314 DEFINE_bool(builtins_in_stack_traces, false, | 316 DEFINE_bool(builtins_in_stack_traces, false, |
| 315 "show built-in functions in stack traces") | 317 "show built-in functions in stack traces") |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 #undef DEFINE_bool | 721 #undef DEFINE_bool |
| 720 #undef DEFINE_int | 722 #undef DEFINE_int |
| 721 #undef DEFINE_string | 723 #undef DEFINE_string |
| 722 #undef DEFINE_implication | 724 #undef DEFINE_implication |
| 723 | 725 |
| 724 #undef FLAG_MODE_DECLARE | 726 #undef FLAG_MODE_DECLARE |
| 725 #undef FLAG_MODE_DEFINE | 727 #undef FLAG_MODE_DEFINE |
| 726 #undef FLAG_MODE_DEFINE_DEFAULTS | 728 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 727 #undef FLAG_MODE_META | 729 #undef FLAG_MODE_META |
| 728 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 730 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |