@@ -11,7 +11,7 @@ use core::{
11
11
cmp:: { Ord , Ordering } ,
12
12
marker:: PhantomData ,
13
13
mem:: MaybeUninit ,
14
- ptr:: { addr_of_mut , from_mut, NonNull } ,
14
+ ptr:: { from_mut, NonNull } ,
15
15
} ;
16
16
17
17
/// A red-black tree with owned nodes.
@@ -238,7 +238,7 @@ impl<K, V> RBTree<K, V> {
238
238
239
239
/// Returns a cursor over the tree nodes, starting with the smallest key.
240
240
pub fn cursor_front ( & mut self ) -> Option < Cursor < ' _ , K , V > > {
241
- let root = addr_of_mut ! ( self . root) ;
241
+ let root = & raw mut self . root ;
242
242
// SAFETY: `self.root` is always a valid root node
243
243
let current = unsafe { bindings:: rb_first ( root) } ;
244
244
NonNull :: new ( current) . map ( |current| {
@@ -253,7 +253,7 @@ impl<K, V> RBTree<K, V> {
253
253
254
254
/// Returns a cursor over the tree nodes, starting with the largest key.
255
255
pub fn cursor_back ( & mut self ) -> Option < Cursor < ' _ , K , V > > {
256
- let root = addr_of_mut ! ( self . root) ;
256
+ let root = & raw mut self . root ;
257
257
// SAFETY: `self.root` is always a valid root node
258
258
let current = unsafe { bindings:: rb_last ( root) } ;
259
259
NonNull :: new ( current) . map ( |current| {
@@ -459,7 +459,7 @@ where
459
459
let best = best_match?;
460
460
461
461
// SAFETY: `best` is a non-null node so it is valid by the type invariants.
462
- let links = unsafe { addr_of_mut ! ( ( * best. as_ptr( ) ) . links) } ;
462
+ let links = unsafe { & raw mut ( * best. as_ptr ( ) ) . links } ;
463
463
464
464
NonNull :: new ( links) . map ( |current| {
465
465
// INVARIANT:
@@ -767,7 +767,7 @@ impl<'a, K, V> Cursor<'a, K, V> {
767
767
let node = RBTreeNode { node } ;
768
768
// SAFETY: The reference to the tree used to create the cursor outlives the cursor, so
769
769
// the tree cannot change. By the tree invariant, all nodes are valid.
770
- unsafe { bindings:: rb_erase ( & mut ( * this) . links , addr_of_mut ! ( self . tree. root) ) } ;
770
+ unsafe { bindings:: rb_erase ( & mut ( * this) . links , & raw mut self . tree . root ) } ;
771
771
772
772
let current = match ( prev, next) {
773
773
( _, Some ( next) ) => next,
@@ -803,7 +803,7 @@ impl<'a, K, V> Cursor<'a, K, V> {
803
803
let neighbor = neighbor. as_ptr ( ) ;
804
804
// SAFETY: The reference to the tree used to create the cursor outlives the cursor, so
805
805
// the tree cannot change. By the tree invariant, all nodes are valid.
806
- unsafe { bindings:: rb_erase ( neighbor, addr_of_mut ! ( self . tree. root) ) } ;
806
+ unsafe { bindings:: rb_erase ( neighbor, & raw mut self . tree . root ) } ;
807
807
// SAFETY: By the type invariant of `Self`, all non-null `rb_node` pointers stored in `self`
808
808
// point to the links field of `Node<K, V>` objects.
809
809
let this = unsafe { container_of ! ( neighbor, Node <K , V >, links) } . cast_mut ( ) ;
@@ -918,7 +918,7 @@ impl<'a, K, V> Cursor<'a, K, V> {
918
918
let k = unsafe { & ( * this) . key } ;
919
919
// SAFETY: The passed `node` is the current node or a non-null neighbor,
920
920
// thus `this` is valid by the type invariants.
921
- let v = unsafe { addr_of_mut ! ( ( * this) . value) } ;
921
+ let v = unsafe { & raw mut ( * this) . value } ;
922
922
( k, v)
923
923
}
924
924
}
@@ -1027,7 +1027,7 @@ impl<K, V> Iterator for IterRaw<K, V> {
1027
1027
self . next = unsafe { bindings:: rb_next ( self . next ) } ;
1028
1028
1029
1029
// SAFETY: By the same reasoning above, it is safe to dereference the node.
1030
- Some ( unsafe { ( addr_of_mut ! ( ( * cur) . key) , addr_of_mut ! ( ( * cur) . value) ) } )
1030
+ Some ( unsafe { ( & raw mut ( * cur) . key , & raw mut ( * cur) . value ) } )
1031
1031
}
1032
1032
}
1033
1033
@@ -1170,15 +1170,15 @@ impl<'a, K, V> RawVacantEntry<'a, K, V> {
1170
1170
1171
1171
// SAFETY: `node` is valid at least until we call `Box::from_raw`, which only happens when
1172
1172
// the node is removed or replaced.
1173
- let node_links = unsafe { addr_of_mut ! ( ( * node) . links) } ;
1173
+ let node_links = unsafe { & raw mut ( * node) . links } ;
1174
1174
1175
1175
// INVARIANT: We are linking in a new node, which is valid. It remains valid because we
1176
1176
// "forgot" it with `Box::into_raw`.
1177
1177
// SAFETY: The type invariants of `RawVacantEntry` are exactly the safety requirements of `rb_link_node`.
1178
1178
unsafe { bindings:: rb_link_node ( node_links, self . parent , self . child_field_of_parent ) } ;
1179
1179
1180
1180
// SAFETY: All pointers are valid. `node` has just been inserted into the tree.
1181
- unsafe { bindings:: rb_insert_color ( node_links, addr_of_mut ! ( ( * self . rbtree) . root) ) } ;
1181
+ unsafe { bindings:: rb_insert_color ( node_links, & raw mut ( * self . rbtree ) . root ) } ;
1182
1182
1183
1183
// SAFETY: The node is valid until we remove it from the tree.
1184
1184
unsafe { & mut ( * node) . value }
@@ -1261,7 +1261,7 @@ impl<'a, K, V> OccupiedEntry<'a, K, V> {
1261
1261
1262
1262
// SAFETY: `node` is valid at least until we call `Box::from_raw`, which only happens when
1263
1263
// the node is removed or replaced.
1264
- let new_node_links = unsafe { addr_of_mut ! ( ( * node) . links) } ;
1264
+ let new_node_links = unsafe { & raw mut ( * node) . links } ;
1265
1265
1266
1266
// SAFETY: This updates the pointers so that `new_node_links` is in the tree where
1267
1267
// `self.node_links` used to be.
0 commit comments