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

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

Issue 5745005: Provide baseline GC version. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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
« no previous file with comments | « no previous file | src/globals.h » ('j') | src/ia32/codegen-ia32.cc » ('J')
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 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
259 #ifndef BASELINE_GC
258 DEFINE_bool(flush_code, true, 260 DEFINE_bool(flush_code, true,
259 "flush code that we expect not to use again before full gc") 261 "flush code that we expect not to use again before full gc")
262 #else
263 DEFINE_bool(flush_code, false,
264 "flush code that we expect not to use again before full gc")
265 #endif
260 266
261 // v8.cc 267 // v8.cc
262 DEFINE_bool(use_idle_notification, true, 268 DEFINE_bool(use_idle_notification, true,
263 "Use idle notification to reduce memory footprint.") 269 "Use idle notification to reduce memory footprint.")
264 // ic.cc 270 // ic.cc
265 DEFINE_bool(use_ic, true, "use inline caching") 271 DEFINE_bool(use_ic, true, "use inline caching")
266 272
267 // macro-assembler-ia32.cc 273 // macro-assembler-ia32.cc
268 DEFINE_bool(native_code_counters, false, 274 DEFINE_bool(native_code_counters, false,
269 "generate extra code for manipulating stats counters") 275 "generate extra code for manipulating stats counters")
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 #undef FLAG 517 #undef FLAG
512 518
513 #undef DEFINE_bool 519 #undef DEFINE_bool
514 #undef DEFINE_int 520 #undef DEFINE_int
515 #undef DEFINE_string 521 #undef DEFINE_string
516 522
517 #undef FLAG_MODE_DECLARE 523 #undef FLAG_MODE_DECLARE
518 #undef FLAG_MODE_DEFINE 524 #undef FLAG_MODE_DEFINE
519 #undef FLAG_MODE_DEFINE_DEFAULTS 525 #undef FLAG_MODE_DEFINE_DEFAULTS
520 #undef FLAG_MODE_META 526 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/globals.h » ('j') | src/ia32/codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698