@@ -29,9 +29,10 @@ use std::hash::{Hasher, Hash};
29
29
use std:: intrinsics;
30
30
use std:: mem;
31
31
use std:: ptr;
32
- use std:: vec;
32
+ use std:: vec:: Vec ;
33
33
use std:: sync:: atomics:: { AtomicUint , Acquire , Release } ;
34
34
use std:: rt:: global_heap:: { exchange_malloc, exchange_free} ;
35
+ use std:: kinds:: Share ;
35
36
36
37
use sync:: Arc ;
37
38
use PersistentMap ;
@@ -54,7 +55,7 @@ enum NodeRefBorrowResult<'a, K, V, IS, H> {
54
55
SharedNode ( & ' a UnsafeNode < K , V , IS , H > ) ,
55
56
}
56
57
57
- impl < K : Eq +Send +Freeze , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > > NodeRef < K , V , IS , H > {
58
+ impl < K : Eq +Send +Share , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > > NodeRef < K , V , IS , H > {
58
59
59
60
fn borrow < ' a > ( & ' a self ) -> & ' a UnsafeNode < K , V , IS , H > {
60
61
unsafe {
@@ -164,7 +165,7 @@ enum NodeEntryRef<'a, K, V, IS, H> {
164
165
SubTreeEntryRef ( & ' a NodeRef < K , V , IS , H > )
165
166
}
166
167
167
- impl < ' a , K : Send +Freeze , V : Send +Freeze , IS : ItemStore < K , V > , H > NodeEntryRef < ' a , K , V , IS , H > {
168
+ impl < ' a , K : Send +Share , V : Send +Share , IS : ItemStore < K , V > , H > NodeEntryRef < ' a , K , V , IS , H > {
168
169
// Clones the contents of a NodeEntryRef into a NodeEntryOwned value to be used elsewhere.
169
170
fn clone_out ( & self ) -> NodeEntryOwned < K , V , IS , H > {
170
171
match * self {
@@ -195,7 +196,7 @@ enum NodeEntryOwned<K, V, IS, H> {
195
196
// safe space and---later on during searches---time.
196
197
enum RemovalResult < K , V , IS , H > {
197
198
// Don't do anything
198
- NoChange ,
199
+ NoSenderge ,
199
200
// Replace the sub-tree entry with another sub-tree entry pointing to the given node
200
201
ReplaceSubTree ( NodeRef < K , V , IS , H > ) ,
201
202
// Collapse the sub-tree into a singe-item entry
@@ -372,7 +373,7 @@ impl<K, V, IS, H> UnsafeNode<K, V, IS, H> {
372
373
}
373
374
374
375
// impl UnsafeNode (continued)
375
- impl < K : Eq +Send +Freeze +Hash < S > , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > >
376
+ impl < K : Eq +Send +Share +Hash < S > , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > >
376
377
UnsafeNode < K , V , IS , H > {
377
378
// Insert a new key-value pair into the tree. The existing tree is not modified and a new tree
378
379
// is created. This new tree will share most nodes with the existing one.
@@ -450,7 +451,7 @@ UnsafeNode<K, V, IS, H> {
450
451
None => {
451
452
* insertion_count = 1 ;
452
453
453
- let mut new_items = vec :: with_capacity ( items. len ( ) + 1 ) ;
454
+ let mut new_items = Vec :: with_capacity ( items. len ( ) + 1 ) ;
454
455
new_items. push ( new_kvp) ;
455
456
new_items. push_all ( items. as_slice ( ) ) ;
456
457
new_items
@@ -459,7 +460,7 @@ UnsafeNode<K, V, IS, H> {
459
460
* insertion_count = 0 ;
460
461
461
462
let item_count = items. len ( ) ;
462
- let mut new_items = vec :: with_capacity ( item_count) ;
463
+ let mut new_items = Vec :: with_capacity ( item_count) ;
463
464
464
465
if position > 0 {
465
466
new_items. push_all ( items. slice_to ( position) ) ;
@@ -572,7 +573,7 @@ UnsafeNode<K, V, IS, H> {
572
573
None => {
573
574
* insertion_count = 1 ;
574
575
575
- let mut new_items = vec :: with_capacity ( items. len ( ) + 1 ) ;
576
+ let mut new_items = Vec :: with_capacity ( items. len ( ) + 1 ) ;
576
577
new_items. push ( new_kvp) ;
577
578
new_items. push_all ( items. as_slice ( ) ) ;
578
579
new_items
@@ -581,7 +582,7 @@ UnsafeNode<K, V, IS, H> {
581
582
* insertion_count = 0 ;
582
583
583
584
let item_count = items. len ( ) ;
584
- let mut new_items = vec :: with_capacity ( item_count) ;
585
+ let mut new_items = Vec :: with_capacity ( item_count) ;
585
586
586
587
if position > 0 {
587
588
new_items. push_all ( items. slice_to ( position) ) ;
@@ -649,7 +650,7 @@ UnsafeNode<K, V, IS, H> {
649
650
650
651
if ( self . mask & ( 1 << local_key) ) == 0 {
651
652
* removal_count = 0 ;
652
- return NoChange ;
653
+ return NoSenderge ;
653
654
}
654
655
655
656
let index = get_index ( self . mask , local_key) ;
@@ -661,7 +662,7 @@ UnsafeNode<K, V, IS, H> {
661
662
self . collapse_kill_or_change ( local_key, index)
662
663
} else {
663
664
* removal_count = 0 ;
664
- NoChange
665
+ NoSenderge
665
666
}
666
667
}
667
668
CollisionEntryRef ( items_ref) => {
@@ -672,7 +673,7 @@ UnsafeNode<K, V, IS, H> {
672
673
match position {
673
674
None => {
674
675
* removal_count = 0 ;
675
- NoChange
676
+ NoSenderge
676
677
} ,
677
678
Some ( position) => {
678
679
* removal_count = 1 ;
@@ -681,7 +682,7 @@ UnsafeNode<K, V, IS, H> {
681
682
// The new entry can either still be a collision node, or it can be a simple
682
683
// single-item node if the hash collision has been resolved by the removal
683
684
let new_entry = if item_count > 1 {
684
- let mut new_items = vec :: with_capacity ( item_count) ;
685
+ let mut new_items = Vec :: with_capacity ( item_count) ;
685
686
686
687
if position > 0 {
687
688
new_items. push_all ( items. slice_to ( position) ) ;
@@ -712,7 +713,7 @@ UnsafeNode<K, V, IS, H> {
712
713
key,
713
714
removal_count) ;
714
715
match result {
715
- NoChange => NoChange ,
716
+ NoSenderge => NoSenderge ,
716
717
ReplaceSubTree ( x) => {
717
718
ReplaceSubTree ( self . copy_with_new_entry ( local_key, SubTreeEntryOwned ( x) ) )
718
719
}
@@ -745,13 +746,13 @@ UnsafeNode<K, V, IS, H> {
745
746
746
747
if ( self . mask & ( 1 << local_key) ) == 0 {
747
748
* removal_count = 0 ;
748
- return NoChange ;
749
+ return NoSenderge ;
749
750
}
750
751
751
752
let index = get_index ( self . mask , local_key) ;
752
753
753
754
enum Action < K , V , IS , H > {
754
- CollapseKillOrChange ,
755
+ CollapseKillOrSenderge ,
755
756
NoAction ,
756
757
ReplaceEntry ( NodeEntryOwned < K , V , IS , H > )
757
758
}
@@ -760,7 +761,7 @@ UnsafeNode<K, V, IS, H> {
760
761
ItemEntryMutRef ( existing_kvp_ref) => {
761
762
if * existing_kvp_ref. key ( ) == * key {
762
763
* removal_count = 1 ;
763
- CollapseKillOrChange
764
+ CollapseKillOrSenderge
764
765
} else {
765
766
* removal_count = 0 ;
766
767
NoAction
@@ -783,7 +784,7 @@ UnsafeNode<K, V, IS, H> {
783
784
// The new entry can either still be a collision node, or it can be a simple
784
785
// single-item node if the hash collision has been resolved by the removal
785
786
let new_entry = if item_count > 1 {
786
- let mut new_items = vec :: with_capacity ( item_count) ;
787
+ let mut new_items = Vec :: with_capacity ( item_count) ;
787
788
788
789
if position > 0 {
789
790
new_items. push_all ( items. slice_to ( position) ) ;
@@ -820,7 +821,7 @@ UnsafeNode<K, V, IS, H> {
820
821
} ;
821
822
822
823
match result {
823
- NoChange => NoAction ,
824
+ NoSenderge => NoAction ,
824
825
ReplaceSubTree ( x) => {
825
826
ReplaceEntry ( SubTreeEntryOwned ( x) )
826
827
}
@@ -832,18 +833,18 @@ UnsafeNode<K, V, IS, H> {
832
833
ReplaceEntry ( ItemEntryOwned ( kvp) )
833
834
} ,
834
835
KillSubTree => {
835
- CollapseKillOrChange
836
+ CollapseKillOrSenderge
836
837
}
837
838
}
838
839
}
839
840
} ;
840
841
841
842
match action {
842
- NoAction => NoChange ,
843
- CollapseKillOrChange => self . collapse_kill_or_change_in_place ( local_key, index) ,
843
+ NoAction => NoSenderge ,
844
+ CollapseKillOrSenderge => self . collapse_kill_or_change_in_place ( local_key, index) ,
844
845
ReplaceEntry ( new_entry) => {
845
846
self . insert_entry_in_place ( local_key, new_entry) ;
846
- NoChange
847
+ NoSenderge
847
848
}
848
849
}
849
850
}
@@ -882,7 +883,7 @@ UnsafeNode<K, V, IS, H> {
882
883
883
884
if new_entry_count > 1 {
884
885
self . remove_entry_in_place ( local_key) ;
885
- NoChange
886
+ NoSenderge
886
887
} else if new_entry_count == 1 {
887
888
let other_index = 1 - entry_index;
888
889
@@ -894,7 +895,7 @@ UnsafeNode<K, V, IS, H> {
894
895
}
895
896
896
897
self . remove_entry_in_place ( local_key) ;
897
- NoChange
898
+ NoSenderge
898
899
} else {
899
900
assert ! ( new_entry_count == 0 ) ;
900
901
KillSubTree
@@ -1124,7 +1125,7 @@ pub struct HamtMap<K, V, IS, H> {
1124
1125
}
1125
1126
1126
1127
// impl HamtMap
1127
- impl < K : Eq +Send +Freeze +Hash < S > , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > +Clone >
1128
+ impl < K : Eq +Send +Share +Hash < S > , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > +Clone >
1128
1129
HamtMap < K , V , IS , H > {
1129
1130
1130
1131
pub fn new ( hasher : H ) -> HamtMap < K , V , IS , H > {
@@ -1227,7 +1228,7 @@ HamtMap<K, V, IS, H> {
1227
1228
let new_element_count = element_count - removal_count;
1228
1229
1229
1230
( match removal_result {
1230
- NoChange => HamtMap {
1231
+ NoSenderge => HamtMap {
1231
1232
root : root,
1232
1233
hasher : hasher,
1233
1234
element_count : new_element_count
@@ -1262,7 +1263,7 @@ HamtMap<K, V, IS, H> {
1262
1263
}
1263
1264
1264
1265
// Clone for HamtMap
1265
- impl < K : Eq +Send +Freeze , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > +Clone >
1266
+ impl < K : Eq +Send +Share , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > +Clone >
1266
1267
Clone for HamtMap < K , V , IS , H > {
1267
1268
1268
1269
fn clone ( & self ) -> HamtMap < K , V , IS , H > {
@@ -1275,7 +1276,7 @@ Clone for HamtMap<K, V, IS, H> {
1275
1276
}
1276
1277
1277
1278
// Container for HamtMap
1278
- impl < K : Eq +Send +Freeze , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > >
1279
+ impl < K : Eq +Send +Share , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > >
1279
1280
Container for HamtMap < K , V , IS , H > {
1280
1281
1281
1282
fn len ( & self ) -> uint {
@@ -1284,7 +1285,7 @@ Container for HamtMap<K, V, IS, H> {
1284
1285
}
1285
1286
1286
1287
// Map for HamtMap
1287
- impl < K : Eq +Send +Freeze +Hash < S > , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > +Clone >
1288
+ impl < K : Eq +Send +Share +Hash < S > , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > +Clone >
1288
1289
Map < K , V > for HamtMap < K , V , IS , H > {
1289
1290
1290
1291
fn find < ' a > ( & ' a self , key : & K ) -> Option < & ' a V > {
@@ -1293,7 +1294,7 @@ Map<K, V> for HamtMap<K, V, IS, H> {
1293
1294
}
1294
1295
1295
1296
// PersistentMap for HamtMap<CopyStore>
1296
- impl < K : Eq +Send +Freeze +Clone +Hash < S > , V : Send +Freeze +Clone , S , H : Hasher < S > +Clone >
1297
+ impl < K : Eq +Send +Share +Clone +Hash < S > , V : Send +Share +Clone , S , H : Hasher < S > +Clone >
1297
1298
PersistentMap < K , V > for HamtMap < K , V , CopyStore < K , V > , H > {
1298
1299
1299
1300
fn insert ( self , key : K , value : V ) -> ( HamtMap < K , V , CopyStore < K , V > , H > , bool ) {
@@ -1306,7 +1307,7 @@ PersistentMap<K, V> for HamtMap<K, V, CopyStore<K, V>, H> {
1306
1307
}
1307
1308
1308
1309
// PersistentMap for HamtMap<ShareStore>
1309
- impl < K : Eq +Send +Freeze +Hash < S > , V : Send +Freeze , S , H : Hasher < S > +Clone >
1310
+ impl < K : Eq +Send +Share +Hash < S > , V : Send +Share , S , H : Hasher < S > +Clone >
1310
1311
PersistentMap < K , V > for HamtMap < K , V , ShareStore < K , V > , H > {
1311
1312
1312
1313
fn insert ( self , key : K , value : V ) -> ( HamtMap < K , V , ShareStore < K , V > , H > , bool ) {
@@ -1331,12 +1332,12 @@ enum IteratorNodeRef<'a, K, V, IS, H> {
1331
1332
}
1332
1333
1333
1334
pub struct HamtMapIterator < ' a , K , V , IS , H > {
1334
- priv node_stack : [ ( IteratorNodeRef < ' a , K , V , IS , H > , int ) , .. LAST_LEVEL + 2 ] ,
1335
- priv stack_size : uint ,
1336
- priv len: uint ,
1335
+ node_stack : [ ( IteratorNodeRef < ' a , K , V , IS , H > , int ) , .. LAST_LEVEL + 2 ] ,
1336
+ stack_size : uint ,
1337
+ len : uint ,
1337
1338
}
1338
1339
1339
- impl < ' a , K : Eq +Send +Freeze , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > >
1340
+ impl < ' a , K : Eq +Send +Share , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > >
1340
1341
HamtMapIterator < ' a , K , V , IS , H > {
1341
1342
1342
1343
fn new < ' a > ( map : & ' a HamtMap < K , V , IS , H > ) -> HamtMapIterator < ' a , K , V , IS , H > {
@@ -1351,7 +1352,7 @@ HamtMapIterator<'a, K, V, IS, H> {
1351
1352
}
1352
1353
}
1353
1354
1354
- impl < ' a , K : Eq +Send +Freeze , V : Send +Freeze , IS : ItemStore < K , V > , S , H : Hasher < S > >
1355
+ impl < ' a , K : Eq +Send +Share , V : Send +Share , IS : ItemStore < K , V > , S , H : Hasher < S > >
1355
1356
Iterator < ( & ' a K , & ' a V ) > for HamtMapIterator < ' a , K , V , IS , H > {
1356
1357
1357
1358
fn next ( & mut self ) -> Option < ( & ' a K , & ' a V ) > {
@@ -1418,7 +1419,7 @@ struct HamtSet<V, H> {
1418
1419
}
1419
1420
1420
1421
// Set for HamtSet
1421
- impl < V : Send +Freeze +Eq +Hash < S > , S , H : Hasher < S > +Clone >
1422
+ impl < V : Send +Share +Eq +Hash < S > , S , H : Hasher < S > +Clone >
1422
1423
Set < V > for HamtSet < V , H > {
1423
1424
fn contains ( & self , value : & V ) -> bool {
1424
1425
self . data . contains_key ( value)
@@ -1454,7 +1455,7 @@ Set<V> for HamtSet<V, H> {
1454
1455
}
1455
1456
1456
1457
// Clone for HamtSet
1457
- impl < V : Eq +Send +Freeze , S , H : Hasher < S > +Clone >
1458
+ impl < V : Eq +Send +Share , S , H : Hasher < S > +Clone >
1458
1459
Clone for HamtSet < V , H > {
1459
1460
1460
1461
fn clone ( & self ) -> HamtSet < V , H > {
@@ -1465,7 +1466,7 @@ Clone for HamtSet<V, H> {
1465
1466
}
1466
1467
1467
1468
// Container for HamtSet
1468
- impl < V : Eq +Send +Freeze , S , H : Hasher < S > >
1469
+ impl < V : Eq +Send +Share , S , H : Hasher < S > >
1469
1470
Container for HamtSet < V , H > {
1470
1471
1471
1472
fn len ( & self ) -> uint {
0 commit comments