| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 414 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 415 #ifdef ADDRESS_SANITIZER | 415 #ifdef ADDRESS_SANITIZER |
| 416 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") | 416 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") |
| 417 #endif | 417 #endif |
| 418 DEFINE_bool(expose_gc, false, "expose gc extension") | 418 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 419 DEFINE_string(expose_gc_as, NULL, | 419 DEFINE_string(expose_gc_as, NULL, |
| 420 "expose gc extension under the specified name") | 420 "expose gc extension under the specified name") |
| 421 DEFINE_implication(expose_gc_as, expose_gc) | 421 DEFINE_implication(expose_gc_as, expose_gc) |
| 422 DEFINE_bool(expose_externalize_string, false, | 422 DEFINE_bool(expose_externalize_string, false, |
| 423 "expose externalize string extension") | 423 "expose externalize string extension") |
| 424 DEFINE_bool(expose_trigger_failure, false, "expose trigger-failure extension") |
| 424 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") | 425 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| 425 DEFINE_bool(builtins_in_stack_traces, false, | 426 DEFINE_bool(builtins_in_stack_traces, false, |
| 426 "show built-in functions in stack traces") | 427 "show built-in functions in stack traces") |
| 427 DEFINE_bool(disable_native_files, false, "disable builtin natives files") | 428 DEFINE_bool(disable_native_files, false, "disable builtin natives files") |
| 428 | 429 |
| 429 // builtins-ia32.cc | 430 // builtins-ia32.cc |
| 430 DEFINE_bool(inline_new, true, "use fast inline allocation") | 431 DEFINE_bool(inline_new, true, "use fast inline allocation") |
| 431 | 432 |
| 432 // checks.cc | 433 // checks.cc |
| 433 DEFINE_bool(stack_trace_on_abort, true, | 434 DEFINE_bool(stack_trace_on_abort, true, |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 #undef DEFINE_ALIAS_float | 899 #undef DEFINE_ALIAS_float |
| 899 #undef DEFINE_ALIAS_args | 900 #undef DEFINE_ALIAS_args |
| 900 | 901 |
| 901 #undef FLAG_MODE_DECLARE | 902 #undef FLAG_MODE_DECLARE |
| 902 #undef FLAG_MODE_DEFINE | 903 #undef FLAG_MODE_DEFINE |
| 903 #undef FLAG_MODE_DEFINE_DEFAULTS | 904 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 904 #undef FLAG_MODE_META | 905 #undef FLAG_MODE_META |
| 905 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 906 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 906 | 907 |
| 907 #undef COMMA | 908 #undef COMMA |
| OLD | NEW |