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

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: Created 7 years, 2 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/heap.h » ('j') | src/spaces.h » ('J')
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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 499 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
500 DEFINE_bool(trace_gc, false, 500 DEFINE_bool(trace_gc, false,
501 "print one trace line following each garbage collection") 501 "print one trace line following each garbage collection")
502 DEFINE_bool(trace_gc_nvp, false, 502 DEFINE_bool(trace_gc_nvp, false,
503 "print one detailed trace line in name=value format " 503 "print one detailed trace line in name=value format "
504 "after each garbage collection") 504 "after each garbage collection")
505 DEFINE_bool(trace_gc_ignore_scavenger, false, 505 DEFINE_bool(trace_gc_ignore_scavenger, false,
506 "do not print trace line after scavenger collection") 506 "do not print trace line after scavenger collection")
507 DEFINE_bool(print_cumulative_gc_stat, false, 507 DEFINE_bool(print_cumulative_gc_stat, false,
508 "print cumulative GC statistics in name=value format on exit") 508 "print cumulative GC statistics in name=value format on exit")
509 DEFINE_bool(print_max_heap_committed, false,
510 "print statistics of the maxiumum memory committed by the heap GC "
Hannes Payer (out of office) 2013/10/22 14:46:07 maximum
Hannes Payer (out of office) 2013/10/22 14:46:07 "by the heap GC" => "for the heap"
rmcilroy 2013/10/23 14:40:23 Done.
rmcilroy 2013/10/23 14:40:23 Done.
511 "in name=value format on exit")
509 DEFINE_bool(trace_gc_verbose, false, 512 DEFINE_bool(trace_gc_verbose, false,
510 "print more details following each garbage collection") 513 "print more details following each garbage collection")
511 DEFINE_bool(trace_fragmentation, false, 514 DEFINE_bool(trace_fragmentation, false,
512 "report fragmentation for old pointer and data pages") 515 "report fragmentation for old pointer and data pages")
513 DEFINE_bool(trace_external_memory, false, 516 DEFINE_bool(trace_external_memory, false,
514 "print amount of external allocated memory after each time " 517 "print amount of external allocated memory after each time "
515 "it is adjusted.") 518 "it is adjusted.")
516 DEFINE_bool(collect_maps, true, 519 DEFINE_bool(collect_maps, true,
517 "garbage collect maps from which no objects can be reached") 520 "garbage collect maps from which no objects can be reached")
518 DEFINE_bool(weak_embedded_maps_in_optimized_code, true, 521 DEFINE_bool(weak_embedded_maps_in_optimized_code, true,
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 #undef DEFINE_ALIAS_float 876 #undef DEFINE_ALIAS_float
874 #undef DEFINE_ALIAS_args 877 #undef DEFINE_ALIAS_args
875 878
876 #undef FLAG_MODE_DECLARE 879 #undef FLAG_MODE_DECLARE
877 #undef FLAG_MODE_DEFINE 880 #undef FLAG_MODE_DEFINE
878 #undef FLAG_MODE_DEFINE_DEFAULTS 881 #undef FLAG_MODE_DEFINE_DEFAULTS
879 #undef FLAG_MODE_META 882 #undef FLAG_MODE_META
880 #undef FLAG_MODE_DEFINE_IMPLICATIONS 883 #undef FLAG_MODE_DEFINE_IMPLICATIONS
881 884
882 #undef COMMA 885 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/spaces.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698