@@ -93,12 +93,9 @@ impl<'tcx, 'l> Visitor<'tcx> for OppVisitor<'tcx, 'l> {
93
93
94
94
fn visit_expr ( & mut self , expr : & ' tcx Expr < ' _ > ) {
95
95
if_chain ! {
96
- if let ExprKind :: MethodCall ( path, _span, args) = & expr. kind;
97
- if path. ident. to_string( ) == "lock" ;
98
- let ty = self . cx. tables. expr_ty( & args[ 0 ] ) ;
99
- if match_type( self . cx, ty, & paths:: MUTEX ) ;
96
+ if let Some ( mutex) = is_mutex_lock_call( self . cx, expr) ;
100
97
then {
101
- self . found_mutex = Some ( & args [ 0 ] ) ;
98
+ self . found_mutex = Some ( mutex ) ;
102
99
self . mutex_lock_called = true ;
103
100
return ;
104
101
}
@@ -123,12 +120,9 @@ impl<'tcx, 'l> Visitor<'tcx> for ArmVisitor<'tcx, 'l> {
123
120
124
121
fn visit_expr ( & mut self , expr : & ' tcx Expr < ' tcx > ) {
125
122
if_chain ! {
126
- if let ExprKind :: MethodCall ( path, _span, args) = & expr. kind;
127
- if path. ident. to_string( ) == "lock" ;
128
- let ty = self . cx. tables. expr_ty( & args[ 0 ] ) ;
129
- if match_type( self . cx, ty, & paths:: MUTEX ) ;
123
+ if let Some ( mutex) = is_mutex_lock_call( self . cx, expr) ;
130
124
then {
131
- self . found_mutex = Some ( & args [ 0 ] ) ;
125
+ self . found_mutex = Some ( mutex ) ;
132
126
self . mutex_lock_called = true ;
133
127
return ;
134
128
}
@@ -150,3 +144,17 @@ impl<'tcx, 'l> ArmVisitor<'tcx, 'l> {
150
144
}
151
145
}
152
146
}
147
+
148
+ fn is_mutex_lock_call < ' a > ( cx : & LateContext < ' a , ' _ > , expr : & ' a Expr < ' _ > ) -> Option < & ' a Expr < ' a > > {
149
+ if_chain ! {
150
+ if let ExprKind :: MethodCall ( path, _span, args) = & expr. kind;
151
+ if path. ident. to_string( ) == "lock" ;
152
+ let ty = cx. tables. expr_ty( & args[ 0 ] ) ;
153
+ if match_type( cx, ty, & paths:: MUTEX ) ;
154
+ then {
155
+ Some ( & args[ 0 ] )
156
+ } else {
157
+ None
158
+ }
159
+ }
160
+ }
0 commit comments