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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 F(IsBreakOnException, 1, 1) \ | 552 F(IsBreakOnException, 1, 1) \ |
553 F(PrepareStep, 4, 1) \ | 553 F(PrepareStep, 4, 1) \ |
554 F(ClearStepping, 0, 1) \ | 554 F(ClearStepping, 0, 1) \ |
555 F(DebugEvaluate, 6, 1) \ | 555 F(DebugEvaluate, 6, 1) \ |
556 F(DebugEvaluateGlobal, 4, 1) \ | 556 F(DebugEvaluateGlobal, 4, 1) \ |
557 F(DebugGetLoadedScripts, 0, 1) \ | 557 F(DebugGetLoadedScripts, 0, 1) \ |
558 F(DebugReferencedBy, 3, 1) \ | 558 F(DebugReferencedBy, 3, 1) \ |
559 F(DebugConstructedBy, 2, 1) \ | 559 F(DebugConstructedBy, 2, 1) \ |
560 F(DebugGetPrototype, 1, 1) \ | 560 F(DebugGetPrototype, 1, 1) \ |
561 F(DebugSetScriptSource, 2, 1) \ | 561 F(DebugSetScriptSource, 2, 1) \ |
562 F(DebugCallbackSupportsStepping, 1, 1) \ | 562 F(DebugIsStepping, 0, 1) \ |
563 F(SystemBreak, 0, 1) \ | 563 F(SystemBreak, 0, 1) \ |
564 F(DebugDisassembleFunction, 1, 1) \ | 564 F(DebugDisassembleFunction, 1, 1) \ |
565 F(DebugDisassembleConstructor, 1, 1) \ | 565 F(DebugDisassembleConstructor, 1, 1) \ |
566 F(FunctionGetInferredName, 1, 1) \ | 566 F(FunctionGetInferredName, 1, 1) \ |
567 F(FunctionGetDebugName, 1, 1) \ | 567 F(FunctionGetDebugName, 1, 1) \ |
568 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ | 568 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ |
569 F(LiveEditGatherCompileInfo, 2, 1) \ | 569 F(LiveEditGatherCompileInfo, 2, 1) \ |
570 F(LiveEditReplaceScript, 3, 1) \ | 570 F(LiveEditReplaceScript, 3, 1) \ |
571 F(LiveEditReplaceFunctionCode, 2, 1) \ | 571 F(LiveEditReplaceFunctionCode, 2, 1) \ |
572 F(LiveEditFunctionSourceUpdated, 1, 1) \ | 572 F(LiveEditFunctionSourceUpdated, 1, 1) \ |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
898 | 898 |
899 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 899 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
900 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 900 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
901 STATIC_ASSERT(LANGUAGE_END == 3); | 901 STATIC_ASSERT(LANGUAGE_END == 3); |
902 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 902 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
903 | 903 |
904 } // namespace internal | 904 } // namespace internal |
905 } // namespace v8 | 905 } // namespace v8 |
906 | 906 |
907 #endif // V8_RUNTIME_RUNTIME_H_ | 907 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |