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

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

Issue 29203003: Add counters to track the maximum amount of memory committed by the heap. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Synced and rebased. Created 7 years, 1 month 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/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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 495 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
496 DEFINE_bool(trace_gc, false, 496 DEFINE_bool(trace_gc, false,
497 "print one trace line following each garbage collection") 497 "print one trace line following each garbage collection")
498 DEFINE_bool(trace_gc_nvp, false, 498 DEFINE_bool(trace_gc_nvp, false,
499 "print one detailed trace line in name=value format " 499 "print one detailed trace line in name=value format "
500 "after each garbage collection") 500 "after each garbage collection")
501 DEFINE_bool(trace_gc_ignore_scavenger, false, 501 DEFINE_bool(trace_gc_ignore_scavenger, false,
502 "do not print trace line after scavenger collection") 502 "do not print trace line after scavenger collection")
503 DEFINE_bool(print_cumulative_gc_stat, false, 503 DEFINE_bool(print_cumulative_gc_stat, false,
504 "print cumulative GC statistics in name=value format on exit") 504 "print cumulative GC statistics in name=value format on exit")
505 DEFINE_bool(print_max_heap_committed, false,
506 "print statistics of the maximum memory committed for the heap "
507 "in name=value format on exit")
505 DEFINE_bool(trace_gc_verbose, false, 508 DEFINE_bool(trace_gc_verbose, false,
506 "print more details following each garbage collection") 509 "print more details following each garbage collection")
507 DEFINE_bool(trace_fragmentation, false, 510 DEFINE_bool(trace_fragmentation, false,
508 "report fragmentation for old pointer and data pages") 511 "report fragmentation for old pointer and data pages")
509 DEFINE_bool(trace_external_memory, false, 512 DEFINE_bool(trace_external_memory, false,
510 "print amount of external allocated memory after each time " 513 "print amount of external allocated memory after each time "
511 "it is adjusted.") 514 "it is adjusted.")
512 DEFINE_bool(collect_maps, true, 515 DEFINE_bool(collect_maps, true,
513 "garbage collect maps from which no objects can be reached") 516 "garbage collect maps from which no objects can be reached")
514 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, 517 DEFINE_bool(weak_embedded_maps_in_optimized_code, true,
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 #undef DEFINE_ALIAS_float 882 #undef DEFINE_ALIAS_float
880 #undef DEFINE_ALIAS_args 883 #undef DEFINE_ALIAS_args
881 884
882 #undef FLAG_MODE_DECLARE 885 #undef FLAG_MODE_DECLARE
883 #undef FLAG_MODE_DEFINE 886 #undef FLAG_MODE_DEFINE
884 #undef FLAG_MODE_DEFINE_DEFAULTS 887 #undef FLAG_MODE_DEFINE_DEFAULTS
885 #undef FLAG_MODE_META 888 #undef FLAG_MODE_META
886 #undef FLAG_MODE_DEFINE_IMPLICATIONS 889 #undef FLAG_MODE_DEFINE_IMPLICATIONS
887 890
888 #undef COMMA 891 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698