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

Side by Side Diff: Source/platform/heap/ThreadState.h

Issue 1191483002: Revert of Oilpan: adjust GC policy under memory pressure. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « Source/bindings/core/v8/V8GCController.cpp ('k') | Source/platform/heap/ThreadState.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 return reinterpret_cast<ThreadState*>(s_mainThreadStateStorage); 312 return reinterpret_cast<ThreadState*>(s_mainThreadStateStorage);
313 } 313 }
314 314
315 bool isMainThread() const { return this == mainThreadState(); } 315 bool isMainThread() const { return this == mainThreadState(); }
316 bool checkThread() const 316 bool checkThread() const
317 { 317 {
318 ASSERT(m_thread == currentThread()); 318 ASSERT(m_thread == currentThread());
319 return true; 319 return true;
320 } 320 }
321 321
322 void didV8MajorGC(bool forceGC); 322 void didV8GC();
323 323
324 void performIdleGC(double deadlineSeconds); 324 void performIdleGC(double deadlineSeconds);
325 void performIdleLazySweep(double deadlineSeconds); 325 void performIdleLazySweep(double deadlineSeconds);
326 326
327 void scheduleIdleGC(); 327 void scheduleIdleGC();
328 void scheduleIdleLazySweep(); 328 void scheduleIdleLazySweep();
329 void schedulePreciseGC(); 329 void schedulePreciseGC();
330 void scheduleGCIfNeeded(); 330 void scheduleGCIfNeeded();
331 void setGCState(GCState); 331 void setGCState(GCState);
332 GCState gcState() const; 332 GCState gcState() const;
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 NO_SANITIZE_ADDRESS void copyStackUntilSafePointScope(); 649 NO_SANITIZE_ADDRESS void copyStackUntilSafePointScope();
650 void clearSafePointScopeMarker() 650 void clearSafePointScopeMarker()
651 { 651 {
652 m_safePointStackCopy.clear(); 652 m_safePointStackCopy.clear();
653 m_safePointScopeMarker = nullptr; 653 m_safePointScopeMarker = nullptr;
654 } 654 }
655 655
656 // shouldSchedule{Precise,Idle}GC and shouldForceConservativeGC 656 // shouldSchedule{Precise,Idle}GC and shouldForceConservativeGC
657 // implement the heuristics that are used to determine when to collect garba ge. 657 // implement the heuristics that are used to determine when to collect garba ge.
658 // If shouldForceConservativeGC returns true, we force the garbage 658 // If shouldForceConservativeGC returns true, we force the garbage
659 // collection immediately. Otherwise, if should*GC() returns true, we 659 // collection immediately. Otherwise, if shouldGC returns true, we
660 // record that we should garbage collect the next time we return 660 // record that we should garbage collect the next time we return
661 // to the event loop. If both return false, we don't need to 661 // to the event loop. If both return false, we don't need to
662 // collect garbage at this point. 662 // collect garbage at this point.
663 bool shouldScheduleIdleGC(); 663 bool shouldScheduleIdleGC();
664 bool shouldSchedulePreciseGC(); 664 bool shouldSchedulePreciseGC();
665 bool shouldForceConservativeGC(); 665 bool shouldForceConservativeGC();
666
667 // Internal helper for shouldForceConservativeGC() and didV8MajorGC();
668 // returns true iff an urgent conservative GC is needed to try to
669 // relieve memory pressure.
670 bool shouldForceMemoryPressureGC();
671
672 void runScheduledGC(StackState); 666 void runScheduledGC(StackState);
673 667
674 void eagerSweep(); 668 void eagerSweep();
675 669
676 #if defined(ADDRESS_SANITIZER) 670 #if defined(ADDRESS_SANITIZER)
677 void poisonEagerHeap(Poisoning); 671 void poisonEagerHeap(Poisoning);
678 void poisonAllHeaps(); 672 void poisonAllHeaps();
679 #endif 673 #endif
680 674
681 // When ThreadState is detaching from non-main thread its 675 // When ThreadState is detaching from non-main thread its
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 }; 771 };
778 772
779 template<> class ThreadStateFor<AnyThread> { 773 template<> class ThreadStateFor<AnyThread> {
780 public: 774 public:
781 static ThreadState* state() { return ThreadState::current(); } 775 static ThreadState* state() { return ThreadState::current(); }
782 }; 776 };
783 777
784 } // namespace blink 778 } // namespace blink
785 779
786 #endif // ThreadState_h 780 #endif // ThreadState_h
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/V8GCController.cpp ('k') | Source/platform/heap/ThreadState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698