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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 "print one trace line following each garbage collection") | 184 "print one trace line following each garbage collection") |
185 DEFINE_bool(trace_gc_nvp, false, | 185 DEFINE_bool(trace_gc_nvp, false, |
186 "print one detailed trace line in name=value format " | 186 "print one detailed trace line in name=value format " |
187 "after each garbage collection") | 187 "after each garbage collection") |
188 DEFINE_bool(print_cumulative_gc_stat, false, | 188 DEFINE_bool(print_cumulative_gc_stat, false, |
189 "print cumulative GC statistics in name=value format on exit") | 189 "print cumulative GC statistics in name=value format on exit") |
190 DEFINE_bool(trace_gc_verbose, false, | 190 DEFINE_bool(trace_gc_verbose, false, |
191 "print more details following each garbage collection") | 191 "print more details following each garbage collection") |
192 DEFINE_bool(collect_maps, true, | 192 DEFINE_bool(collect_maps, true, |
193 "garbage collect maps from which no objects can be reached") | 193 "garbage collect maps from which no objects can be reached") |
| 194 DEFINE_bool(flush_code, false, |
| 195 "flush code that we expect not to use again before full gc") |
194 | 196 |
195 // v8.cc | 197 // v8.cc |
196 DEFINE_bool(use_idle_notification, true, | 198 DEFINE_bool(use_idle_notification, true, |
197 "Use idle notification to reduce memory footprint.") | 199 "Use idle notification to reduce memory footprint.") |
198 // ic.cc | 200 // ic.cc |
199 DEFINE_bool(use_ic, true, "use inline caching") | 201 DEFINE_bool(use_ic, true, "use inline caching") |
200 | 202 |
201 // macro-assembler-ia32.cc | 203 // macro-assembler-ia32.cc |
202 DEFINE_bool(native_code_counters, false, | 204 DEFINE_bool(native_code_counters, false, |
203 "generate extra code for manipulating stats counters") | 205 "generate extra code for manipulating stats counters") |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 #undef FLAG | 444 #undef FLAG |
443 | 445 |
444 #undef DEFINE_bool | 446 #undef DEFINE_bool |
445 #undef DEFINE_int | 447 #undef DEFINE_int |
446 #undef DEFINE_string | 448 #undef DEFINE_string |
447 | 449 |
448 #undef FLAG_MODE_DECLARE | 450 #undef FLAG_MODE_DECLARE |
449 #undef FLAG_MODE_DEFINE | 451 #undef FLAG_MODE_DEFINE |
450 #undef FLAG_MODE_DEFINE_DEFAULTS | 452 #undef FLAG_MODE_DEFINE_DEFAULTS |
451 #undef FLAG_MODE_META | 453 #undef FLAG_MODE_META |
OLD | NEW |