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

Unified Diff: src/isolate.h

Issue 155723005: A64: Synchronize with r19001. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index fb7fa0997f98604e0e4fac933a7bb99f77946dfe..d7f23922378ed94740765c3b35b1b75dd3598bf3 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -51,12 +51,13 @@ namespace v8 {
namespace internal {
class Bootstrapper;
+struct CallInterfaceDescriptor;
class CodeGenerator;
class CodeRange;
struct CodeStubInterfaceDescriptor;
-struct CallInterfaceDescriptor;
class CodeTracer;
class CompilationCache;
+class ConsStringIteratorOp;
class ContextSlotCache;
class Counters;
class CpuFeatures;
@@ -73,19 +74,19 @@ class HeapProfiler;
class HStatistics;
class HTracer;
class InlineRuntimeFunctionsTable;
-class NoAllocationStringAllocator;
class InnerPointerToCodeCache;
+class MaterializedObjectStore;
+class NoAllocationStringAllocator;
class RandomNumberGenerator;
class RegExpStack;
class SaveContext;
-class UnicodeCache;
-class ConsStringIteratorOp;
class StringTracker;
class StubCache;
class SweeperThread;
class ThreadManager;
class ThreadState;
class ThreadVisitor; // Defined in v8threads.h
+class UnicodeCache;
template <StateTag Tag> class VMState;
// 'void function pointer', used to roundtrip the
@@ -873,6 +874,9 @@ class Isolate {
StubCache* stub_cache() { return stub_cache_; }
DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
+ MaterializedObjectStore* materialized_object_store() {
+ return materialized_object_store_;
+ }
MemoryAllocator* memory_allocator() {
return memory_allocator_;
@@ -1083,6 +1087,7 @@ class Isolate {
NamedCall,
CallHandler,
ArgumentAdaptorCall,
+ ApiFunctionCall,
NUMBER_OF_CALL_DESCRIPTORS
};
@@ -1280,6 +1285,7 @@ class Isolate {
StatsTable* stats_table_;
StubCache* stub_cache_;
DeoptimizerData* deoptimizer_data_;
+ MaterializedObjectStore* materialized_object_store_;
ThreadLocalTop thread_local_top_;
bool capture_stack_trace_for_uncaught_exceptions_;
int stack_trace_for_uncaught_exceptions_frame_limit_;
« no previous file with comments | « src/ic.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698