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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 "enable loading 32-bit constant by means of movw/movt " | 392 "enable loading 32-bit constant by means of movw/movt " |
393 "instruction pairs (ARM only)") | 393 "instruction pairs (ARM only)") |
394 DEFINE_bool(enable_unaligned_accesses, true, | 394 DEFINE_bool(enable_unaligned_accesses, true, |
395 "enable unaligned accesses for ARMv7 (ARM only)") | 395 "enable unaligned accesses for ARMv7 (ARM only)") |
396 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 396 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |
397 "enable use of d16-d31 registers on ARM - this requires VFP3") | 397 "enable use of d16-d31 registers on ARM - this requires VFP3") |
398 DEFINE_bool(enable_vldr_imm, false, | 398 DEFINE_bool(enable_vldr_imm, false, |
399 "enable use of constant pools for double immediate (ARM only)") | 399 "enable use of constant pools for double immediate (ARM only)") |
400 | 400 |
401 // bootstrapper.cc | 401 // bootstrapper.cc |
| 402 DEFINE_bool(enable_i18n, true, "enable i18n extension") |
402 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 403 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
403 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 404 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
404 DEFINE_bool(expose_gc, false, "expose gc extension") | 405 DEFINE_bool(expose_gc, false, "expose gc extension") |
405 DEFINE_string(expose_gc_as, | 406 DEFINE_string(expose_gc_as, |
406 NULL, | 407 NULL, |
407 "expose gc extension under the specified name") | 408 "expose gc extension under the specified name") |
408 DEFINE_implication(expose_gc_as, expose_gc) | 409 DEFINE_implication(expose_gc_as, expose_gc) |
409 DEFINE_bool(expose_externalize_string, false, | 410 DEFINE_bool(expose_externalize_string, false, |
410 "expose externalize string extension") | 411 "expose externalize string extension") |
411 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 412 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
851 #undef DEFINE_ALIAS_int | 852 #undef DEFINE_ALIAS_int |
852 #undef DEFINE_ALIAS_string | 853 #undef DEFINE_ALIAS_string |
853 #undef DEFINE_ALIAS_float | 854 #undef DEFINE_ALIAS_float |
854 #undef DEFINE_ALIAS_args | 855 #undef DEFINE_ALIAS_args |
855 | 856 |
856 #undef FLAG_MODE_DECLARE | 857 #undef FLAG_MODE_DECLARE |
857 #undef FLAG_MODE_DEFINE | 858 #undef FLAG_MODE_DEFINE |
858 #undef FLAG_MODE_DEFINE_DEFAULTS | 859 #undef FLAG_MODE_DEFINE_DEFAULTS |
859 #undef FLAG_MODE_META | 860 #undef FLAG_MODE_META |
860 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 861 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |