@@ -26,6 +26,7 @@ use core::fmt;
26
26
use core:: iter:: { self , repeat, FromIterator , IntoIterator , RandomAccessIterator } ;
27
27
use core:: mem;
28
28
use core:: num:: { Int , UnsignedInt } ;
29
+ use core:: num:: wrapping:: WrappingOps ;
29
30
use core:: ops:: { Index , IndexMut } ;
30
31
use core:: ptr:: { self , Unique } ;
31
32
use core:: raw:: Slice as RawSlice ;
@@ -120,6 +121,20 @@ impl<T> VecDeque<T> {
120
121
#[ inline]
121
122
fn wrap_index ( & self , idx : usize ) -> usize { wrap_index ( idx, self . cap ) }
122
123
124
+ /// Returns the index in the underlying buffer for a given logical element
125
+ /// index + addend.
126
+ #[ inline]
127
+ fn wrap_add ( & self , idx : usize , addend : usize ) -> usize {
128
+ wrap_index ( idx. wrapping_add ( addend) , self . cap )
129
+ }
130
+
131
+ /// Returns the index in the underlying buffer for a given logical element
132
+ /// index - subtrahend.
133
+ #[ inline]
134
+ fn wrap_sub ( & self , idx : usize , subtrahend : usize ) -> usize {
135
+ wrap_index ( idx. wrapping_sub ( subtrahend) , self . cap )
136
+ }
137
+
123
138
/// Copies a contiguous block of memory len long from src to dst
124
139
#[ inline]
125
140
unsafe fn copy ( & self , dst : usize , src : usize , len : usize ) {
@@ -197,7 +212,7 @@ impl<T> VecDeque<T> {
197
212
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
198
213
pub fn get ( & self , i : usize ) -> Option < & T > {
199
214
if i < self . len ( ) {
200
- let idx = self . wrap_index ( self . tail + i) ;
215
+ let idx = self . wrap_add ( self . tail , i) ;
201
216
unsafe { Some ( & * self . ptr . offset ( idx as isize ) ) }
202
217
} else {
203
218
None
@@ -227,7 +242,7 @@ impl<T> VecDeque<T> {
227
242
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
228
243
pub fn get_mut ( & mut self , i : usize ) -> Option < & mut T > {
229
244
if i < self . len ( ) {
230
- let idx = self . wrap_index ( self . tail + i) ;
245
+ let idx = self . wrap_add ( self . tail , i) ;
231
246
unsafe { Some ( & mut * self . ptr . offset ( idx as isize ) ) }
232
247
} else {
233
248
None
@@ -257,8 +272,8 @@ impl<T> VecDeque<T> {
257
272
pub fn swap ( & mut self , i : usize , j : usize ) {
258
273
assert ! ( i < self . len( ) ) ;
259
274
assert ! ( j < self . len( ) ) ;
260
- let ri = self . wrap_index ( self . tail + i) ;
261
- let rj = self . wrap_index ( self . tail + j) ;
275
+ let ri = self . wrap_add ( self . tail , i) ;
276
+ let rj = self . wrap_add ( self . tail , j) ;
262
277
unsafe {
263
278
ptr:: swap ( self . ptr . offset ( ri as isize ) , self . ptr . offset ( rj as isize ) )
264
279
}
@@ -427,7 +442,7 @@ impl<T> VecDeque<T> {
427
442
// [. . . o o o o o o o . . . . . . ]
428
443
// H T
429
444
// [o o . o o o o o ]
430
- let len = self . wrap_index ( self . head - target_cap) ;
445
+ let len = self . wrap_sub ( self . head , target_cap) ;
431
446
unsafe {
432
447
self . copy_nonoverlapping ( 0 , target_cap, len) ;
433
448
}
@@ -438,7 +453,7 @@ impl<T> VecDeque<T> {
438
453
// [o o o o o . . . . . . . . . o o ]
439
454
// H T
440
455
// [o o o o o . o o ]
441
- debug_assert ! ( self . wrap_index ( self . head - 1 ) < target_cap) ;
456
+ debug_assert ! ( self . wrap_sub ( self . head, 1 ) < target_cap) ;
442
457
let len = self . cap - self . tail ;
443
458
let new_tail = target_cap - len;
444
459
unsafe {
@@ -775,7 +790,7 @@ impl<T> VecDeque<T> {
775
790
None
776
791
} else {
777
792
let tail = self . tail ;
778
- self . tail = self . wrap_index ( self . tail + 1 ) ;
793
+ self . tail = self . wrap_add ( self . tail , 1 ) ;
779
794
unsafe { Some ( self . buffer_read ( tail) ) }
780
795
}
781
796
}
@@ -799,7 +814,7 @@ impl<T> VecDeque<T> {
799
814
debug_assert ! ( !self . is_full( ) ) ;
800
815
}
801
816
802
- self . tail = self . wrap_index ( self . tail - 1 ) ;
817
+ self . tail = self . wrap_sub ( self . tail , 1 ) ;
803
818
let tail = self . tail ;
804
819
unsafe { self . buffer_write ( tail, t) ; }
805
820
}
@@ -824,7 +839,7 @@ impl<T> VecDeque<T> {
824
839
}
825
840
826
841
let head = self . head ;
827
- self . head = self . wrap_index ( self . head + 1 ) ;
842
+ self . head = self . wrap_add ( self . head , 1 ) ;
828
843
unsafe { self . buffer_write ( head, t) }
829
844
}
830
845
@@ -847,7 +862,7 @@ impl<T> VecDeque<T> {
847
862
if self . is_empty ( ) {
848
863
None
849
864
} else {
850
- self . head = self . wrap_index ( self . head - 1 ) ;
865
+ self . head = self . wrap_sub ( self . head , 1 ) ;
851
866
let head = self . head ;
852
867
unsafe { Some ( self . buffer_read ( head) ) }
853
868
}
@@ -971,7 +986,7 @@ impl<T> VecDeque<T> {
971
986
// A - The element that should be after the insertion point
972
987
// M - Indicates element was moved
973
988
974
- let idx = self . wrap_index ( self . tail + i) ;
989
+ let idx = self . wrap_add ( self . tail , i) ;
975
990
976
991
let distance_to_tail = i;
977
992
let distance_to_head = self . len ( ) - i;
@@ -990,7 +1005,7 @@ impl<T> VecDeque<T> {
990
1005
// [A o o o o o o o . . . . . I]
991
1006
//
992
1007
993
- self . tail = self . wrap_index ( self . tail - 1 ) ;
1008
+ self . tail = self . wrap_sub ( self . tail , 1 ) ;
994
1009
} ,
995
1010
( true , true , _) => unsafe {
996
1011
// contiguous, insert closer to tail:
@@ -1012,7 +1027,7 @@ impl<T> VecDeque<T> {
1012
1027
// [o I A o o o o o . . . . . . . o]
1013
1028
// M M
1014
1029
1015
- let new_tail = self . wrap_index ( self . tail - 1 ) ;
1030
+ let new_tail = self . wrap_sub ( self . tail , 1 ) ;
1016
1031
1017
1032
self . copy ( new_tail, self . tail , 1 ) ;
1018
1033
// Already moved the tail, so we only copy `i - 1` elements.
@@ -1031,7 +1046,7 @@ impl<T> VecDeque<T> {
1031
1046
// M M M
1032
1047
1033
1048
self . copy ( idx + 1 , idx, self . head - idx) ;
1034
- self . head = self . wrap_index ( self . head + 1 ) ;
1049
+ self . head = self . wrap_add ( self . head , 1 ) ;
1035
1050
} ,
1036
1051
( false , true , true ) => unsafe {
1037
1052
// discontiguous, insert closer to tail, tail section:
@@ -1123,7 +1138,7 @@ impl<T> VecDeque<T> {
1123
1138
}
1124
1139
1125
1140
// tail might've been changed so we need to recalculate
1126
- let new_idx = self . wrap_index ( self . tail + i) ;
1141
+ let new_idx = self . wrap_add ( self . tail , i) ;
1127
1142
unsafe {
1128
1143
self . buffer_write ( new_idx, t) ;
1129
1144
}
@@ -1170,7 +1185,7 @@ impl<T> VecDeque<T> {
1170
1185
// R - Indicates element that is being removed
1171
1186
// M - Indicates element was moved
1172
1187
1173
- let idx = self . wrap_index ( self . tail + i) ;
1188
+ let idx = self . wrap_add ( self . tail , i) ;
1174
1189
1175
1190
let elem = unsafe {
1176
1191
Some ( self . buffer_read ( idx) )
@@ -1219,7 +1234,7 @@ impl<T> VecDeque<T> {
1219
1234
// M M
1220
1235
1221
1236
self . copy ( self . tail + 1 , self . tail , i) ;
1222
- self . tail = self . wrap_index ( self . tail + 1 ) ;
1237
+ self . tail = self . wrap_add ( self . tail , 1 ) ;
1223
1238
} ,
1224
1239
( false , false , false ) => unsafe {
1225
1240
// discontiguous, remove closer to head, head section:
@@ -1265,7 +1280,7 @@ impl<T> VecDeque<T> {
1265
1280
self . copy ( 0 , 1 , self . head - 1 ) ;
1266
1281
}
1267
1282
1268
- self . head = self . wrap_index ( self . head - 1 ) ;
1283
+ self . head = self . wrap_sub ( self . head , 1 ) ;
1269
1284
} ,
1270
1285
( false , true , false ) => unsafe {
1271
1286
// discontiguous, remove closer to tail, head section:
@@ -1286,7 +1301,7 @@ impl<T> VecDeque<T> {
1286
1301
// move elements from tail to end forward, excluding the last one
1287
1302
self . copy ( self . tail + 1 , self . tail , self . cap - self . tail - 1 ) ;
1288
1303
1289
- self . tail = self . wrap_index ( self . tail + 1 ) ;
1304
+ self . tail = self . wrap_add ( self . tail , 1 ) ;
1290
1305
}
1291
1306
}
1292
1307
@@ -1354,7 +1369,7 @@ impl<T> VecDeque<T> {
1354
1369
}
1355
1370
1356
1371
// Cleanup where the ends of the buffers are
1357
- self . head = self . wrap_index ( self . head - other_len) ;
1372
+ self . head = self . wrap_sub ( self . head , other_len) ;
1358
1373
other. head = other. wrap_index ( other_len) ;
1359
1374
1360
1375
other
@@ -1429,7 +1444,7 @@ fn wrap_index(index: usize, size: usize) -> usize {
1429
1444
#[ inline]
1430
1445
fn count ( tail : usize , head : usize , size : usize ) -> usize {
1431
1446
// size is always a power of 2
1432
- ( head - tail) & ( size - 1 )
1447
+ ( head. wrapping_sub ( tail) ) & ( size - 1 )
1433
1448
}
1434
1449
1435
1450
/// `VecDeque` iterator.
@@ -1461,7 +1476,7 @@ impl<'a, T> Iterator for Iter<'a, T> {
1461
1476
return None ;
1462
1477
}
1463
1478
let tail = self . tail ;
1464
- self . tail = wrap_index ( self . tail + 1 , self . ring . len ( ) ) ;
1479
+ self . tail = wrap_index ( self . tail . wrapping_add ( 1 ) , self . ring . len ( ) ) ;
1465
1480
unsafe { Some ( self . ring . get_unchecked ( tail) ) }
1466
1481
}
1467
1482
@@ -1479,7 +1494,7 @@ impl<'a, T> DoubleEndedIterator for Iter<'a, T> {
1479
1494
if self . tail == self . head {
1480
1495
return None ;
1481
1496
}
1482
- self . head = wrap_index ( self . head - 1 , self . ring . len ( ) ) ;
1497
+ self . head = wrap_index ( self . head . wrapping_sub ( 1 ) , self . ring . len ( ) ) ;
1483
1498
unsafe { Some ( self . ring . get_unchecked ( self . head ) ) }
1484
1499
}
1485
1500
}
@@ -1500,7 +1515,7 @@ impl<'a, T> RandomAccessIterator for Iter<'a, T> {
1500
1515
if j >= self . indexable ( ) {
1501
1516
None
1502
1517
} else {
1503
- let idx = wrap_index ( self . tail + j , self . ring . len ( ) ) ;
1518
+ let idx = wrap_index ( self . tail . wrapping_add ( j ) , self . ring . len ( ) ) ;
1504
1519
unsafe { Some ( self . ring . get_unchecked ( idx) ) }
1505
1520
}
1506
1521
}
@@ -1524,7 +1539,7 @@ impl<'a, T> Iterator for IterMut<'a, T> {
1524
1539
return None ;
1525
1540
}
1526
1541
let tail = self . tail ;
1527
- self . tail = wrap_index ( self . tail + 1 , self . ring . len ( ) ) ;
1542
+ self . tail = wrap_index ( self . tail . wrapping_add ( 1 ) , self . ring . len ( ) ) ;
1528
1543
1529
1544
unsafe {
1530
1545
let elem = self . ring . get_unchecked_mut ( tail) ;
@@ -1546,7 +1561,7 @@ impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {
1546
1561
if self . tail == self . head {
1547
1562
return None ;
1548
1563
}
1549
- self . head = wrap_index ( self . head - 1 , self . ring . len ( ) ) ;
1564
+ self . head = wrap_index ( self . head . wrapping_sub ( 1 ) , self . ring . len ( ) ) ;
1550
1565
1551
1566
unsafe {
1552
1567
let elem = self . ring . get_unchecked_mut ( self . head ) ;
0 commit comments