OLD | NEW |
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...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 /* ES5 */ \ | 252 /* ES5 */ \ |
253 F(ObjectFreeze, 1, 1) \ | 253 F(ObjectFreeze, 1, 1) \ |
254 \ | 254 \ |
255 /* Harmony modules */ \ | 255 /* Harmony modules */ \ |
256 F(IsJSModule, 1, 1) \ | 256 F(IsJSModule, 1, 1) \ |
257 \ | 257 \ |
258 /* Harmony symbols */ \ | 258 /* Harmony symbols */ \ |
259 F(CreateSymbol, 1, 1) \ | 259 F(CreateSymbol, 1, 1) \ |
260 F(CreatePrivateSymbol, 1, 1) \ | 260 F(CreatePrivateSymbol, 1, 1) \ |
261 F(CreateGlobalPrivateSymbol, 1, 1) \ | 261 F(CreateGlobalPrivateSymbol, 1, 1) \ |
| 262 F(CreatePrivateOwnSymbol, 1, 1) \ |
262 F(NewSymbolWrapper, 1, 1) \ | 263 F(NewSymbolWrapper, 1, 1) \ |
263 F(SymbolDescription, 1, 1) \ | 264 F(SymbolDescription, 1, 1) \ |
264 F(SymbolRegistry, 0, 1) \ | 265 F(SymbolRegistry, 0, 1) \ |
265 F(SymbolIsPrivate, 1, 1) \ | 266 F(SymbolIsPrivate, 1, 1) \ |
266 \ | 267 \ |
267 /* Harmony proxies */ \ | 268 /* Harmony proxies */ \ |
268 F(CreateJSProxy, 2, 1) \ | 269 F(CreateJSProxy, 2, 1) \ |
269 F(CreateJSFunctionProxy, 4, 1) \ | 270 F(CreateJSFunctionProxy, 4, 1) \ |
270 F(IsJSProxy, 1, 1) \ | 271 F(IsJSProxy, 1, 1) \ |
271 F(IsJSFunctionProxy, 1, 1) \ | 272 F(IsJSFunctionProxy, 1, 1) \ |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 903 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
903 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 904 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
904 | 905 |
905 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 906 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
906 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 907 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
907 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; | 908 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; |
908 | 909 |
909 } } // namespace v8::internal | 910 } } // namespace v8::internal |
910 | 911 |
911 #endif // V8_RUNTIME_H_ | 912 #endif // V8_RUNTIME_H_ |
OLD | NEW |