summaryrefslogtreecommitdiff
path: root/contrib/coccinelle/object_id.cocci
blob: 09afdbf99462166e45ed623fe70a849e59045a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@@
expression E1;
@@
- is_null_sha1(E1.hash)
+ is_null_oid(&E1)
 
@@
expression E1;
@@
- is_null_sha1(E1->hash)
+ is_null_oid(E1)
 
@@
expression E1;
@@
- sha1_to_hex(E1.hash)
+ oid_to_hex(&E1)
 
@@
identifier f != oid_to_hex;
expression E1;
@@
  f(...) {...
- sha1_to_hex(E1->hash)
+ oid_to_hex(E1)
  ...}
 
@@
expression E1, E2;
@@
- sha1_to_hex_r(E1, E2.hash)
+ oid_to_hex_r(E1, &E2)
 
@@
identifier f != oid_to_hex_r;
expression E1, E2;
@@
   f(...) {...
- sha1_to_hex_r(E1, E2->hash)
+ oid_to_hex_r(E1, E2)
  ...}
 
@@
expression E1;
@@
- hashclr(E1.hash)
+ oidclr(&E1)
 
@@
identifier f != oidclr;
expression E1;
@@
  f(...) {...
- hashclr(E1->hash)
+ oidclr(E1)
  ...}
 
@@
expression E1, E2;
@@
- hashcmp(E1.hash, E2.hash)
+ oidcmp(&E1, &E2)
 
@@
identifier f != oidcmp;
expression E1, E2;
@@
  f(...) {...
- hashcmp(E1->hash, E2->hash)
+ oidcmp(E1, E2)
  ...}
 
@@
expression E1, E2;
@@
- hashcmp(E1->hash, E2.hash)
+ oidcmp(E1, &E2)
 
@@
expression E1, E2;
@@
- hashcmp(E1.hash, E2->hash)
+ oidcmp(&E1, E2)
 
@@
expression E1, E2;
@@
- hashcpy(E1.hash, E2.hash)
+ oidcpy(&E1, &E2)
 
@@
identifier f != oidcpy;
expression E1, E2;
@@
  f(...) {...
- hashcpy(E1->hash, E2->hash)
+ oidcpy(E1, E2)
  ...}
 
@@
expression E1, E2;
@@
- hashcpy(E1->hash, E2.hash)
+ oidcpy(E1, &E2)
 
@@
expression E1, E2;
@@
- hashcpy(E1.hash, E2->hash)
+ oidcpy(&E1, E2)