| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 F(GetFunctionScopeCount, 1, 1) \ | 150 F(GetFunctionScopeCount, 1, 1) \ |
| 151 F(GetFunctionScopeDetails, 2, 1) \ | 151 F(GetFunctionScopeDetails, 2, 1) \ |
| 152 F(SetScopeVariableValue, 6, 1) \ | 152 F(SetScopeVariableValue, 6, 1) \ |
| 153 F(DebugPrintScopes, 0, 1) \ | 153 F(DebugPrintScopes, 0, 1) \ |
| 154 F(GetThreadCount, 1, 1) \ | 154 F(GetThreadCount, 1, 1) \ |
| 155 F(GetThreadDetails, 2, 1) \ | 155 F(GetThreadDetails, 2, 1) \ |
| 156 F(SetDisableBreak, 1, 1) \ | 156 F(SetDisableBreak, 1, 1) \ |
| 157 F(GetBreakLocations, 2, 1) \ | 157 F(GetBreakLocations, 2, 1) \ |
| 158 F(SetFunctionBreakPoint, 3, 1) \ | 158 F(SetFunctionBreakPoint, 3, 1) \ |
| 159 F(SetScriptBreakPoint, 4, 1) \ | 159 F(SetScriptBreakPoint, 4, 1) \ |
| 160 F(CollectSharedFunctionInfoInScript, 1, 1) \ |
| 160 F(ClearBreakPoint, 1, 1) \ | 161 F(ClearBreakPoint, 1, 1) \ |
| 161 F(ChangeBreakOnException, 2, 1) \ | 162 F(ChangeBreakOnException, 2, 1) \ |
| 162 F(IsBreakOnException, 1, 1) \ | 163 F(IsBreakOnException, 1, 1) \ |
| 163 F(PrepareStep, 4, 1) \ | 164 F(PrepareStep, 4, 1) \ |
| 164 F(ClearStepping, 0, 1) \ | 165 F(ClearStepping, 0, 1) \ |
| 165 F(DebugEvaluate, 6, 1) \ | 166 F(DebugEvaluate, 6, 1) \ |
| 166 F(DebugEvaluateGlobal, 4, 1) \ | 167 F(DebugEvaluateGlobal, 4, 1) \ |
| 167 F(DebugGetLoadedScripts, 0, 1) \ | 168 F(DebugGetLoadedScripts, 0, 1) \ |
| 168 F(DebugReferencedBy, 3, 1) \ | 169 F(DebugReferencedBy, 3, 1) \ |
| 169 F(DebugConstructedBy, 2, 1) \ | 170 F(DebugConstructedBy, 2, 1) \ |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 | 860 |
| 860 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 861 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 861 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 862 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 862 STATIC_ASSERT(LANGUAGE_END == 3); | 863 STATIC_ASSERT(LANGUAGE_END == 3); |
| 863 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 864 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 864 | 865 |
| 865 } // namespace internal | 866 } // namespace internal |
| 866 } // namespace v8 | 867 } // namespace v8 |
| 867 | 868 |
| 868 #endif // V8_RUNTIME_RUNTIME_H_ | 869 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |