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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 DEFINE_bool(enable_unaligned_accesses, true, | 400 DEFINE_bool(enable_unaligned_accesses, true, |
401 "enable unaligned accesses for ARMv7 (ARM only)") | 401 "enable unaligned accesses for ARMv7 (ARM only)") |
402 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 402 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |
403 "enable use of d16-d31 registers on ARM - this requires VFP3") | 403 "enable use of d16-d31 registers on ARM - this requires VFP3") |
404 DEFINE_bool(enable_vldr_imm, false, | 404 DEFINE_bool(enable_vldr_imm, false, |
405 "enable use of constant pools for double immediate (ARM only)") | 405 "enable use of constant pools for double immediate (ARM only)") |
406 | 406 |
407 // bootstrapper.cc | 407 // bootstrapper.cc |
408 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 408 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
409 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 409 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 410 #ifdef ADDRESS_SANITIZER |
| 411 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") |
| 412 #endif |
410 DEFINE_bool(expose_gc, false, "expose gc extension") | 413 DEFINE_bool(expose_gc, false, "expose gc extension") |
411 DEFINE_string(expose_gc_as, NULL, | 414 DEFINE_string(expose_gc_as, NULL, |
412 "expose gc extension under the specified name") | 415 "expose gc extension under the specified name") |
413 DEFINE_implication(expose_gc_as, expose_gc) | 416 DEFINE_implication(expose_gc_as, expose_gc) |
414 DEFINE_bool(expose_externalize_string, false, | 417 DEFINE_bool(expose_externalize_string, false, |
415 "expose externalize string extension") | 418 "expose externalize string extension") |
416 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 419 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
417 DEFINE_bool(builtins_in_stack_traces, false, | 420 DEFINE_bool(builtins_in_stack_traces, false, |
418 "show built-in functions in stack traces") | 421 "show built-in functions in stack traces") |
419 DEFINE_bool(disable_native_files, false, "disable builtin natives files") | 422 DEFINE_bool(disable_native_files, false, "disable builtin natives files") |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 #undef DEFINE_ALIAS_float | 893 #undef DEFINE_ALIAS_float |
891 #undef DEFINE_ALIAS_args | 894 #undef DEFINE_ALIAS_args |
892 | 895 |
893 #undef FLAG_MODE_DECLARE | 896 #undef FLAG_MODE_DECLARE |
894 #undef FLAG_MODE_DEFINE | 897 #undef FLAG_MODE_DEFINE |
895 #undef FLAG_MODE_DEFINE_DEFAULTS | 898 #undef FLAG_MODE_DEFINE_DEFAULTS |
896 #undef FLAG_MODE_META | 899 #undef FLAG_MODE_META |
897 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 900 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
898 | 901 |
899 #undef COMMA | 902 #undef COMMA |
OLD | NEW |