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/unicode.h" | 10 #include "src/unicode.h" |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 F(InstallToContext, 1, 1) \ | 304 F(InstallToContext, 1, 1) \ |
305 F(Throw, 1, 1) \ | 305 F(Throw, 1, 1) \ |
306 F(ReThrow, 1, 1) \ | 306 F(ReThrow, 1, 1) \ |
307 F(UnwindAndFindExceptionHandler, 0, 1) \ | 307 F(UnwindAndFindExceptionHandler, 0, 1) \ |
308 F(PromoteScheduledException, 0, 1) \ | 308 F(PromoteScheduledException, 0, 1) \ |
309 F(ThrowReferenceError, 1, 1) \ | 309 F(ThrowReferenceError, 1, 1) \ |
310 F(NewTypeError, 2, 1) \ | 310 F(NewTypeError, 2, 1) \ |
311 F(NewSyntaxError, 2, 1) \ | 311 F(NewSyntaxError, 2, 1) \ |
312 F(NewReferenceError, 2, 1) \ | 312 F(NewReferenceError, 2, 1) \ |
313 F(ThrowIteratorResultNotAnObject, 1, 1) \ | 313 F(ThrowIteratorResultNotAnObject, 1, 1) \ |
| 314 F(ThrowStackOverflow, 0, 1) \ |
314 F(ThrowStrongModeImplicitConversion, 0, 1) \ | 315 F(ThrowStrongModeImplicitConversion, 0, 1) \ |
315 F(PromiseRejectEvent, 3, 1) \ | 316 F(PromiseRejectEvent, 3, 1) \ |
316 F(PromiseRevokeReject, 1, 1) \ | 317 F(PromiseRevokeReject, 1, 1) \ |
317 F(StackGuard, 0, 1) \ | 318 F(StackGuard, 0, 1) \ |
318 F(Interrupt, 0, 1) \ | 319 F(Interrupt, 0, 1) \ |
319 F(AllocateInNewSpace, 1, 1) \ | 320 F(AllocateInNewSpace, 1, 1) \ |
320 F(AllocateInTargetSpace, 2, 1) \ | 321 F(AllocateInTargetSpace, 2, 1) \ |
321 F(CollectStackTrace, 2, 1) \ | 322 F(CollectStackTrace, 2, 1) \ |
322 F(MessageGetStartPosition, 1, 1) \ | 323 F(MessageGetStartPosition, 1, 1) \ |
323 F(MessageGetScript, 1, 1) \ | 324 F(MessageGetScript, 1, 1) \ |
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 | 1235 |
1235 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1236 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1236 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1237 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1237 STATIC_ASSERT(LANGUAGE_END == 3); | 1238 STATIC_ASSERT(LANGUAGE_END == 3); |
1238 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1239 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1239 | 1240 |
1240 } // namespace internal | 1241 } // namespace internal |
1241 } // namespace v8 | 1242 } // namespace v8 |
1242 | 1243 |
1243 #endif // V8_RUNTIME_RUNTIME_H_ | 1244 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |