| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 // frames.cc | 173 // frames.cc |
| 174 DEFINE_int(max_stack_trace_source_length, 300, | 174 DEFINE_int(max_stack_trace_source_length, 300, |
| 175 "maximum length of function source code printed in a stack trace.") | 175 "maximum length of function source code printed in a stack trace.") |
| 176 | 176 |
| 177 // full-codegen.cc | 177 // full-codegen.cc |
| 178 DEFINE_bool(always_inline_smi_code, false, | 178 DEFINE_bool(always_inline_smi_code, false, |
| 179 "always inline smi code in non-opt code") | 179 "always inline smi code in non-opt code") |
| 180 | 180 |
| 181 // heap.cc | 181 // heap.cc |
| 182 DEFINE_int(max_new_space_size, 0, "max size of the new generation") | 182 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)") |
| 183 DEFINE_int(max_old_space_size, 0, "max size of the old generation") | 183 DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)") |
| 184 DEFINE_bool(gc_global, false, "always perform global GCs") | 184 DEFINE_bool(gc_global, false, "always perform global GCs") |
| 185 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") | 185 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") |
| 186 DEFINE_bool(trace_gc, false, | 186 DEFINE_bool(trace_gc, false, |
| 187 "print one trace line following each garbage collection") | 187 "print one trace line following each garbage collection") |
| 188 DEFINE_bool(trace_gc_nvp, false, | 188 DEFINE_bool(trace_gc_nvp, false, |
| 189 "print one detailed trace line in name=value format " | 189 "print one detailed trace line in name=value format " |
| 190 "after each garbage collection") | 190 "after each garbage collection") |
| 191 DEFINE_bool(print_cumulative_gc_stat, false, | 191 DEFINE_bool(print_cumulative_gc_stat, false, |
| 192 "print cumulative GC statistics in name=value format on exit") | 192 "print cumulative GC statistics in name=value format on exit") |
| 193 DEFINE_bool(trace_gc_verbose, false, | 193 DEFINE_bool(trace_gc_verbose, false, |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 #undef FLAG | 447 #undef FLAG |
| 448 | 448 |
| 449 #undef DEFINE_bool | 449 #undef DEFINE_bool |
| 450 #undef DEFINE_int | 450 #undef DEFINE_int |
| 451 #undef DEFINE_string | 451 #undef DEFINE_string |
| 452 | 452 |
| 453 #undef FLAG_MODE_DECLARE | 453 #undef FLAG_MODE_DECLARE |
| 454 #undef FLAG_MODE_DEFINE | 454 #undef FLAG_MODE_DEFINE |
| 455 #undef FLAG_MODE_DEFINE_DEFAULTS | 455 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 456 #undef FLAG_MODE_META | 456 #undef FLAG_MODE_META |
| OLD | NEW |