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

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

Issue 11085070: Enable --verify-heap in release mode (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: After rebase plus one new issue fix Created 8 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/heap.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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 // full-codegen.cc 362 // full-codegen.cc
363 DEFINE_bool(always_inline_smi_code, false, 363 DEFINE_bool(always_inline_smi_code, false,
364 "always inline smi code in non-opt code") 364 "always inline smi code in non-opt code")
365 365
366 // heap.cc 366 // heap.cc
367 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)") 367 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)")
368 DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)") 368 DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)")
369 DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)") 369 DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)")
370 DEFINE_bool(gc_global, false, "always perform global GCs") 370 DEFINE_bool(gc_global, false, "always perform global GCs")
371 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 371 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
372 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
372 DEFINE_bool(trace_gc, false, 373 DEFINE_bool(trace_gc, false,
373 "print one trace line following each garbage collection") 374 "print one trace line following each garbage collection")
374 DEFINE_bool(trace_gc_nvp, false, 375 DEFINE_bool(trace_gc_nvp, false,
375 "print one detailed trace line in name=value format " 376 "print one detailed trace line in name=value format "
376 "after each garbage collection") 377 "after each garbage collection")
377 DEFINE_bool(trace_gc_ignore_scavenger, false, 378 DEFINE_bool(trace_gc_ignore_scavenger, false,
378 "do not print trace line after scavenger collection") 379 "do not print trace line after scavenger collection")
379 DEFINE_bool(print_cumulative_gc_stat, false, 380 DEFINE_bool(print_cumulative_gc_stat, false,
380 "print cumulative GC statistics in name=value format on exit") 381 "print cumulative GC statistics in name=value format on exit")
381 DEFINE_bool(trace_gc_verbose, false, 382 DEFINE_bool(trace_gc_verbose, false,
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 DEFINE_bool(print_scopes, false, "print scopes") 562 DEFINE_bool(print_scopes, false, "print scopes")
562 563
563 // contexts.cc 564 // contexts.cc
564 DEFINE_bool(trace_contexts, false, "trace contexts operations") 565 DEFINE_bool(trace_contexts, false, "trace contexts operations")
565 566
566 // heap.cc 567 // heap.cc
567 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") 568 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
568 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") 569 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
569 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") 570 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
570 DEFINE_bool(code_stats, false, "report code statistics after GC") 571 DEFINE_bool(code_stats, false, "report code statistics after GC")
571 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 572
Michael Starzinger 2012/10/11 12:42:46 Also drop the empty line.
mvstanton1 2012/10/12 08:40:50 Done.
572 DEFINE_bool(verify_native_context_separation, false, 573 DEFINE_bool(verify_native_context_separation, false,
573 "verify that code holds on to at most one native context after GC") 574 "verify that code holds on to at most one native context after GC")
574 DEFINE_bool(print_handles, false, "report handles after GC") 575 DEFINE_bool(print_handles, false, "report handles after GC")
575 DEFINE_bool(print_global_handles, false, "report global handles after GC") 576 DEFINE_bool(print_global_handles, false, "report global handles after GC")
576 577
577 // ic.cc 578 // ic.cc
578 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") 579 DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
579 580
580 // interface.cc 581 // interface.cc
581 DEFINE_bool(print_interfaces, false, "print interfaces") 582 DEFINE_bool(print_interfaces, false, "print interfaces")
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 #undef DEFINE_bool 700 #undef DEFINE_bool
700 #undef DEFINE_int 701 #undef DEFINE_int
701 #undef DEFINE_string 702 #undef DEFINE_string
702 #undef DEFINE_implication 703 #undef DEFINE_implication
703 704
704 #undef FLAG_MODE_DECLARE 705 #undef FLAG_MODE_DECLARE
705 #undef FLAG_MODE_DEFINE 706 #undef FLAG_MODE_DEFINE
706 #undef FLAG_MODE_DEFINE_DEFAULTS 707 #undef FLAG_MODE_DEFINE_DEFAULTS
707 #undef FLAG_MODE_META 708 #undef FLAG_MODE_META
708 #undef FLAG_MODE_DEFINE_IMPLICATIONS 709 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/heap.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698