doubleinit.cocci 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /// Find duplicate field initializations. This has a high rate of false
  2. /// positives due to #ifdefs, which Coccinelle is not aware of in a structure
  3. /// initialization.
  4. ///
  5. // Confidence: Low
  6. // Copyright: (C) 2010-2012 Nicolas Palix. GPLv2.
  7. // Copyright: (C) 2010-2012 Julia Lawall, INRIA/LIP6. GPLv2.
  8. // Copyright: (C) 2010-2012 Gilles Muller, INRIA/LiP6. GPLv2.
  9. // URL: http://coccinelle.lip6.fr/
  10. // Comments: requires at least Coccinelle 0.2.4, lex or parse error otherwise
  11. // Options: --no-includes --include-headers
  12. virtual org
  13. virtual report
  14. @r@
  15. identifier I, s, fld;
  16. position p0,p;
  17. expression E;
  18. @@
  19. struct I s =@p0 { ..., .fld@p = E, ...};
  20. @s@
  21. identifier I, s, r.fld;
  22. position r.p0,p;
  23. expression E;
  24. @@
  25. struct I s =@p0 { ..., .fld@p = E, ...};
  26. @script:python depends on org@
  27. p0 << r.p0;
  28. fld << r.fld;
  29. ps << s.p;
  30. pr << r.p;
  31. @@
  32. if int(ps[0].line) < int(pr[0].line) or (int(ps[0].line) == int(pr[0].line) and int(ps[0].column) < int(pr[0].column)):
  33. cocci.print_main(fld,p0)
  34. cocci.print_secs("s",ps)
  35. cocci.print_secs("r",pr)
  36. @script:python depends on report@
  37. p0 << r.p0;
  38. fld << r.fld;
  39. ps << s.p;
  40. pr << r.p;
  41. @@
  42. if int(ps[0].line) < int(pr[0].line) or (int(ps[0].line) == int(pr[0].line) and int(ps[0].column) < int(pr[0].column)):
  43. msg = "%s: first occurrence line %s, second occurrence line %s" % (fld,ps[0].line,pr[0].line)
  44. coccilib.report.print_report(p0[0],msg)