| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 F(ExportFromRuntime, 1, 1) \ | 299 F(ExportFromRuntime, 1, 1) \ |
| 300 F(IncrementUseCounter, 1, 1) \ | 300 F(IncrementUseCounter, 1, 1) \ |
| 301 F(InstallToContext, 1, 1) \ | 301 F(InstallToContext, 1, 1) \ |
| 302 F(Interrupt, 0, 1) \ | 302 F(Interrupt, 0, 1) \ |
| 303 F(IS_VAR, 1, 1) \ | 303 F(IS_VAR, 1, 1) \ |
| 304 F(NewReferenceError, 2, 1) \ | 304 F(NewReferenceError, 2, 1) \ |
| 305 F(NewSyntaxError, 2, 1) \ | 305 F(NewSyntaxError, 2, 1) \ |
| 306 F(NewTypeError, 2, 1) \ | 306 F(NewTypeError, 2, 1) \ |
| 307 F(OrdinaryHasInstance, 2, 1) \ | 307 F(OrdinaryHasInstance, 2, 1) \ |
| 308 F(PromiseReject, 3, 1) \ | 308 F(PromiseReject, 3, 1) \ |
| 309 F(PromiseFulfill, 3, 1) \ | |
| 310 F(PromiseHookInit, 2, 1) \ | 309 F(PromiseHookInit, 2, 1) \ |
| 311 F(PromiseHookResolve, 1, 1) \ | 310 F(PromiseHookResolve, 1, 1) \ |
| 312 F(PromiseHookBefore, 1, 1) \ | 311 F(PromiseHookBefore, 1, 1) \ |
| 313 F(PromiseHookAfter, 1, 1) \ | 312 F(PromiseHookAfter, 1, 1) \ |
| 314 F(PromiseMarkAsHandled, 1, 1) \ | 313 F(PromiseMarkAsHandled, 1, 1) \ |
| 315 F(PromiseMarkHandledHint, 1, 1) \ | 314 F(PromiseMarkHandledHint, 1, 1) \ |
| 316 F(PromiseRejectEventFromStack, 2, 1) \ | 315 F(PromiseRejectEventFromStack, 2, 1) \ |
| 317 F(PromiseRevokeReject, 1, 1) \ | 316 F(PromiseRevokeReject, 1, 1) \ |
| 318 F(PromiseResult, 1, 1) \ | 317 F(PromiseResult, 1, 1) \ |
| 319 F(PromiseStatus, 1, 1) \ | 318 F(PromiseStatus, 1, 1) \ |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 | 1146 |
| 1148 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1147 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1149 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1148 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1150 STATIC_ASSERT(LANGUAGE_END == 2); | 1149 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1151 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1150 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1152 | 1151 |
| 1153 } // namespace internal | 1152 } // namespace internal |
| 1154 } // namespace v8 | 1153 } // namespace v8 |
| 1155 | 1154 |
| 1156 #endif // V8_RUNTIME_RUNTIME_H_ | 1155 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |