| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |