Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | Copyright 2004 Linus Torvalds |
| 2 | Copyright 2004 Pavel Machek <pavel@suse.cz> |
Bob Copeland | e833195 | 2006-06-23 02:06:09 -0700 | [diff] [blame] | 3 | Copyright 2006 Bob Copeland <me@bobcopeland.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | Using sparse for typechecking |
| 6 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 7 | |
| 8 | "__bitwise" is a type attribute, so you have to do something like this: |
| 9 | |
| 10 | typedef int __bitwise pm_request_t; |
| 11 | |
| 12 | enum pm_request { |
| 13 | PM_SUSPEND = (__force pm_request_t) 1, |
| 14 | PM_RESUME = (__force pm_request_t) 2 |
| 15 | }; |
| 16 | |
| 17 | which makes PM_SUSPEND and PM_RESUME "bitwise" integers (the "__force" is |
| 18 | there because sparse will complain about casting to/from a bitwise type, |
| 19 | but in this case we really _do_ want to force the conversion). And because |
| 20 | the enum values are all the same type, now "enum pm_request" will be that |
| 21 | type too. |
| 22 | |
| 23 | And with gcc, all the __bitwise/__force stuff goes away, and it all ends |
| 24 | up looking just like integers to gcc. |
| 25 | |
| 26 | Quite frankly, you don't need the enum there. The above all really just |
| 27 | boils down to one special "int __bitwise" type. |
| 28 | |
| 29 | So the simpler way is to just do |
| 30 | |
| 31 | typedef int __bitwise pm_request_t; |
| 32 | |
| 33 | #define PM_SUSPEND ((__force pm_request_t) 1) |
| 34 | #define PM_RESUME ((__force pm_request_t) 2) |
| 35 | |
| 36 | and you now have all the infrastructure needed for strict typechecking. |
| 37 | |
| 38 | One small note: the constant integer "0" is special. You can use a |
| 39 | constant zero as a bitwise integer type without sparse ever complaining. |
| 40 | This is because "bitwise" (as the name implies) was designed for making |
| 41 | sure that bitwise types don't get mixed up (little-endian vs big-endian |
| 42 | vs cpu-endian vs whatever), and there the constant "0" really _is_ |
| 43 | special. |
| 44 | |
Bob Copeland | e833195 | 2006-06-23 02:06:09 -0700 | [diff] [blame] | 45 | Getting sparse |
| 46 | ~~~~~~~~~~~~~~ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Harald Welte | 86513e7 | 2005-09-23 13:24:10 -0700 | [diff] [blame] | 48 | With git, you can just get it from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Harald Welte | 86513e7 | 2005-09-23 13:24:10 -0700 | [diff] [blame] | 50 | rsync://rsync.kernel.org/pub/scm/devel/sparse/sparse.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | and DaveJ has tar-balls at |
| 53 | |
Bob Copeland | e833195 | 2006-06-23 02:06:09 -0700 | [diff] [blame] | 54 | http://www.codemonkey.org.uk/projects/git-snapshots/sparse/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | |
| 57 | Once you have it, just do |
| 58 | |
| 59 | make |
| 60 | make install |
| 61 | |
Bob Copeland | e833195 | 2006-06-23 02:06:09 -0700 | [diff] [blame] | 62 | as a regular user, and it will install sparse in your ~/bin directory. |
| 63 | |
| 64 | Using sparse |
| 65 | ~~~~~~~~~~~~ |
| 66 | |
| 67 | Do a kernel make with "make C=1" to run sparse on all the C files that get |
| 68 | recompiled, or use "make C=2" to run sparse on the files whether they need to |
| 69 | be recompiled or not. The latter is a fast way to check the whole tree if you |
| 70 | have already built it. |
| 71 | |
Robert P. J. Day | 1c7bafe | 2006-09-13 07:57:50 -0400 | [diff] [blame] | 72 | The optional make variable CHECKFLAGS can be used to pass arguments to sparse. |
| 73 | The build system passes -Wbitwise to sparse automatically. To perform |
| 74 | endianness checks, you may define __CHECK_ENDIAN__: |
Bob Copeland | e833195 | 2006-06-23 02:06:09 -0700 | [diff] [blame] | 75 | |
Robert P. J. Day | 1c7bafe | 2006-09-13 07:57:50 -0400 | [diff] [blame] | 76 | make C=2 CHECKFLAGS="-D__CHECK_ENDIAN__" |
Bob Copeland | e833195 | 2006-06-23 02:06:09 -0700 | [diff] [blame] | 77 | |
| 78 | These checks are disabled by default as they generate a host of warnings. |