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

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

Issue 9837005: Age inline caches after context disposal. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Advance incremental marking Created 8 years, 9 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 | « src/d8.cc ('k') | src/heap.h » ('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 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 DEFINE_bool(flush_code, true, 343 DEFINE_bool(flush_code, true,
344 "flush code that we expect not to use again before full gc") 344 "flush code that we expect not to use again before full gc")
345 DEFINE_bool(incremental_marking, true, "use incremental marking") 345 DEFINE_bool(incremental_marking, true, "use incremental marking")
346 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 346 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
347 DEFINE_bool(trace_incremental_marking, false, 347 DEFINE_bool(trace_incremental_marking, false,
348 "trace progress of the incremental marking") 348 "trace progress of the incremental marking")
349 349
350 // v8.cc 350 // v8.cc
351 DEFINE_bool(use_idle_notification, true, 351 DEFINE_bool(use_idle_notification, true,
352 "Use idle notification to reduce memory footprint.") 352 "Use idle notification to reduce memory footprint.")
353
354 DEFINE_bool(send_idle_notification, false,
355 "Send idle notifcation between stress runs.")
353 // ic.cc 356 // ic.cc
354 DEFINE_bool(use_ic, true, "use inline caching") 357 DEFINE_bool(use_ic, true, "use inline caching")
355 358
356 #ifdef LIVE_OBJECT_LIST 359 #ifdef LIVE_OBJECT_LIST
357 // liveobjectlist.cc 360 // liveobjectlist.cc
358 DEFINE_string(lol_workdir, NULL, "path for lol temp files") 361 DEFINE_string(lol_workdir, NULL, "path for lol temp files")
359 DEFINE_bool(verify_lol, false, "perform debugging verification for lol") 362 DEFINE_bool(verify_lol, false, "perform debugging verification for lol")
360 #endif 363 #endif
361 364
362 // macro-assembler-ia32.cc 365 // macro-assembler-ia32.cc
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 #undef DEFINE_bool 642 #undef DEFINE_bool
640 #undef DEFINE_int 643 #undef DEFINE_int
641 #undef DEFINE_string 644 #undef DEFINE_string
642 #undef DEFINE_implication 645 #undef DEFINE_implication
643 646
644 #undef FLAG_MODE_DECLARE 647 #undef FLAG_MODE_DECLARE
645 #undef FLAG_MODE_DEFINE 648 #undef FLAG_MODE_DEFINE
646 #undef FLAG_MODE_DEFINE_DEFAULTS 649 #undef FLAG_MODE_DEFINE_DEFAULTS
647 #undef FLAG_MODE_META 650 #undef FLAG_MODE_META
648 #undef FLAG_MODE_DEFINE_IMPLICATIONS 651 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698