| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 395             "print cumulative GC statistics in name=value format on exit") | 395             "print cumulative GC statistics in name=value format on exit") | 
| 396 DEFINE_bool(trace_gc_verbose, false, | 396 DEFINE_bool(trace_gc_verbose, false, | 
| 397             "print more details following each garbage collection") | 397             "print more details following each garbage collection") | 
| 398 DEFINE_bool(trace_fragmentation, false, | 398 DEFINE_bool(trace_fragmentation, false, | 
| 399             "report fragmentation for old pointer and data pages") | 399             "report fragmentation for old pointer and data pages") | 
| 400 DEFINE_bool(trace_external_memory, false, | 400 DEFINE_bool(trace_external_memory, false, | 
| 401             "print amount of external allocated memory after each time " | 401             "print amount of external allocated memory after each time " | 
| 402             "it is adjusted.") | 402             "it is adjusted.") | 
| 403 DEFINE_bool(collect_maps, true, | 403 DEFINE_bool(collect_maps, true, | 
| 404             "garbage collect maps from which no objects can be reached") | 404             "garbage collect maps from which no objects can be reached") | 
|  | 405 DEFINE_bool(weak_embedded_maps_in_optimized_code, false, | 
|  | 406             "make maps embedded in optimized code weak") | 
| 405 DEFINE_bool(flush_code, true, | 407 DEFINE_bool(flush_code, true, | 
| 406             "flush code that we expect not to use again (during full gc)") | 408             "flush code that we expect not to use again (during full gc)") | 
| 407 DEFINE_bool(flush_code_incrementally, true, | 409 DEFINE_bool(flush_code_incrementally, true, | 
| 408             "flush code that we expect not to use again (incrementally)") | 410             "flush code that we expect not to use again (incrementally)") | 
| 409 DEFINE_bool(age_code, true, | 411 DEFINE_bool(age_code, true, | 
| 410             "track un-executed functions to age code and flush only " | 412             "track un-executed functions to age code and flush only " | 
| 411             "old code") | 413             "old code") | 
| 412 DEFINE_bool(incremental_marking, true, "use incremental marking") | 414 DEFINE_bool(incremental_marking, true, "use incremental marking") | 
| 413 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 415 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 
| 414 DEFINE_bool(trace_incremental_marking, false, | 416 DEFINE_bool(trace_incremental_marking, false, | 
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 720 #undef DEFINE_bool | 722 #undef DEFINE_bool | 
| 721 #undef DEFINE_int | 723 #undef DEFINE_int | 
| 722 #undef DEFINE_string | 724 #undef DEFINE_string | 
| 723 #undef DEFINE_implication | 725 #undef DEFINE_implication | 
| 724 | 726 | 
| 725 #undef FLAG_MODE_DECLARE | 727 #undef FLAG_MODE_DECLARE | 
| 726 #undef FLAG_MODE_DEFINE | 728 #undef FLAG_MODE_DEFINE | 
| 727 #undef FLAG_MODE_DEFINE_DEFAULTS | 729 #undef FLAG_MODE_DEFINE_DEFAULTS | 
| 728 #undef FLAG_MODE_META | 730 #undef FLAG_MODE_META | 
| 729 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 731 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 
| OLD | NEW | 
|---|