Skip to content

Commit 76cda7b

Browse files
committedApr 29, 2024
8331118: Remove Serial includes from space.hpp
Reviewed-by: gli, tschatzl
1 parent 766d0b0 commit 76cda7b

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed
 

‎src/hotspot/share/gc/epsilon/epsilonMemoryPool.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "precompiled.hpp"
2626
#include "gc/epsilon/epsilonHeap.hpp"
2727
#include "gc/epsilon/epsilonMemoryPool.hpp"
28+
#include "gc/shared/gc_globals.hpp"
2829

2930
EpsilonMemoryPool::EpsilonMemoryPool(EpsilonHeap* heap) :
3031
CollectedMemoryPool("Epsilon Heap",

‎src/hotspot/share/gc/serial/tenuredGeneration.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727

2828
#include "gc/serial/cSpaceCounters.hpp"
2929
#include "gc/serial/generation.hpp"
30+
#include "gc/serial/serialBlockOffsetTable.hpp"
3031
#include "gc/shared/generationCounters.hpp"
3132
#include "gc/shared/space.hpp"
3233
#include "utilities/macros.hpp"
3334

34-
class SerialBlockOffsetTable;
3535
class CardTableRS;
3636
class ContiguousSpace;
3737

‎src/hotspot/share/gc/serial/tenuredGeneration.inline.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
#define SHARE_GC_SERIAL_TENUREDGENERATION_INLINE_HPP
2727

2828
#include "gc/serial/tenuredGeneration.hpp"
29-
3029
#include "gc/shared/space.hpp"
3130

3231
inline size_t TenuredGeneration::capacity() const {

‎src/hotspot/share/gc/shared/space.hpp

-8
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,13 @@
3535
#include "runtime/mutexLocker.hpp"
3636
#include "utilities/align.hpp"
3737
#include "utilities/macros.hpp"
38-
#if INCLUDE_SERIALGC
39-
#include "gc/serial/serialBlockOffsetTable.hpp"
40-
#endif
4138

4239
// A space is an abstraction for the "storage units" backing
4340
// up the generation abstraction. It includes specific
4441
// implementations for keeping track of free and used space,
4542
// for iterating over objects and free blocks, etc.
4643

4744
// Forward decls.
48-
class ContiguousSpace;
49-
class Generation;
50-
class ContiguousSpace;
51-
class CardTableRS;
52-
class DirtyCardToOopClosure;
5345
class GenSpaceMangler;
5446

5547
// A space in which the free area is contiguous. It therefore supports

0 commit comments

Comments
 (0)
Please sign in to comment.