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_H_ | 5 #ifndef V8_RUNTIME_H_ |
6 #define V8_RUNTIME_H_ | 6 #define V8_RUNTIME_H_ |
7 | 7 |
8 #include "allocation.h" | 8 #include "allocation.h" |
9 #include "zone.h" | 9 #include "zone.h" |
10 | 10 |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 /* Statements */ \ | 575 /* Statements */ \ |
576 F(NewClosure, 3, 1) \ | 576 F(NewClosure, 3, 1) \ |
577 F(NewClosureFromStubFailure, 1, 1) \ | 577 F(NewClosureFromStubFailure, 1, 1) \ |
578 F(NewObject, 1, 1) \ | 578 F(NewObject, 1, 1) \ |
579 F(NewObjectWithAllocationSite, 2, 1) \ | 579 F(NewObjectWithAllocationSite, 2, 1) \ |
580 F(FinalizeInstanceSize, 1, 1) \ | 580 F(FinalizeInstanceSize, 1, 1) \ |
581 F(Throw, 1, 1) \ | 581 F(Throw, 1, 1) \ |
582 F(ReThrow, 1, 1) \ | 582 F(ReThrow, 1, 1) \ |
583 F(ThrowReferenceError, 1, 1) \ | 583 F(ThrowReferenceError, 1, 1) \ |
584 F(ThrowNotDateError, 0, 1) \ | 584 F(ThrowNotDateError, 0, 1) \ |
585 F(ThrowMessage, 1, 1) \ | |
586 F(StackGuard, 0, 1) \ | 585 F(StackGuard, 0, 1) \ |
587 F(Interrupt, 0, 1) \ | 586 F(Interrupt, 0, 1) \ |
588 F(PromoteScheduledException, 0, 1) \ | 587 F(PromoteScheduledException, 0, 1) \ |
589 \ | 588 \ |
590 /* Contexts */ \ | 589 /* Contexts */ \ |
591 F(NewGlobalContext, 2, 1) \ | 590 F(NewGlobalContext, 2, 1) \ |
592 F(NewFunctionContext, 1, 1) \ | 591 F(NewFunctionContext, 1, 1) \ |
593 F(PushWithContext, 2, 1) \ | 592 F(PushWithContext, 2, 1) \ |
594 F(PushCatchContext, 3, 1) \ | 593 F(PushCatchContext, 3, 1) \ |
595 F(PushBlockContext, 2, 1) \ | 594 F(PushBlockContext, 2, 1) \ |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 888 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
890 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 889 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
891 | 890 |
892 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 891 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
893 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 892 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
894 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; | 893 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; |
895 | 894 |
896 } } // namespace v8::internal | 895 } } // namespace v8::internal |
897 | 896 |
898 #endif // V8_RUNTIME_H_ | 897 #endif // V8_RUNTIME_H_ |
OLD | NEW |