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

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

Issue 6357005: Adding files for LiveObjectList implementation. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 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 | « no previous file | src/liveobjectlist.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, true, 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 263
264 // v8.cc 264 // v8.cc
265 DEFINE_bool(use_idle_notification, true, 265 DEFINE_bool(use_idle_notification, true,
266 "Use idle notification to reduce memory footprint.") 266 "Use idle notification to reduce memory footprint.")
267 // ic.cc 267 // ic.cc
268 DEFINE_bool(use_ic, true, "use inline caching") 268 DEFINE_bool(use_ic, true, "use inline caching")
269 269
270 #ifdef LIVE_OBJECT_LIST
271 // liveobjectlist.cc
272 DEFINE_string(lol_workdir, NULL, "path for lol temp files")
273 DEFINE_bool(verify_lol, false, "perform debugging verification for lol")
274 #endif
275
270 // macro-assembler-ia32.cc 276 // macro-assembler-ia32.cc
271 DEFINE_bool(native_code_counters, false, 277 DEFINE_bool(native_code_counters, false,
272 "generate extra code for manipulating stats counters") 278 "generate extra code for manipulating stats counters")
273 279
274 // mark-compact.cc 280 // mark-compact.cc
275 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 281 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
276 DEFINE_bool(never_compact, false, 282 DEFINE_bool(never_compact, false,
277 "Never perform compaction on full GC - testing only") 283 "Never perform compaction on full GC - testing only")
278 DEFINE_bool(cleanup_ics_at_gc, true, 284 DEFINE_bool(cleanup_ics_at_gc, true,
279 "Flush inline caches prior to mark compact collection.") 285 "Flush inline caches prior to mark compact collection.")
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 #undef FLAG 544 #undef FLAG
539 545
540 #undef DEFINE_bool 546 #undef DEFINE_bool
541 #undef DEFINE_int 547 #undef DEFINE_int
542 #undef DEFINE_string 548 #undef DEFINE_string
543 549
544 #undef FLAG_MODE_DECLARE 550 #undef FLAG_MODE_DECLARE
545 #undef FLAG_MODE_DEFINE 551 #undef FLAG_MODE_DEFINE
546 #undef FLAG_MODE_DEFINE_DEFAULTS 552 #undef FLAG_MODE_DEFINE_DEFAULTS
547 #undef FLAG_MODE_META 553 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/liveobjectlist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698