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

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

Issue 10832342: Rename "global context" to "native context", (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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
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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 552
553 // contexts.cc 553 // contexts.cc
554 DEFINE_bool(trace_contexts, false, "trace contexts operations") 554 DEFINE_bool(trace_contexts, false, "trace contexts operations")
555 555
556 // heap.cc 556 // heap.cc
557 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") 557 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
558 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") 558 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
559 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") 559 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
560 DEFINE_bool(code_stats, false, "report code statistics after GC") 560 DEFINE_bool(code_stats, false, "report code statistics after GC")
561 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 561 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
562 DEFINE_bool(verify_global_context_separation, false, 562 DEFINE_bool(verify_native_context_separation, false,
563 "verify that code holds on to at most one global context after GC") 563 "verify that code holds on to at most one native context after GC")
564 DEFINE_bool(print_handles, false, "report handles after GC") 564 DEFINE_bool(print_handles, false, "report handles after GC")
565 DEFINE_bool(print_global_handles, false, "report global handles after GC") 565 DEFINE_bool(print_global_handles, false, "report global handles after GC")
566 566
567 // ic.cc 567 // ic.cc
568 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") 568 DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
569 569
570 // interface.cc 570 // interface.cc
571 DEFINE_bool(print_interfaces, false, "print interfaces") 571 DEFINE_bool(print_interfaces, false, "print interfaces")
572 DEFINE_bool(print_interface_details, false, "print interface inference details") 572 DEFINE_bool(print_interface_details, false, "print interface inference details")
573 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces") 573 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces")
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 #undef DEFINE_bool 688 #undef DEFINE_bool
689 #undef DEFINE_int 689 #undef DEFINE_int
690 #undef DEFINE_string 690 #undef DEFINE_string
691 #undef DEFINE_implication 691 #undef DEFINE_implication
692 692
693 #undef FLAG_MODE_DECLARE 693 #undef FLAG_MODE_DECLARE
694 #undef FLAG_MODE_DEFINE 694 #undef FLAG_MODE_DEFINE
695 #undef FLAG_MODE_DEFINE_DEFAULTS 695 #undef FLAG_MODE_DEFINE_DEFAULTS
696 #undef FLAG_MODE_META 696 #undef FLAG_MODE_META
697 #undef FLAG_MODE_DEFINE_IMPLICATIONS 697 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698