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

Side by Side Diff: src/isolate.h

Issue 1437133006: postmortem: export private field offsets Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/heap/spaces.h ('k') | tools/gen-postmortem-metadata.py » ('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 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_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <set> 9 #include <set>
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 class FunctionInfoListener; 60 class FunctionInfoListener;
61 class HandleScopeImplementer; 61 class HandleScopeImplementer;
62 class HeapProfiler; 62 class HeapProfiler;
63 class HStatistics; 63 class HStatistics;
64 class HTracer; 64 class HTracer;
65 class InlineRuntimeFunctionsTable; 65 class InlineRuntimeFunctionsTable;
66 class InnerPointerToCodeCache; 66 class InnerPointerToCodeCache;
67 class Logger; 67 class Logger;
68 class MaterializedObjectStore; 68 class MaterializedObjectStore;
69 class CodeAgingHelper; 69 class CodeAgingHelper;
70 class PostMortem;
70 class RegExpStack; 71 class RegExpStack;
71 class SaveContext; 72 class SaveContext;
72 class StatsTable; 73 class StatsTable;
73 class StringTracker; 74 class StringTracker;
74 class StubCache; 75 class StubCache;
75 class SweeperThread; 76 class SweeperThread;
76 class ThreadManager; 77 class ThreadManager;
77 class ThreadState; 78 class ThreadState;
78 class ThreadVisitor; // Defined in v8threads.h 79 class ThreadVisitor; // Defined in v8threads.h
79 class UnicodeCache; 80 class UnicodeCache;
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1351 friend class Simulator; 1352 friend class Simulator;
1352 friend class StackGuard; 1353 friend class StackGuard;
1353 friend class ThreadId; 1354 friend class ThreadId;
1354 friend class TestMemoryAllocatorScope; 1355 friend class TestMemoryAllocatorScope;
1355 friend class TestCodeRangeScope; 1356 friend class TestCodeRangeScope;
1356 friend class v8::Isolate; 1357 friend class v8::Isolate;
1357 friend class v8::Locker; 1358 friend class v8::Locker;
1358 friend class v8::Unlocker; 1359 friend class v8::Unlocker;
1359 friend v8::StartupData v8::V8::CreateSnapshotDataBlob(const char*); 1360 friend v8::StartupData v8::V8::CreateSnapshotDataBlob(const char*);
1360 1361
1362 // Used in postmortem
1363 friend class PostMortem;
1364
1361 DISALLOW_COPY_AND_ASSIGN(Isolate); 1365 DISALLOW_COPY_AND_ASSIGN(Isolate);
1362 }; 1366 };
1363 1367
1364 1368
1365 #undef FIELD_ACCESSOR 1369 #undef FIELD_ACCESSOR
1366 #undef THREAD_LOCAL_TOP_ACCESSOR 1370 #undef THREAD_LOCAL_TOP_ACCESSOR
1367 1371
1368 1372
1369 class PromiseOnStack { 1373 class PromiseOnStack {
1370 public: 1374 public:
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 1569
1566 EmbeddedVector<char, 128> filename_; 1570 EmbeddedVector<char, 128> filename_;
1567 FILE* file_; 1571 FILE* file_;
1568 int scope_depth_; 1572 int scope_depth_;
1569 }; 1573 };
1570 1574
1571 } // namespace internal 1575 } // namespace internal
1572 } // namespace v8 1576 } // namespace v8
1573 1577
1574 #endif // V8_ISOLATE_H_ 1578 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/heap/spaces.h ('k') | tools/gen-postmortem-metadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698