Skip to content

Commit 970249d

Browse files
stefankAlan Bateman
authored and
Alan Bateman
committedMar 16, 2022
Loom compile times minimal
Reviewed-by: eosterlund
1 parent 174cc90 commit 970249d

13 files changed

+27
-77
lines changed
 

‎src/hotspot/share/classfile/javaClasses.inline.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
#include "oops/access.inline.hpp"
3131
#include "oops/instanceKlass.inline.hpp"
32+
#include "logging/log.hpp"
3233
#include "oops/method.hpp"
3334
#include "oops/oop.inline.hpp"
3435
#include "oops/oopsHierarchy.hpp"

‎src/hotspot/share/gc/g1/g1BarrierSet.hpp

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ class G1BarrierSet: public CardTableBarrierSet {
5555
return true;
5656
}
5757

58-
// Loom support
59-
static bool requires_barriers(stackChunkOop obj);
60-
6158
// Add "pre_val" to a set of objects that may have been disconnected from the
6259
// pre-marking object graph.
6360
static void enqueue(oop pre_val);

‎src/hotspot/share/gc/g1/g1BarrierSet.inline.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include "gc/g1/g1BarrierSet.hpp"
2929

3030
#include "gc/g1/g1CardTable.hpp"
31-
#include "gc/g1/g1CollectedHeap.inline.hpp"
3231
#include "gc/shared/accessBarrierSupport.inline.hpp"
3332
#include "oops/access.inline.hpp"
3433
#include "oops/compressedOops.inline.hpp"
@@ -107,8 +106,4 @@ oop_store_not_in_heap(T* addr, oop new_value) {
107106
Raw::oop_store(addr, new_value);
108107
}
109108

110-
inline bool G1BarrierSet::requires_barriers(stackChunkOop obj) {
111-
return G1CollectedHeap::heap()->G1CollectedHeap::requires_barriers(obj);
112-
}
113-
114109
#endif // SHARE_GC_G1_G1BARRIERSET_INLINE_HPP

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

-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ class BarrierSet: public CHeapObj<mtGC> {
9191
// Test whether this object is of the type corresponding to bsn.
9292
bool is_a(BarrierSet::Name bsn) const { return _fake_rtti.has_tag(bsn); }
9393

94-
// Loom support
95-
static bool requires_barriers(stackChunkOop obj);
96-
9794
// End of fake RTTI support.
9895

9996
protected:

‎src/hotspot/share/gc/shared/barrierSet.inline.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626

2727
#include "gc/shared/barrierSet.hpp"
2828

29-
#include "gc/shared/collectedHeap.hpp"
3029
#include "oops/accessDecorators.hpp"
3130
#include "oops/arrayOop.hpp"
3231
#include "oops/compressedOops.inline.hpp"
@@ -59,8 +58,4 @@ inline bool BarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_arraycopy_in
5958
return true;
6059
}
6160

62-
inline bool BarrierSet::requires_barriers(stackChunkOop obj) {
63-
return Universe::heap()->requires_barriers(obj);
64-
}
65-
6661
#endif // SHARE_GC_SHARED_BARRIERSET_INLINE_HPP

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

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class ZBarrierSet : public BarrierSet {
3737

3838
// Loom support
3939
static constexpr bool is_concurrent_gc() { return true; }
40-
static bool requires_barriers(stackChunkOop obj);
4140

4241
virtual void on_thread_create(Thread* thread);
4342
virtual void on_thread_destroy(Thread* thread);

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

-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
#include "gc/shared/accessBarrierSupport.inline.hpp"
3030
#include "gc/z/zBarrier.inline.hpp"
31-
#include "gc/z/zCollectedHeap.inline.hpp"
3231
#include "utilities/debug.hpp"
3332

3433
template <DecoratorSet decorators, typename BarrierSetT>
@@ -240,8 +239,4 @@ inline oop ZBarrierSet::AccessBarrier<decorators, BarrierSetT>::oop_atomic_xchg_
240239
return Raw::oop_atomic_xchg_not_in_heap(addr, new_value);
241240
}
242241

243-
inline bool ZBarrierSet::requires_barriers(stackChunkOop obj) {
244-
return ZCollectedHeap::heap()->ZCollectedHeap::requires_barriers(obj);
245-
}
246-
247242
#endif // SHARE_GC_Z_ZBARRIERSET_INLINE_HPP

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

+21
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,27 @@ bool ZCollectedHeap::is_in(const void* p) const {
122122
return _heap.is_in((uintptr_t)p);
123123
}
124124

125+
bool ZCollectedHeap::requires_barriers(stackChunkOop obj) const {
126+
uintptr_t* cont_addr = obj->field_addr<uintptr_t>(jdk_internal_vm_StackChunk::cont_offset());
127+
128+
if (!_heap.is_allocating(cast_from_oop<uintptr_t>(obj))) {
129+
// An object that isn't allocating, is visible from GC tracing. Such
130+
// stack chunks require barriers.
131+
return true;
132+
}
133+
134+
if (!ZAddress::is_good_or_null(*cont_addr)) {
135+
// If a chunk is allocated after a GC started, but before relocate start
136+
// we can have an allocating chunk that isn't deeply good. That means that
137+
// the contained oops might be bad and require GC barriers.
138+
return true;
139+
}
140+
141+
// The chunk is allocating and its pointers are good. This chunk needs no
142+
// GC barriers
143+
return false;
144+
}
145+
125146
uint32_t ZCollectedHeap::hash_oop(oop obj) const {
126147
return _heap.hash_oop(ZOop::to_address(obj));
127148
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class ZCollectedHeap : public CollectedHeap {
7272

7373
virtual bool is_maximal_no_gc() const;
7474
virtual bool is_in(const void* p) const;
75-
virtual inline bool requires_barriers(stackChunkOop obj) const;
75+
virtual bool requires_barriers(stackChunkOop obj) const;
7676

7777
// Continuation support
7878
virtual void collect_for_codecache();

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

-53
This file was deleted.

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

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
#include "memory/oopFactory.hpp"
3434
#include "memory/resourceArea.hpp"
3535
#include "jfr/jfrEvents.hpp"
36+
#include "logging/log.hpp"
37+
#include "logging/logStream.hpp"
3638
#include "oops/compressedOops.hpp"
3739
#include "oops/instanceKlass.hpp"
3840
#include "oops/instanceOop.hpp"

‎src/hotspot/share/runtime/continuation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class Config {
241241
}
242242

243243
static bool requires_barriers(stackChunkOop obj) {
244-
return BarrierSetT::requires_barriers(obj);
244+
return obj->requires_barriers();
245245
}
246246
};
247247

‎src/hotspot/share/runtime/threadSMR.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "classfile/javaClasses.inline.hpp"
2627
#include "logging/logStream.hpp"
2728
#include "memory/allocation.inline.hpp"
2829
#include "runtime/atomic.hpp"

0 commit comments

Comments
 (0)
Please sign in to comment.