A Few Coding Standards |
Introduction |
This document intentionally does not prescribe fixed standards for religious
issues such as brace placement and space usage. For issues like this, follow
the golden rule:
If you are adding a significant body of source to a project, feel
free to use whatever style you are most comfortable with. If you are extending,
enhancing, or bug fixing already implemented code, use the style that is already
being used so that the source is uniform and easy to follow.
The ultimate goal of these guidelines is the increase readability and
maintainability of our common source base. If you have suggestions for topics to
be included, please mail them to Chris.
Mechanical Source Issues |
Source Code Formatting |
//===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===// // // This file contains the declaration of the Instruction class, which is the // base class for all of the VM instructions. // //===----------------------------------------------------------------------===//A few things to note about this particular format. The "-*- C++ -*-" string on the first line is there to tell Emacs that the source file is a C++ file, not a C file (Emacs assumes .h files are C files by default [Note that tag this is not necessary in .cpp files]). The name of the file is also on the first line, along with a very short description of the purpose of the file. This is important when printing out code and flipping though lots of pages.
The main body of the description does not have to be very long in most cases. Here it's only two lines. If an algorithm is being implemented or something tricky is going on, a reference to the paper where it is published should be included, as well as any notes or "gotchas" in the code to watch out for.
Good things to talk about here are what happens when something unexpected happens: does the method return null? Abort? Format your hard disk?
To comment out a large block of code, use #if 0 and #endif. These nest properly and are better behaved in general than C style comments.
As always, follow the Golden Rule above: follow the style of existing code if your are modifying and extending it. If you like four spaces of indentation, DO NOT do that in the middle of a chunk of code with two spaces of indentation. Also, do not reindent a whole source file: it makes for incredible diffs that are absolutely worthless.
Compiler Issues |
It is not possible to prevent all warnings from all compilers, nor is it desirable. Instead, pick a standard compiler (like gcc) that provides a good thorough set of warnings, and stick to them. At least in the case of gcc, it is possible to work around any spurious errors by changing the syntax of the code slightly. For example, an warning that annoys me occurs when I write code like this:
if (V = getValue()) { .. }
gcc will warn me that I probably want to use the == operator, and that I probably mistyped it. In most cases, I haven't, and I really don't want the spurious errors. To fix this particular problem, I rewrite the code like this:
if ((V = getValue())) { .. }
...which shuts gcc up. Any gcc warning that annoys you can be fixed by massaging the code appropriately.
These are the gcc warnings that I prefer to enable: -Wall -Winline -W -Wwrite-strings -Wno-unused
Just like most of the rules in this document, this isn't a hard and fast
requirement. Exceptions are used in the Parser, because it simplifies error
reporting significantly, and the LLVM parser is not at all in the
critical path.
Other features, such as templates (without partial specialization) can be used
freely. The general goal is to have clear, consise, performant code... if a
technique assists with that then use it.
In practice, this means that you shouldn't assume much about the host compiler,
including its support for "high tech" features like partial specialization of
templates. In fact, Visual C++ 6 could be an important target for our work in
the future, and we don't want to have to rewrite all of our code to support
it.
Which C++ features can I use?
Compilers are finally catching up to the C++ standard. Most compilers implement
most features, so you can use just about any features that you would like. In
the LLVM source tree, I have chosen to not use these features:
Write Portable Code
In almost all cases, it is possible and within reason to write completely
portable code. If there are cases where it isn't possible to write portable
code, isolate it behind a well defined (and well documented) interface.
Style Issues |
The High Level Issues |
Ideally, modules should be completely independent of each other, and their header files should only include the absolute minimum number of headers possible. A module is not just a class, a function, or a namespace: it's a collection of these that defines an interface. This interface may be several functions, classes or data structures, but the important issue is how they work together.
In general, a module should be implemented with one or more .cpp files. Each of these .cpp files should include the header that defines their interface first. This ensure that all of the dependences of the module header have been properly added to the module header itself, and are not implicit. System headers should be included after user headers for a translation unit.
But wait, sometimes you need to have the definition of a class to use it, or to inherit from it. In these cases go ahead and #include that header file. Be aware however that there are many cases where you don't need to have the full definition of a class. If you are using a pointer or reference to a class, you don't need the header file. If you are simply returning a class instance from a prototyped function or method, you don't need it. In fact, for most cases, you simply don't need the definition of a class... and not #include'ing speeds up compilation.
It is easy to try to go too overboard on this recommendation, however. You must include all of the header files that you are using, either directly or indirectly (through another header file). To make sure that you don't accidently forget to include a header file in your module header, make sure to include your module header first in the implementation file (as mentioned above). This way there won't be any hidden dependencies that you'll find out about later...
If you really need to do something like this, put a private header file in the same directory as the source files, and include it locally. This ensures that your private interface remains private and undisturbed by outsiders.
Note however, that it's okay to put extra implementation methods a public class itself... just make them private (or protected), and all is well.
The Low Level Issues |
To further assist with debugging, make sure to put some kind of error message in the assertion statement (which is printed if the assertion is tripped). This helps the poor debugging make sense of why an assertion is being made and enforced, and hopefully what to do about it. Here is one complete example:
inline Value *getOperand(unsigned i) { assert(i < Operands.size() && "getOperand() out of range!"); return Operands[i]; }Here are some examples:
assert(Ty->isPointerType() && "Can't allocate a non pointer type!"); assert((Opcode == Shl || Opcode == Shr) && "ShiftInst Opcode invalid!"); assert(idx < getNumSuccessors() && "Successor # out of range!"); assert(V1.getType() == V2.getType() && "Constant types must be identical!"); assert(isa<PHINode>(Succ->front()) && "Only works on PHId BBs!");
You get the idea...
The semantics of postincrement include making a copy of the value being
incremented, returning it, and then preincrementing the "work value". For
primitive types, this isn't a big deal... but for iterators, it can be a huge
issue (for example, some iterators contains stack and set objects in them...
copying an iterator could invoke the copy ctor's of these as well). In general,
get in the habit of always using preincrement, and you won't have a problem.
Prefer Preincrement
Hard fast rule: Preincrement (++X) may be no slower than postincrement (X++) and
could very well be a lot faster than it. Use preincrementation whenever
possible.
Avoid endl
The endl modifier, when used with iostreams outputs a newline to the
output stream specified. In addition to doing this, however, it also flushes
the output stream. In other words, these are equivalent:
cout << endl;
cout << "\n" << flush;
Most of the time, you probably have no reason to flush the output stream, so it's better to use a literal "\n".
Writing Iterators |
From: Ross SmithNewsgroups: comp.lang.c++.moderated Subject: Writing iterators (was: Re: Non-template functions that take iterators) Date: 28 Jun 2001 12:07:10 -0400 Andre Majorel wrote: > Any pointers handy on "writing STL-compatible iterators for > dummies ?" I'll give it a try... The usual situation requiring user-defined iterators is that you have a type that bears some resemblance to an STL container, and you want to provide iterators so it can be used with STL algorithms. You need to ask three questions: First, is this simply a wrapper for an underlying collection of objects that's held somewhere as a real STL container, or is it a "virtual container" for which iteration is (under the hood) more complicated than simply incrementing some underlying iterator (or pointer or index or whatever)? In the former case you can frequently get away with making your container's iterators simply typedefs for those of the underlying container; your begin() function would call member_container.begin(), and so on. Second, do you only need read-only iterators, or do you need separate read-only (const) and read-write (non-const) iterators? Third, which kind of iterator (input, output, forward, bidirectional, or random access) is appropriate? If you're familiar with the properties of the iterator types (if not, visit http://www.sgi.com/tech/stl/), the appropriate choice should be obvious from the semantics of the container. I'll start with forward iterators, as the simplest case that's likely to come up in normal code. Input and output iterators have some odd properties and rarely need to be implemented in user code; I'll leave them out of discussion. Bidirectional and random access iterators are covered below. The exact behaviour of a forward iterator is spelled out in the Standard in terms of a set of expressions with specified behaviour, rather than a set of member functions, which leaves some leeway in how you actually implement it. Typically it looks something like this (I'll start with the const-iterator-only situation): #include <iterator> class container { public: typedef something_or_other value_type; class const_iterator: public std::iterator<std::forward_iterator_tag, value_type> { friend class container; public: const value_type& operator*() const; const value_type* operator->() const; const_iterator& operator++(); const_iterator operator++(int); friend bool operator==(const_iterator lhs, const_iterator rhs); friend bool operator!=(const_iterator lhs, const_iterator rhs); private: //... }; //... }; An iterator should always be derived from an instantiation of the std::iterator template. The iterator's life cycle functions (constructors, destructor, and assignment operator) aren't declared here; in most cases the compiler-generated ones are sufficient. The container needs to be a friend of the iterator so that the container's begin() and end() functions can fill in the iterator's private members with the appropriate values. [Chris's Note: I prefer to not make my iterators friends. Instead, two ctor's are provided for the iterator class: one to start at the end of the container, and one at the beginning. Typically this is done by providing two constructors with different signatures.] There are normally only three member functions that need nontrivial implementations; the rest are just boilerplate. const container::value_type& container::const_iterator::operator*() const { // find the element and return a reference to it } const container::value_type* container::const_iterator::operator->() const { return &**this; } If there's an underlying real container, operator*() can just return a reference to the appropriate element. If there's no actual container and the elements need to be generated on the fly -- what I think of as a "virtual container" -- things get a bit more complicated; you'll probably need to give the iterator a value_type member object, and fill it in when you need to. This might be done as part of the increment operator (below), or if the operation is nontrivial, you might choose the "lazy" approach and only generate the actual value when one of the dereferencing operators is called. The operator->() function is just boilerplate around a call to operator*(). container::const_iterator& container::const_iterator::operator++() { // the incrementing logic goes here return *this; } container::const_iterator container::const_iterator::operator++(int) { const_iterator old(*this); ++*this; return old; } Again, the incrementing logic will usually be trivial if there's a real container involved, more complicated if you're working with a virtual container. In particular, watch out for what happens when you increment past the last valid item -- this needs to produce an iterator that will compare equal to container.end(), and making this work is often nontrivial for virtual containers. The post-increment function is just boilerplate again (and incidentally makes it obvious why all the experts recommend using pre-increment wherever possible). bool operator==(container::const_iterator lhs, container::const_iterator rhs) { // equality comparison goes here } bool operator!=(container::const_iterator lhs, container::const_iterator rhs) { return !(lhs == rhs); } For a real container, the equality comparison will usually just compare the underlying iterators (or pointers or indices or whatever). The semantics of comparisons for virtual container iterators are often tricky. Remember that iterator comparison only needs to be defined for iterators into the same container, so you can often simplify things by taking for granted that lhs and rhs both point into the same container object. Again, the second function is just boilerplate. It's a matter of taste whether iterator arguments are passed by value or reference; I've shown tham passed by value to reduce clutter, but if the iterator contains several data members, passing by reference may be better. That convers the const-iterator-only situation. When we need separate const and mutable iterators, one small complication is added beyond the simple addition of a second class. class container { public: typedef something_or_other value_type; class const_iterator; class iterator: public std::iterator<std::forward_iterator_tag, value_type> { friend class container; friend class container::const_iterator; public: value_type& operator*() const; value_type* operator->() const; iterator& operator++(); iterator operator++(int); friend bool operator==(iterator lhs, iterator rhs); friend bool operator!=(iterator lhs, iterator rhs); private: //... }; class const_iterator: public std::iterator<std::forward_iterator_tag, value_type> { friend class container; public: const_iterator(); const_iterator(const iterator& i); const value_type& operator*() const; const value_type* operator->() const; const_iterator& operator++(); const_iterator operator++(int); friend bool operator==(const_iterator lhs, const_iterator rhs); friend bool operator!=(const_iterator lhs, const_iterator rhs); private: //... }; //... }; There needs to be a conversion from iterator to const_iterator (so that mixed-type operations, such as comparison between an iterator and a const_iterator, will work). This is done here by giving const_iterator a conversion constructor from iterator (equivalently, we could have given iterator an operator const_iterator()), which requires const_iterator to be a friend of iterator, so it can copy its data members. (It also requires the addition of an explicit default constructor to const_iterator, since the existence of another user-defined constructor inhibits the compiler-defined one.) Bidirectional iterators add just two member functions to forward iterators: class iterator: public std::iterator<std::bidirectional_iterator_tag, value_type> { public: //... iterator& operator--(); iterator operator--(int); //... }; I won't detail the implementations, they're obvious variations on operator++(). Random access iterators add several more member and friend functions: class iterator: public std::iterator<std::random_access_iterator_tag, value_type> { public: //... iterator& operator+=(difference_type rhs); iterator& operator-=(difference_type rhs); friend iterator operator+(iterator lhs, difference_type rhs); friend iterator operator+(difference_type lhs, iterator rhs); friend iterator operator-(iterator lhs, difference_type rhs); friend difference_type operator-(iterator lhs, iterator rhs); friend bool operator<(iterator lhs, iterator rhs); friend bool operator>(iterator lhs, iterator rhs); friend bool operator<=(iterator lhs, iterator rhs); friend bool operator>=(iterator lhs, iterator rhs); //... }; container::iterator& container::iterator::operator+=(container::difference_type rhs) { // add rhs to iterator position return *this; } container::iterator& container::iterator::operator-=(container::difference_type rhs) { // subtract rhs from iterator position return *this; } container::iterator operator+(container::iterator lhs, container::difference_type rhs) { return iterator(lhs) += rhs; } container::iterator operator+(container::difference_type lhs, container::iterator rhs) { return iterator(rhs) += lhs; } container::iterator operator-(container::iterator lhs, container::difference_type rhs) { return iterator(lhs) -= rhs; } container::difference_type operator-(container::iterator lhs, container::iterator rhs) { // calculate distance between iterators } bool operator<(container::iterator lhs, container::iterator rhs) { // perform less-than comparison } bool operator>(container::iterator lhs, container::iterator rhs) { return rhs < lhs; } bool operator<=(container::iterator lhs, container::iterator rhs) { return !(rhs < lhs); } bool operator>=(container::iterator lhs, container::iterator rhs) { return !(lhs < rhs); } Four of the functions (operator+=(), operator-=(), the second operator-(), and operator<()) are nontrivial; the rest are boilerplate. One feature of the above code that some experts may disapprove of is the declaration of all the free functions as friends, when in fact only a few of them need direct access to the iterator's private data. I originally got into the habit of doing this simply to keep the declarations together; declaring some functions inside the class and some outside seemed awkward. Since then, though, I've been told that there's a subtle difference in the way name lookup works for functions declared inside a class (as friends) and outside, so keeping them together in the class is probably a good idea for practical as well as aesthetic reasons. I hope all this is some help to anyone who needs to write their own STL-like containers and iterators. -- Ross Smith <ross.s@ihug.co.nz> The Internet Group, Auckland, New Zealand
See Also |
If you get some free time, and you haven't read them: do so, you might learn something. :)