summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHongbo Li <lihongbo22@huawei.com>2024-09-11 09:09:23 +0800
committerJulia Lawall <Julia.Lawall@inria.fr>2024-09-28 21:22:58 +0200
commitba4b514a6f4ac420d872b8f16245e3ffa05c10a5 (patch)
tree0840a403cfb7e862888006f7c6447f8e92ad6340 /scripts
parentdd2275d349c2f02ceb6cd37f89b8b9920c602488 (diff)
coccinelle: Add rules to find str_read_write() replacements
As other rules done, we add rules for str_read_write() to check the relative opportunities. Signed-off-by: Hongbo Li <lihongbo22@huawei.com> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/coccinelle/api/string_choices.cocci19
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/coccinelle/api/string_choices.cocci b/scripts/coccinelle/api/string_choices.cocci
index bb6b851ee2aa..29c507d86ffd 100644
--- a/scripts/coccinelle/api/string_choices.cocci
+++ b/scripts/coccinelle/api/string_choices.cocci
@@ -241,3 +241,22 @@ e << str_enabled_disabled_r.E;
@@
coccilib.report.print_report(p[0], "opportunity for str_enabled_disabled(%s)" % e)
+
+@str_read_write depends on patch@
+expression E;
+@@
+- ((E) ? "read" : "write")
++ str_read_write(E)
+
+@str_read_write_r depends on !patch exists@
+expression E;
+position P;
+@@
+* ((E@P) ? "read" : "write")
+
+@script:python depends on report@
+p << str_read_write_r.P;
+e << str_read_write_r.E;
+@@
+
+coccilib.report.print_report(p[0], "opportunity for str_read_write(%s)" % e)