interconnect: qcom: sdm845: Walk the list safely on node removal
[linux/fpc-iii.git] / scripts / coccinelle / misc / orplus.cocci
blob52203dc2ca4b7005ef63414194ef9815c55d3252
1 // SPDX-License-Identifier: GPL-2.0-only
2 /// Check for constants that are added but are used elsewhere as bitmasks
3 /// The results should be checked manually to ensure that the nonzero
4 /// bits in the two constants are actually disjoint.
5 ///
6 // Confidence: Moderate
7 // Copyright: (C) 2013 Julia Lawall, INRIA/LIP6.
8 // Copyright: (C) 2013 Gilles Muller, INRIA/LIP6.
9 // URL: http://coccinelle.lip6.fr/
10 // Comments:
11 // Options: --no-includes --include-headers
13 virtual org
14 virtual report
15 virtual context
17 @r@
18 constant c,c1;
19 identifier i,i1;
20 position p;
24  c1 + c - 1
26  c1@i1 +@p c@i
29 @s@
30 constant r.c, r.c1;
31 identifier i;
32 expression e;
36 e | c@i
38 e & c@i
40 e |= c@i
42 e &= c@i
44 e | c1@i
46 e & c1@i
48 e |= c1@i
50 e &= c1@i
53 @depends on s@
54 position r.p;
55 constant c1,c2;
58 * c1 +@p c2
60 @script:python depends on s && org@
61 p << r.p;
64 cocci.print_main("sum of probable bitmasks, consider |",p)
66 @script:python depends on s && report@
67 p << r.p;
70 msg = "WARNING: sum of probable bitmasks, consider |"
71 coccilib.report.print_report(p[0],msg)