Skip to content

Commit 8b934aa

Browse files
committedApr 2, 2024
8329358: Generational ZGC: Remove the unused method ZPointer::set_remset_bits
Reviewed-by: stefank, eosterlund
1 parent 3b582df commit 8b934aa

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed
 

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2024, 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
@@ -248,7 +248,6 @@ class ZPointer : public AllStatic {
248248
static zaddress uncolor(zpointer ptr);
249249
static zaddress uncolor_store_good(zpointer ptr);
250250
static zaddress_unsafe uncolor_unsafe(zpointer ptr);
251-
static zpointer set_remset_bits(zpointer ptr);
252251

253252
static bool is_load_bad(zpointer ptr);
254253
static bool is_load_good(zpointer ptr);

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

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2024, 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
@@ -454,13 +454,6 @@ inline zaddress_unsafe ZPointer::uncolor_unsafe(zpointer ptr) {
454454
return to_zaddress_unsafe(raw_addr >> ZPointer::load_shift_lookup(raw_addr));
455455
}
456456

457-
inline zpointer ZPointer::set_remset_bits(zpointer ptr) {
458-
uintptr_t raw_addr = untype(ptr);
459-
assert(raw_addr != 0, "raw nulls should have been purged in promotion to old gen");
460-
raw_addr |= ZPointerRemembered0 | ZPointerRemembered1;
461-
return to_zpointer(raw_addr);
462-
}
463-
464457
inline bool ZPointer::is_load_bad(zpointer ptr) {
465458
return untype(ptr) & ZPointerLoadBadMask;
466459
}

0 commit comments

Comments
 (0)
Please sign in to comment.