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/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
10 #include "src/objects.h" | 10 #include "src/objects.h" |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 F(ThrowReferenceError, 1, 1) \ | 281 F(ThrowReferenceError, 1, 1) \ |
282 F(ThrowApplyNonFunction, 1, 1) \ | 282 F(ThrowApplyNonFunction, 1, 1) \ |
283 F(NewTypeError, 2, 1) \ | 283 F(NewTypeError, 2, 1) \ |
284 F(NewSyntaxError, 2, 1) \ | 284 F(NewSyntaxError, 2, 1) \ |
285 F(NewReferenceError, 2, 1) \ | 285 F(NewReferenceError, 2, 1) \ |
286 F(ThrowIllegalInvocation, 0, 1) \ | 286 F(ThrowIllegalInvocation, 0, 1) \ |
287 F(ThrowIncompatibleMethodReceiver, 2, 1) \ | 287 F(ThrowIncompatibleMethodReceiver, 2, 1) \ |
288 F(ThrowIteratorResultNotAnObject, 1, 1) \ | 288 F(ThrowIteratorResultNotAnObject, 1, 1) \ |
289 F(ThrowGeneratorRunning, 0, 1) \ | 289 F(ThrowGeneratorRunning, 0, 1) \ |
290 F(ThrowStackOverflow, 0, 1) \ | 290 F(ThrowStackOverflow, 0, 1) \ |
| 291 F(ThrowWasmError, 1, 1) \ |
291 F(PromiseRejectEvent, 3, 1) \ | 292 F(PromiseRejectEvent, 3, 1) \ |
292 F(PromiseRevokeReject, 1, 1) \ | 293 F(PromiseRevokeReject, 1, 1) \ |
293 F(StackGuard, 0, 1) \ | 294 F(StackGuard, 0, 1) \ |
294 F(Interrupt, 0, 1) \ | 295 F(Interrupt, 0, 1) \ |
295 F(AllocateInNewSpace, 1, 1) \ | 296 F(AllocateInNewSpace, 1, 1) \ |
296 F(AllocateInTargetSpace, 2, 1) \ | 297 F(AllocateInTargetSpace, 2, 1) \ |
297 F(CollectStackTrace, 2, 1) \ | 298 F(CollectStackTrace, 2, 1) \ |
298 F(MessageGetStartPosition, 1, 1) \ | 299 F(MessageGetStartPosition, 1, 1) \ |
299 F(MessageGetScript, 1, 1) \ | 300 F(MessageGetScript, 1, 1) \ |
300 F(FormatMessageString, 4, 1) \ | 301 F(FormatMessageString, 4, 1) \ |
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1173 | 1174 |
1174 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1175 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1175 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1176 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1176 STATIC_ASSERT(LANGUAGE_END == 3); | 1177 STATIC_ASSERT(LANGUAGE_END == 3); |
1177 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1178 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1178 | 1179 |
1179 } // namespace internal | 1180 } // namespace internal |
1180 } // namespace v8 | 1181 } // namespace v8 |
1181 | 1182 |
1182 #endif // V8_RUNTIME_RUNTIME_H_ | 1183 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |