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

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

Issue 1162993006: Add support for Embedded Constant Pools for PPC and Arm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « src/factory.cc ('k') | src/frames.h » ('j') | src/objects.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 // 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 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 "dump allocations digest each n-th allocation") 1030 "dump allocations digest each n-th allocation")
1031 1031
1032 1032
1033 // 1033 //
1034 // Read-only flags 1034 // Read-only flags
1035 // 1035 //
1036 #undef FLAG 1036 #undef FLAG
1037 #define FLAG FLAG_READONLY 1037 #define FLAG FLAG_READONLY
1038 1038
1039 // assembler.h 1039 // assembler.h
1040 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, 1040 DEFINE_BOOL(enable_embedded_constant_pool, V8_EMBEDDED_CONSTANT_POOL,
1041 "enable use of out-of-line constant pools (ARM only)") 1041 "enable use of embedded constant pools (ARM/PPC only)")
1042 1042
1043 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING, 1043 DEFINE_BOOL(unbox_double_fields, V8_DOUBLE_FIELDS_UNBOXING,
1044 "enable in-object double fields unboxing (64-bit only)") 1044 "enable in-object double fields unboxing (64-bit only)")
1045 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields) 1045 DEFINE_IMPLICATION(unbox_double_fields, track_double_fields)
1046 1046
1047 1047
1048 // Cleanup... 1048 // Cleanup...
1049 #undef FLAG_FULL 1049 #undef FLAG_FULL
1050 #undef FLAG_READONLY 1050 #undef FLAG_READONLY
1051 #undef FLAG 1051 #undef FLAG
(...skipping 15 matching lines...) Expand all
1067 #undef DEFINE_ALIAS_FLOAT 1067 #undef DEFINE_ALIAS_FLOAT
1068 #undef DEFINE_ALIAS_ARGS 1068 #undef DEFINE_ALIAS_ARGS
1069 1069
1070 #undef FLAG_MODE_DECLARE 1070 #undef FLAG_MODE_DECLARE
1071 #undef FLAG_MODE_DEFINE 1071 #undef FLAG_MODE_DEFINE
1072 #undef FLAG_MODE_DEFINE_DEFAULTS 1072 #undef FLAG_MODE_DEFINE_DEFAULTS
1073 #undef FLAG_MODE_META 1073 #undef FLAG_MODE_META
1074 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1074 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1075 1075
1076 #undef COMMA 1076 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/frames.h » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698