unsigned_suffix.cocci 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /// Find assignments to unsigned variables and add an 'U' to the value
  2. // Copyright: (C) 2018 Intel Corporation
  3. // Copyright: (C) 2018 Himanshu Jha
  4. // Copyright: (C) 2018 Julia Lawall, Inria/LIP6
  5. // SPDX-License-Identifier: Apache-2.0
  6. // Confidence: High
  7. virtual patch
  8. virtual report
  9. @r_unsigned@
  10. typedef uint8_t, uint16_t, uint32_t, uint64_t, u8_t, u16_t, u32_t, u64_t;
  11. {unsigned char, unsigned short, unsigned int, uint8_t, uint16_t, uint32_t, uint64_t, u8_t, u16_t, u32_t, u64_t} v;
  12. constant C;
  13. position p;
  14. @@
  15. (
  16. v = C@p
  17. |
  18. v == C@p
  19. |
  20. v != C@p
  21. |
  22. v <= C@p
  23. |
  24. v >= C@p
  25. |
  26. v += C@p
  27. |
  28. v -= C@p
  29. |
  30. v * C@p
  31. |
  32. v / C@p
  33. |
  34. v *= C@p
  35. |
  36. v /= C@p
  37. )
  38. @script:python r_rewrite@
  39. C << r_unsigned.C;
  40. z;
  41. @@
  42. if C.isdigit() != True:
  43. cocci.include_match(False)
  44. coccinelle.z = C + "U"
  45. @r_subst depends on patch@
  46. {unsigned char, unsigned short, unsigned int, uint8_t, uint16_t, uint32_t, uint64_t, u8_t, u16_t, u32_t, u64_t} r_unsigned.v;
  47. constant r_unsigned.C;
  48. identifier r_rewrite.z;
  49. @@
  50. (
  51. v =
  52. - C
  53. + z
  54. |
  55. v ==
  56. - C
  57. + z
  58. |
  59. v !=
  60. - C
  61. + z
  62. |
  63. v <=
  64. - C
  65. + z
  66. |
  67. v >=
  68. - C
  69. + z
  70. |
  71. v +=
  72. - C
  73. + z
  74. |
  75. v -=
  76. - C
  77. + z
  78. |
  79. v +
  80. - C
  81. + z
  82. |
  83. v -
  84. - C
  85. + z
  86. |
  87. v +=
  88. - C
  89. + z
  90. |
  91. v -=
  92. - C
  93. + z
  94. |
  95. - v * C
  96. + v * z
  97. |
  98. v /
  99. - C
  100. + z
  101. |
  102. v *=
  103. - C
  104. + z
  105. |
  106. v /=
  107. - C
  108. + z
  109. )
  110. @script: python depends on report@
  111. p << r_unsigned.p;
  112. @@
  113. msg="WARNING: Unsigned 'U' suffix missing"
  114. coccilib.report.print_report(p[0], msg)