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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 F(DebugGetProperty, 2, 1) \ | 149 F(DebugGetProperty, 2, 1) \ |
150 F(DebugPropertyTypeFromDetails, 1, 1) \ | 150 F(DebugPropertyTypeFromDetails, 1, 1) \ |
151 F(DebugPropertyAttributesFromDetails, 1, 1) \ | 151 F(DebugPropertyAttributesFromDetails, 1, 1) \ |
152 F(DebugPropertyIndexFromDetails, 1, 1) \ | 152 F(DebugPropertyIndexFromDetails, 1, 1) \ |
153 F(DebugNamedInterceptorPropertyValue, 2, 1) \ | 153 F(DebugNamedInterceptorPropertyValue, 2, 1) \ |
154 F(DebugIndexedInterceptorElementValue, 2, 1) \ | 154 F(DebugIndexedInterceptorElementValue, 2, 1) \ |
155 F(CheckExecutionState, 1, 1) \ | 155 F(CheckExecutionState, 1, 1) \ |
156 F(GetFrameCount, 1, 1) \ | 156 F(GetFrameCount, 1, 1) \ |
157 F(GetFrameDetails, 2, 1) \ | 157 F(GetFrameDetails, 2, 1) \ |
158 F(GetScopeCount, 2, 1) \ | 158 F(GetScopeCount, 2, 1) \ |
159 F(GetStepInPositions, 2, 1) \ | |
160 F(GetScopeDetails, 4, 1) \ | 159 F(GetScopeDetails, 4, 1) \ |
161 F(GetAllScopesDetails, 4, 1) \ | 160 F(GetAllScopesDetails, 4, 1) \ |
162 F(GetFunctionScopeCount, 1, 1) \ | 161 F(GetFunctionScopeCount, 1, 1) \ |
163 F(GetFunctionScopeDetails, 2, 1) \ | 162 F(GetFunctionScopeDetails, 2, 1) \ |
164 F(SetScopeVariableValue, 6, 1) \ | 163 F(SetScopeVariableValue, 6, 1) \ |
165 F(DebugPrintScopes, 0, 1) \ | 164 F(DebugPrintScopes, 0, 1) \ |
166 F(GetThreadCount, 1, 1) \ | 165 F(GetThreadCount, 1, 1) \ |
167 F(GetThreadDetails, 2, 1) \ | 166 F(GetThreadDetails, 2, 1) \ |
168 F(SetBreakPointsActive, 1, 1) \ | 167 F(SetBreakPointsActive, 1, 1) \ |
169 F(GetBreakLocations, 2, 1) \ | 168 F(GetBreakLocations, 2, 1) \ |
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1191 | 1190 |
1192 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1191 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1193 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1192 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1194 STATIC_ASSERT(LANGUAGE_END == 3); | 1193 STATIC_ASSERT(LANGUAGE_END == 3); |
1195 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1194 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1196 | 1195 |
1197 } // namespace internal | 1196 } // namespace internal |
1198 } // namespace v8 | 1197 } // namespace v8 |
1199 | 1198 |
1200 #endif // V8_RUNTIME_RUNTIME_H_ | 1199 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |