cannam@127
|
1 Code conventions used internally by fftw3 (not in API):
|
cannam@127
|
2
|
cannam@127
|
3 LEARN FROM THE MASTERS: read Ken Thompson's C compiler in Plan 9.
|
cannam@127
|
4 Avoid learning from C++/Java programs.
|
cannam@127
|
5
|
cannam@127
|
6 INDENTATION: K&R, 5 spaces/tab. In case of doubt, indent -kr -i5.
|
cannam@127
|
7
|
cannam@127
|
8 NAMES: keep them short. Shorter than you think. The Bible was written
|
cannam@127
|
9 without vowels. Don't outsmart the Bible.
|
cannam@127
|
10
|
cannam@127
|
11 Common names:
|
cannam@127
|
12
|
cannam@127
|
13 R : real type, aka fftw_real
|
cannam@127
|
14 E : real type for local variables (possibly extra precision)
|
cannam@127
|
15 C : complex type
|
cannam@127
|
16 sz : size
|
cannam@127
|
17 vecsz : vector size
|
cannam@127
|
18 is, os : input/output stride
|
cannam@127
|
19 ri, ii : real/imag input (complex data)
|
cannam@127
|
20 ro, io : real/imag output (complex data)
|
cannam@127
|
21 I, O : real input/output (real data)
|
cannam@127
|
22 A : assert
|
cannam@127
|
23 CK : check
|
cannam@127
|
24 S : solver, defined internally to each solver file
|
cannam@127
|
25 P : plan, defined internally to each solver file
|
cannam@127
|
26 k : codelet
|
cannam@127
|
27 X(...) : used for mangling of external names (see below)
|
cannam@127
|
28 K(...) : floating-point constant, in E precision
|
cannam@127
|
29
|
cannam@127
|
30 If a name is used often and must have the form fftw_foo to avoid
|
cannam@127
|
31 namespace pollution, #define FOO fftw_foo and use the short name.
|
cannam@127
|
32
|
cannam@127
|
33 Leave that hungarian crap to MS. foo_t counts as hungarian: use
|
cannam@127
|
34 foo instead. foo is lowercase so that it does not look like a DOS
|
cannam@127
|
35 program. Exception: typedef struct foo_s {...} foo; instead of
|
cannam@127
|
36 typedef struct foo {...} foo; for C++ compatibility.
|
cannam@127
|
37
|
cannam@127
|
38 NAME MANGLING: use X(foo) for external names instead of fftw_foo.
|
cannam@127
|
39 X(foo) expands to fftwf_foo or fftw_foo, depending on the
|
cannam@127
|
40 precision. (Unfortunately, this is a ugly form of hungarian
|
cannam@127
|
41 notation. Grrr...) Names that are not exported do not need to be
|
cannam@127
|
42 mangled.
|
cannam@127
|
43
|
cannam@127
|
44 REPEATED CODE: favor a table. E.g., do not write
|
cannam@127
|
45
|
cannam@127
|
46 foo("xxx", 1);
|
cannam@127
|
47 foo("yyy", 2);
|
cannam@127
|
48 foo("zzz", -1);
|
cannam@127
|
49
|
cannam@127
|
50 Instead write
|
cannam@127
|
51
|
cannam@127
|
52 struct { const char *nam, int arg } footab[] = {
|
cannam@127
|
53 { "xxx", 1 },
|
cannam@127
|
54 { "yyy", 2 },
|
cannam@127
|
55 { "zzz", -1 }
|
cannam@127
|
56 };
|
cannam@127
|
57
|
cannam@127
|
58 and loop over footab. Rationale: it saves code space.
|
cannam@127
|
59 Similarly, replace a switch statement with a table whenever
|
cannam@127
|
60 possible.
|
cannam@127
|
61
|
cannam@127
|
62 C++: The code should compile as a C++ program. Run the code through
|
cannam@127
|
63 gcc -xc++ . The extra C++ restrictions are unnecessary, of
|
cannam@127
|
64 course, but this will save us from a flood of complaints when
|
cannam@127
|
65 we release the code.
|