Chromium Code Reviews

Side by Side Diff: src/runtime.h

Issue 486763002: Make all global private symbols own symbols. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rename Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | 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 // 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/zone.h" 9 #include "src/zone.h"
10 10
(...skipping 241 matching lines...)
252 \ 252 \
253 /* ES5 */ \ 253 /* ES5 */ \
254 F(ObjectFreeze, 1, 1) \ 254 F(ObjectFreeze, 1, 1) \
255 \ 255 \
256 /* Harmony modules */ \ 256 /* Harmony modules */ \
257 F(IsJSModule, 1, 1) \ 257 F(IsJSModule, 1, 1) \
258 \ 258 \
259 /* Harmony symbols */ \ 259 /* Harmony symbols */ \
260 F(CreateSymbol, 1, 1) \ 260 F(CreateSymbol, 1, 1) \
261 F(CreatePrivateSymbol, 1, 1) \ 261 F(CreatePrivateSymbol, 1, 1) \
262 F(CreateGlobalPrivateSymbol, 1, 1) \ 262 F(CreateGlobalPrivateOwnSymbol, 1, 1) \
263 F(CreatePrivateOwnSymbol, 1, 1) \ 263 F(CreatePrivateOwnSymbol, 1, 1) \
264 F(NewSymbolWrapper, 1, 1) \ 264 F(NewSymbolWrapper, 1, 1) \
265 F(SymbolDescription, 1, 1) \ 265 F(SymbolDescription, 1, 1) \
266 F(SymbolRegistry, 0, 1) \ 266 F(SymbolRegistry, 0, 1) \
267 F(SymbolIsPrivate, 1, 1) \ 267 F(SymbolIsPrivate, 1, 1) \
268 \ 268 \
269 /* Harmony proxies */ \ 269 /* Harmony proxies */ \
270 F(CreateJSProxy, 2, 1) \ 270 F(CreateJSProxy, 2, 1) \
271 F(CreateJSFunctionProxy, 4, 1) \ 271 F(CreateJSFunctionProxy, 4, 1) \
272 F(IsJSProxy, 1, 1) \ 272 F(IsJSProxy, 1, 1) \
(...skipping 627 matching lines...)
900 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 900 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
901 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 901 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
902 902
903 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 903 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
904 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 904 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
905 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; 905 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {};
906 906
907 } } // namespace v8::internal 907 } } // namespace v8::internal
908 908
909 #endif // V8_RUNTIME_H_ 909 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine