ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libecb/ecb.pod
(Generate patch)

Comparing libecb/ecb.pod (file contents):
Revision 1.18 by root, Fri May 27 00:01:28 2011 UTC vs.
Revision 1.31 by root, Fri Jun 17 15:17:26 2011 UTC

15It mainly provides a number of wrappers around GCC built-ins, together 15It mainly provides a number of wrappers around GCC built-ins, together
16with replacement functions for other compilers. In addition to this, 16with replacement functions for other compilers. In addition to this,
17it provides a number of other lowlevel C utilities, such as endianness 17it provides a number of other lowlevel C utilities, such as endianness
18detection, byte swapping or bit rotations. 18detection, byte swapping or bit rotations.
19 19
20Or in other words, things that should be built-in into any standard C 20Or in other words, things that should be built into any standard C system,
21system, but aren't. 21but aren't, implemented as efficient as possible with GCC, and still
22correct with other compilers.
22 23
23More might come. 24More might come.
24 25
25=head2 ABOUT THE HEADER 26=head2 ABOUT THE HEADER
26 27
55is usually implemented as a macro. Specifically, a "bool" in this manual 56is usually implemented as a macro. Specifically, a "bool" in this manual
56refers to any kind of boolean value, not a specific type. 57refers to any kind of boolean value, not a specific type.
57 58
58=head2 GCC ATTRIBUTES 59=head2 GCC ATTRIBUTES
59 60
60blabla where to put, what others 61A major part of libecb deals with GCC attributes. These are additional
62attributes that you can assign to functions, variables and sometimes even
63types - much like C<const> or C<volatile> in C.
64
65While GCC allows declarations to show up in many surprising places,
66but not in many expected places, the safest way is to put attribute
67declarations before the whole declaration:
68
69 ecb_const int mysqrt (int a);
70 ecb_unused int i;
71
72For variables, it is often nicer to put the attribute after the name, and
73avoid multiple declarations using commas:
74
75 int i ecb_unused;
61 76
62=over 4 77=over 4
63 78
64=item ecb_attribute ((attrs...)) 79=item ecb_attribute ((attrs...))
65 80
86 #else 101 #else
87 return 0; 102 return 0;
88 #endif 103 #endif
89 } 104 }
90 105
106=item ecb_inline
107
108This is not actually an attribute, but you use it like one. It expands
109either to C<static inline> or to just C<static>, if inline isn't
110supported. It should be used to declare functions that should be inlined,
111for code size or speed reasons.
112
113Example: inline this function, it surely will reduce codesize.
114
115 ecb_inline int
116 negmul (int a, int b)
117 {
118 return - (a * b);
119 }
120
91=item ecb_noinline 121=item ecb_noinline
92 122
93Prevent a function from being inlined - it might be optimised away, but 123Prevent a function from being inlined - it might be optimised away, but
94not inlined into other functions. This is useful if you know your function 124not inlined into other functions. This is useful if you know your function
95is rarely called and large enough for inlining not to be helpful. 125is rarely called and large enough for inlining not to be helpful.
105 { 135 {
106 puts (errline); 136 puts (errline);
107 abort (); 137 abort ();
108 } 138 }
109 139
110In this case, the compiler would probbaly be smart enough to decude it on 140In this case, the compiler would probably be smart enough to deduce it on
111it's own, so this is mainly useful for declarations. 141its own, so this is mainly useful for declarations.
112 142
113=item ecb_const 143=item ecb_const
114 144
115Declares that the function only depends on the values of it's arguments, 145Declares that the function only depends on the values of its arguments,
116much like a mathematical function. It specifically does not read or write 146much like a mathematical function. It specifically does not read or write
117any memory any arguments might point to, global variables, or call any 147any memory any arguments might point to, global variables, or call any
118non-const functions. It also must not have any side effects. 148non-const functions. It also must not have any side effects.
119 149
120Such a function can be optimised much more aggressively by the compiler - 150Such a function can be optimised much more aggressively by the compiler -
121for example, multiple calls with the same arguments can be optimised into 151for example, multiple calls with the same arguments can be optimised into
122a single call, which wouldn't be possible if the compiler would have to 152a single call, which wouldn't be possible if the compiler would have to
123expect any side effects. 153expect any side effects.
124 154
125It is best suited for functions in the sense of mathematical functions, 155It is best suited for functions in the sense of mathematical functions,
126such as a function return the square root of its input argument. 156such as a function returning the square root of its input argument.
127 157
128Not suited would be a function that calculates the hash of some memory 158Not suited would be a function that calculates the hash of some memory
129area you pass in, prints some messages or looks at a global variable to 159area you pass in, prints some messages or looks at a global variable to
130decide on rounding. 160decide on rounding.
131 161
154possible. 184possible.
155 185
156The compiler reacts by trying to place hot functions near to each other in 186The compiler reacts by trying to place hot functions near to each other in
157memory. 187memory.
158 188
159Whether a function is hot or not often depend son the whole program, 189Whether a function is hot or not often depends on the whole program,
160and less on the function itself. C<ecb_cold> is likely more useful in 190and less on the function itself. C<ecb_cold> is likely more useful in
161practise. 191practise.
162 192
163=item ecb_cold 193=item ecb_cold
164 194
169 199
170In addition to placing cold functions together (or at least away from hot 200In addition to placing cold functions together (or at least away from hot
171functions), this knowledge can be used in other ways, for example, the 201functions), this knowledge can be used in other ways, for example, the
172function will be optimised for size, as opposed to speed, and codepaths 202function will be optimised for size, as opposed to speed, and codepaths
173leading to calls to those functions can automatically be marked as if 203leading to calls to those functions can automatically be marked as if
174C<ecb_unlikel> had been used to reach them. 204C<ecb_expect_false> had been used to reach them.
175 205
176Good examples for such functions would be error reporting functions, or 206Good examples for such functions would be error reporting functions, or
177functions only called in exceptional or rare cases. 207functions only called in exceptional or rare cases.
178 208
179=item ecb_artificial 209=item ecb_artificial
241 271
242Evaluates C<expr> and returns it. In addition, it tells the compiler that 272Evaluates C<expr> and returns it. In addition, it tells the compiler that
243the C<expr> evaluates to C<value> a lot, which can be used for static 273the C<expr> evaluates to C<value> a lot, which can be used for static
244branch optimisations. 274branch optimisations.
245 275
246Usually, you want to use the more intuitive C<ecb_likely> and 276Usually, you want to use the more intuitive C<ecb_expect_true> and
247C<ecb_unlikely> functions instead. 277C<ecb_expect_false> functions instead.
248 278
279=item bool ecb_expect_true (cond)
280
249=item bool ecb_likely (cond) 281=item bool ecb_expect_false (cond)
250
251=item bool ecb_unlikely (cond)
252 282
253These two functions expect a expression that is true or false and return 283These two functions expect a expression that is true or false and return
254C<1> or C<0>, respectively, so when used in the condition of an C<if> or 284C<1> or C<0>, respectively, so when used in the condition of an C<if> or
255other conditional statement, it will not change the program: 285other conditional statement, it will not change the program:
256 286
257 /* these two do the same thing */ 287 /* these two do the same thing */
258 if (some_condition) ...; 288 if (some_condition) ...;
259 if (ecb_likely (some_condition)) ...; 289 if (ecb_expect_true (some_condition)) ...;
260 290
261However, by using C<ecb_likely>, you tell the compiler that the condition 291However, by using C<ecb_expect_true>, you tell the compiler that the
262is likely to be true (and for C<ecb_unlikely>, that it is unlikely to be 292condition is likely to be true (and for C<ecb_expect_false>, that it is
263true). 293unlikely to be true).
264 294
265For example, when you check for a null pointer and expect this to be a 295For example, when you check for a null pointer and expect this to be a
266rare, exceptional, case, then use C<ecb_unlikely>: 296rare, exceptional, case, then use C<ecb_expect_false>:
267 297
268 void my_free (void *ptr) 298 void my_free (void *ptr)
269 { 299 {
270 if (ecb_unlikely (ptr == 0)) 300 if (ecb_expect_false (ptr == 0))
271 return; 301 return;
272 } 302 }
273 303
274Consequent use of these functions to mark away exceptional cases or to 304Consequent use of these functions to mark away exceptional cases or to
275tell the compiler what the hot path through a function is can increase 305tell the compiler what the hot path through a function is can increase
276performance considerably. 306performance considerably.
307
308You might know these functions under the name C<likely> and C<unlikely>
309- while these are common aliases, we find that the expect name is easier
310to understand when quickly skimming code. If you wish, you can use
311C<ecb_likely> instead of C<ecb_expect_true> and C<ecb_unlikely> instead of
312C<ecb_expect_false> - these are simply aliases.
277 313
278A very good example is in a function that reserves more space for some 314A very good example is in a function that reserves more space for some
279memory block (for example, inside an implementation of a string stream) - 315memory block (for example, inside an implementation of a string stream) -
280each time something is added, you have to check for a buffer overrun, but 316each time something is added, you have to check for a buffer overrun, but
281you expect that most checks will turn out to be false: 317you expect that most checks will turn out to be false:
282 318
283 /* make sure we have "size" extra room in our buffer */ 319 /* make sure we have "size" extra room in our buffer */
284 ecb_inline void 320 ecb_inline void
285 reserve (int size) 321 reserve (int size)
286 { 322 {
287 if (ecb_unlikely (current + size > end)) 323 if (ecb_expect_false (current + size > end))
288 real_reserve_method (size); /* presumably noinline */ 324 real_reserve_method (size); /* presumably noinline */
289 } 325 }
290 326
291=item bool ecb_assume (cond) 327=item bool ecb_assume (cond)
292 328
295 331
296This can be used to teach the compiler about invariants or other 332This can be used to teach the compiler about invariants or other
297conditions that might improve code generation, but which are impossible to 333conditions that might improve code generation, but which are impossible to
298deduce form the code itself. 334deduce form the code itself.
299 335
300For example, the example reservation function from the C<ecb_unlikely> 336For example, the example reservation function from the C<ecb_expect_false>
301description could be written thus (only C<ecb_assume> was added): 337description could be written thus (only C<ecb_assume> was added):
302 338
303 ecb_inline void 339 ecb_inline void
304 reserve (int size) 340 reserve (int size)
305 { 341 {
306 if (ecb_unlikely (current + size > end)) 342 if (ecb_expect_false (current + size > end))
307 real_reserve_method (size); /* presumably noinline */ 343 real_reserve_method (size); /* presumably noinline */
308 344
309 ecb_assume (current + size <= end); 345 ecb_assume (current + size <= end);
310 } 346 }
311 347
372 408
373These two functions return true if the byte order is big endian 409These two functions return true if the byte order is big endian
374(most-significant byte first) or little endian (least-significant byte 410(most-significant byte first) or little endian (least-significant byte
375first) respectively. 411first) respectively.
376 412
413On systems that are neither, their return values are unspecified.
414
377=item int ecb_ctz32 (uint32_t x) 415=item int ecb_ctz32 (uint32_t x)
378 416
379Returns the index of the least significant bit set in C<x> (or 417Returns the index of the least significant bit set in C<x> (or
380equivalently the number of bits set to 0 before the least significant 418equivalently the number of bits set to 0 before the least significant bit
381bit set), starting from 0. If C<x> is 0 the result is undefined. A 419set), starting from 0. If C<x> is 0 the result is undefined. A common use
382common use case is to compute the integer binary logarithm, i.e., 420case is to compute the integer binary logarithm, i.e., C<floor (log2
383floor(log2(n)). For example: 421(n))>. For example:
384 422
385 ecb_ctz32 (3) = 0 423 ecb_ctz32 (3) = 0
386 ecb_ctz32 (6) = 1 424 ecb_ctz32 (6) = 1
387 425
388=item int ecb_popcount32 (uint32_t x) 426=item int ecb_popcount32 (uint32_t x)
394 432
395=item uint32_t ecb_bswap16 (uint32_t x) 433=item uint32_t ecb_bswap16 (uint32_t x)
396 434
397=item uint32_t ecb_bswap32 (uint32_t x) 435=item uint32_t ecb_bswap32 (uint32_t x)
398 436
399These two functions return the value of the 16-bit (32-bit) variable 437These two functions return the value of the 16-bit (32-bit) value C<x>
400C<x> after reversing the order of bytes. 438after reversing the order of bytes (0x11223344 becomes 0x44332211).
401 439
402=item uint32_t ecb_rotr32 (uint32_t x, unsigned int count) 440=item uint32_t ecb_rotr32 (uint32_t x, unsigned int count)
403 441
404=item uint32_t ecb_rotl32 (uint32_t x, unsigned int count) 442=item uint32_t ecb_rotl32 (uint32_t x, unsigned int count)
405 443
406These two functions return the value of C<x> after shifting all the bits 444These two functions return the value of C<x> after rotating all the bits
407by C<count> positions to the right or left respectively. 445by C<count> positions to the right or left respectively.
408 446
447Current GCC versions understand these functions and usually compile them
448to "optimal" code (e.g. a single C<roll> on x86).
449
409=back 450=back
410 451
411=head2 ARITHMETIC 452=head2 ARITHMETIC
412 453
413=over 4 454=over 4
414 455
415=item x = ecb_mod (m, n) 456=item x = ecb_mod (m, n)
416 457
417Returns the positive remainder of the modulo operation between C<m> and 458Returns C<m> modulo C<n>, which is the same as the positive remainder
459of the division operation between C<m> and C<n>, using floored
418C<n>. Unlike the C modulo operator C<%>, this function ensures that the 460division. Unlike the C remainder operator C<%>, this function ensures that
419return value is always positive). 461the return value is always positive and that the two numbers I<m> and
462I<m' = m + i * n> result in the same value modulo I<n> - in other words,
463C<ecb_mod> implements the mathematical modulo operation, which is missing
464in the language.
420 465
421C<n> must be strictly positive (i.e. C<< >1 >>), while C<m> must be 466C<n> must be strictly positive (i.e. C<< >= 1 >>), while C<m> must be
422negatable, that is, both C<m> and C<-m> must be representable in its 467negatable, that is, both C<m> and C<-m> must be representable in its
423type. 468type (this typically excludes the minimum signed integer value, the same
469limitation as for C</> and C<%> in C).
470
471Current GCC versions compile this into an efficient branchless sequence on
472almost all CPUs.
473
474For example, when you want to rotate forward through the members of an
475array for increasing C<m> (which might be negative), then you should use
476C<ecb_mod>, as the C<%> operator might give either negative results, or
477change direction for negative values:
478
479 for (m = -100; m <= 100; ++m)
480 int elem = myarray [ecb_mod (m, ecb_array_length (myarray))];
424 481
425=back 482=back
426 483
427=head2 UTILITY 484=head2 UTILITY
428 485
429=over 4 486=over 4
430 487
431=item element_count = ecb_array_length (name) [MACRO] 488=item element_count = ecb_array_length (name)
432 489
433Returns the number of elements in the array C<name>. For example: 490Returns the number of elements in the array C<name>. For example:
434 491
435 int primes[] = { 2, 3, 5, 7, 11 }; 492 int primes[] = { 2, 3, 5, 7, 11 };
436 int sum = 0; 493 int sum = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines