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

Side by Side Diff: src/objects.h

Issue 1227893005: TypeofMode replaces TypeofState and ContextualMode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments Created 5 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
« no previous file with comments | « src/mips64/lithium-mips64.h ('k') | src/ppc/codegen-ppc.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 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 STORE_AND_GROW_TRANSITION_SMI_TO_DOUBLE, 168 STORE_AND_GROW_TRANSITION_SMI_TO_DOUBLE,
169 STORE_AND_GROW_TRANSITION_DOUBLE_TO_OBJECT, 169 STORE_AND_GROW_TRANSITION_DOUBLE_TO_OBJECT,
170 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_OBJECT, 170 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_OBJECT,
171 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_DOUBLE, 171 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_DOUBLE,
172 STORE_AND_GROW_TRANSITION_HOLEY_DOUBLE_TO_OBJECT, 172 STORE_AND_GROW_TRANSITION_HOLEY_DOUBLE_TO_OBJECT,
173 STORE_NO_TRANSITION_IGNORE_OUT_OF_BOUNDS, 173 STORE_NO_TRANSITION_IGNORE_OUT_OF_BOUNDS,
174 STORE_NO_TRANSITION_HANDLE_COW 174 STORE_NO_TRANSITION_HANDLE_COW
175 }; 175 };
176 176
177 177
178 enum ContextualMode { 178 enum TypeofMode { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF };
179 NOT_CONTEXTUAL,
180 CONTEXTUAL
181 };
182 179
183 180
184 enum MutableMode { 181 enum MutableMode {
185 MUTABLE, 182 MUTABLE,
186 IMMUTABLE 183 IMMUTABLE
187 }; 184 };
188 185
189 186
190 enum ExternalArrayType { 187 enum ExternalArrayType {
191 kExternalInt8Array = 1, 188 kExternalInt8Array = 1,
(...skipping 10632 matching lines...) Expand 10 before | Expand all | Expand 10 after
10824 } else { 10821 } else {
10825 value &= ~(1 << bit_position); 10822 value &= ~(1 << bit_position);
10826 } 10823 }
10827 return value; 10824 return value;
10828 } 10825 }
10829 }; 10826 };
10830 10827
10831 } } // namespace v8::internal 10828 } } // namespace v8::internal
10832 10829
10833 #endif // V8_OBJECTS_H_ 10830 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips64/lithium-mips64.h ('k') | src/ppc/codegen-ppc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698