same_identifier.cocci 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // Check violations for rule 5.7
  2. // https://gitlab.com/MISRA/MISRA-C/MISRA-C-2012/Example-Suite/-/blob/master/R_05_07.c
  3. //
  4. // Confidence: Moderate
  5. // Copyright: (C) 2020 Intel Corporation
  6. //
  7. // SPDX-License-Identifier: Apache-2.0
  8. virtual report
  9. @initialize:python@
  10. @@
  11. @common_case@
  12. position p;
  13. identifier t, v;
  14. @@
  15. (
  16. struct t *v@p;
  17. |
  18. struct t v@p;
  19. |
  20. union t v@p;
  21. )
  22. @ script:python @
  23. t << common_case.t;
  24. v << common_case.v;
  25. p << common_case.p;
  26. @@
  27. msg = "WARNING: Violation to rule 5.7 (Tag name should be unique) tag: {}".format(v)
  28. if t == v:
  29. coccilib.report.print_report(p[0], msg)
  30. @per_type@
  31. type T;
  32. identifier v;
  33. position p;
  34. @@
  35. (
  36. T v@p;
  37. |
  38. T *v@p;
  39. )
  40. @ script:python @
  41. t << per_type.T;
  42. v << per_type.v;
  43. p << per_type.p;
  44. @@
  45. msg = "WARNING: Violation to rule 5.7 (Tag name should be unique) tag: {}".format(v)
  46. if t == v:
  47. coccilib.report.print_report(p[0], msg)
  48. @function_match@
  49. type T1, T2;
  50. identifier function, v;
  51. position p;
  52. parameter list[n] P1;
  53. parameter list[n1] P2;
  54. @@
  55. T1 function(P1, T2 *v@p, P2) {
  56. ...
  57. }
  58. @ script:python @
  59. v << function_match.v;
  60. t << function_match.T2;
  61. p << function_match.p;
  62. @@
  63. msg = "WARNING: Violation to rule 5.7 (Tag name should be unique) tag: {}".format(v)
  64. if v == t.split(" ")[-1]:
  65. coccilib.report.print_report(p[0], msg)