Skip to content

Commit 14ce8f1

Browse files
committedJan 19, 2021
8259870: zBarrier.inline.hpp should not include javaClasses.hpp
Reviewed-by: stefank, tschatzl
1 parent a1a851b commit 14ce8f1

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed
 

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

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -22,6 +22,7 @@
2222
*/
2323

2424
#include "precompiled.hpp"
25+
#include "classfile/javaClasses.hpp"
2526
#include "gc/z/zBarrier.inline.hpp"
2627
#include "gc/z/zHeap.inline.hpp"
2728
#include "gc/z/zOop.inline.hpp"
@@ -239,6 +240,20 @@ oop ZBarrier::weak_load_barrier_on_phantom_oop_field_preloaded(volatile narrowOo
239240
return NULL;
240241
}
241242

243+
#ifdef ASSERT
244+
245+
// ON_WEAK barriers should only ever be applied to j.l.r.Reference.referents.
246+
void ZBarrier::verify_on_weak(volatile oop* referent_addr) {
247+
if (referent_addr != NULL) {
248+
uintptr_t base = (uintptr_t)referent_addr - java_lang_ref_Reference::referent_offset();
249+
oop obj = cast_to_oop(base);
250+
assert(oopDesc::is_oop(obj), "Verification failed for: ref " PTR_FORMAT " obj: " PTR_FORMAT, (uintptr_t)referent_addr, base);
251+
assert(java_lang_ref_Reference::is_referent_field(obj, java_lang_ref_Reference::referent_offset()), "Sanity");
252+
}
253+
}
254+
255+
#endif
256+
242257
void ZLoadBarrierOopClosure::do_oop(oop* p) {
243258
ZBarrier::load_barrier_on_oop_field(p);
244259
}

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -75,6 +75,8 @@ class ZBarrier : public AllStatic {
7575
static uintptr_t mark_barrier_on_oop_slow_path(uintptr_t addr);
7676
static uintptr_t mark_barrier_on_finalizable_oop_slow_path(uintptr_t addr);
7777

78+
static void verify_on_weak(volatile oop* referent_addr) NOT_DEBUG_RETURN;
79+
7880
public:
7981
// Load barrier
8082
static oop load_barrier_on_oop(oop o);

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

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,7 +24,6 @@
2424
#ifndef SHARE_GC_Z_ZBARRIER_INLINE_HPP
2525
#define SHARE_GC_Z_ZBARRIER_INLINE_HPP
2626

27-
#include "classfile/javaClasses.hpp"
2827
#include "gc/z/zAddress.inline.hpp"
2928
#include "gc/z/zBarrier.hpp"
3029
#include "gc/z/zOop.inline.hpp"
@@ -242,18 +241,6 @@ inline void ZBarrier::load_barrier_on_oop_array(volatile oop* p, size_t length)
242241
}
243242
}
244243

245-
// ON_WEAK barriers should only ever be applied to j.l.r.Reference.referents.
246-
inline void verify_on_weak(volatile oop* referent_addr) {
247-
#ifdef ASSERT
248-
if (referent_addr != NULL) {
249-
uintptr_t base = (uintptr_t)referent_addr - java_lang_ref_Reference::referent_offset();
250-
oop obj = cast_to_oop(base);
251-
assert(oopDesc::is_oop(obj), "Verification failed for: ref " PTR_FORMAT " obj: " PTR_FORMAT, (uintptr_t)referent_addr, base);
252-
assert(java_lang_ref_Reference::is_referent_field(obj, java_lang_ref_Reference::referent_offset()), "Sanity");
253-
}
254-
#endif
255-
}
256-
257244
inline oop ZBarrier::load_barrier_on_weak_oop_field_preloaded(volatile oop* p, oop o) {
258245
verify_on_weak(p);
259246

0 commit comments

Comments
 (0)
Please sign in to comment.