File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -248,7 +248,6 @@ class ZPointer : public AllStatic {
248
248
static zaddress uncolor (zpointer ptr);
249
249
static zaddress uncolor_store_good (zpointer ptr);
250
250
static zaddress_unsafe uncolor_unsafe (zpointer ptr);
251
- static zpointer set_remset_bits (zpointer ptr);
252
251
253
252
static bool is_load_bad (zpointer ptr);
254
253
static bool is_load_good (zpointer ptr);
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* 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) {
454
454
return to_zaddress_unsafe (raw_addr >> ZPointer::load_shift_lookup (raw_addr));
455
455
}
456
456
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
-
464
457
inline bool ZPointer::is_load_bad (zpointer ptr) {
465
458
return untype (ptr) & ZPointerLoadBadMask;
466
459
}
You can’t perform that action at this time.
0 commit comments