| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 141 |
| 142 #define FOR_EACH_INTRINSIC_DEBUG(F) \ | 142 #define FOR_EACH_INTRINSIC_DEBUG(F) \ |
| 143 F(HandleDebuggerStatement, 0, 1) \ | 143 F(HandleDebuggerStatement, 0, 1) \ |
| 144 F(DebugBreak, 1, 1) \ | 144 F(DebugBreak, 1, 1) \ |
| 145 F(DebugBreakOnBytecode, 1, 1) \ | 145 F(DebugBreakOnBytecode, 1, 1) \ |
| 146 F(SetDebugEventListener, 2, 1) \ | 146 F(SetDebugEventListener, 2, 1) \ |
| 147 F(ScheduleBreak, 0, 1) \ | 147 F(ScheduleBreak, 0, 1) \ |
| 148 F(DebugGetInternalProperties, 1, 1) \ | 148 F(DebugGetInternalProperties, 1, 1) \ |
| 149 F(DebugGetPropertyDetails, 2, 1) \ | 149 F(DebugGetPropertyDetails, 2, 1) \ |
| 150 F(DebugGetProperty, 2, 1) \ | 150 F(DebugGetProperty, 2, 1) \ |
| 151 F(DebugPropertyTypeFromDetails, 1, 1) \ | 151 F(DebugPropertyKindFromDetails, 1, 1) \ |
| 152 F(DebugPropertyAttributesFromDetails, 1, 1) \ | 152 F(DebugPropertyAttributesFromDetails, 1, 1) \ |
| 153 F(CheckExecutionState, 1, 1) \ | 153 F(CheckExecutionState, 1, 1) \ |
| 154 F(GetFrameCount, 1, 1) \ | 154 F(GetFrameCount, 1, 1) \ |
| 155 F(GetFrameDetails, 2, 1) \ | 155 F(GetFrameDetails, 2, 1) \ |
| 156 F(GetScopeCount, 2, 1) \ | 156 F(GetScopeCount, 2, 1) \ |
| 157 F(GetScopeDetails, 4, 1) \ | 157 F(GetScopeDetails, 4, 1) \ |
| 158 F(GetAllScopesDetails, 4, 1) \ | 158 F(GetAllScopesDetails, 4, 1) \ |
| 159 F(GetFunctionScopeCount, 1, 1) \ | 159 F(GetFunctionScopeCount, 1, 1) \ |
| 160 F(GetFunctionScopeDetails, 2, 1) \ | 160 F(GetFunctionScopeDetails, 2, 1) \ |
| 161 F(GetGeneratorScopeCount, 1, 1) \ | 161 F(GetGeneratorScopeCount, 1, 1) \ |
| (...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1149 | 1149 |
| 1150 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1150 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1151 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1151 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1152 STATIC_ASSERT(LANGUAGE_END == 2); | 1152 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1153 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1153 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1154 | 1154 |
| 1155 } // namespace internal | 1155 } // namespace internal |
| 1156 } // namespace v8 | 1156 } // namespace v8 |
| 1157 | 1157 |
| 1158 #endif // V8_RUNTIME_RUNTIME_H_ | 1158 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |