| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // builtins-ia32.cc | 125 // builtins-ia32.cc |
| 126 DEFINE_bool(inline_new, true, "use fast inline allocation") | 126 DEFINE_bool(inline_new, true, "use fast inline allocation") |
| 127 | 127 |
| 128 // checks.cc | 128 // checks.cc |
| 129 DEFINE_bool(stack_trace_on_abort, true, | 129 DEFINE_bool(stack_trace_on_abort, true, |
| 130 "print a stack trace if an assertion failure occurs") | 130 "print a stack trace if an assertion failure occurs") |
| 131 | 131 |
| 132 // codegen-ia32.cc / codegen-arm.cc | 132 // codegen-ia32.cc / codegen-arm.cc |
| 133 DEFINE_bool(trace, false, "trace function calls") | 133 DEFINE_bool(trace, false, "trace function calls") |
| 134 DEFINE_bool(defer_negation, true, "defer negation operation") | 134 DEFINE_bool(defer_negation, true, "defer negation operation") |
| 135 DEFINE_bool(check_stack, true, | |
| 136 "check stack for overflow, interrupt, breakpoint") | |
| 137 | 135 |
| 138 // codegen.cc | 136 // codegen.cc |
| 139 DEFINE_bool(lazy, true, "use lazy compilation") | 137 DEFINE_bool(lazy, true, "use lazy compilation") |
| 140 DEFINE_bool(debug_info, true, "add debug information to compiled functions") | 138 DEFINE_bool(debug_info, true, "add debug information to compiled functions") |
| 141 | 139 |
| 142 // compiler.cc | 140 // compiler.cc |
| 143 DEFINE_bool(strict, false, "strict error checking") | 141 DEFINE_bool(strict, false, "strict error checking") |
| 144 DEFINE_int(min_preparse_length, 1024, | 142 DEFINE_int(min_preparse_length, 1024, |
| 145 "minimum length for automatic enable preparsing") | 143 "minimum length for automatic enable preparsing") |
| 146 DEFINE_bool(fast_compiler, true, | 144 DEFINE_bool(fast_compiler, true, |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 #undef FLAG | 400 #undef FLAG |
| 403 | 401 |
| 404 #undef DEFINE_bool | 402 #undef DEFINE_bool |
| 405 #undef DEFINE_int | 403 #undef DEFINE_int |
| 406 #undef DEFINE_string | 404 #undef DEFINE_string |
| 407 | 405 |
| 408 #undef FLAG_MODE_DECLARE | 406 #undef FLAG_MODE_DECLARE |
| 409 #undef FLAG_MODE_DEFINE | 407 #undef FLAG_MODE_DEFINE |
| 410 #undef FLAG_MODE_DEFINE_DEFAULTS | 408 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 411 #undef FLAG_MODE_META | 409 #undef FLAG_MODE_META |
| OLD | NEW |