Skip to content

Commit 4003ba6

Browse files
committed
Reduce Coccinelle choices in string_choices.cocci
The isomorphism neg_if_exp negates the test of a ?: conditional, making it unnecessary to have an explicit case for a negated test with the branches inverted. At the same time, we can disable neg_if_exp in cases where a different API function may be more suitable for a negated test. Finally, in the non-patch cases, E matches an expression with parentheses around it, so there is no need to mention () explicitly in the pattern. The () are still needed in the patch cases, because we want to drop them, if they are present. Signed-off-by: Julia Lawall <[email protected]>
1 parent f584e37 commit 4003ba6

File tree

1 file changed

+41
-50
lines changed

1 file changed

+41
-50
lines changed

scripts/coccinelle/api/string_choices.cocci

+41-50
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,18 @@ expression E;
1414
- ((E == 1) ? "" : "s")
1515
+ str_plural(E)
1616
|
17-
- ((E != 1) ? "s" : "")
18-
+ str_plural(E)
19-
|
2017
- ((E > 1) ? "s" : "")
2118
+ str_plural(E)
2219
)
2320

24-
@str_plural_r depends on !patch exists@
21+
@str_plural_r depends on !patch@
2522
expression E;
2623
position P;
2724
@@
2825
(
29-
* ((E@P == 1) ? "" : "s")
26+
* (E@P == 1) ? "" : "s"
3027
|
31-
* ((E@P != 1) ? "s" : "")
32-
|
33-
* ((E@P > 1) ? "s" : "")
28+
* (E@P > 1) ? "s" : ""
3429
)
3530

3631
@script:python depends on report@
@@ -40,17 +35,17 @@ e << str_plural_r.E;
4035
4136
coccilib.report.print_report(p[0], "opportunity for str_plural(%s)" % e)
4237
43-
@str_up_down depends on patch@
38+
@str_up_down depends on patch disable neg_if_exp@
4439
expression E;
4540
@@
4641
- ((E) ? "up" : "down")
4742
+ str_up_down(E)
4843

49-
@str_up_down_r depends on !patch exists@
44+
@str_up_down_r depends on !patch disable neg_if_exp@
5045
expression E;
5146
position P;
5247
@@
53-
* ((E@P) ? "up" : "down")
48+
* E@P ? "up" : "down"
5449

5550
@script:python depends on report@
5651
p << str_up_down_r.P;
@@ -59,17 +54,17 @@ e << str_up_down_r.E;
5954
6055
coccilib.report.print_report(p[0], "opportunity for str_up_down(%s)" % e)
6156
62-
@str_down_up depends on patch@
57+
@str_down_up depends on patch disable neg_if_exp@
6358
expression E;
6459
@@
6560
- ((E) ? "down" : "up")
6661
+ str_down_up(E)
6762

68-
@str_down_up_r depends on !patch exists@
63+
@str_down_up_r depends on !patch disable neg_if_exp@
6964
expression E;
7065
position P;
7166
@@
72-
* ((E@P) ? "down" : "up")
67+
* E@P ? "down" : "up"
7368

7469
@script:python depends on report@
7570
p << str_down_up_r.P;
@@ -78,17 +73,17 @@ e << str_down_up_r.E;
7873
7974
coccilib.report.print_report(p[0], "opportunity for str_down_up(%s)" % e)
8075
81-
@str_true_false depends on patch@
76+
@str_true_false depends on patch disable neg_if_exp@
8277
expression E;
8378
@@
8479
- ((E) ? "true" : "false")
8580
+ str_true_false(E)
8681

87-
@str_true_false_r depends on !patch exists@
82+
@str_true_false_r depends on !patch disable neg_if_exp@
8883
expression E;
8984
position P;
9085
@@
91-
* ((E@P) ? "true" : "false")
86+
* E@P ? "true" : "false"
9287

9388
@script:python depends on report@
9489
p << str_true_false_r.P;
@@ -97,17 +92,17 @@ e << str_true_false_r.E;
9792
9893
coccilib.report.print_report(p[0], "opportunity for str_true_false(%s)" % e)
9994
100-
@str_false_true depends on patch@
95+
@str_false_true depends on patch disable neg_if_exp@
10196
expression E;
10297
@@
10398
- ((E) ? "false" : "true")
10499
+ str_false_true(E)
105100

106-
@str_false_true_r depends on !patch exists@
101+
@str_false_true_r depends on !patch disable neg_if_exp@
107102
expression E;
108103
position P;
109104
@@
110-
* ((E@P) ? "false" : "true")
105+
* E@P ? "false" : "true"
111106

112107
@script:python depends on report@
113108
p << str_false_true_r.P;
@@ -116,21 +111,17 @@ e << str_false_true_r.E;
116111
117112
coccilib.report.print_report(p[0], "opportunity for str_false_true(%s)" % e)
118113
119-
@str_hi_lo depends on patch@
114+
@str_hi_lo depends on patch disable neg_if_exp@
120115
expression E;
121116
@@
122-
(
123117
- ((E) ? "hi" : "lo")
124118
+ str_hi_lo(E)
125-
)
126119

127-
@str_hi_lo_r depends on !patch exists@
120+
@str_hi_lo_r depends on !patch disable neg_if_exp@
128121
expression E;
129122
position P;
130123
@@
131-
(
132-
* ((E@P) ? "hi" : "lo")
133-
)
124+
* E@P ? "hi" : "lo"
134125

135126
@script:python depends on report@
136127
p << str_hi_lo_r.P;
@@ -139,17 +130,17 @@ e << str_hi_lo_r.E;
139130
140131
coccilib.report.print_report(p[0], "opportunity for str_hi_lo(%s)" % e)
141132
142-
@str_high_low depends on patch@
133+
@str_high_low depends on patch disable neg_if_exp@
143134
expression E;
144135
@@
145136
- ((E) ? "high" : "low")
146137
+ str_high_low(E)
147138

148-
@str_high_low_r depends on !patch exists@
139+
@str_high_low_r depends on !patch disable neg_if_exp@
149140
expression E;
150141
position P;
151142
@@
152-
* ((E@P) ? "high" : "low")
143+
* E@P ? "high" : "low"
153144

154145
@script:python depends on report@
155146
p << str_high_low_r.P;
@@ -158,17 +149,17 @@ e << str_high_low_r.E;
158149
159150
coccilib.report.print_report(p[0], "opportunity for str_high_low(%s)" % e)
160151
161-
@str_lo_hi depends on patch@
152+
@str_lo_hi depends on patch disable neg_if_exp@
162153
expression E;
163154
@@
164155
- ((E) ? "lo" : "hi")
165156
+ str_lo_hi(E)
166157

167-
@str_lo_hi_r depends on !patch exists@
158+
@str_lo_hi_r depends on !patch disable neg_if_exp@
168159
expression E;
169160
position P;
170161
@@
171-
* ((E@P) ? "lo" : "hi")
162+
* E@P ? "lo" : "hi"
172163

173164
@script:python depends on report@
174165
p << str_lo_hi_r.P;
@@ -177,17 +168,17 @@ e << str_lo_hi_r.E;
177168
178169
coccilib.report.print_report(p[0], "opportunity for str_lo_hi(%s)" % e)
179170
180-
@str_low_high depends on patch@
171+
@str_low_high depends on patch disable neg_if_exp@
181172
expression E;
182173
@@
183174
- ((E) ? "low" : "high")
184175
+ str_low_high(E)
185176

186-
@str_low_high_r depends on !patch exists@
177+
@str_low_high_r depends on !patch disable neg_if_exp@
187178
expression E;
188179
position P;
189180
@@
190-
* ((E@P) ? "low" : "high")
181+
* E@P ? "low" : "high"
191182

192183
@script:python depends on report@
193184
p << str_low_high_r.P;
@@ -202,11 +193,11 @@ expression E;
202193
- ((E) ? "enable" : "disable")
203194
+ str_enable_disable(E)
204195

205-
@str_enable_disable_r depends on !patch exists@
196+
@str_enable_disable_r depends on !patch@
206197
expression E;
207198
position P;
208199
@@
209-
* ((E@P) ? "enable" : "disable")
200+
* E@P ? "enable" : "disable"
210201

211202
@script:python depends on report@
212203
p << str_enable_disable_r.P;
@@ -221,11 +212,11 @@ expression E;
221212
- ((E) ? "enabled" : "disabled")
222213
+ str_enabled_disabled(E)
223214

224-
@str_enabled_disabled_r depends on !patch exists@
215+
@str_enabled_disabled_r depends on !patch@
225216
expression E;
226217
position P;
227218
@@
228-
* ((E@P) ? "enabled" : "disabled")
219+
* E@P ? "enabled" : "disabled"
229220

230221
@script:python depends on report@
231222
p << str_enabled_disabled_r.P;
@@ -234,17 +225,17 @@ e << str_enabled_disabled_r.E;
234225
235226
coccilib.report.print_report(p[0], "opportunity for str_enabled_disabled(%s)" % e)
236227
237-
@str_read_write depends on patch@
228+
@str_read_write depends on patch disable neg_if_exp@
238229
expression E;
239230
@@
240231
- ((E) ? "read" : "write")
241232
+ str_read_write(E)
242233

243-
@str_read_write_r depends on !patch exists@
234+
@str_read_write_r depends on !patch disable neg_if_exp@
244235
expression E;
245236
position P;
246237
@@
247-
* ((E@P) ? "read" : "write")
238+
* E@P ? "read" : "write"
248239

249240
@script:python depends on report@
250241
p << str_read_write_r.P;
@@ -253,17 +244,17 @@ e << str_read_write_r.E;
253244
254245
coccilib.report.print_report(p[0], "opportunity for str_read_write(%s)" % e)
255246
256-
@str_write_read depends on patch@
247+
@str_write_read depends on patch disable neg_if_exp@
257248
expression E;
258249
@@
259250
- ((E) ? "write" : "read")
260251
+ str_write_read(E)
261252

262-
@str_write_read_r depends on !patch exists@
253+
@str_write_read_r depends on !patch disable neg_if_exp@
263254
expression E;
264255
position P;
265256
@@
266-
* ((E@P) ? "write" : "read")
257+
* E@P ? "write" : "read"
267258

268259
@script:python depends on report@
269260
p << str_write_read_r.P;
@@ -278,11 +269,11 @@ expression E;
278269
- ((E) ? "on" : "off")
279270
+ str_on_off(E)
280271

281-
@str_on_off_r depends on !patch exists@
272+
@str_on_off_r depends on !patch@
282273
expression E;
283274
position P;
284275
@@
285-
* ((E@P) ? "on" : "off")
276+
* E@P ? "on" : "off"
286277

287278
@script:python depends on report@
288279
p << str_on_off_r.P;
@@ -297,11 +288,11 @@ expression E;
297288
- ((E) ? "yes" : "no")
298289
+ str_yes_no(E)
299290

300-
@str_yes_no_r depends on !patch exists@
291+
@str_yes_no_r depends on !patch@
301292
expression E;
302293
position P;
303294
@@
304-
* ((E@P) ? "yes" : "no")
295+
* E@P ? "yes" : "no"
305296

306297
@script:python depends on report@
307298
p << str_yes_no_r.P;

0 commit comments

Comments
 (0)