| 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 F(FinalizeInstanceSize, 1, 1) \ | 497 F(FinalizeInstanceSize, 1, 1) \ |
| 498 F(Throw, 1, 1) \ | 498 F(Throw, 1, 1) \ |
| 499 F(ReThrow, 1, 1) \ | 499 F(ReThrow, 1, 1) \ |
| 500 F(ThrowReferenceError, 1, 1) \ | 500 F(ThrowReferenceError, 1, 1) \ |
| 501 F(ThrowNotDateError, 0, 1) \ | 501 F(ThrowNotDateError, 0, 1) \ |
| 502 F(StackGuard, 0, 1) \ | 502 F(StackGuard, 0, 1) \ |
| 503 F(Interrupt, 0, 1) \ | 503 F(Interrupt, 0, 1) \ |
| 504 F(PromoteScheduledException, 0, 1) \ | 504 F(PromoteScheduledException, 0, 1) \ |
| 505 \ | 505 \ |
| 506 /* Contexts */ \ | 506 /* Contexts */ \ |
| 507 F(NewGlobalContext, 2, 1) \ | 507 F(NewScriptContext, 2, 1) \ |
| 508 F(NewFunctionContext, 1, 1) \ | 508 F(NewFunctionContext, 1, 1) \ |
| 509 F(PushWithContext, 2, 1) \ | 509 F(PushWithContext, 2, 1) \ |
| 510 F(PushCatchContext, 3, 1) \ | 510 F(PushCatchContext, 3, 1) \ |
| 511 F(PushBlockContext, 2, 1) \ | 511 F(PushBlockContext, 2, 1) \ |
| 512 F(PushModuleContext, 2, 1) \ | 512 F(PushModuleContext, 2, 1) \ |
| 513 F(DeleteLookupSlot, 2, 1) \ | 513 F(DeleteLookupSlot, 2, 1) \ |
| 514 F(StoreLookupSlot, 4, 1) \ | 514 F(StoreLookupSlot, 4, 1) \ |
| 515 \ | 515 \ |
| 516 /* Declarations and initialization */ \ | 516 /* Declarations and initialization */ \ |
| 517 F(DeclareGlobals, 3, 1) \ | 517 F(DeclareGlobals, 3, 1) \ |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 888 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
| 889 | 889 |
| 890 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 890 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 891 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 891 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 892 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 892 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
| 893 | 893 |
| 894 } // namespace internal | 894 } // namespace internal |
| 895 } // namespace v8 | 895 } // namespace v8 |
| 896 | 896 |
| 897 #endif // V8_RUNTIME_RUNTIME_H_ | 897 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |