| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 DEFINE_bool(push_pop_elimination, true, | 103 DEFINE_bool(push_pop_elimination, true, |
| 104 "eliminate redundant push/pops in assembly code") | 104 "eliminate redundant push/pops in assembly code") |
| 105 DEFINE_bool(print_push_pop_elimination, false, | 105 DEFINE_bool(print_push_pop_elimination, false, |
| 106 "print elimination of redundant push/pops in assembly code") | 106 "print elimination of redundant push/pops in assembly code") |
| 107 | 107 |
| 108 // bootstrapper.cc | 108 // bootstrapper.cc |
| 109 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 109 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |
| 110 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 110 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |
| 111 DEFINE_string(natives_file, NULL, "alternative natives file") | 111 DEFINE_string(natives_file, NULL, "alternative natives file") |
| 112 DEFINE_bool(expose_gc, false, "expose gc extension") | 112 DEFINE_bool(expose_gc, false, "expose gc extension") |
| 113 DEFINE_bool(capture_stack_traces, false, "capture stack traces") | 113 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") |
| 114 | 114 |
| 115 // builtins-ia32.cc | 115 // builtins-ia32.cc |
| 116 DEFINE_bool(inline_new, true, "use fast inline allocation") | 116 DEFINE_bool(inline_new, true, "use fast inline allocation") |
| 117 | 117 |
| 118 // checks.cc | 118 // checks.cc |
| 119 DEFINE_bool(stack_trace_on_abort, true, | 119 DEFINE_bool(stack_trace_on_abort, true, |
| 120 "print a stack trace if an assertion failure occurs") | 120 "print a stack trace if an assertion failure occurs") |
| 121 | 121 |
| 122 // codegen-ia32.cc / codegen-arm.cc | 122 // codegen-ia32.cc / codegen-arm.cc |
| 123 DEFINE_bool(trace, false, "trace function calls") | 123 DEFINE_bool(trace, false, "trace function calls") |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 #undef FLAG | 384 #undef FLAG |
| 385 | 385 |
| 386 #undef DEFINE_bool | 386 #undef DEFINE_bool |
| 387 #undef DEFINE_int | 387 #undef DEFINE_int |
| 388 #undef DEFINE_string | 388 #undef DEFINE_string |
| 389 | 389 |
| 390 #undef FLAG_MODE_DECLARE | 390 #undef FLAG_MODE_DECLARE |
| 391 #undef FLAG_MODE_DEFINE | 391 #undef FLAG_MODE_DEFINE |
| 392 #undef FLAG_MODE_DEFINE_DEFAULTS | 392 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 393 #undef FLAG_MODE_META | 393 #undef FLAG_MODE_META |
| OLD | NEW |