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

Side by Side Diff: src/runtime/runtime.h

Issue 618123005: Revert "Use symbols instead of hidden properties for i18n markers." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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/hydrogen-instructions.cc ('k') | src/runtime/runtime.cc » ('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_RUNTIME_H_ 5 #ifndef V8_RUNTIME_H_
6 #define V8_RUNTIME_H_ 6 #define V8_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 F(IsAttachedGlobal, 1, 1) \ 249 F(IsAttachedGlobal, 1, 1) \
250 \ 250 \
251 F(AddNamedProperty, 4, 1) \ 251 F(AddNamedProperty, 4, 1) \
252 F(AddPropertyForTemplate, 4, 1) \ 252 F(AddPropertyForTemplate, 4, 1) \
253 F(SetProperty, 4, 1) \ 253 F(SetProperty, 4, 1) \
254 F(AddElement, 4, 1) \ 254 F(AddElement, 4, 1) \
255 F(DefineApiAccessorProperty, 5, 1) \ 255 F(DefineApiAccessorProperty, 5, 1) \
256 F(DefineDataPropertyUnchecked, 4, 1) \ 256 F(DefineDataPropertyUnchecked, 4, 1) \
257 F(DefineAccessorPropertyUnchecked, 5, 1) \ 257 F(DefineAccessorPropertyUnchecked, 5, 1) \
258 F(GetDataProperty, 2, 1) \ 258 F(GetDataProperty, 2, 1) \
259 F(SetHiddenProperty, 3, 1) \
259 \ 260 \
260 /* Arrays */ \ 261 /* Arrays */ \
261 F(RemoveArrayHoles, 2, 1) \ 262 F(RemoveArrayHoles, 2, 1) \
262 F(GetArrayKeys, 2, 1) \ 263 F(GetArrayKeys, 2, 1) \
263 F(MoveArrayContents, 2, 1) \ 264 F(MoveArrayContents, 2, 1) \
264 F(EstimateNumberOfElements, 1, 1) \ 265 F(EstimateNumberOfElements, 1, 1) \
265 F(NormalizeElements, 1, 1) \ 266 F(NormalizeElements, 1, 1) \
266 \ 267 \
267 /* Getters and Setters */ \ 268 /* Getters and Setters */ \
268 F(LookupAccessor, 3, 1) \ 269 F(LookupAccessor, 3, 1) \
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 class AllocateDoubleAlignFlag : public BitField<bool, 0, 1> {}; 901 class AllocateDoubleAlignFlag : public BitField<bool, 0, 1> {};
901 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; 902 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {};
902 903
903 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 904 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
904 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 905 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
905 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; 906 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {};
906 } 907 }
907 } // namespace v8::internal 908 } // namespace v8::internal
908 909
909 #endif // V8_RUNTIME_H_ 910 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/runtime/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698