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

Side by Side Diff: src/isolate.h

Issue 2635973002: [heap] Don't allocate immovable code in LO space during serialization (Closed)
Patch Set: Add test Created 3 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/heap.cc ('k') | test/cctest/heap/heap-tester.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 <memory> 8 #include <memory>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1462 1462
1463 v8::Isolate::AbortOnUncaughtExceptionCallback 1463 v8::Isolate::AbortOnUncaughtExceptionCallback
1464 abort_on_uncaught_exception_callback_; 1464 abort_on_uncaught_exception_callback_;
1465 1465
1466 #ifdef USE_SIMULATOR 1466 #ifdef USE_SIMULATOR
1467 base::Mutex simulator_i_cache_mutex_; 1467 base::Mutex simulator_i_cache_mutex_;
1468 #endif 1468 #endif
1469 1469
1470 friend class ExecutionAccess; 1470 friend class ExecutionAccess;
1471 friend class HandleScopeImplementer; 1471 friend class HandleScopeImplementer;
1472 friend class HeapTester;
1472 friend class OptimizingCompileDispatcher; 1473 friend class OptimizingCompileDispatcher;
1473 friend class SweeperThread; 1474 friend class SweeperThread;
1474 friend class ThreadManager; 1475 friend class ThreadManager;
1475 friend class Simulator; 1476 friend class Simulator;
1476 friend class StackGuard; 1477 friend class StackGuard;
1477 friend class ThreadId; 1478 friend class ThreadId;
1478 friend class v8::Isolate; 1479 friend class v8::Isolate;
1479 friend class v8::Locker; 1480 friend class v8::Locker;
1480 friend class v8::Unlocker; 1481 friend class v8::Unlocker;
1481 friend class v8::SnapshotCreator; 1482 friend class v8::SnapshotCreator;
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1695 1696
1696 EmbeddedVector<char, 128> filename_; 1697 EmbeddedVector<char, 128> filename_;
1697 FILE* file_; 1698 FILE* file_;
1698 int scope_depth_; 1699 int scope_depth_;
1699 }; 1700 };
1700 1701
1701 } // namespace internal 1702 } // namespace internal
1702 } // namespace v8 1703 } // namespace v8
1703 1704
1704 #endif // V8_ISOLATE_H_ 1705 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | test/cctest/heap/heap-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698