28
28
#include " memory/allocation.hpp"
29
29
#include " memory/iterator.hpp"
30
30
#include " memory/memRegion.hpp"
31
+ #include " runtime/atomic.hpp"
31
32
#include " utilities/copy.hpp"
32
33
#include " utilities/globalDefinitions.hpp"
33
34
#include " utilities/macros.hpp"
@@ -42,9 +43,6 @@ class WorkGang;
42
43
// page allocation time by having the memory pretouched (with
43
44
// AlwaysPretouch) and for optimizing page placement on NUMA systems
44
45
// by make the underlying region interleaved (with UseNUMA).
45
- //
46
- // Invariant: bottom() <= top() <= end()
47
- // top() and end() are exclusive.
48
46
49
47
class MutableSpaceMangler ;
50
48
@@ -56,9 +54,11 @@ class MutableSpace: public CHeapObj<mtGC> {
56
54
// The last region which page had been setup to be interleaved.
57
55
MemRegion _last_setup_region;
58
56
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.
62
62
63
63
MutableSpaceMangler* mangler () { return _mangler; }
64
64
@@ -67,21 +67,22 @@ class MutableSpace: public CHeapObj<mtGC> {
67
67
void set_last_setup_region (MemRegion mr) { _last_setup_region = mr; }
68
68
MemRegion last_setup_region () const { return _last_setup_region; }
69
69
70
+ protected:
71
+ HeapWord* volatile * top_addr () { return &_top; }
72
+ HeapWord* volatile * end_addr () { return &_end; }
73
+
70
74
public:
71
75
virtual ~MutableSpace ();
72
76
MutableSpace (size_t page_size);
73
77
74
78
// Accessors
75
79
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) ; }
78
82
79
83
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); }
85
86
86
87
size_t alignment () { return _alignment; }
87
88
0 commit comments