OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 10690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10701 V(kStringTable, "string_table", "(Internalized strings)") \ | 10701 V(kStringTable, "string_table", "(Internalized strings)") \ |
10702 V(kExternalStringsTable, "external_strings_table", "(External strings)") \ | 10702 V(kExternalStringsTable, "external_strings_table", "(External strings)") \ |
10703 V(kStrongRootList, "strong_root_list", "(Strong roots)") \ | 10703 V(kStrongRootList, "strong_root_list", "(Strong roots)") \ |
10704 V(kSmiRootList, "smi_root_list", "(Smi roots)") \ | 10704 V(kSmiRootList, "smi_root_list", "(Smi roots)") \ |
10705 V(kBootstrapper, "bootstrapper", "(Bootstrapper)") \ | 10705 V(kBootstrapper, "bootstrapper", "(Bootstrapper)") \ |
10706 V(kTop, "top", "(Isolate)") \ | 10706 V(kTop, "top", "(Isolate)") \ |
10707 V(kRelocatable, "relocatable", "(Relocatable)") \ | 10707 V(kRelocatable, "relocatable", "(Relocatable)") \ |
10708 V(kDebug, "debug", "(Debugger)") \ | 10708 V(kDebug, "debug", "(Debugger)") \ |
10709 V(kCompilationCache, "compilationcache", "(Compilation cache)") \ | 10709 V(kCompilationCache, "compilationcache", "(Compilation cache)") \ |
10710 V(kHandleScope, "handlescope", "(Handle scope)") \ | 10710 V(kHandleScope, "handlescope", "(Handle scope)") \ |
| 10711 V(kDispatchTable, "dispatchtable", "(Dispatch table)") \ |
10711 V(kBuiltins, "builtins", "(Builtins)") \ | 10712 V(kBuiltins, "builtins", "(Builtins)") \ |
10712 V(kGlobalHandles, "globalhandles", "(Global handles)") \ | 10713 V(kGlobalHandles, "globalhandles", "(Global handles)") \ |
10713 V(kEternalHandles, "eternalhandles", "(Eternal handles)") \ | 10714 V(kEternalHandles, "eternalhandles", "(Eternal handles)") \ |
10714 V(kThreadManager, "threadmanager", "(Thread manager)") \ | 10715 V(kThreadManager, "threadmanager", "(Thread manager)") \ |
10715 V(kStrongRoots, "strong roots", "(Strong roots)") \ | 10716 V(kStrongRoots, "strong roots", "(Strong roots)") \ |
10716 V(kExtensions, "Extensions", "(Extensions)") | 10717 V(kExtensions, "Extensions", "(Extensions)") |
10717 | 10718 |
10718 class VisitorSynchronization : public AllStatic { | 10719 class VisitorSynchronization : public AllStatic { |
10719 public: | 10720 public: |
10720 #define DECLARE_ENUM(enum_item, ignore1, ignore2) enum_item, | 10721 #define DECLARE_ENUM(enum_item, ignore1, ignore2) enum_item, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10809 } | 10810 } |
10810 return value; | 10811 return value; |
10811 } | 10812 } |
10812 }; | 10813 }; |
10813 | 10814 |
10814 | 10815 |
10815 } // NOLINT, false-positive due to second-order macros. | 10816 } // NOLINT, false-positive due to second-order macros. |
10816 } // NOLINT, false-positive due to second-order macros. | 10817 } // NOLINT, false-positive due to second-order macros. |
10817 | 10818 |
10818 #endif // V8_OBJECTS_H_ | 10819 #endif // V8_OBJECTS_H_ |
OLD | NEW |