| OLD | NEW | 
|    1 // Copyright 2012 the V8 project authors. All rights reserved. |    1 // Copyright 2012 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  360 DEFINE_bool(trace_fragmentation, false, |  360 DEFINE_bool(trace_fragmentation, false, | 
|  361             "report fragmentation for old pointer and data pages") |  361             "report fragmentation for old pointer and data pages") | 
|  362 DEFINE_bool(collect_maps, true, |  362 DEFINE_bool(collect_maps, true, | 
|  363             "garbage collect maps from which no objects can be reached") |  363             "garbage collect maps from which no objects can be reached") | 
|  364 DEFINE_bool(flush_code, true, |  364 DEFINE_bool(flush_code, true, | 
|  365             "flush code that we expect not to use again before full gc") |  365             "flush code that we expect not to use again before full gc") | 
|  366 DEFINE_bool(incremental_marking, true, "use incremental marking") |  366 DEFINE_bool(incremental_marking, true, "use incremental marking") | 
|  367 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |  367 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 
|  368 DEFINE_bool(trace_incremental_marking, false, |  368 DEFINE_bool(trace_incremental_marking, false, | 
|  369             "trace progress of the incremental marking") |  369             "trace progress of the incremental marking") | 
 |  370 DEFINE_bool(track_gc_object_stats, false, | 
 |  371             "track object counts and memory usage") | 
|  370  |  372  | 
|  371 // v8.cc |  373 // v8.cc | 
|  372 DEFINE_bool(use_idle_notification, true, |  374 DEFINE_bool(use_idle_notification, true, | 
|  373             "Use idle notification to reduce memory footprint.") |  375             "Use idle notification to reduce memory footprint.") | 
|  374  |  376  | 
|  375 DEFINE_bool(send_idle_notification, false, |  377 DEFINE_bool(send_idle_notification, false, | 
|  376             "Send idle notifcation between stress runs.") |  378             "Send idle notifcation between stress runs.") | 
|  377 // ic.cc |  379 // ic.cc | 
|  378 DEFINE_bool(use_ic, true, "use inline caching") |  380 DEFINE_bool(use_ic, true, "use inline caching") | 
|  379  |  381  | 
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  668 #undef DEFINE_bool |  670 #undef DEFINE_bool | 
|  669 #undef DEFINE_int |  671 #undef DEFINE_int | 
|  670 #undef DEFINE_string |  672 #undef DEFINE_string | 
|  671 #undef DEFINE_implication |  673 #undef DEFINE_implication | 
|  672  |  674  | 
|  673 #undef FLAG_MODE_DECLARE |  675 #undef FLAG_MODE_DECLARE | 
|  674 #undef FLAG_MODE_DEFINE |  676 #undef FLAG_MODE_DEFINE | 
|  675 #undef FLAG_MODE_DEFINE_DEFAULTS |  677 #undef FLAG_MODE_DEFINE_DEFAULTS | 
|  676 #undef FLAG_MODE_META |  678 #undef FLAG_MODE_META | 
|  677 #undef FLAG_MODE_DEFINE_IMPLICATIONS |  679 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 
| OLD | NEW |