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

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

Issue 1369683003: Oilpan: revert page navigation count GCing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | third_party/WebKit/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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 intptr_t* m_endOfStack; 773 intptr_t* m_endOfStack;
774 void* m_safePointScopeMarker; 774 void* m_safePointScopeMarker;
775 Vector<Address> m_safePointStackCopy; 775 Vector<Address> m_safePointStackCopy;
776 bool m_atSafePoint; 776 bool m_atSafePoint;
777 InterruptorVector m_interruptors; 777 InterruptorVector m_interruptors;
778 bool m_sweepForbidden; 778 bool m_sweepForbidden;
779 size_t m_noAllocationCount; 779 size_t m_noAllocationCount;
780 size_t m_gcForbiddenCount; 780 size_t m_gcForbiddenCount;
781 int m_persistentAllocated; 781 int m_persistentAllocated;
782 int m_persistentFreed; 782 int m_persistentFreed;
783 int m_pageNavigationCount;
784 BaseHeap* m_heaps[NumberOfHeaps]; 783 BaseHeap* m_heaps[NumberOfHeaps];
785 784
786 int m_vectorBackingHeapIndex; 785 int m_vectorBackingHeapIndex;
787 size_t m_heapAges[NumberOfHeaps]; 786 size_t m_heapAges[NumberOfHeaps];
788 size_t m_currentHeapAges; 787 size_t m_currentHeapAges;
789 788
790 bool m_isTerminating; 789 bool m_isTerminating;
791 GarbageCollectedMixinConstructorMarker* m_gcMixinMarker; 790 GarbageCollectedMixinConstructorMarker* m_gcMixinMarker;
792 791
793 bool m_shouldFlushHeapDoesNotContainCache; 792 bool m_shouldFlushHeapDoesNotContainCache;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 }; 831 };
833 832
834 template<> class ThreadStateFor<AnyThread> { 833 template<> class ThreadStateFor<AnyThread> {
835 public: 834 public:
836 static ThreadState* state() { return ThreadState::current(); } 835 static ThreadState* state() { return ThreadState::current(); }
837 }; 836 };
838 837
839 } // namespace blink 838 } // namespace blink
840 839
841 #endif // ThreadState_h 840 #endif // ThreadState_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/ThreadState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698