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.36 by root, Sat Jun 18 13:37:39 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
360After processing the node, (part of) the next node might already be in 396After processing the node, (part of) the next node might already be in
361cache. 397cache.
362 398
363=back 399=back
364 400
365=head2 BIT FIDDLING / BITSTUFFS 401=head2 BIT FIDDLING / BIT WIZARDRY
366 402
367=over 4 403=over 4
368 404
369=item bool ecb_big_endian () 405=item bool ecb_big_endian ()
370 406
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
417=item int ecb_ctz64 (uint64_t x)
418
379Returns the index of the least significant bit set in C<x> (or 419Returns the index of the least significant bit set in C<x> (or
380equivalently the number of bits set to 0 before the least significant 420equivalently 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 421set), starting from 0. If C<x> is 0 the result is undefined.
382common use case is to compute the integer binary logarithm, i.e., 422
383floor(log2(n)). For example: 423For smaller types than C<uint32_t> you can safely use C<ecb_ctz32>.
424
425For example:
384 426
385 ecb_ctz32 (3) = 0 427 ecb_ctz32 (3) = 0
386 ecb_ctz32 (6) = 1 428 ecb_ctz32 (6) = 1
387 429
430=item int ecb_ld32 (uint32_t x)
431
432=item int ecb_ld64 (uint64_t x)
433
434Returns the index of the most significant bit set in C<x>, or the number
435of digits the number requires in binary (so that C<< 2**ld <= x <
4362**(ld+1) >>). If C<x> is 0 the result is undefined. A common use case is
437to compute the integer binary logarithm, i.e. C<floor (log2 (n))>, for
438example to see how many bits a certain number requires to be encoded.
439
440This function is similar to the "count leading zero bits" function, except
441that that one returns how many zero bits are "in front" of the number (in
442the given data type), while C<ecb_ld> returns how many bits the number
443itself requires.
444
445For smaller types than C<uint32_t> you can safely use C<ecb_ld32>.
446
388=item int ecb_popcount32 (uint32_t x) 447=item int ecb_popcount32 (uint32_t x)
389 448
449=item int ecb_popcount64 (uint64_t x)
450
390Returns the number of bits set to 1 in C<x>. For example: 451Returns the number of bits set to 1 in C<x>.
452
453For smaller types than C<uint32_t> you can safely use C<ecb_popcount32>.
454
455For example:
391 456
392 ecb_popcount32 (7) = 3 457 ecb_popcount32 (7) = 3
393 ecb_popcount32 (255) = 8 458 ecb_popcount32 (255) = 8
394 459
395=item uint32_t ecb_bswap16 (uint32_t x) 460=item uint32_t ecb_bswap16 (uint32_t x)
396 461
397=item uint32_t ecb_bswap32 (uint32_t x) 462=item uint32_t ecb_bswap32 (uint32_t x)
398 463
464=item uint64_t ecb_bswap64 (uint64_t x)
465
399These two functions return the value of the 16-bit (32-bit) variable 466These functions return the value of the 16-bit (32-bit, 64-bit) value
400C<x> after reversing the order of bytes. 467C<x> after reversing the order of bytes (0x11223344 becomes 0x44332211 in
468C<ecb_bswap32>).
469
470=item uint8_t ecb_rotl8 (uint8_t x, unsigned int count)
471
472=item uint16_t ecb_rotl16 (uint16_t x, unsigned int count)
473
474=item uint32_t ecb_rotl32 (uint32_t x, unsigned int count)
475
476=item uint64_t ecb_rotl64 (uint64_t x, unsigned int count)
477
478=item uint8_t ecb_rotr8 (uint8_t x, unsigned int count)
479
480=item uint16_t ecb_rotr16 (uint16_t x, unsigned int count)
401 481
402=item uint32_t ecb_rotr32 (uint32_t x, unsigned int count) 482=item uint32_t ecb_rotr32 (uint32_t x, unsigned int count)
403 483
404=item uint32_t ecb_rotl32 (uint32_t x, unsigned int count) 484=item uint64_t ecb_rotr64 (uint64_t x, unsigned int count)
405 485
406These two functions return the value of C<x> after shifting all the bits 486These two families of functions return the value of C<x> after rotating
407by C<count> positions to the right or left respectively. 487all the bits by C<count> positions to the right (C<ecb_rotr>) or left
488(C<ecb_rotl>).
489
490Current GCC versions understand these functions and usually compile them
491to "optimal" code (e.g. a single C<rol> or a combination of C<shld> on
492x86).
408 493
409=back 494=back
410 495
411=head2 ARITHMETIC 496=head2 ARITHMETIC
412 497
413=over 4 498=over 4
414 499
415=item x = ecb_mod (m, n) 500=item x = ecb_mod (m, n)
416 501
417Returns the positive remainder of the modulo operation between C<m> and 502Returns C<m> modulo C<n>, which is the same as the positive remainder
503of the division operation between C<m> and C<n>, using floored
418C<n>. Unlike the C modulo operator C<%>, this function ensures that the 504division. Unlike the C remainder operator C<%>, this function ensures that
419return value is always positive). 505the return value is always positive and that the two numbers I<m> and
506I<m' = m + i * n> result in the same value modulo I<n> - in other words,
507C<ecb_mod> implements the mathematical modulo operation, which is missing
508in the language.
420 509
421C<n> must be strictly positive (i.e. C<< >1 >>), while C<m> must be 510C<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 511negatable, that is, both C<m> and C<-m> must be representable in its
423type. 512type (this typically excludes the minimum signed integer value, the same
513limitation as for C</> and C<%> in C).
514
515Current GCC versions compile this into an efficient branchless sequence on
516almost all CPUs.
517
518For example, when you want to rotate forward through the members of an
519array for increasing C<m> (which might be negative), then you should use
520C<ecb_mod>, as the C<%> operator might give either negative results, or
521change direction for negative values:
522
523 for (m = -100; m <= 100; ++m)
524 int elem = myarray [ecb_mod (m, ecb_array_length (myarray))];
424 525
425=back 526=back
426 527
427=head2 UTILITY 528=head2 UTILITY
428 529
429=over 4 530=over 4
430 531
431=item element_count = ecb_array_length (name) [MACRO] 532=item element_count = ecb_array_length (name)
432 533
433Returns the number of elements in the array C<name>. For example: 534Returns the number of elements in the array C<name>. For example:
434 535
435 int primes[] = { 2, 3, 5, 7, 11 }; 536 int primes[] = { 2, 3, 5, 7, 11 };
436 int sum = 0; 537 int sum = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines