@@ -139,7 +139,8 @@ impl Compiler {
139
139
self . compiled . start = dotstar_patch. entry ;
140
140
}
141
141
self . compiled . captures = vec ! [ None ] ;
142
- let patch = self . c_capture ( 0 , expr) ?. unwrap_or ( self . next_inst ( ) ) ;
142
+ let patch =
143
+ self . c_capture ( 0 , expr) ?. unwrap_or_else ( || self . next_inst ( ) ) ;
143
144
if self . compiled . needs_dotstar ( ) {
144
145
self . fill ( dotstar_patch. hole , patch. entry ) ;
145
146
} else {
@@ -175,15 +176,15 @@ impl Compiler {
175
176
self . fill_to_next ( prev_hole) ;
176
177
let split = self . push_split_hole ( ) ;
177
178
let Patch { hole, entry } =
178
- self . c_capture ( 0 , expr) ?. unwrap_or ( self . next_inst ( ) ) ;
179
+ self . c_capture ( 0 , expr) ?. unwrap_or_else ( || self . next_inst ( ) ) ;
179
180
self . fill_to_next ( hole) ;
180
181
self . compiled . matches . push ( self . insts . len ( ) ) ;
181
182
self . push_compiled ( Inst :: Match ( i) ) ;
182
183
prev_hole = self . fill_split ( split, Some ( entry) , None ) ;
183
184
}
184
185
let i = exprs. len ( ) - 1 ;
185
186
let Patch { hole, entry } =
186
- self . c_capture ( 0 , & exprs[ i] ) ?. unwrap_or ( self . next_inst ( ) ) ;
187
+ self . c_capture ( 0 , & exprs[ i] ) ?. unwrap_or_else ( || self . next_inst ( ) ) ;
187
188
self . fill ( prev_hole, entry) ;
188
189
self . fill_to_next ( hole) ;
189
190
self . compiled . matches . push ( self . insts . len ( ) ) ;
@@ -387,11 +388,11 @@ impl Compiler {
387
388
} else {
388
389
let entry = self . insts . len ( ) ;
389
390
let hole = self . push_hole ( InstHole :: Save { slot : first_slot } ) ;
390
- let patch = self . c ( expr) ?. unwrap_or ( self . next_inst ( ) ) ;
391
+ let patch = self . c ( expr) ?. unwrap_or_else ( || self . next_inst ( ) ) ;
391
392
self . fill ( hole, patch. entry ) ;
392
393
self . fill_to_next ( patch. hole ) ;
393
394
let hole = self . push_hole ( InstHole :: Save { slot : first_slot + 1 } ) ;
394
- Ok ( Some ( Patch { hole : hole , entry : entry } ) )
395
+ Ok ( Some ( Patch { hole, entry } ) )
395
396
}
396
397
}
397
398
@@ -425,7 +426,7 @@ impl Compiler {
425
426
self . c_class ( & [ hir:: ClassUnicodeRange :: new ( c, c) ] )
426
427
}
427
428
} else {
428
- let hole = self . push_hole ( InstHole :: Char { c : c } ) ;
429
+ let hole = self . push_hole ( InstHole :: Char { c } ) ;
429
430
Ok ( Some ( Patch { hole, entry : self . insts . len ( ) - 1 } ) )
430
431
}
431
432
}
@@ -435,7 +436,7 @@ impl Compiler {
435
436
436
437
assert ! ( !ranges. is_empty( ) ) ;
437
438
if self . compiled . uses_bytes ( ) {
438
- Ok ( Some ( CompileClass { c : self , ranges : ranges } . compile ( ) ?) )
439
+ Ok ( Some ( CompileClass { c : self , ranges } . compile ( ) ?) )
439
440
} else {
440
441
let ranges: Vec < ( char , char ) > =
441
442
ranges. iter ( ) . map ( |r| ( r. start ( ) , r. end ( ) ) ) . collect ( ) ;
@@ -444,9 +445,9 @@ impl Compiler {
444
445
} else {
445
446
self . extra_inst_bytes +=
446
447
ranges. len ( ) * ( size_of :: < char > ( ) * 2 ) ;
447
- self . push_hole ( InstHole :: Ranges { ranges : ranges } )
448
+ self . push_hole ( InstHole :: Ranges { ranges } )
448
449
} ;
449
- Ok ( Some ( Patch { hole : hole , entry : self . insts . len ( ) - 1 } ) )
450
+ Ok ( Some ( Patch { hole, entry : self . insts . len ( ) - 1 } ) )
450
451
}
451
452
}
452
453
@@ -485,8 +486,8 @@ impl Compiler {
485
486
}
486
487
487
488
fn c_empty_look ( & mut self , look : EmptyLook ) -> ResultOrEmpty {
488
- let hole = self . push_hole ( InstHole :: EmptyLook { look : look } ) ;
489
- Ok ( Some ( Patch { hole : hole , entry : self . insts . len ( ) - 1 } ) )
489
+ let hole = self . push_hole ( InstHole :: EmptyLook { look } ) ;
490
+ Ok ( Some ( Patch { hole, entry : self . insts . len ( ) - 1 } ) )
490
491
}
491
492
492
493
fn c_concat < ' a , I > ( & mut self , exprs : I ) -> ResultOrEmpty
@@ -510,7 +511,7 @@ impl Compiler {
510
511
hole = p. hole ;
511
512
}
512
513
}
513
- Ok ( Some ( Patch { hole : hole , entry : entry } ) )
514
+ Ok ( Some ( Patch { hole, entry } ) )
514
515
}
515
516
516
517
fn c_alternate ( & mut self , exprs : & [ Hir ] ) -> ResultOrEmpty {
@@ -653,7 +654,7 @@ impl Compiler {
653
654
// None).
654
655
let patch_concat = self
655
656
. c_concat ( iter:: repeat ( expr) . take ( min) ) ?
656
- . unwrap_or ( self . next_inst ( ) ) ;
657
+ . unwrap_or_else ( || self . next_inst ( ) ) ;
657
658
if let Some ( patch_rep) = self . c_repeat_zero_or_more ( expr, greedy) ? {
658
659
self . fill ( patch_concat. hole , patch_rep. entry ) ;
659
660
Ok ( Some ( Patch { hole : patch_rep. hole , entry : patch_concat. entry } ) )
@@ -677,7 +678,7 @@ impl Compiler {
677
678
}
678
679
// Same reasoning as in c_repeat_range_min_or_more (we know that min <
679
680
// max at this point).
680
- let patch_concat = patch_concat. unwrap_or ( self . next_inst ( ) ) ;
681
+ let patch_concat = patch_concat. unwrap_or_else ( || self . next_inst ( ) ) ;
681
682
let initial_entry = patch_concat. entry ;
682
683
// It is much simpler to compile, e.g., `a{2,5}` as:
683
684
//
@@ -856,14 +857,14 @@ impl MaybeInst {
856
857
}
857
858
MaybeInst :: Split1 ( goto1) => {
858
859
MaybeInst :: Compiled ( Inst :: Split ( InstSplit {
859
- goto1 : goto1 ,
860
+ goto1,
860
861
goto2 : goto,
861
862
} ) )
862
863
}
863
864
MaybeInst :: Split2 ( goto2) => {
864
865
MaybeInst :: Compiled ( Inst :: Split ( InstSplit {
865
866
goto1 : goto,
866
- goto2 : goto2 ,
867
+ goto2,
867
868
} ) )
868
869
}
869
870
_ => unreachable ! (
@@ -877,9 +878,7 @@ impl MaybeInst {
877
878
878
879
fn fill_split ( & mut self , goto1 : InstPtr , goto2 : InstPtr ) {
879
880
let filled = match * self {
880
- MaybeInst :: Split => {
881
- Inst :: Split ( InstSplit { goto1 : goto1, goto2 : goto2 } )
882
- }
881
+ MaybeInst :: Split => Inst :: Split ( InstSplit { goto1, goto2 } ) ,
883
882
_ => unreachable ! (
884
883
"must be called on Split instruction, \
885
884
instead it was called on: {:?}",
@@ -937,19 +936,17 @@ enum InstHole {
937
936
impl InstHole {
938
937
fn fill ( & self , goto : InstPtr ) -> Inst {
939
938
match * self {
940
- InstHole :: Save { slot } => {
941
- Inst :: Save ( InstSave { goto : goto, slot : slot } )
942
- }
939
+ InstHole :: Save { slot } => Inst :: Save ( InstSave { goto, slot } ) ,
943
940
InstHole :: EmptyLook { look } => {
944
- Inst :: EmptyLook ( InstEmptyLook { goto : goto , look : look } )
941
+ Inst :: EmptyLook ( InstEmptyLook { goto, look } )
945
942
}
946
- InstHole :: Char { c } => Inst :: Char ( InstChar { goto : goto , c : c } ) ,
943
+ InstHole :: Char { c } => Inst :: Char ( InstChar { goto, c } ) ,
947
944
InstHole :: Ranges { ref ranges } => Inst :: Ranges ( InstRanges {
948
- goto : goto ,
945
+ goto,
949
946
ranges : ranges. clone ( ) . into_boxed_slice ( ) ,
950
947
} ) ,
951
948
InstHole :: Bytes { start, end } => {
952
- Inst :: Bytes ( InstBytes { goto : goto , start : start , end : end } )
949
+ Inst :: Bytes ( InstBytes { goto, start, end } )
953
950
}
954
951
}
955
952
}
@@ -1019,7 +1016,7 @@ impl<'a, 'b> CompileClass<'a, 'b> {
1019
1016
let mut last_hole = Hole :: None ;
1020
1017
for byte_range in seq {
1021
1018
let key = SuffixCacheKey {
1022
- from_inst : from_inst ,
1019
+ from_inst,
1023
1020
start : byte_range. start ,
1024
1021
end : byte_range. end ,
1025
1022
} ;
@@ -1109,7 +1106,7 @@ impl SuffixCache {
1109
1106
}
1110
1107
}
1111
1108
* pos = self . dense . len ( ) ;
1112
- self . dense . push ( SuffixCacheEntry { key : key , pc : pc } ) ;
1109
+ self . dense . push ( SuffixCacheEntry { key, pc } ) ;
1113
1110
None
1114
1111
}
1115
1112
@@ -1120,8 +1117,8 @@ impl SuffixCache {
1120
1117
fn hash ( & self , suffix : & SuffixCacheKey ) -> usize {
1121
1118
// Basic FNV-1a hash as described:
1122
1119
// https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
1123
- const FNV_PRIME : u64 = 1099511628211 ;
1124
- let mut h = 14695981039346656037 ;
1120
+ const FNV_PRIME : u64 = 1_099_511_628_211 ;
1121
+ let mut h = 14_695_981_039_346_656_037 ;
1125
1122
h = ( h ^ ( suffix. from_inst as u64 ) ) . wrapping_mul ( FNV_PRIME ) ;
1126
1123
h = ( h ^ ( suffix. start as u64 ) ) . wrapping_mul ( FNV_PRIME ) ;
1127
1124
h = ( h ^ ( suffix. end as u64 ) ) . wrapping_mul ( FNV_PRIME ) ;
0 commit comments