| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 F(InitializeLegacyConstLookupSlot, 3, 1) \ | 514 F(InitializeLegacyConstLookupSlot, 3, 1) \ |
| 515 \ | 515 \ |
| 516 /* Maths */ \ | 516 /* Maths */ \ |
| 517 F(MathPowSlow, 2, 1) \ | 517 F(MathPowSlow, 2, 1) \ |
| 518 F(MathPowRT, 2, 1) | 518 F(MathPowRT, 2, 1) |
| 519 | 519 |
| 520 | 520 |
| 521 #define RUNTIME_FUNCTION_LIST_RETURN_PAIR(F) \ | 521 #define RUNTIME_FUNCTION_LIST_RETURN_PAIR(F) \ |
| 522 F(LoadLookupSlot, 2, 2) \ | 522 F(LoadLookupSlot, 2, 2) \ |
| 523 F(LoadLookupSlotNoReferenceError, 2, 2) \ | 523 F(LoadLookupSlotNoReferenceError, 2, 2) \ |
| 524 F(ResolvePossiblyDirectEval, 5, 2) \ | 524 F(ResolvePossiblyDirectEval, 6, 2) \ |
| 525 F(ForInInit, 2, 2) /* TODO(turbofan): Only temporary */ \ | 525 F(ForInInit, 2, 2) /* TODO(turbofan): Only temporary */ \ |
| 526 F(ForInNext, 4, 2) /* TODO(turbofan): Only temporary */ | 526 F(ForInNext, 4, 2) /* TODO(turbofan): Only temporary */ |
| 527 | 527 |
| 528 | 528 |
| 529 #define RUNTIME_FUNCTION_LIST_DEBUGGER(F) \ | 529 #define RUNTIME_FUNCTION_LIST_DEBUGGER(F) \ |
| 530 /* Debugger support*/ \ | 530 /* Debugger support*/ \ |
| 531 F(DebugBreak, 0, 1) \ | 531 F(DebugBreak, 0, 1) \ |
| 532 F(SetDebugEventListener, 2, 1) \ | 532 F(SetDebugEventListener, 2, 1) \ |
| 533 F(Break, 0, 1) \ | 533 F(Break, 0, 1) \ |
| 534 F(DebugGetPropertyDetails, 2, 1) \ | 534 F(DebugGetPropertyDetails, 2, 1) \ |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; | 878 class AllocateTargetSpace : public BitField<AllocationSpace, 1, 3> {}; |
| 879 | 879 |
| 880 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 880 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 881 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 881 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 882 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; | 882 class DeclareGlobalsStrictMode : public BitField<StrictMode, 2, 1> {}; |
| 883 | 883 |
| 884 } // namespace internal | 884 } // namespace internal |
| 885 } // namespace v8 | 885 } // namespace v8 |
| 886 | 886 |
| 887 #endif // V8_RUNTIME_RUNTIME_H_ | 887 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |