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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 "enable loading 32-bit constant by means of movw/movt " | 354 "enable loading 32-bit constant by means of movw/movt " |
355 "instruction pairs (ARM only)") | 355 "instruction pairs (ARM only)") |
356 DEFINE_bool(enable_unaligned_accesses, true, | 356 DEFINE_bool(enable_unaligned_accesses, true, |
357 "enable unaligned accesses for ARMv7 (ARM only)") | 357 "enable unaligned accesses for ARMv7 (ARM only)") |
358 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 358 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |
359 "enable use of d16-d31 registers on ARM - this requires VFP3") | 359 "enable use of d16-d31 registers on ARM - this requires VFP3") |
360 DEFINE_bool(enable_vldr_imm, false, | 360 DEFINE_bool(enable_vldr_imm, false, |
361 "enable use of constant pools for double immediate (ARM only)") | 361 "enable use of constant pools for double immediate (ARM only)") |
362 | 362 |
363 // bootstrapper.cc | 363 // bootstrapper.cc |
| 364 DEFINE_bool(enable_i18n, true, "enable i18n extension") |
364 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 365 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
365 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 366 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
366 DEFINE_bool(expose_gc, false, "expose gc extension") | 367 DEFINE_bool(expose_gc, false, "expose gc extension") |
367 DEFINE_string(expose_gc_as, | 368 DEFINE_string(expose_gc_as, |
368 NULL, | 369 NULL, |
369 "expose gc extension under the specified name") | 370 "expose gc extension under the specified name") |
370 DEFINE_implication(expose_gc_as, expose_gc) | 371 DEFINE_implication(expose_gc_as, expose_gc) |
371 DEFINE_bool(expose_externalize_string, false, | 372 DEFINE_bool(expose_externalize_string, false, |
372 "expose externalize string extension") | 373 "expose externalize string extension") |
373 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 374 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... |
794 #undef DEFINE_bool | 795 #undef DEFINE_bool |
795 #undef DEFINE_int | 796 #undef DEFINE_int |
796 #undef DEFINE_string | 797 #undef DEFINE_string |
797 #undef DEFINE_implication | 798 #undef DEFINE_implication |
798 | 799 |
799 #undef FLAG_MODE_DECLARE | 800 #undef FLAG_MODE_DECLARE |
800 #undef FLAG_MODE_DEFINE | 801 #undef FLAG_MODE_DEFINE |
801 #undef FLAG_MODE_DEFINE_DEFAULTS | 802 #undef FLAG_MODE_DEFINE_DEFAULTS |
802 #undef FLAG_MODE_META | 803 #undef FLAG_MODE_META |
803 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 804 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |