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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 F(DebugGetLoadedScripts, 0, 1) \ | 559 F(DebugGetLoadedScripts, 0, 1) \ |
560 F(DebugReferencedBy, 3, 1) \ | 560 F(DebugReferencedBy, 3, 1) \ |
561 F(DebugConstructedBy, 2, 1) \ | 561 F(DebugConstructedBy, 2, 1) \ |
562 F(DebugGetPrototype, 1, 1) \ | 562 F(DebugGetPrototype, 1, 1) \ |
563 F(DebugSetScriptSource, 2, 1) \ | 563 F(DebugSetScriptSource, 2, 1) \ |
564 F(DebugCallbackSupportsStepping, 1, 1) \ | 564 F(DebugCallbackSupportsStepping, 1, 1) \ |
565 F(SystemBreak, 0, 1) \ | 565 F(SystemBreak, 0, 1) \ |
566 F(DebugDisassembleFunction, 1, 1) \ | 566 F(DebugDisassembleFunction, 1, 1) \ |
567 F(DebugDisassembleConstructor, 1, 1) \ | 567 F(DebugDisassembleConstructor, 1, 1) \ |
568 F(FunctionGetInferredName, 1, 1) \ | 568 F(FunctionGetInferredName, 1, 1) \ |
| 569 F(FunctionGetDebugName, 1, 1) \ |
569 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ | 570 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ |
570 F(LiveEditGatherCompileInfo, 2, 1) \ | 571 F(LiveEditGatherCompileInfo, 2, 1) \ |
571 F(LiveEditReplaceScript, 3, 1) \ | 572 F(LiveEditReplaceScript, 3, 1) \ |
572 F(LiveEditReplaceFunctionCode, 2, 1) \ | 573 F(LiveEditReplaceFunctionCode, 2, 1) \ |
573 F(LiveEditFunctionSourceUpdated, 1, 1) \ | 574 F(LiveEditFunctionSourceUpdated, 1, 1) \ |
574 F(LiveEditFunctionSetScript, 2, 1) \ | 575 F(LiveEditFunctionSetScript, 2, 1) \ |
575 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ | 576 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ |
576 F(LiveEditPatchFunctionPositions, 2, 1) \ | 577 F(LiveEditPatchFunctionPositions, 2, 1) \ |
577 F(LiveEditCheckAndDropActivations, 2, 1) \ | 578 F(LiveEditCheckAndDropActivations, 2, 1) \ |
578 F(LiveEditCompareStrings, 2, 1) \ | 579 F(LiveEditCompareStrings, 2, 1) \ |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 | 903 |
903 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 904 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
904 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 905 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
905 STATIC_ASSERT(LANGUAGE_END == 3); | 906 STATIC_ASSERT(LANGUAGE_END == 3); |
906 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 907 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
907 | 908 |
908 } // namespace internal | 909 } // namespace internal |
909 } // namespace v8 | 910 } // namespace v8 |
910 | 911 |
911 #endif // V8_RUNTIME_RUNTIME_H_ | 912 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |