| 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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 F(NeverOptimizeFunction, 1, 1) \ | 863 F(NeverOptimizeFunction, 1, 1) \ |
| 864 F(GetOptimizationStatus, -1, 1) \ | 864 F(GetOptimizationStatus, -1, 1) \ |
| 865 F(UnblockConcurrentRecompilation, 0, 1) \ | 865 F(UnblockConcurrentRecompilation, 0, 1) \ |
| 866 F(GetOptimizationCount, 1, 1) \ | 866 F(GetOptimizationCount, 1, 1) \ |
| 867 F(GetUndetectable, 0, 1) \ | 867 F(GetUndetectable, 0, 1) \ |
| 868 F(ClearFunctionTypeFeedback, 1, 1) \ | 868 F(ClearFunctionTypeFeedback, 1, 1) \ |
| 869 F(NotifyContextDisposed, 0, 1) \ | 869 F(NotifyContextDisposed, 0, 1) \ |
| 870 F(SetAllocationTimeout, -1 /* 2 || 3 */, 1) \ | 870 F(SetAllocationTimeout, -1 /* 2 || 3 */, 1) \ |
| 871 F(DebugPrint, 1, 1) \ | 871 F(DebugPrint, 1, 1) \ |
| 872 F(DebugTrace, 0, 1) \ | 872 F(DebugTrace, 0, 1) \ |
| 873 F(GetExceptionDetails, 1, 1) \ |
| 873 F(GlobalPrint, 1, 1) \ | 874 F(GlobalPrint, 1, 1) \ |
| 874 F(SystemBreak, 0, 1) \ | 875 F(SystemBreak, 0, 1) \ |
| 875 F(SetFlags, 1, 1) \ | 876 F(SetFlags, 1, 1) \ |
| 876 F(Abort, 1, 1) \ | 877 F(Abort, 1, 1) \ |
| 877 F(AbortJS, 1, 1) \ | 878 F(AbortJS, 1, 1) \ |
| 878 F(NativeScriptsCount, 0, 1) \ | 879 F(NativeScriptsCount, 0, 1) \ |
| 879 F(GetV8Version, 0, 1) \ | 880 F(GetV8Version, 0, 1) \ |
| 880 F(DisassembleFunction, 1, 1) \ | 881 F(DisassembleFunction, 1, 1) \ |
| 881 F(TraceEnter, 0, 1) \ | 882 F(TraceEnter, 0, 1) \ |
| 882 F(TraceExit, 1, 1) \ | 883 F(TraceExit, 1, 1) \ |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 | 1160 |
| 1160 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1161 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1161 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1162 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1162 STATIC_ASSERT(LANGUAGE_END == 3); | 1163 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1163 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1164 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1164 | 1165 |
| 1165 } // namespace internal | 1166 } // namespace internal |
| 1166 } // namespace v8 | 1167 } // namespace v8 |
| 1167 | 1168 |
| 1168 #endif // V8_RUNTIME_RUNTIME_H_ | 1169 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |