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/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
10 #include "src/objects.h" | 10 #include "src/objects.h" |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 F(HandleDebuggerStatement, 0, 1) \ | 140 F(HandleDebuggerStatement, 0, 1) \ |
141 F(DebugBreak, 1, 1) \ | 141 F(DebugBreak, 1, 1) \ |
142 F(DebugBreakOnBytecode, 1, 1) \ | 142 F(DebugBreakOnBytecode, 1, 1) \ |
143 F(SetDebugEventListener, 2, 1) \ | 143 F(SetDebugEventListener, 2, 1) \ |
144 F(ScheduleBreak, 0, 1) \ | 144 F(ScheduleBreak, 0, 1) \ |
145 F(DebugGetInternalProperties, 1, 1) \ | 145 F(DebugGetInternalProperties, 1, 1) \ |
146 F(DebugGetPropertyDetails, 2, 1) \ | 146 F(DebugGetPropertyDetails, 2, 1) \ |
147 F(DebugGetProperty, 2, 1) \ | 147 F(DebugGetProperty, 2, 1) \ |
148 F(DebugPropertyTypeFromDetails, 1, 1) \ | 148 F(DebugPropertyTypeFromDetails, 1, 1) \ |
149 F(DebugPropertyAttributesFromDetails, 1, 1) \ | 149 F(DebugPropertyAttributesFromDetails, 1, 1) \ |
150 F(DebugPropertyIndexFromDetails, 1, 1) \ | |
151 F(DebugNamedInterceptorPropertyValue, 2, 1) \ | |
152 F(DebugIndexedInterceptorElementValue, 2, 1) \ | |
153 F(CheckExecutionState, 1, 1) \ | 150 F(CheckExecutionState, 1, 1) \ |
154 F(GetFrameCount, 1, 1) \ | 151 F(GetFrameCount, 1, 1) \ |
155 F(GetFrameDetails, 2, 1) \ | 152 F(GetFrameDetails, 2, 1) \ |
156 F(GetScopeCount, 2, 1) \ | 153 F(GetScopeCount, 2, 1) \ |
157 F(GetScopeDetails, 4, 1) \ | 154 F(GetScopeDetails, 4, 1) \ |
158 F(GetAllScopesDetails, 4, 1) \ | 155 F(GetAllScopesDetails, 4, 1) \ |
159 F(GetFunctionScopeCount, 1, 1) \ | 156 F(GetFunctionScopeCount, 1, 1) \ |
160 F(GetFunctionScopeDetails, 2, 1) \ | 157 F(GetFunctionScopeDetails, 2, 1) \ |
161 F(SetScopeVariableValue, 6, 1) \ | 158 F(SetScopeVariableValue, 6, 1) \ |
162 F(DebugPrintScopes, 0, 1) \ | 159 F(DebugPrintScopes, 0, 1) \ |
163 F(GetThreadCount, 1, 1) \ | |
164 F(GetThreadDetails, 2, 1) \ | |
165 F(SetBreakPointsActive, 1, 1) \ | 160 F(SetBreakPointsActive, 1, 1) \ |
166 F(GetBreakLocations, 2, 1) \ | 161 F(GetBreakLocations, 2, 1) \ |
167 F(SetFunctionBreakPoint, 3, 1) \ | 162 F(SetFunctionBreakPoint, 3, 1) \ |
168 F(SetScriptBreakPoint, 4, 1) \ | 163 F(SetScriptBreakPoint, 4, 1) \ |
169 F(ClearBreakPoint, 1, 1) \ | 164 F(ClearBreakPoint, 1, 1) \ |
170 F(ChangeBreakOnException, 2, 1) \ | 165 F(ChangeBreakOnException, 2, 1) \ |
171 F(IsBreakOnException, 1, 1) \ | 166 F(IsBreakOnException, 1, 1) \ |
172 F(PrepareStep, 2, 1) \ | 167 F(PrepareStep, 2, 1) \ |
173 F(ClearStepping, 0, 1) \ | 168 F(ClearStepping, 0, 1) \ |
174 F(DebugEvaluate, 6, 1) \ | 169 F(DebugEvaluate, 6, 1) \ |
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1168 | 1163 |
1169 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1164 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1170 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1165 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1171 STATIC_ASSERT(LANGUAGE_END == 3); | 1166 STATIC_ASSERT(LANGUAGE_END == 3); |
1172 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1167 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1173 | 1168 |
1174 } // namespace internal | 1169 } // namespace internal |
1175 } // namespace v8 | 1170 } // namespace v8 |
1176 | 1171 |
1177 #endif // V8_RUNTIME_RUNTIME_H_ | 1172 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |