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_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 F(BreakIteratorBreakType, 1, 1) | 264 F(BreakIteratorBreakType, 1, 1) |
265 #else | 265 #else |
266 #define FOR_EACH_INTRINSIC_I18N(F) | 266 #define FOR_EACH_INTRINSIC_I18N(F) |
267 #endif | 267 #endif |
268 | 268 |
269 | 269 |
270 #define FOR_EACH_INTRINSIC_INTERNAL(F) \ | 270 #define FOR_EACH_INTRINSIC_INTERNAL(F) \ |
271 F(CheckIsBootstrapping, 0, 1) \ | 271 F(CheckIsBootstrapping, 0, 1) \ |
272 F(Throw, 1, 1) \ | 272 F(Throw, 1, 1) \ |
273 F(ReThrow, 1, 1) \ | 273 F(ReThrow, 1, 1) \ |
274 F(FindExceptionHandler, 0, 1) \ | 274 F(UnwindAndFindExceptionHandler, 0, 1) \ |
275 F(PromoteScheduledException, 0, 1) \ | 275 F(PromoteScheduledException, 0, 1) \ |
276 F(ThrowReferenceError, 1, 1) \ | 276 F(ThrowReferenceError, 1, 1) \ |
277 F(ThrowIteratorResultNotAnObject, 1, 1) \ | 277 F(ThrowIteratorResultNotAnObject, 1, 1) \ |
278 F(PromiseRejectEvent, 3, 1) \ | 278 F(PromiseRejectEvent, 3, 1) \ |
279 F(PromiseRevokeReject, 1, 1) \ | 279 F(PromiseRevokeReject, 1, 1) \ |
280 F(PromiseHasHandlerSymbol, 0, 1) \ | 280 F(PromiseHasHandlerSymbol, 0, 1) \ |
281 F(StackGuard, 0, 1) \ | 281 F(StackGuard, 0, 1) \ |
282 F(Interrupt, 0, 1) \ | 282 F(Interrupt, 0, 1) \ |
283 F(AllocateInNewSpace, 1, 1) \ | 283 F(AllocateInNewSpace, 1, 1) \ |
284 F(AllocateInTargetSpace, 2, 1) \ | 284 F(AllocateInTargetSpace, 2, 1) \ |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
864 | 864 |
865 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 865 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
866 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 866 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
867 STATIC_ASSERT(LANGUAGE_END == 3); | 867 STATIC_ASSERT(LANGUAGE_END == 3); |
868 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 868 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
869 | 869 |
870 } // namespace internal | 870 } // namespace internal |
871 } // namespace v8 | 871 } // namespace v8 |
872 | 872 |
873 #endif // V8_RUNTIME_RUNTIME_H_ | 873 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |