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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 "enable loading 32-bit constant by means of movw/movt " | 372 "enable loading 32-bit constant by means of movw/movt " |
373 "instruction pairs (ARM only)") | 373 "instruction pairs (ARM only)") |
374 DEFINE_bool(enable_unaligned_accesses, true, | 374 DEFINE_bool(enable_unaligned_accesses, true, |
375 "enable unaligned accesses for ARMv7 (ARM only)") | 375 "enable unaligned accesses for ARMv7 (ARM only)") |
376 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 376 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |
377 "enable use of d16-d31 registers on ARM - this requires VFP3") | 377 "enable use of d16-d31 registers on ARM - this requires VFP3") |
378 DEFINE_bool(enable_vldr_imm, false, | 378 DEFINE_bool(enable_vldr_imm, false, |
379 "enable use of constant pools for double immediate (ARM only)") | 379 "enable use of constant pools for double immediate (ARM only)") |
380 | 380 |
381 // bootstrapper.cc | 381 // bootstrapper.cc |
382 DEFINE_bool(enable_i18n, true, "enable i18n extension") | |
383 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 382 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
384 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 383 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
385 DEFINE_bool(expose_gc, false, "expose gc extension") | 384 DEFINE_bool(expose_gc, false, "expose gc extension") |
386 DEFINE_string(expose_gc_as, | 385 DEFINE_string(expose_gc_as, |
387 NULL, | 386 NULL, |
388 "expose gc extension under the specified name") | 387 "expose gc extension under the specified name") |
389 DEFINE_implication(expose_gc_as, expose_gc) | 388 DEFINE_implication(expose_gc_as, expose_gc) |
390 DEFINE_bool(expose_externalize_string, false, | 389 DEFINE_bool(expose_externalize_string, false, |
391 "expose externalize string extension") | 390 "expose externalize string extension") |
392 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 391 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 #undef DEFINE_bool | 810 #undef DEFINE_bool |
812 #undef DEFINE_int | 811 #undef DEFINE_int |
813 #undef DEFINE_string | 812 #undef DEFINE_string |
814 #undef DEFINE_implication | 813 #undef DEFINE_implication |
815 | 814 |
816 #undef FLAG_MODE_DECLARE | 815 #undef FLAG_MODE_DECLARE |
817 #undef FLAG_MODE_DEFINE | 816 #undef FLAG_MODE_DEFINE |
818 #undef FLAG_MODE_DEFINE_DEFAULTS | 817 #undef FLAG_MODE_DEFINE_DEFAULTS |
819 #undef FLAG_MODE_META | 818 #undef FLAG_MODE_META |
820 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 819 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |