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

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

Issue 5736008: Provide baseline for experimental GC implementation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 10 years 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
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 "print one trace line following each garbage collection") 248 "print one trace line following each garbage collection")
249 DEFINE_bool(trace_gc_nvp, false, 249 DEFINE_bool(trace_gc_nvp, false,
250 "print one detailed trace line in name=value format " 250 "print one detailed trace line in name=value format "
251 "after each garbage collection") 251 "after each garbage collection")
252 DEFINE_bool(print_cumulative_gc_stat, false, 252 DEFINE_bool(print_cumulative_gc_stat, false,
253 "print cumulative GC statistics in name=value format on exit") 253 "print cumulative GC statistics in name=value format on exit")
254 DEFINE_bool(trace_gc_verbose, false, 254 DEFINE_bool(trace_gc_verbose, false,
255 "print more details following each garbage collection") 255 "print more details following each garbage collection")
256 DEFINE_bool(collect_maps, true, 256 DEFINE_bool(collect_maps, true,
257 "garbage collect maps from which no objects can be reached") 257 "garbage collect maps from which no objects can be reached")
258 DEFINE_bool(flush_code, true, 258 DEFINE_bool(flush_code, false,
259 "flush code that we expect not to use again before full gc") 259 "flush code that we expect not to use again before full gc")
260 260
261 // v8.cc 261 // v8.cc
262 DEFINE_bool(use_idle_notification, true, 262 DEFINE_bool(use_idle_notification, true,
263 "Use idle notification to reduce memory footprint.") 263 "Use idle notification to reduce memory footprint.")
264 // ic.cc 264 // ic.cc
265 DEFINE_bool(use_ic, true, "use inline caching") 265 DEFINE_bool(use_ic, true, "use inline caching")
266 266
267 // macro-assembler-ia32.cc 267 // macro-assembler-ia32.cc
268 DEFINE_bool(native_code_counters, false, 268 DEFINE_bool(native_code_counters, false,
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 #undef FLAG 511 #undef FLAG
512 512
513 #undef DEFINE_bool 513 #undef DEFINE_bool
514 #undef DEFINE_int 514 #undef DEFINE_int
515 #undef DEFINE_string 515 #undef DEFINE_string
516 516
517 #undef FLAG_MODE_DECLARE 517 #undef FLAG_MODE_DECLARE
518 #undef FLAG_MODE_DEFINE 518 #undef FLAG_MODE_DEFINE
519 #undef FLAG_MODE_DEFINE_DEFAULTS 519 #undef FLAG_MODE_DEFINE_DEFAULTS
520 #undef FLAG_MODE_META 520 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698