| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 // liveobjectlist.cc | 275 // liveobjectlist.cc |
| 276 DEFINE_string(lol_workdir, NULL, "path for lol temp files") | 276 DEFINE_string(lol_workdir, NULL, "path for lol temp files") |
| 277 DEFINE_bool(verify_lol, false, "perform debugging verification for lol") | 277 DEFINE_bool(verify_lol, false, "perform debugging verification for lol") |
| 278 #endif | 278 #endif |
| 279 | 279 |
| 280 // macro-assembler-ia32.cc | 280 // macro-assembler-ia32.cc |
| 281 DEFINE_bool(native_code_counters, false, | 281 DEFINE_bool(native_code_counters, false, |
| 282 "generate extra code for manipulating stats counters") | 282 "generate extra code for manipulating stats counters") |
| 283 | 283 |
| 284 // mark-compact.cc | 284 // mark-compact.cc |
| 285 DEFINE_bool(always_compact, true, "Perform compaction on every full GC") | 285 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
| 286 DEFINE_bool(lazy_sweeping, true, | 286 DEFINE_bool(lazy_sweeping, true, |
| 287 "Use lazy sweeping for old pointer and data spaces") | 287 "Use lazy sweeping for old pointer and data spaces") |
| 288 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, | 288 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, |
| 289 "Flush code caches in maps during mark compact cycle.") | 289 "Flush code caches in maps during mark compact cycle.") |
| 290 DEFINE_bool(never_compact, false, | 290 DEFINE_bool(never_compact, false, |
| 291 "Never perform compaction on full GC - testing only") | 291 "Never perform compaction on full GC - testing only") |
| 292 DEFINE_bool(compact_code_space, false, "Compact code space") | 292 DEFINE_bool(compact_code_space, false, "Compact code space") |
| 293 DEFINE_bool(cleanup_code_caches_at_gc, true, | 293 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 294 "Flush inline caches prior to mark compact collection and " | 294 "Flush inline caches prior to mark compact collection and " |
| 295 "flush code caches in maps during mark compact cycle.") | 295 "flush code caches in maps during mark compact cycle.") |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 #undef FLAG | 542 #undef FLAG |
| 543 | 543 |
| 544 #undef DEFINE_bool | 544 #undef DEFINE_bool |
| 545 #undef DEFINE_int | 545 #undef DEFINE_int |
| 546 #undef DEFINE_string | 546 #undef DEFINE_string |
| 547 | 547 |
| 548 #undef FLAG_MODE_DECLARE | 548 #undef FLAG_MODE_DECLARE |
| 549 #undef FLAG_MODE_DEFINE | 549 #undef FLAG_MODE_DEFINE |
| 550 #undef FLAG_MODE_DEFINE_DEFAULTS | 550 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 551 #undef FLAG_MODE_META | 551 #undef FLAG_MODE_META |
| OLD | NEW |