URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [Documentation/] [CodingStyle] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
Linux kernel coding styleThis is a short document describing the preferred coding style for thelinux kernel. Coding style is very personal, and I won't _force_ myviews on anybody, but this is what goes for anything that I have to beable to maintain, and I'd prefer it for most other things too. Pleaseat least consider the points made here.First off, I'd suggest printing out a copy of the GNU coding standards,and NOT reading it. Burn them, it's a great symbolic gesture.Anyway, here goes:Chapter 1: IndentationTabs are 8 characters, and thus indentations are also 8 characters.There are heretic movements that try to make indentations 4 (or even 2!)characters deep, and that is akin to trying to define the value of PI tobe 3.Rationale: The whole idea behind indentation is to clearly define wherea block of control starts and ends. Especially when you've been lookingat your screen for 20 straight hours, you'll find it a lot easier to seehow the indentation works if you have large indentations.Now, some people will claim that having 8-character indentations makesthe code move too far to the right, and makes it hard to read on a80-character terminal screen. The answer to that is that if you needmore than 3 levels of indentation, you're screwed anyway, and should fixyour program.In short, 8-char indents make things easier to read, and have the addedbenefit of warning you when you're nesting your functions too deep.Heed that warning.Chapter 2: Placing BracesThe other issue that always comes up in C styling is the placement ofbraces. Unlike the indent size, there are few technical reasons tochoose one placement strategy over the other, but the preferred way, asshown to us by the prophets Kernighan and Ritchie, is to put the openingbrace last on the line, and put the closing brace first, thusly:if (x is true) {we do y}However, there is one special case, namely functions: they have theopening brace at the beginning of the next line, thus:int function(int x){body of function}Heretic people all over the world have claimed that this inconsistencyis ... well ... inconsistent, but all right-thinking people know that(a) K&R are _right_ and (b) K&R are right. Besides, functions arespecial anyway (you can't nest them in C (well, you can in gcc, actually,but this is horribly nonstandard, so we will ignore it)).Note that the closing brace is empty on a line of its own, _except_ inthe cases where it is followed by a continuation of the same statement,ie a "while" in a do-statement or an "else" in an if-statement, likethis:do {body of do-loop} while (condition);andif (x == y) {..} else if (x > y) {...} else {....}Rationale: K&R.Also, note that this brace-placement also minimizes the number of empty(or almost empty) lines, without any loss of readability. Thus, as thesupply of new-lines on your screen is not a renewable resource (think25-line terminal screens here), you have more empty lines to putcomments on.Chapter 3: NamingC is a Spartan language, and so should your naming be. Unlike Modula-2and Pascal programmers, C programmers do not use cute names likeThisVariableIsATemporaryCounter. A C programmer would call thatvariable "tmp", which is much easier to write, and not the least moredifficult to understand.HOWEVER, while mixed-case names are frowned upon, descriptive names forglobal variables are a must. To call a global function "foo" is ashooting offense.GLOBAL variables (to be used only if you _really_ need them) need tohave descriptive names, as do global functions. If you have a functionthat counts the number of active users, you should call that"count_active_users()" or similar, you should _not_ call it "cntusr()".Encoding the type of a function into the name (so-called Hungariannotation) is brain damaged - the compiler knows the types anyway and cancheck those, and it only confuses the programmer. No wonder MicroSoftmakes buggy programs.LOCAL variable names should be short, and to the point. If you havesome random integer loop counter, it should probably be called "i".Calling it "loop_counter" is non-productive, if there is no chance of itbeing mis-understood. Similarly, "tmp" can be just about any type ofvariable that is used to hold a temporary value.If you are afraid to mix up your local variable names, you have anotherproblem, which is called the function-growth-hormone-imbalance syndrome.See next chapter.Chapter 4: FunctionsFunctions should be short and sweet, and do just one thing. They shouldfit on one or two screenfuls of text (the ISO/ANSI screen size is 80x24,as we all know), and do one thing and do that well.The maximum length of a function is inversely proportional to thecomplexity and indentation level of that function. So, if you have aconceptually simple function that is just one long (but simple)case-statement, where you have to do lots of small things for a lot ofdifferent cases, it's OK to have a longer function.However, if you have a complex function, and you suspect that aless-than-gifted first-year high-school student might not evenunderstand what the function is all about, you should adhere to themaximum limits all the more closely. Use helper functions withdescriptive names (you can ask the compiler to in-line them if you thinkit's performance-critical, and it will probably do a better job of itthat you would have done).Another measure of the function is the number of local variables. Theyshouldn't exceed 5-10, or you're doing something wrong. Re-think thefunction, and split it into smaller pieces. A human brain cangenerally easily keep track of about 7 different things, anything moreand it gets confused. You know you're brilliant, but maybe you'd liketo understand what you did 2 weeks from now.Chapter 5: CommentingComments are good, but there is also a danger of over-commenting. NEVERtry to explain HOW your code works in a comment: it's much better towrite the code so that the _working_ is obvious, and it's a waste oftime to explain badly written code.Generally, you want your comments to tell WHAT your code does, not HOW.Also, try to avoid putting comments inside a function body: if thefunction is so complex that you need to separately comment parts of it,you should probably go back to chapter 4 for a while. You can makesmall comments to note or warn about something particularly clever (orugly), but try to avoid excess. Instead, put the comments at the headof the function, telling people what it does, and possibly WHY it doesit.Chapter 6: You've made a mess of itThat's OK, we all do. You've probably been told by your long-time Unixuser helper that "GNU emacs" automatically formats the C sources foryou, and you've noticed that yes, it does do that, but the defaults ituses are less than desirable (in fact, they are worse than randomtyping - a infinite number of monkeys typing into GNU emacs would nevermake a good program).So, you can either get rid of GNU emacs, or change it to use sanervalues. To do the latter, you can stick the following in your .emacs file:(defun linux-c-mode ()"C mode with adjusted defaults for use with the Linux kernel."(interactive)(c-mode)(setq c-indent-level 8)(setq c-brace-imaginary-offset 0)(setq c-brace-offset -8)(setq c-argdecl-indent 8)(setq c-label-offset -8)(setq c-continued-statement-offset 8)(setq indent-tabs-mode nil)(setq tab-width 8))This will define the M-x linux-c-mode command. When hacking on amodule, if you put the string -*- linux-c -*- somewhere on the firsttwo lines, this mode will be automatically invoked. Also, you may wantto add(setq auto-mode-alist (cons '("/usr/src/linux.*/.*\\.[ch]$" . linux-c-mode)auto-mode-alist))to your .emacs file if you want to have linux-c-mode switched onautomagically when you edit source files under /usr/src/linux.But even if you fail in getting emacs to do sane formatting, noteverything is lost: use "indent".Now, again, GNU indent has the same brain dead settings that GNU emacshas, which is why you need to give it a few command line options.However, that's not too bad, because even the makers of GNU indentrecognize the authority of K&R (the GNU people aren't evil, they arejust severely misguided in this matter), so you just give indent theoptions "-kr -i8" (stands for "K&R, 8 character indents")."indent" has a lot of options, and especially when it comes to commentre-formatting you may want to take a look at the manual page. Butremember: "indent" is not a fix for bad programming.
Go to most recent revision | Compare with Previous | Blame | View Log
