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

Comparing libecb/ecb.pod (file contents):
Revision 1.39 by root, Sat Dec 10 11:58:38 2011 UTC vs.
Revision 1.43 by root, Tue May 29 14:09:49 2012 UTC

53C<uint32_t>, then the corresponding function works only with that type. If 53C<uint32_t>, then the corresponding function works only with that type. If
54only a generic name is used (C<expr>, C<cond>, C<value> and so on), then 54only a generic name is used (C<expr>, C<cond>, C<value> and so on), then
55the corresponding function relies on C to implement the correct types, and 55the corresponding function relies on C to implement the correct types, and
56is usually implemented as a macro. Specifically, a "bool" in this manual 56is usually implemented as a macro. Specifically, a "bool" in this manual
57refers to any kind of boolean value, not a specific type. 57refers to any kind of boolean value, not a specific type.
58
59=head2 TYPES / TYPE SUPPORT
60
61ecb.h makes sure that the following types are defined (in the expected way):
62
63 int8_t uint8_t int16_t uint16_t
64 int32_t uint32_t int64_t uint64_t
65 intptr_t uintptr_t ptrdiff_t
66
67The macro C<ECB_PTRSIZE> is defined to the size of a pointer on this
68platform (currently C<4> or C<8>).
69
70=head2 LANGUAGE/COMPILER VERSIONS
71
72=over 4
73
74=item ECB_C99
75
76Expands to a true value (suitable for testing in by the preprocessor)
77if the environment claims to be C99 compliant.
78
79=item ECB_C11
80
81Expands to a true value (suitable for testing in by the preprocessor)
82if the environment claims to be C11 compliant.
83
84=item ECB_GCC_VERSION(major,minor)
85
86Expands to a true value (suitable for testing in by the preprocessor)
87if the compiler used is GNU C and the version is the givne version, or
88higher.
89
90This macro tries to return false on compilers that claim to be GCC
91compatible but aren't.
92
93=back
58 94
59=head2 GCC ATTRIBUTES 95=head2 GCC ATTRIBUTES
60 96
61A major part of libecb deals with GCC attributes. These are additional 97A major part of libecb deals with GCC attributes. These are additional
62attributes that you can assign to functions, variables and sometimes even 98attributes that you can assign to functions, variables and sometimes even
425For example: 461For example:
426 462
427 ecb_ctz32 (3) = 0 463 ecb_ctz32 (3) = 0
428 ecb_ctz32 (6) = 1 464 ecb_ctz32 (6) = 1
429 465
466=item bool ecb_is_pot32 (uint32_t x)
467
468=item bool ecb_is_pot64 (uint32_t x)
469
470Return true iff C<x> is a power of two or C<x == 0>.
471
472For smaller types then C<uint32_t> you can safely use C<ecb_is_pot32>.
473
430=item int ecb_ld32 (uint32_t x) 474=item int ecb_ld32 (uint32_t x)
431 475
432=item int ecb_ld64 (uint64_t x) 476=item int ecb_ld64 (uint64_t x)
433 477
434Returns the index of the most significant bit set in C<x>, or the number 478Returns the index of the most significant bit set in C<x>, or the number
562 for (i = 0; i < ecb_array_length (primes); i++) 606 for (i = 0; i < ecb_array_length (primes); i++)
563 sum += primes [i]; 607 sum += primes [i];
564 608
565=back 609=back
566 610
611=head2 SYMBOLS GOVERNING COMPILATION OF ECB.H ITSELF
567 612
613These symbols need to be defined before including F<ecb.h> the first time.
614
615=over 4
616
617=item ECB_NO_THRADS
618
619If F<ecb.h> is never used from multiple threads, then this symbol can
620be defined, in which case memory fences (and similar constructs) are
621completely removed, leading to more efficient code and fewer dependencies.
622
623Setting this symbol to a true value implies C<ECB_NO_SMP>.
624
625=item ECB_NO_SMP
626
627The weaker version of C<ECB_NO_THREADS> - if F<ecb.h> is used from
628multiple threads, but never concurrently (e.g. if the system the program
629runs on has only a single CPU with a single core, no hyperthreading and so
630on), then this symbol can be defined, leading to more efficient code and
631fewer dependencies.
632
633=back
634
635

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines