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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 "enable unaligned accesses for ARMv7 (ARM only)") | 337 "enable unaligned accesses for ARMv7 (ARM only)") |
338 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 338 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |
339 "enable use of d16-d31 registers on ARM - this requires VFP3") | 339 "enable use of d16-d31 registers on ARM - this requires VFP3") |
340 DEFINE_bool(enable_vldr_imm, false, | 340 DEFINE_bool(enable_vldr_imm, false, |
341 "enable use of constant pools for double immediate (ARM only)") | 341 "enable use of constant pools for double immediate (ARM only)") |
342 | 342 |
343 // bootstrapper.cc | 343 // bootstrapper.cc |
344 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 344 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
345 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 345 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
346 DEFINE_bool(expose_gc, false, "expose gc extension") | 346 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 347 DEFINE_string(expose_gc_as, |
| 348 NULL, |
| 349 "expose gc extension under the specified name") |
| 350 DEFINE_implication(expose_gc_as, expose_gc) |
347 DEFINE_bool(expose_externalize_string, false, | 351 DEFINE_bool(expose_externalize_string, false, |
348 "expose externalize string extension") | 352 "expose externalize string extension") |
349 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 353 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
350 DEFINE_bool(builtins_in_stack_traces, false, | 354 DEFINE_bool(builtins_in_stack_traces, false, |
351 "show built-in functions in stack traces") | 355 "show built-in functions in stack traces") |
352 DEFINE_bool(disable_native_files, false, "disable builtin natives files") | 356 DEFINE_bool(disable_native_files, false, "disable builtin natives files") |
353 | 357 |
354 // builtins-ia32.cc | 358 // builtins-ia32.cc |
355 DEFINE_bool(inline_new, true, "use fast inline allocation") | 359 DEFINE_bool(inline_new, true, "use fast inline allocation") |
356 | 360 |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 #undef DEFINE_bool | 774 #undef DEFINE_bool |
771 #undef DEFINE_int | 775 #undef DEFINE_int |
772 #undef DEFINE_string | 776 #undef DEFINE_string |
773 #undef DEFINE_implication | 777 #undef DEFINE_implication |
774 | 778 |
775 #undef FLAG_MODE_DECLARE | 779 #undef FLAG_MODE_DECLARE |
776 #undef FLAG_MODE_DEFINE | 780 #undef FLAG_MODE_DEFINE |
777 #undef FLAG_MODE_DEFINE_DEFAULTS | 781 #undef FLAG_MODE_DEFINE_DEFAULTS |
778 #undef FLAG_MODE_META | 782 #undef FLAG_MODE_META |
779 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 783 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |