Skip to content

Commit

Permalink
coccinelle: Add rules to find str_true_false() replacements
Browse files Browse the repository at this point in the history
After str_true_false() has been introduced in the tree,
we can add rules for finding places where str_true_false()
can be used. A simple test can find over 10 locations.

Signed-off-by: Hongbo Li <[email protected]>
Signed-off-by: Julia Lawall <[email protected]>
  • Loading branch information
Hongbo Li authored and JuliaLawall committed Sep 28, 2024
1 parent 3efc573 commit 716bf84
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scripts/coccinelle/api/string_choices.cocci
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,22 @@ e << str_down_up_r.E;
@@
coccilib.report.print_report(p[0], "opportunity for str_down_up(%s)" % e)
@str_true_false depends on patch@
expression E;
@@
- ((E) ? "true" : "false")
+ str_true_false(E)

@str_true_false_r depends on !patch exists@
expression E;
position P;
@@
* ((E@P) ? "true" : "false")

@script:python depends on report@
p << str_true_false_r.P;
e << str_true_false_r.E;
@@
coccilib.report.print_report(p[0], "opportunity for str_true_false(%s)" % e)

0 comments on commit 716bf84

Please sign in to comment.