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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 DEFINE_int(max_stack_trace_source_length, 300, | 179 DEFINE_int(max_stack_trace_source_length, 300, |
180 "maximum length of function source code printed in a stack trace.") | 180 "maximum length of function source code printed in a stack trace.") |
181 | 181 |
182 // full-codegen.cc | 182 // full-codegen.cc |
183 DEFINE_bool(always_inline_smi_code, false, | 183 DEFINE_bool(always_inline_smi_code, false, |
184 "always inline smi code in non-opt code") | 184 "always inline smi code in non-opt code") |
185 | 185 |
186 // heap.cc | 186 // heap.cc |
187 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)") | 187 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)") |
188 DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)") | 188 DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)") |
| 189 DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)") |
189 DEFINE_bool(gc_global, false, "always perform global GCs") | 190 DEFINE_bool(gc_global, false, "always perform global GCs") |
190 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") | 191 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") |
191 DEFINE_bool(trace_gc, false, | 192 DEFINE_bool(trace_gc, false, |
192 "print one trace line following each garbage collection") | 193 "print one trace line following each garbage collection") |
193 DEFINE_bool(trace_gc_nvp, false, | 194 DEFINE_bool(trace_gc_nvp, false, |
194 "print one detailed trace line in name=value format " | 195 "print one detailed trace line in name=value format " |
195 "after each garbage collection") | 196 "after each garbage collection") |
196 DEFINE_bool(print_cumulative_gc_stat, false, | 197 DEFINE_bool(print_cumulative_gc_stat, false, |
197 "print cumulative GC statistics in name=value format on exit") | 198 "print cumulative GC statistics in name=value format on exit") |
198 DEFINE_bool(trace_gc_verbose, false, | 199 DEFINE_bool(trace_gc_verbose, false, |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 #undef FLAG | 454 #undef FLAG |
454 | 455 |
455 #undef DEFINE_bool | 456 #undef DEFINE_bool |
456 #undef DEFINE_int | 457 #undef DEFINE_int |
457 #undef DEFINE_string | 458 #undef DEFINE_string |
458 | 459 |
459 #undef FLAG_MODE_DECLARE | 460 #undef FLAG_MODE_DECLARE |
460 #undef FLAG_MODE_DEFINE | 461 #undef FLAG_MODE_DEFINE |
461 #undef FLAG_MODE_DEFINE_DEFAULTS | 462 #undef FLAG_MODE_DEFINE_DEFAULTS |
462 #undef FLAG_MODE_META | 463 #undef FLAG_MODE_META |
OLD | NEW |