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

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

Issue 609843002: Refactor FrameAndConstantPoolScope and ConstantPoolUnavailableScope to be architecture independent (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Eliminate unreachable paths. Created 6 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 | « src/assembler.cc ('k') | src/ia32/macro-assembler-ia32.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 DEFINE_INT(dump_allocations_digest_at_alloc, 0, 894 DEFINE_INT(dump_allocations_digest_at_alloc, 0,
895 "dump allocations digest each n-th allocation") 895 "dump allocations digest each n-th allocation")
896 896
897 897
898 // 898 //
899 // Read-only flags 899 // Read-only flags
900 // 900 //
901 #undef FLAG 901 #undef FLAG
902 #define FLAG FLAG_READONLY 902 #define FLAG FLAG_READONLY
903 903
904 // assembler-arm.h 904 // assembler.h
905 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, 905 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL,
906 "enable use of out-of-line constant pools (ARM only)") 906 "enable use of out-of-line constant pools (ARM only)")
907 907
908 // Cleanup... 908 // Cleanup...
909 #undef FLAG_FULL 909 #undef FLAG_FULL
910 #undef FLAG_READONLY 910 #undef FLAG_READONLY
911 #undef FLAG 911 #undef FLAG
912 #undef FLAG_ALIAS 912 #undef FLAG_ALIAS
913 913
914 #undef DEFINE_BOOL 914 #undef DEFINE_BOOL
(...skipping 11 matching lines...) Expand all
926 #undef DEFINE_ALIAS_FLOAT 926 #undef DEFINE_ALIAS_FLOAT
927 #undef DEFINE_ALIAS_ARGS 927 #undef DEFINE_ALIAS_ARGS
928 928
929 #undef FLAG_MODE_DECLARE 929 #undef FLAG_MODE_DECLARE
930 #undef FLAG_MODE_DEFINE 930 #undef FLAG_MODE_DEFINE
931 #undef FLAG_MODE_DEFINE_DEFAULTS 931 #undef FLAG_MODE_DEFINE_DEFAULTS
932 #undef FLAG_MODE_META 932 #undef FLAG_MODE_META
933 #undef FLAG_MODE_DEFINE_IMPLICATIONS 933 #undef FLAG_MODE_DEFINE_IMPLICATIONS
934 934
935 #undef COMMA 935 #undef COMMA
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/macro-assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698