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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 F(ThrowIteratorResultNotAnObject, 1, 1) \ | 293 F(ThrowIteratorResultNotAnObject, 1, 1) \ |
294 F(ThrowGeneratorRunning, 0, 1) \ | 294 F(ThrowGeneratorRunning, 0, 1) \ |
295 F(ThrowStackOverflow, 0, 1) \ | 295 F(ThrowStackOverflow, 0, 1) \ |
296 F(ThrowWasmError, 2, 1) \ | 296 F(ThrowWasmError, 2, 1) \ |
297 F(PromiseRejectEvent, 3, 1) \ | 297 F(PromiseRejectEvent, 3, 1) \ |
298 F(PromiseRevokeReject, 1, 1) \ | 298 F(PromiseRevokeReject, 1, 1) \ |
299 F(StackGuard, 0, 1) \ | 299 F(StackGuard, 0, 1) \ |
300 F(Interrupt, 0, 1) \ | 300 F(Interrupt, 0, 1) \ |
301 F(AllocateInNewSpace, 1, 1) \ | 301 F(AllocateInNewSpace, 1, 1) \ |
302 F(AllocateInTargetSpace, 2, 1) \ | 302 F(AllocateInTargetSpace, 2, 1) \ |
| 303 F(AllocateSeqOneByteString, 1, 1) \ |
| 304 F(AllocateSeqTwoByteString, 1, 1) \ |
303 F(CollectStackTrace, 2, 1) \ | 305 F(CollectStackTrace, 2, 1) \ |
304 F(MessageGetStartPosition, 1, 1) \ | 306 F(MessageGetStartPosition, 1, 1) \ |
305 F(MessageGetScript, 1, 1) \ | 307 F(MessageGetScript, 1, 1) \ |
306 F(FormatMessageString, 4, 1) \ | 308 F(FormatMessageString, 4, 1) \ |
307 F(CallSiteGetFileNameRT, 1, 1) \ | 309 F(CallSiteGetFileNameRT, 1, 1) \ |
308 F(CallSiteGetFunctionNameRT, 1, 1) \ | 310 F(CallSiteGetFunctionNameRT, 1, 1) \ |
309 F(CallSiteGetScriptNameOrSourceUrlRT, 1, 1) \ | 311 F(CallSiteGetScriptNameOrSourceUrlRT, 1, 1) \ |
310 F(CallSiteGetMethodNameRT, 1, 1) \ | 312 F(CallSiteGetMethodNameRT, 1, 1) \ |
311 F(CallSiteGetLineNumberRT, 1, 1) \ | 313 F(CallSiteGetLineNumberRT, 1, 1) \ |
312 F(CallSiteGetColumnNumberRT, 1, 1) \ | 314 F(CallSiteGetColumnNumberRT, 1, 1) \ |
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1153 | 1155 |
1154 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1156 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1155 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1157 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1156 STATIC_ASSERT(LANGUAGE_END == 3); | 1158 STATIC_ASSERT(LANGUAGE_END == 3); |
1157 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1159 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1158 | 1160 |
1159 } // namespace internal | 1161 } // namespace internal |
1160 } // namespace v8 | 1162 } // namespace v8 |
1161 | 1163 |
1162 #endif // V8_RUNTIME_RUNTIME_H_ | 1164 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |