sparse.rst 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .. Copyright 2004 Linus Torvalds
  2. .. Copyright 2004 Pavel Machek <pavel@ucw.cz>
  3. .. Copyright 2006 Bob Copeland <me@bobcopeland.com>
  4. Sparse
  5. ======
  6. Sparse is a semantic checker for C programs; it can be used to find a
  7. number of potential problems with kernel code. See
  8. https://lwn.net/Articles/689907/ for an overview of sparse; this document
  9. contains some kernel-specific sparse information.
  10. More information on sparse, mainly about its internals, can be found in
  11. its official pages at https://sparse.docs.kernel.org.
  12. Using sparse for typechecking
  13. -----------------------------
  14. "__bitwise" is a type attribute, so you have to do something like this::
  15. typedef int __bitwise pm_request_t;
  16. enum pm_request {
  17. PM_SUSPEND = (__force pm_request_t) 1,
  18. PM_RESUME = (__force pm_request_t) 2
  19. };
  20. which makes PM_SUSPEND and PM_RESUME "bitwise" integers (the "__force" is
  21. there because sparse will complain about casting to/from a bitwise type,
  22. but in this case we really _do_ want to force the conversion). And because
  23. the enum values are all the same type, now "enum pm_request" will be that
  24. type too.
  25. And with gcc, all the "__bitwise"/"__force stuff" goes away, and it all
  26. ends up looking just like integers to gcc.
  27. Quite frankly, you don't need the enum there. The above all really just
  28. boils down to one special "int __bitwise" type.
  29. So the simpler way is to just do::
  30. typedef int __bitwise pm_request_t;
  31. #define PM_SUSPEND ((__force pm_request_t) 1)
  32. #define PM_RESUME ((__force pm_request_t) 2)
  33. and you now have all the infrastructure needed for strict typechecking.
  34. One small note: the constant integer "0" is special. You can use a
  35. constant zero as a bitwise integer type without sparse ever complaining.
  36. This is because "bitwise" (as the name implies) was designed for making
  37. sure that bitwise types don't get mixed up (little-endian vs big-endian
  38. vs cpu-endian vs whatever), and there the constant "0" really _is_
  39. special.
  40. Getting sparse
  41. --------------
  42. You can get tarballs of the latest released versions from:
  43. https://www.kernel.org/pub/software/devel/sparse/dist/
  44. Alternatively, you can get snapshots of the latest development version
  45. of sparse using git to clone::
  46. git://git.kernel.org/pub/scm/devel/sparse/sparse.git
  47. Once you have it, just do::
  48. make
  49. make install
  50. as a regular user, and it will install sparse in your ~/bin directory.
  51. Using sparse
  52. ------------
  53. Do a kernel make with "make C=1" to run sparse on all the C files that get
  54. recompiled, or use "make C=2" to run sparse on the files whether they need to
  55. be recompiled or not. The latter is a fast way to check the whole tree if you
  56. have already built it.
  57. The optional make variable CF can be used to pass arguments to sparse. The
  58. build system passes -Wbitwise to sparse automatically.
  59. Note that sparse defines the __CHECKER__ preprocessor symbol.