Skip to content

Commit d9b1a8f

Browse files
committedMar 11, 2022
Remove stack chunk shrinking logic
1 parent 088063e commit d9b1a8f

18 files changed

+36
-258
lines changed
 

‎src/hotspot/share/gc/g1/g1FullGCCompactTask.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ size_t G1FullGCCompactTask::G1CompactRegionClosure::apply(oop obj) {
8686
// copy object and reinit its mark
8787
HeapWord* obj_addr = cast_from_oop<HeapWord*>(obj);
8888
assert(size <= INT_MAX, "sanity check");
89-
assert(obj_addr != destination || size > (size_t)obj->compact_size((int)(uint)size), "everything in this pass should be moving or compressed in place");
90-
obj->copy_conjoint_compact(destination); // TODO LOOM: see G1FullGCCompactionPoint::forward; Might want to reconsider compacting here.
89+
assert(obj_addr != destination || size > (size_t)obj->size(), "everything in this pass should be moving or compressed in place");
90+
obj->copy_conjoint(destination, size);
9191
cast_to_oop(destination)->init_mark();
9292
assert(cast_to_oop(destination)->klass() != NULL, "should have a class");
9393

‎src/hotspot/share/gc/g1/g1FullGCCompactionPoint.cpp

+2-5
Original file line numberDiff line numberDiff line change
@@ -92,18 +92,15 @@ void G1FullGCCompactionPoint::switch_region() {
9292
void G1FullGCCompactionPoint::forward(oop object, size_t size) {
9393
assert(_current_region != NULL, "Must have been initialized");
9494

95-
size_t csize = object->compact_size((int)size); // TODO LOOM TRICKY; CONSIDER
96-
9795
// Ensure the object fit in the current region.
98-
while (!object_will_fit(csize)) {
96+
while (!object_will_fit(size)) {
9997
switch_region();
10098
}
10199

102100
// Store a forwarding pointer if the object should be moved or compacted in place.
103-
if (cast_from_oop<HeapWord*>(object) != _compaction_top || csize < size) {
101+
if (cast_from_oop<HeapWord*>(object) != _compaction_top) {
104102
object->forward_to(cast_to_oop(_compaction_top));
105103
assert(object->is_forwarded(), "must be forwarded");
106-
size = csize;
107104
} else {
108105
assert(!object->is_forwarded(), "must not be forwarded");
109106
}

‎src/hotspot/share/gc/g1/g1ParScanThreadState.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ oop G1ParScanThreadState::do_copy_to_survivor_space(G1HeapRegionAttr const regio
452452
// Get the klass once. We'll need it again later, and this avoids
453453
// re-decoding when it's compressed.
454454
Klass* klass = old->klass();
455-
const size_t word_sz = old->compact_size_given_klass(klass);
455+
const size_t word_sz = old->size_given_klass(klass);
456456

457457
uint age = 0;
458458
G1HeapRegionAttr dest_attr = next_region_attr(region_attr, old_mark, age);
@@ -485,7 +485,7 @@ oop G1ParScanThreadState::do_copy_to_survivor_space(G1HeapRegionAttr const regio
485485

486486
// We're going to allocate linearly, so might as well prefetch ahead.
487487
Prefetch::write(obj_ptr, PrefetchCopyIntervalInBytes);
488-
old->copy_disjoint_compact(obj_ptr, word_sz);
488+
old->copy_disjoint(obj_ptr, word_sz);
489489

490490
const oop obj = cast_to_oop(obj_ptr);
491491
// Because the forwarding is done with memory_order_relaxed there is no

‎src/hotspot/share/gc/parallel/psPromotionManager.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ inline oop PSPromotionManager::copy_unmarked_to_survivor_space(oop o,
161161

162162
oop new_obj = NULL;
163163
bool new_obj_is_tenured = false;
164-
size_t new_obj_size = o->compact_size();
164+
size_t new_obj_size = o->size();
165165

166166
// Find the objects age, MT safe.
167167
uint age = (test_mark.has_displaced_mark_helper() /* o->has_displaced_mark() */) ?
@@ -243,7 +243,7 @@ inline oop PSPromotionManager::copy_unmarked_to_survivor_space(oop o,
243243
assert(new_obj != NULL, "allocation should have succeeded");
244244

245245
// Copy obj
246-
o->copy_disjoint_compact(cast_from_oop<HeapWord*>(new_obj), new_obj_size);
246+
o->copy_disjoint(cast_from_oop<HeapWord*>(new_obj), new_obj_size);
247247

248248
// Now we have to CAS in the header.
249249
// Make copy visible to threads reading the forwardee.

‎src/hotspot/share/gc/serial/defNewGeneration.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ void DefNewGeneration::handle_promotion_failure(oop old) {
712712
oop DefNewGeneration::copy_to_survivor_space(oop old) {
713713
assert(is_in_reserved(old) && !old->is_forwarded(),
714714
"shouldn't be scavenging this oop");
715-
size_t s = old->compact_size();
715+
size_t s = old->size();
716716
oop obj = NULL;
717717

718718
// Try allocating obj in to-space (unless too old)
@@ -735,7 +735,7 @@ oop DefNewGeneration::copy_to_survivor_space(oop old) {
735735
Prefetch::write(obj, interval);
736736

737737
// Copy obj
738-
old->copy_disjoint_compact(cast_from_oop<HeapWord*>(obj), s);
738+
old->copy_disjoint(cast_from_oop<HeapWord*>(obj), s);
739739

740740
// Increment age if obj still in new generation
741741
obj->incr_age();

‎src/hotspot/share/gc/shared/genCollectedHeap.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1233,13 +1233,13 @@ oop GenCollectedHeap::handle_failed_promotion(Generation* old_gen,
12331233
oop obj,
12341234
size_t obj_size) {
12351235
guarantee(old_gen == _old_gen, "We only get here with an old generation");
1236-
assert(obj_size == obj->compact_size(), "bad obj_size passed in");
1236+
assert(obj_size == obj->size(), "bad obj_size passed in");
12371237
HeapWord* result = NULL;
12381238

12391239
result = old_gen->expand_and_allocate(obj_size, false);
12401240

12411241
if (result != NULL) {
1242-
obj->copy_disjoint_compact(result, obj_size);
1242+
obj->copy_disjoint(result, obj_size);
12431243
}
12441244
return cast_to_oop(result);
12451245
}

‎src/hotspot/share/gc/shared/generation.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ bool Generation::promotion_attempt_is_safe(size_t max_promotion_in_bytes) const
156156

157157
// Ignores "ref" and calls allocate().
158158
oop Generation::promote(oop obj, size_t obj_size) {
159-
assert(obj_size == obj->compact_size(), "bad obj_size passed in");
159+
assert(obj_size == obj->size(), "bad obj_size passed in");
160160

161161
#ifndef PRODUCT
162162
if (GenCollectedHeap::heap()->promotion_should_fail()) {
@@ -166,7 +166,7 @@ oop Generation::promote(oop obj, size_t obj_size) {
166166

167167
HeapWord* result = allocate(obj_size, false);
168168
if (result != NULL) {
169-
obj->copy_disjoint_compact(result, obj_size);
169+
obj->copy_disjoint(result, obj_size);
170170
return cast_to_oop(result);
171171
} else {
172172
GenCollectedHeap* gch = GenCollectedHeap::heap();

‎src/hotspot/share/gc/z/zMark.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ void ZMark::mark_and_follow(ZMarkContext* context, ZMarkStackEntry entry) {
338338
// Update live objects/bytes for page. We use the aligned object
339339
// size since that is the actual number of bytes used on the page
340340
// and alignment paddings can never be reclaimed.
341-
const size_t size = ZUtils::object_compact_size(addr);
341+
const size_t size = ZUtils::object_size(addr);
342342
const size_t aligned_size = align_up(size, page->object_alignment());
343343
context->cache()->inc_live(page, aligned_size);
344344
}

‎src/hotspot/share/gc/z/zRelocate.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ static uintptr_t relocate_object_inner(ZForwarding* forwarding, uintptr_t from_a
6464
assert(ZHeap::heap()->is_object_live(from_addr), "Should be live");
6565

6666
// Allocate object
67-
const size_t size = ZUtils::object_compact_size(from_addr);
67+
const size_t size = ZUtils::object_size(from_addr);
6868
const uintptr_t to_addr = ZHeap::heap()->alloc_object_for_relocation(size);
6969
if (to_addr == 0) {
7070
// Allocation failed
7171
return 0;
7272
}
7373

7474
// Copy object
75-
ZUtils::object_copy_disjoint_compact(from_addr, to_addr, size);
75+
ZUtils::object_copy_disjoint(from_addr, to_addr, size);
7676

7777
// Insert forwarding
7878
const uintptr_t to_addr_final = forwarding_insert(forwarding, from_addr, to_addr, cursor);
@@ -288,7 +288,7 @@ class ZRelocateClosure : public ObjectClosure {
288288
}
289289

290290
// Allocate object
291-
const size_t size = ZUtils::object_compact_size(from_addr);
291+
const size_t size = ZUtils::object_size(from_addr);
292292
const uintptr_t to_addr = _allocator->alloc_object(_target, size);
293293
if (to_addr == 0) {
294294
// Allocation failed
@@ -298,9 +298,9 @@ class ZRelocateClosure : public ObjectClosure {
298298
// Copy object. Use conjoint copying if we are relocating
299299
// in-place and the new object overlapps with the old object.
300300
if (_forwarding->in_place() && to_addr + size > from_addr) {
301-
ZUtils::object_copy_conjoint_compact(from_addr, to_addr, size);
301+
ZUtils::object_copy_conjoint(from_addr, to_addr, size);
302302
} else {
303-
ZUtils::object_copy_disjoint_compact(from_addr, to_addr, size);
303+
ZUtils::object_copy_disjoint(from_addr, to_addr, size);
304304
}
305305

306306
// Insert forwarding

‎src/hotspot/share/gc/z/zUtils.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ class ZUtils : public AllStatic {
4040
static size_t object_size(uintptr_t addr);
4141
static void object_copy_disjoint(uintptr_t from, uintptr_t to, size_t size);
4242
static void object_copy_conjoint(uintptr_t from, uintptr_t to, size_t size);
43-
44-
static size_t object_compact_size(uintptr_t addr);
45-
static void object_copy_disjoint_compact(uintptr_t from, uintptr_t to, size_t size);
46-
static void object_copy_conjoint_compact(uintptr_t from, uintptr_t to, size_t size);
4743
};
4844

4945
#endif // SHARE_GC_Z_ZUTILS_HPP

‎src/hotspot/share/gc/z/zUtils.inline.hpp

-14
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ inline size_t ZUtils::object_size(uintptr_t addr) {
4646
return words_to_bytes(ZOop::from_address(addr)->size());
4747
}
4848

49-
inline size_t ZUtils::object_compact_size(uintptr_t addr) {
50-
return words_to_bytes(ZOop::from_address(addr)->compact_size());
51-
}
52-
5349
inline void ZUtils::object_copy_disjoint(uintptr_t from, uintptr_t to, size_t size) {
5450
ZOop::from_address(from)->copy_disjoint((HeapWord*)to, bytes_to_words(size));
5551
}
@@ -60,14 +56,4 @@ inline void ZUtils::object_copy_conjoint(uintptr_t from, uintptr_t to, size_t si
6056
}
6157
}
6258

63-
inline void ZUtils::object_copy_disjoint_compact(uintptr_t from, uintptr_t to, size_t size) {
64-
ZOop::from_address(from)->copy_disjoint_compact((HeapWord*)to, bytes_to_words(size));
65-
}
66-
67-
inline void ZUtils::object_copy_conjoint_compact(uintptr_t from, uintptr_t to, size_t size) {
68-
if (from != to) {
69-
ZOop::from_address(from)->copy_conjoint_compact((HeapWord*)to, bytes_to_words(size));
70-
}
71-
}
72-
7359
#endif // SHARE_GC_Z_ZUTILS_INLINE_HPP

‎src/hotspot/share/oops/instanceStackChunkKlass.cpp

-99
Original file line numberDiff line numberDiff line change
@@ -95,105 +95,6 @@ size_t InstanceStackChunkKlass::copy(oop obj, HeapWord* to_addr, size_t word_siz
9595
template size_t InstanceStackChunkKlass::copy<InstanceStackChunkKlass::copy_type::CONJOINT>(oop obj, HeapWord* to_addr, size_t word_size);
9696
template size_t InstanceStackChunkKlass::copy<InstanceStackChunkKlass::copy_type::DISJOINT>(oop obj, HeapWord* to_addr, size_t word_size);
9797

98-
size_t InstanceStackChunkKlass::compact_oop_size(oop obj) const {
99-
assert (obj->is_stackChunk(), "");
100-
stackChunkOop chunk = (stackChunkOop)obj;
101-
int used_stack_in_words = chunk->stack_size() - chunk->sp() + metadata_words();
102-
assert (used_stack_in_words <= chunk->stack_size(), "");
103-
return align_object_size(size_helper() + used_stack_in_words + bitmap_size(used_stack_in_words));
104-
}
105-
106-
template size_t InstanceStackChunkKlass::copy_compact<InstanceStackChunkKlass::copy_type::CONJOINT>(oop obj, HeapWord* to_addr);
107-
template size_t InstanceStackChunkKlass::copy_compact<InstanceStackChunkKlass::copy_type::DISJOINT>(oop obj, HeapWord* to_addr);
108-
109-
template <InstanceStackChunkKlass::copy_type overlap>
110-
size_t InstanceStackChunkKlass::copy_compact(oop obj, HeapWord* to_addr) {
111-
assert (obj->is_stackChunk(), "");
112-
stackChunkOop chunk = (stackChunkOop)obj;
113-
114-
assert (chunk->verify(), "");
115-
116-
#ifdef ASSERT
117-
size_t old_compact_size = obj->compact_size();
118-
size_t old_size = obj->size();
119-
assert (old_compact_size <= old_size, "");
120-
#endif
121-
122-
const int from_sp = chunk->sp();
123-
assert (from_sp >= metadata_words(), "");
124-
125-
if (from_sp <= metadata_words()) {
126-
assert (oop_size(obj) == compact_oop_size(obj), "");
127-
return copy<overlap>(obj, to_addr, oop_size(obj));
128-
}
129-
130-
const int header = size_helper();
131-
const int from_stack_size = chunk->stack_size();
132-
const int to_stack_size = from_stack_size - from_sp + metadata_words();
133-
const size_t from_bitmap_size = bitmap_size(from_stack_size);
134-
const size_t to_bitmap_size = bitmap_size(to_stack_size);
135-
const bool has_bitmap = chunk->has_bitmap();
136-
assert (to_stack_size >= 0, "");
137-
assert (to_stack_size <= from_stack_size, "");
138-
assert (to_stack_size > 0 || chunk->argsize() == 0, "");
139-
#ifdef ASSERT
140-
HeapWord* const start_of_stack0 = start_of_stack(obj);
141-
HeapWord* const start_of_bitmap0 = start_of_bitmap(obj);
142-
#endif
143-
144-
stackChunkOop to_chunk = (stackChunkOop) cast_to_oop(to_addr);
145-
HeapWord* from_addr = cast_from_oop<HeapWord*>(obj);
146-
147-
// copy header and stack in the appropriate order if conjoint; must not touch old chunk after we start b/c this can be a conjoint copy
148-
const int first = (overlap == copy_type::DISJOINT || to_addr <= from_addr) ? 0 : 2;
149-
const int stride = 1 - first;
150-
for (int i = first; 0 <= i && i <= 2; i += stride) {
151-
switch(i) { // copy header and update it
152-
case 0:
153-
if (to_addr != from_addr) {
154-
overlap == copy_type::DISJOINT ? Copy::aligned_disjoint_words(from_addr, to_addr, header)
155-
: Copy::aligned_conjoint_words(from_addr, to_addr, header);
156-
}
157-
158-
jdk_internal_vm_StackChunk::set_size(to_addr, to_stack_size);
159-
to_chunk->set_sp(metadata_words());
160-
break;
161-
case 1: // copy stack
162-
if (to_stack_size > 0) {
163-
assert ((from_addr + header) == start_of_stack0, "");
164-
HeapWord* from_start = from_addr + header + from_sp - metadata_words();
165-
HeapWord* to_start = to_addr + header;
166-
overlap == copy_type::DISJOINT ? Copy::aligned_disjoint_words(from_start, to_start, to_stack_size)
167-
: Copy::aligned_conjoint_words(from_start, to_start, to_stack_size);
168-
}
169-
break;
170-
case 2: // copy bitmap
171-
if (to_stack_size > 0 && has_bitmap) {
172-
assert ((from_addr + header + from_stack_size) == start_of_bitmap0, "");
173-
assert (from_bitmap_size >= to_bitmap_size, "");
174-
HeapWord* from_start = from_addr + header + from_stack_size + (from_bitmap_size - to_bitmap_size);
175-
HeapWord* to_start = to_addr + header + to_stack_size;
176-
overlap == copy_type::DISJOINT ? Copy::aligned_disjoint_words(from_start, to_start, to_bitmap_size)
177-
: Copy::aligned_conjoint_words(from_start, to_start, to_bitmap_size);
178-
}
179-
break;
180-
}
181-
}
182-
183-
assert (!to_chunk->has_bitmap()|| to_chunk->is_gc_mode(), "");
184-
assert (to_chunk->has_bitmap() == has_bitmap, "");
185-
if (!to_chunk->has_bitmap()) {
186-
build_bitmap(to_chunk);
187-
}
188-
189-
assert (to_chunk->size() == old_compact_size, "");
190-
assert (to_chunk->size() == instance_size(to_stack_size), "");
191-
assert (from_sp <= metadata_words() ? (to_chunk->size() == old_size) : (to_chunk->size() < old_size), "");
192-
assert (to_chunk->verify(), "");
193-
194-
return align_object_size(header + to_stack_size + to_bitmap_size);
195-
}
196-
19798
template <chunk_frames frame_kind>
19899
int InstanceStackChunkKlass::count_frames(stackChunkOop chunk) {
199100
int frames = 0;

‎src/hotspot/share/oops/instanceStackChunkKlass.hpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,10 @@ class InstanceStackChunkKlass: public InstanceKlass {
143143

144144
// Returns the size of the instance including the stack data.
145145
virtual size_t oop_size(oop obj) const override;
146-
virtual size_t compact_oop_size(oop obj) const override;
147146

148-
virtual size_t copy_disjoint(oop obj, HeapWord* to, size_t word_size) override { return copy<copy_type::DISJOINT> (obj, to, word_size); }
149-
virtual size_t copy_conjoint(oop obj, HeapWord* to, size_t word_size) override { return copy<copy_type::CONJOINT>(obj, to, word_size); }
147+
virtual void copy_disjoint(oop obj, HeapWord* to, size_t word_size) override { copy<copy_type::DISJOINT> (obj, to, word_size); }
148+
virtual void copy_conjoint(oop obj, HeapWord* to, size_t word_size) override { copy<copy_type::CONJOINT>(obj, to, word_size); }
150149

151-
virtual size_t copy_disjoint_compact(oop obj, HeapWord* to) override { return copy_compact<copy_type::DISJOINT> (obj, to); }
152-
virtual size_t copy_conjoint_compact(oop obj, HeapWord* to) override { return copy_compact<copy_type::CONJOINT>(obj, to); }
153150

154151
static void serialize_offsets(class SerializeClosure* f) NOT_CDS_RETURN;
155152

@@ -215,7 +212,6 @@ class InstanceStackChunkKlass: public InstanceKlass {
215212
void build_bitmap(stackChunkOop chunk);
216213

217214
template<copy_type disjoint> size_t copy(oop obj, HeapWord* to, size_t word_size);
218-
template<copy_type disjoint> size_t copy_compact(oop obj, HeapWord* to);
219215

220216
template <typename T, class OopClosureType>
221217
inline void oop_oop_iterate_header(stackChunkOop chunk, OopClosureType* closure);

‎src/hotspot/share/oops/klass.cpp

+2-12
Original file line numberDiff line numberDiff line change
@@ -710,22 +710,12 @@ const char* Klass::signature_name() const {
710710
return name()->as_C_string();
711711
}
712712

713-
size_t Klass::copy_disjoint(oop obj, HeapWord* to, size_t word_size) {
713+
void Klass::copy_disjoint(oop obj, HeapWord* to, size_t word_size) {
714714
Copy::aligned_disjoint_words(cast_from_oop<HeapWord*>(obj), to, word_size);
715-
return word_size;
716715
}
717716

718-
size_t Klass::copy_conjoint(oop obj, HeapWord* to, size_t word_size) {
717+
void Klass::copy_conjoint(oop obj, HeapWord* to, size_t word_size) {
719718
Copy::aligned_conjoint_words(cast_from_oop<HeapWord*>(obj), to, word_size);
720-
return word_size;
721-
}
722-
723-
size_t Klass::copy_disjoint_compact(oop obj, HeapWord* to) {
724-
return obj->copy_disjoint(to);
725-
}
726-
727-
size_t Klass::copy_conjoint_compact(oop obj, HeapWord* to) {
728-
return obj->copy_conjoint(to);
729719
}
730720

731721
const char* Klass::external_kind() const {

‎src/hotspot/share/oops/klass.hpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -597,10 +597,8 @@ class Klass : public Metadata {
597597
// Returns "interface", "abstract class" or "class".
598598
const char* external_kind() const;
599599

600-
virtual size_t copy_disjoint(oop obj, HeapWord* to, size_t word_size);
601-
virtual size_t copy_conjoint(oop obj, HeapWord* to, size_t word_size);
602-
virtual size_t copy_disjoint_compact(oop obj, HeapWord* to);
603-
virtual size_t copy_conjoint_compact(oop obj, HeapWord* to);
600+
virtual void copy_disjoint(oop obj, HeapWord* to, size_t word_size);
601+
virtual void copy_conjoint(oop obj, HeapWord* to, size_t word_size);
604602

605603
// type testing operations
606604
#ifdef ASSERT

‎src/hotspot/share/oops/oop.hpp

+2-16
Original file line numberDiff line numberDiff line change
@@ -101,28 +101,14 @@ class oopDesc {
101101

102102
// Returns the actual oop size of the object in machine words
103103
inline size_t size();
104-
// Returns the size of the object after possible compression during GC promotion/compaction
105-
inline size_t compact_size();
106-
// Returns the given size in the common case where there is no special compact size
107-
inline size_t compact_size(size_t size);
108104

109105
// Sometimes (for complicated concurrency-related reasons), it is useful
110106
// to be able to figure out the size of an object knowing its klass.
111107
inline size_t size_given_klass(Klass* klass);
112-
// Returns the size of the object after possible compression during GC promotion/compaction
113-
inline size_t compact_size_given_klass(Klass* klass);
114-
// Returns the given size in the common case where there is no special compact size
115-
inline size_t compact_size_given_klass(Klass* klass, size_t size);
116108

117109
// Copies the object
118-
inline size_t copy_disjoint(HeapWord* to);
119-
inline size_t copy_conjoint(HeapWord* to);
120-
inline size_t copy_disjoint_compact(HeapWord* to);
121-
inline size_t copy_conjoint_compact(HeapWord* to);
122-
inline size_t copy_disjoint(HeapWord* to, size_t word_size);
123-
inline size_t copy_disjoint_compact(HeapWord* to, size_t word_size);
124-
inline size_t copy_conjoint(HeapWord* to, size_t word_size);
125-
inline size_t copy_conjoint_compact(HeapWord* to, size_t word_size);
110+
inline void copy_disjoint(HeapWord* to, size_t word_size);
111+
inline void copy_conjoint(HeapWord* to, size_t word_size);
126112

127113
// type test operations (inlined in oop.inline.hpp)
128114
inline bool is_instance() const;

‎src/hotspot/share/oops/oop.inline.hpp

+8-77
Original file line numberDiff line numberDiff line change
@@ -199,31 +199,6 @@ size_t oopDesc::size_given_klass(Klass* klass) {
199199
return s;
200200
}
201201

202-
size_t oopDesc::compact_size() {
203-
return compact_size_given_klass(klass());
204-
}
205-
206-
size_t oopDesc::compact_size(size_t size) {
207-
return compact_size_given_klass(klass(), size);
208-
}
209-
210-
size_t oopDesc::compact_size_given_klass(Klass* klass) {
211-
int lh = klass->layout_helper();
212-
if (lh > Klass::_lh_neutral_value && Klass::layout_helper_needs_slow_path(lh) && TrimContinuationChunksInGC) {
213-
return klass->compact_oop_size(this);
214-
}
215-
return size_given_klass(klass);
216-
}
217-
218-
size_t oopDesc::compact_size_given_klass(Klass* klass, size_t size) {
219-
int lh = klass->layout_helper();
220-
if (lh > Klass::_lh_neutral_value && Klass::layout_helper_needs_slow_path(lh) && TrimContinuationChunksInGC) {
221-
return klass->compact_oop_size(this);
222-
}
223-
assert (size == size_given_klass(klass), "");
224-
return size;
225-
}
226-
227202
bool oopDesc::is_instance() const { return klass()->is_instance_klass(); }
228203
bool oopDesc::is_array() const { return klass()->is_array_klass(); }
229204
bool oopDesc::is_objArray() const { return klass()->is_objArray_klass(); }
@@ -408,68 +383,24 @@ bool oopDesc::mark_must_be_preserved(markWord m) const {
408383
return m.must_be_preserved(this);
409384
}
410385

411-
size_t oopDesc::copy_disjoint(HeapWord* to) {
412-
return copy_disjoint(to, size());
413-
}
414-
415-
size_t oopDesc::copy_conjoint(HeapWord* to) {
416-
return copy_conjoint(to, size());
417-
}
418-
419-
size_t oopDesc::copy_disjoint_compact(HeapWord* to) {
420-
return copy_disjoint_compact(to, compact_size());
421-
}
422-
423-
size_t oopDesc::copy_conjoint_compact(HeapWord* to) {
424-
return copy_conjoint_compact(to, compact_size());
425-
}
426-
427-
size_t oopDesc::copy_disjoint(HeapWord* to, size_t word_size) {
428-
// if (is_stackChunk()) tty->print_cr(">>> copy_disjoint from: %p - %p to: %p - %p (word_size: %zu)", cast_from_oop<HeapWord*>(this), cast_from_oop<HeapWord*>(this) + word_size, to, to + word_size, word_size);
386+
void oopDesc::copy_disjoint(HeapWord* to, size_t word_size) {
429387
assert(word_size == (size_t)size() || size_might_change(), "");
430388
int lh = klass()->layout_helper();
431389
if (lh > Klass::_lh_neutral_value && Klass::layout_helper_needs_slow_path(lh)) {
432-
size_t res = klass()->copy_disjoint(this, to, word_size);
433-
assert (word_size == res, "");
434-
return res;
435-
}
436-
Copy::aligned_disjoint_words(cast_from_oop<HeapWord*>(this), to, word_size);
437-
return word_size;
438-
}
439-
440-
size_t oopDesc::copy_disjoint_compact(HeapWord* to, size_t word_size) {
441-
assert(word_size == (size_t)compact_size() || size_might_change(), "");
442-
int lh = klass()->layout_helper();
443-
if (lh > Klass::_lh_neutral_value && Klass::layout_helper_needs_slow_path(lh) && TrimContinuationChunksInGC) {
444-
size_t res = klass()->copy_disjoint_compact(this, to);
445-
assert (word_size == res, "");
446-
return res;
390+
klass()->copy_disjoint(this, to, word_size);
391+
} else {
392+
Copy::aligned_disjoint_words(cast_from_oop<HeapWord*>(this), to, word_size);
447393
}
448-
return copy_disjoint(to, word_size);
449394
}
450395

451-
size_t oopDesc::copy_conjoint(HeapWord* to, size_t word_size) {
452-
// if (is_stackChunk()) tty->print_cr(">>> copy_conjoint from: %p - %p to: %p - %p (word_size: %zu)", cast_from_oop<HeapWord*>(this), cast_from_oop<HeapWord*>(this) + word_size, to, to + word_size, word_size);
396+
void oopDesc::copy_conjoint(HeapWord* to, size_t word_size) {
453397
assert(word_size == (size_t)size() || size_might_change(), "");
454398
int lh = klass()->layout_helper();
455399
if (lh > Klass::_lh_neutral_value && Klass::layout_helper_needs_slow_path(lh)) {
456-
size_t res = klass()->copy_conjoint(this, to, word_size);
457-
assert (word_size == res, "");
458-
return res;
459-
}
460-
Copy::aligned_conjoint_words(cast_from_oop<HeapWord*>(this), to, word_size);
461-
return word_size;
462-
}
463-
464-
size_t oopDesc::copy_conjoint_compact(HeapWord* to, size_t word_size) {
465-
assert(word_size == (size_t)compact_size() || size_might_change(), "");
466-
int lh = klass()->layout_helper();
467-
if (lh > Klass::_lh_neutral_value && Klass::layout_helper_needs_slow_path(lh) && TrimContinuationChunksInGC) {
468-
size_t res = klass()->copy_conjoint_compact(this, to);
469-
assert (word_size == res, "");
470-
return res;
400+
klass()->copy_conjoint(this, to, word_size);
401+
} else {
402+
Copy::aligned_conjoint_words(cast_from_oop<HeapWord*>(this), to, word_size);
471403
}
472-
return copy_conjoint(to, word_size);
473404
}
474405

475406
#endif // SHARE_OOPS_OOP_INLINE_HPP

‎src/hotspot/share/runtime/globals.hpp

-3
Original file line numberDiff line numberDiff line change
@@ -2013,9 +2013,6 @@ const intx ObjectAlignmentInBytes = 8;
20132013
develop(bool, UseContinuationFastPath, true, \
20142014
"Use fast-path frame walking in continuations") \
20152015
\
2016-
product(bool, TrimContinuationChunksInGC, false, \
2017-
"Trim stack chunks when copying objects in GC (PREVIEW)") \
2018-
\
20192016
product(bool, UseChunkBitmaps, false, \
20202017
"Generate oop bitmaps for continuation chunks (PREVIEW)") \
20212018
\

0 commit comments

Comments
 (0)
Please sign in to comment.