Skip to content

Commit 1e0a101

Browse files
author
Kim Barrett
committedFeb 5, 2021
8259862: MutableSpace's end should be atomic
Make _end volatile and use atomic access Reviewed-by: ayang, tschatzl
1 parent d2bd499 commit 1e0a101

File tree

4 files changed

+15
-20
lines changed

4 files changed

+15
-20
lines changed
 

‎src/hotspot/share/gc/parallel/mutableSpace.hpp

+14-13
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "memory/allocation.hpp"
2929
#include "memory/iterator.hpp"
3030
#include "memory/memRegion.hpp"
31+
#include "runtime/atomic.hpp"
3132
#include "utilities/copy.hpp"
3233
#include "utilities/globalDefinitions.hpp"
3334
#include "utilities/macros.hpp"
@@ -42,9 +43,6 @@ class WorkGang;
4243
// page allocation time by having the memory pretouched (with
4344
// AlwaysPretouch) and for optimizing page placement on NUMA systems
4445
// by make the underlying region interleaved (with UseNUMA).
45-
//
46-
// Invariant: bottom() <= top() <= end()
47-
// top() and end() are exclusive.
4846

4947
class MutableSpaceMangler;
5048

@@ -56,9 +54,11 @@ class MutableSpace: public CHeapObj<mtGC> {
5654
// The last region which page had been setup to be interleaved.
5755
MemRegion _last_setup_region;
5856
size_t _alignment;
59-
HeapWord* _bottom;
60-
HeapWord* volatile _top;
61-
HeapWord* _end;
57+
// Supports CAS-based allocation.
58+
// Invariant: bottom() <= top() <= end()
59+
HeapWord* _bottom; // Start of the region.
60+
HeapWord* volatile _top; // Current allocation pointer.
61+
HeapWord* volatile _end; // Current allocation limit. expand() advances.
6262

6363
MutableSpaceMangler* mangler() { return _mangler; }
6464

@@ -67,21 +67,22 @@ class MutableSpace: public CHeapObj<mtGC> {
6767
void set_last_setup_region(MemRegion mr) { _last_setup_region = mr; }
6868
MemRegion last_setup_region() const { return _last_setup_region; }
6969

70+
protected:
71+
HeapWord* volatile* top_addr() { return &_top; }
72+
HeapWord* volatile* end_addr() { return &_end; }
73+
7074
public:
7175
virtual ~MutableSpace();
7276
MutableSpace(size_t page_size);
7377

7478
// Accessors
7579
HeapWord* bottom() const { return _bottom; }
76-
HeapWord* top() const { return _top; }
77-
HeapWord* end() const { return _end; }
80+
HeapWord* top() const { return Atomic::load(&_top); }
81+
HeapWord* end() const { return Atomic::load(&_end); }
7882

7983
void set_bottom(HeapWord* value) { _bottom = value; }
80-
virtual void set_top(HeapWord* value) { _top = value; }
81-
void set_end(HeapWord* value) { _end = value; }
82-
83-
HeapWord* volatile* top_addr() { return &_top; }
84-
HeapWord** end_addr() { return &_end; }
84+
virtual void set_top(HeapWord* value) { Atomic::store(&_top, value); }
85+
void set_end(HeapWord* value) { Atomic::store(&_end, value); }
8586

8687
size_t alignment() { return _alignment; }
8788

‎src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp

-3
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,6 @@ class ParallelScavengeHeap : public CollectedHeap {
200200

201201
bool supports_inline_contig_alloc() const { return !UseNUMA; }
202202

203-
HeapWord* volatile* top_addr() const { return !UseNUMA ? young_gen()->top_addr() : (HeapWord* volatile*)-1; }
204-
HeapWord** end_addr() const { return !UseNUMA ? young_gen()->end_addr() : (HeapWord**)-1; }
205-
206203
void ensure_parsability(bool retire_tlabs);
207204
void resize_all_tlabs();
208205

‎src/hotspot/share/gc/parallel/psYoungGen.hpp

-3
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,6 @@ class PSYoungGen : public CHeapObj<mtGC> {
133133
return result;
134134
}
135135

136-
HeapWord* volatile* top_addr() const { return eden_space()->top_addr(); }
137-
HeapWord** end_addr() const { return eden_space()->end_addr(); }
138-
139136
// Iteration.
140137
void oop_iterate(OopIterateClosure* cl);
141138
void object_iterate(ObjectClosure* cl);

‎src/hotspot/share/gc/parallel/vmStructs_parallelgc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
nonstatic_field(PSVirtualSpace, _committed_high_addr, char*) \
4747
\
4848
nonstatic_field(MutableSpace, _bottom, HeapWord*) \
49-
nonstatic_field(MutableSpace, _end, HeapWord*) \
49+
volatile_nonstatic_field(MutableSpace, _end, HeapWord*) \
5050
volatile_nonstatic_field(MutableSpace, _top, HeapWord*) \
5151
\
5252
nonstatic_field(PSYoungGen, _reserved, MemRegion) \

0 commit comments

Comments
 (0)
Please sign in to comment.