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 10707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10718 V(kStringTable, "string_table", "(Internalized strings)") \ | 10718 V(kStringTable, "string_table", "(Internalized strings)") \ |
10719 V(kExternalStringsTable, "external_strings_table", "(External strings)") \ | 10719 V(kExternalStringsTable, "external_strings_table", "(External strings)") \ |
10720 V(kStrongRootList, "strong_root_list", "(Strong roots)") \ | 10720 V(kStrongRootList, "strong_root_list", "(Strong roots)") \ |
10721 V(kSmiRootList, "smi_root_list", "(Smi roots)") \ | 10721 V(kSmiRootList, "smi_root_list", "(Smi roots)") \ |
10722 V(kBootstrapper, "bootstrapper", "(Bootstrapper)") \ | 10722 V(kBootstrapper, "bootstrapper", "(Bootstrapper)") \ |
10723 V(kTop, "top", "(Isolate)") \ | 10723 V(kTop, "top", "(Isolate)") \ |
10724 V(kRelocatable, "relocatable", "(Relocatable)") \ | 10724 V(kRelocatable, "relocatable", "(Relocatable)") \ |
10725 V(kDebug, "debug", "(Debugger)") \ | 10725 V(kDebug, "debug", "(Debugger)") \ |
10726 V(kCompilationCache, "compilationcache", "(Compilation cache)") \ | 10726 V(kCompilationCache, "compilationcache", "(Compilation cache)") \ |
10727 V(kHandleScope, "handlescope", "(Handle scope)") \ | 10727 V(kHandleScope, "handlescope", "(Handle scope)") \ |
| 10728 V(kDispatchTable, "dispatchtable", "(Dispatch table)") \ |
10728 V(kBuiltins, "builtins", "(Builtins)") \ | 10729 V(kBuiltins, "builtins", "(Builtins)") \ |
10729 V(kGlobalHandles, "globalhandles", "(Global handles)") \ | 10730 V(kGlobalHandles, "globalhandles", "(Global handles)") \ |
10730 V(kEternalHandles, "eternalhandles", "(Eternal handles)") \ | 10731 V(kEternalHandles, "eternalhandles", "(Eternal handles)") \ |
10731 V(kThreadManager, "threadmanager", "(Thread manager)") \ | 10732 V(kThreadManager, "threadmanager", "(Thread manager)") \ |
10732 V(kStrongRoots, "strong roots", "(Strong roots)") \ | 10733 V(kStrongRoots, "strong roots", "(Strong roots)") \ |
10733 V(kExtensions, "Extensions", "(Extensions)") | 10734 V(kExtensions, "Extensions", "(Extensions)") |
10734 | 10735 |
10735 class VisitorSynchronization : public AllStatic { | 10736 class VisitorSynchronization : public AllStatic { |
10736 public: | 10737 public: |
10737 #define DECLARE_ENUM(enum_item, ignore1, ignore2) enum_item, | 10738 #define DECLARE_ENUM(enum_item, ignore1, ignore2) enum_item, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10826 } | 10827 } |
10827 return value; | 10828 return value; |
10828 } | 10829 } |
10829 }; | 10830 }; |
10830 | 10831 |
10831 | 10832 |
10832 } // NOLINT, false-positive due to second-order macros. | 10833 } // NOLINT, false-positive due to second-order macros. |
10833 } // NOLINT, false-positive due to second-order macros. | 10834 } // NOLINT, false-positive due to second-order macros. |
10834 | 10835 |
10835 #endif // V8_OBJECTS_H_ | 10836 #endif // V8_OBJECTS_H_ |
OLD | NEW |