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

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

Issue 10694157: Implement verification of context separation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 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/mark-compact.h » ('j') | src/mark-compact.cc » ('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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 534
535 // contexts.cc 535 // contexts.cc
536 DEFINE_bool(trace_contexts, false, "trace contexts operations") 536 DEFINE_bool(trace_contexts, false, "trace contexts operations")
537 537
538 // heap.cc 538 // heap.cc
539 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") 539 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
540 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") 540 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
541 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") 541 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
542 DEFINE_bool(code_stats, false, "report code statistics after GC") 542 DEFINE_bool(code_stats, false, "report code statistics after GC")
543 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 543 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
544 DEFINE_bool(verify_context_separation, false,
545 "verify that code objects keep at most one context alive after GC")
Toon Verwaest 2012/07/13 09:02:04 Is it one context, or one global context?
544 DEFINE_bool(print_handles, false, "report handles after GC") 546 DEFINE_bool(print_handles, false, "report handles after GC")
545 DEFINE_bool(print_global_handles, false, "report global handles after GC") 547 DEFINE_bool(print_global_handles, false, "report global handles after GC")
546 548
547 // ic.cc 549 // ic.cc
548 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") 550 DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
549 551
550 // interface.cc 552 // interface.cc
551 DEFINE_bool(print_interfaces, false, "print interfaces") 553 DEFINE_bool(print_interfaces, false, "print interfaces")
552 DEFINE_bool(print_interface_details, false, "print interface inference details") 554 DEFINE_bool(print_interface_details, false, "print interface inference details")
553 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces") 555 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces")
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 #undef DEFINE_bool 670 #undef DEFINE_bool
669 #undef DEFINE_int 671 #undef DEFINE_int
670 #undef DEFINE_string 672 #undef DEFINE_string
671 #undef DEFINE_implication 673 #undef DEFINE_implication
672 674
673 #undef FLAG_MODE_DECLARE 675 #undef FLAG_MODE_DECLARE
674 #undef FLAG_MODE_DEFINE 676 #undef FLAG_MODE_DEFINE
675 #undef FLAG_MODE_DEFINE_DEFAULTS 677 #undef FLAG_MODE_DEFINE_DEFAULTS
676 #undef FLAG_MODE_META 678 #undef FLAG_MODE_META
677 #undef FLAG_MODE_DEFINE_IMPLICATIONS 679 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/mark-compact.h » ('j') | src/mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698