comparison src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents a7214d79fcf1
children 4947ee68d19c
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP
26 #define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP
27
28 #include "gc_implementation/concurrentMarkSweep/freeBlockDictionary.hpp"
29 #include "gc_implementation/shared/gSpaceCounters.hpp"
30 #include "gc_implementation/shared/gcStats.hpp"
31 #include "gc_implementation/shared/generationCounters.hpp"
32 #include "memory/generation.hpp"
33 #include "runtime/mutexLocker.hpp"
34 #include "runtime/virtualspace.hpp"
35 #include "services/memoryService.hpp"
36 #include "utilities/bitMap.inline.hpp"
37 #include "utilities/stack.inline.hpp"
38 #include "utilities/taskqueue.hpp"
39 #include "utilities/yieldingWorkgroup.hpp"
24 40
25 // ConcurrentMarkSweepGeneration is in support of a concurrent 41 // ConcurrentMarkSweepGeneration is in support of a concurrent
26 // mark-sweep old generation in the Detlefs-Printezis--Boehm-Demers-Schenker 42 // mark-sweep old generation in the Detlefs-Printezis--Boehm-Demers-Schenker
27 // style. We assume, for now, that this generation is always the 43 // style. We assume, for now, that this generation is always the
28 // seniormost generation (modulo the PermGeneration), and for simplicity 44 // seniormost generation (modulo the PermGeneration), and for simplicity
1880 public: 1896 public:
1881 TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase); 1897 TraceCMSMemoryManagerStats(CMSCollector::CollectorState phase);
1882 TraceCMSMemoryManagerStats(); 1898 TraceCMSMemoryManagerStats();
1883 }; 1899 };
1884 1900
1901
1902 #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_CONCURRENTMARKSWEEPGENERATION_HPP