Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/objects.h

Issue 1671813003: [interpreter] move the dispatch table off heap. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix verify heap Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/mips64/builtins-mips64.cc ('k') | src/ppc/builtins-ppc.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/mips64/builtins-mips64.cc ('k') | src/ppc/builtins-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698