| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 "enable use of ARMv7 instructions if available (ARM only)") | 314 "enable use of ARMv7 instructions if available (ARM only)") |
| 315 DEFINE_bool(enable_sudiv, true, | 315 DEFINE_bool(enable_sudiv, true, |
| 316 "enable use of SDIV and UDIV instructions if available (ARM only)") | 316 "enable use of SDIV and UDIV instructions if available (ARM only)") |
| 317 DEFINE_bool(enable_movw_movt, false, | 317 DEFINE_bool(enable_movw_movt, false, |
| 318 "enable loading 32-bit constant by means of movw/movt " | 318 "enable loading 32-bit constant by means of movw/movt " |
| 319 "instruction pairs (ARM only)") | 319 "instruction pairs (ARM only)") |
| 320 DEFINE_bool(enable_unaligned_accesses, true, | 320 DEFINE_bool(enable_unaligned_accesses, true, |
| 321 "enable unaligned accesses for ARMv7 (ARM only)") | 321 "enable unaligned accesses for ARMv7 (ARM only)") |
| 322 DEFINE_bool(enable_32dregs, true, | 322 DEFINE_bool(enable_32dregs, true, |
| 323 "enable use of d16-d31 registers on ARM - this requires VFP3") | 323 "enable use of d16-d31 registers on ARM - this requires VFP3") |
| 324 DEFINE_bool(enable_fpu, true, | |
| 325 "enable use of MIPS FPU instructions if available (MIPS only)") | |
| 326 DEFINE_bool(enable_vldr_imm, false, | 324 DEFINE_bool(enable_vldr_imm, false, |
| 327 "enable use of constant pools for double immediate (ARM only)") | 325 "enable use of constant pools for double immediate (ARM only)") |
| 328 | 326 |
| 329 // bootstrapper.cc | 327 // bootstrapper.cc |
| 330 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 328 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 331 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 329 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 332 DEFINE_bool(expose_gc, false, "expose gc extension") | 330 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 333 DEFINE_bool(expose_externalize_string, false, | 331 DEFINE_bool(expose_externalize_string, false, |
| 334 "expose externalize string extension") | 332 "expose externalize string extension") |
| 335 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 333 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 #undef DEFINE_bool | 754 #undef DEFINE_bool |
| 757 #undef DEFINE_int | 755 #undef DEFINE_int |
| 758 #undef DEFINE_string | 756 #undef DEFINE_string |
| 759 #undef DEFINE_implication | 757 #undef DEFINE_implication |
| 760 | 758 |
| 761 #undef FLAG_MODE_DECLARE | 759 #undef FLAG_MODE_DECLARE |
| 762 #undef FLAG_MODE_DEFINE | 760 #undef FLAG_MODE_DEFINE |
| 763 #undef FLAG_MODE_DEFINE_DEFAULTS | 761 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 764 #undef FLAG_MODE_META | 762 #undef FLAG_MODE_META |
| 765 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 763 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |