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

Side by Side Diff: src/isolate.h

Issue 882633002: Reland "Only use FreeSpace objects in the free list" (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix windows build Created 5 years, 11 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/heap/spaces-inl.h ('k') | src/objects.h » ('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 "include/v8-debug.h" 9 #include "include/v8-debug.h"
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 #endif 1355 #endif
1356 1356
1357 // List of callbacks when a Call completes. 1357 // List of callbacks when a Call completes.
1358 List<CallCompletedCallback> call_completed_callbacks_; 1358 List<CallCompletedCallback> call_completed_callbacks_;
1359 1359
1360 v8::Isolate::UseCounterCallback use_counter_callback_; 1360 v8::Isolate::UseCounterCallback use_counter_callback_;
1361 BasicBlockProfiler* basic_block_profiler_; 1361 BasicBlockProfiler* basic_block_profiler_;
1362 1362
1363 friend class ExecutionAccess; 1363 friend class ExecutionAccess;
1364 friend class HandleScopeImplementer; 1364 friend class HandleScopeImplementer;
1365 friend class IsolateInitializer;
1366 friend class OptimizingCompilerThread; 1365 friend class OptimizingCompilerThread;
1367 friend class SweeperThread; 1366 friend class SweeperThread;
1368 friend class ThreadManager; 1367 friend class ThreadManager;
1369 friend class Simulator; 1368 friend class Simulator;
1370 friend class StackGuard; 1369 friend class StackGuard;
1371 friend class ThreadId; 1370 friend class ThreadId;
1372 friend class TestMemoryAllocatorScope; 1371 friend class TestMemoryAllocatorScope;
1373 friend class TestCodeRangeScope; 1372 friend class TestCodeRangeScope;
1374 friend class v8::Isolate; 1373 friend class v8::Isolate;
1375 friend class v8::Locker; 1374 friend class v8::Locker;
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 } 1580 }
1582 1581
1583 EmbeddedVector<char, 128> filename_; 1582 EmbeddedVector<char, 128> filename_;
1584 FILE* file_; 1583 FILE* file_;
1585 int scope_depth_; 1584 int scope_depth_;
1586 }; 1585 };
1587 1586
1588 } } // namespace v8::internal 1587 } } // namespace v8::internal
1589 1588
1590 #endif // V8_ISOLATE_H_ 1589 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/heap/spaces-inl.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698