Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: src/flag-definitions.h

Issue 8060053: Enable code flushing for full (non-incremental) collections. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: update test and remove FLAG_flush_code = false Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/mark-compact.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "print one detailed trace line in name=value format " 251 "print one detailed trace line in name=value format "
252 "after each garbage collection") 252 "after each garbage collection")
253 DEFINE_bool(print_cumulative_gc_stat, false, 253 DEFINE_bool(print_cumulative_gc_stat, false,
254 "print cumulative GC statistics in name=value format on exit") 254 "print cumulative GC statistics in name=value format on exit")
255 DEFINE_bool(trace_gc_verbose, false, 255 DEFINE_bool(trace_gc_verbose, false,
256 "print more details following each garbage collection") 256 "print more details following each garbage collection")
257 DEFINE_bool(trace_fragmentation, false, 257 DEFINE_bool(trace_fragmentation, false,
258 "report fragmentation for old pointer and data pages") 258 "report fragmentation for old pointer and data pages")
259 DEFINE_bool(collect_maps, true, 259 DEFINE_bool(collect_maps, true,
260 "garbage collect maps from which no objects can be reached") 260 "garbage collect maps from which no objects can be reached")
261 DEFINE_bool(flush_code, false, 261 DEFINE_bool(flush_code, true,
262 "flush code that we expect not to use again before full gc") 262 "flush code that we expect not to use again before full gc")
263 DEFINE_bool(incremental_marking, true, "use incremental marking") 263 DEFINE_bool(incremental_marking, true, "use incremental marking")
264 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 264 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
265 DEFINE_bool(trace_incremental_marking, false, 265 DEFINE_bool(trace_incremental_marking, false,
266 "trace progress of the incremental marking") 266 "trace progress of the incremental marking")
267 267
268 // v8.cc 268 // v8.cc
269 DEFINE_bool(use_idle_notification, true, 269 DEFINE_bool(use_idle_notification, true,
270 "Use idle notification to reduce memory footprint.") 270 "Use idle notification to reduce memory footprint.")
271 // ic.cc 271 // ic.cc
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « no previous file | src/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698