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

Comparing cvsroot/libecb/ecb.pod (file contents):
Revision 1.62 by root, Wed Feb 18 20:29:27 2015 UTC vs.
Revision 1.75 by root, Sat Dec 28 08:01:05 2019 UTC

66 66
67The macro C<ECB_PTRSIZE> is defined to the size of a pointer on this 67The macro C<ECB_PTRSIZE> is defined to the size of a pointer on this
68platform (currently C<4> or C<8>) and can be used in preprocessor 68platform (currently C<4> or C<8>) and can be used in preprocessor
69expressions. 69expressions.
70 70
71For C<ptrdiff_t> and C<size_t> use C<stddef.h>. 71For C<ptrdiff_t> and C<size_t> use C<stddef.h>/C<cstddef>.
72 72
73=head2 LANGUAGE/ENVIRONMENT/COMPILER VERSIONS 73=head2 LANGUAGE/ENVIRONMENT/COMPILER VERSIONS
74 74
75All the following symbols expand to an expression that can be tested in 75All the following symbols expand to an expression that can be tested in
76preprocessor instructions as well as treated as a boolean (use C<!!> to 76preprocessor instructions as well as treated as a boolean (use C<!!> to
899899:1999) or any later version, while not claiming to be C++. 899899:1999) or any later version, while not claiming to be C++.
90 90
91Note that later versions (ECB_C11) remove core features again (for 91Note that later versions (ECB_C11) remove core features again (for
92example, variable length arrays). 92example, variable length arrays).
93 93
94=item ECB_C11 94=item ECB_C11, ECB_C17
95 95
96True if the implementation claims to be compliant to C11 (ISO/IEC 96True if the implementation claims to be compliant to C11/C17 (ISO/IEC
979899:2011) or any later version, while not claiming to be C++. 979899:2011, :20187) or any later version, while not claiming to be C++.
98 98
99=item ECB_CPP 99=item ECB_CPP
100 100
101True if the implementation defines the C<__cplusplus__> macro to a true 101True if the implementation defines the C<__cplusplus__> macro to a true
102value, which is typically true for C++ compilers. 102value, which is typically true for C++ compilers.
103 103
104=item ECB_CPP11 104=item ECB_CPP11, ECB_CPP14, ECB_CPP17
105 105
106True if the implementation claims to be compliant to ISO/IEC 14882:2011 106True if the implementation claims to be compliant to C++11/C++14/C++17
107(C++11) or any later version. 107(ISO/IEC 14882:2011, :2014, :2017) or any later version.
108 108
109=item ECB_GCC_VERSION (major, minor) 109=item ECB_GCC_VERSION (major, minor)
110 110
111Expands to a true value (suitable for testing in by the preprocessor) 111Expands to a true value (suitable for testing in by the preprocessor)
112if the compiler used is GNU C and the version is the given version, or 112if the compiler used is GNU C and the version is the given version, or
186it. This is mainly useful to get the contents of a macro in string form, 186it. This is mainly useful to get the contents of a macro in string form,
187e.g.: 187e.g.:
188 188
189 #define SQL_LIMIT 100 189 #define SQL_LIMIT 100
190 sql_exec ("select * from table limit " ECB_STRINGIFY (SQL_LIMIT)); 190 sql_exec ("select * from table limit " ECB_STRINGIFY (SQL_LIMIT));
191
192=item ECB_STRINGIFY_EXPR (expr)
193
194Like C<ECB_STRINGIFY>, but additionally evaluates C<expr> to make sure it
195is a valid expression. This is useful to catch typos or cases where the
196macro isn't available:
197
198 #include <errno.h>
199
200 ECB_STRINGIFY (EDOM); // "33" (on my system at least)
201 ECB_STRINGIFY_EXPR (EDOM); // "33"
202
203 // now imagine we had a typo:
204
205 ECB_STRINGIFY (EDAM); // "EDAM"
206 ECB_STRINGIFY_EXPR (EDAM); // error: EDAM undefined
191 207
192=back 208=back
193 209
194=head2 ATTRIBUTES 210=head2 ATTRIBUTES
195 211
226Similar to C<ecb_unused>, but marks a function, variable or type as 242Similar to C<ecb_unused>, but marks a function, variable or type as
227deprecated. This makes some compilers warn when the type is used. 243deprecated. This makes some compilers warn when the type is used.
228 244
229=item ecb_deprecated_message (message) 245=item ecb_deprecated_message (message)
230 246
231Same as C<ecb_deprecated>, but if possible, supply a diagnostic that is 247Same as C<ecb_deprecated>, but if possible, the specified diagnostic is
232used instead of a generic depreciation message when the object is being 248used instead of a generic depreciation message when the object is being
233used. 249used.
234 250
235=item ecb_inline 251=item ecb_inline
236 252
237Expands either to C<static inline> or to just C<static>, if inline 253Expands either to (a compiler-specific equivalent of) C<static inline> or
238isn't supported. It should be used to declare functions that should be 254to just C<static>, if inline isn't supported. It should be used to declare
239inlined, for code size or speed reasons. 255functions that should be inlined, for code size or speed reasons.
240 256
241Example: inline this function, it surely will reduce codesize. 257Example: inline this function, it surely will reduce codesize.
242 258
243 ecb_inline int 259 ecb_inline int
244 negmul (int a, int b) 260 negmul (int a, int b)
246 return - (a * b); 262 return - (a * b);
247 } 263 }
248 264
249=item ecb_noinline 265=item ecb_noinline
250 266
251Prevent a function from being inlined - it might be optimised away, but 267Prevents a function from being inlined - it might be optimised away, but
252not inlined into other functions. This is useful if you know your function 268not inlined into other functions. This is useful if you know your function
253is rarely called and large enough for inlining not to be helpful. 269is rarely called and large enough for inlining not to be helpful.
254 270
255=item ecb_noreturn 271=item ecb_noreturn
256 272
385=back 401=back
386 402
387=head2 OPTIMISATION HINTS 403=head2 OPTIMISATION HINTS
388 404
389=over 4 405=over 4
406
407=item ECB_OPTIMIZE_SIZE
408
409Is C<1> when the compiler optimizes for size, C<0> otherwise. This symbol
410can also be defined before including F<ecb.h>, in which case it will be
411unchanged.
390 412
391=item bool ecb_is_constant (expr) 413=item bool ecb_is_constant (expr)
392 414
393Returns true iff the expression can be deduced to be a compile-time 415Returns true iff the expression can be deduced to be a compile-time
394constant, and false otherwise. 416constant, and false otherwise.
473 real_reserve_method (size); /* presumably noinline */ 495 real_reserve_method (size); /* presumably noinline */
474 } 496 }
475 497
476=item ecb_assume (cond) 498=item ecb_assume (cond)
477 499
478Try to tell the compiler that some condition is true, even if it's not 500Tries to tell the compiler that some condition is true, even if it's not
479obvious. 501obvious. This is not a function, but a statement: it cannot be used in
502another expression.
480 503
481This can be used to teach the compiler about invariants or other 504This can be used to teach the compiler about invariants or other
482conditions that might improve code generation, but which are impossible to 505conditions that might improve code generation, but which are impossible to
483deduce form the code itself. 506deduce form the code itself.
484 507
505 528
506=item ecb_unreachable () 529=item ecb_unreachable ()
507 530
508This function does nothing itself, except tell the compiler that it will 531This function does nothing itself, except tell the compiler that it will
509never be executed. Apart from suppressing a warning in some cases, this 532never be executed. Apart from suppressing a warning in some cases, this
510function can be used to implement C<ecb_assume> or similar functions. 533function can be used to implement C<ecb_assume> or similar functionality.
511 534
512=item ecb_prefetch (addr, rw, locality) 535=item ecb_prefetch (addr, rw, locality)
513 536
514Tells the compiler to try to prefetch memory at the given C<addr>ess 537Tells the compiler to try to prefetch memory at the given C<addr>ess
515for either reading (C<rw> = 0) or writing (C<rw> = 1). A C<locality> of 538for either reading (C<rw> = 0) or writing (C<rw> = 1). A C<locality> of
517the data will likely be accessed very often, and values in between mean 540the data will likely be accessed very often, and values in between mean
518something... in between. The memory pointed to by the address does not 541something... in between. The memory pointed to by the address does not
519need to be accessible (it could be a null pointer for example), but C<rw> 542need to be accessible (it could be a null pointer for example), but C<rw>
520and C<locality> must be compile-time constants. 543and C<locality> must be compile-time constants.
521 544
545This is a statement, not a function: you cannot use it as part of an
546expression.
547
522An obvious way to use this is to prefetch some data far away, in a big 548An obvious way to use this is to prefetch some data far away, in a big
523array you loop over. This prefetches memory some 128 array elements later, 549array you loop over. This prefetches memory some 128 array elements later,
524in the hope that it will be ready when the CPU arrives at that location. 550in the hope that it will be ready when the CPU arrives at that location.
525 551
526 int sum = 0; 552 int sum = 0;
578 604
579=item bool ecb_is_pot32 (uint32_t x) 605=item bool ecb_is_pot32 (uint32_t x)
580 606
581=item bool ecb_is_pot64 (uint32_t x) 607=item bool ecb_is_pot64 (uint32_t x)
582 608
583Return true iff C<x> is a power of two or C<x == 0>. 609Returns true iff C<x> is a power of two or C<x == 0>.
584 610
585For smaller types then C<uint32_t> you can safely use C<ecb_is_pot32>. 611For smaller types than C<uint32_t> you can safely use C<ecb_is_pot32>.
586 612
587=item int ecb_ld32 (uint32_t x) 613=item int ecb_ld32 (uint32_t x)
588 614
589=item int ecb_ld64 (uint64_t x) 615=item int ecb_ld64 (uint64_t x)
590 616
666 692
667=head2 FLOATING POINT FIDDLING 693=head2 FLOATING POINT FIDDLING
668 694
669=over 4 695=over 4
670 696
671=item ECB_INFINITY 697=item ECB_INFINITY [-UECB_NO_LIBM]
672 698
673Evaluates to positive infinity if supported by the platform, otherwise to 699Evaluates to positive infinity if supported by the platform, otherwise to
674a truly huge number. 700a truly huge number.
675 701
676=item ECB_NON 702=item ECB_NAN [-UECB_NO_LIBM]
677 703
678Evaluates to a quiet NAN if supported by the platform, otherwise to 704Evaluates to a quiet NAN if supported by the platform, otherwise to
679C<ECB_INFINITY>. 705C<ECB_INFINITY>.
680 706
681=item float ecb_ldexpf (float x, int exp) 707=item float ecb_ldexpf (float x, int exp) [-UECB_NO_LIBM]
682 708
683Same as C<ldexpf>, but always available. 709Same as C<ldexpf>, but always available.
684 710
711=item uint32_t ecb_float_to_binary16 (float x) [-UECB_NO_LIBM]
712
685=item uint32_t ecb_float_to_binary32 (float x) [-UECB_NO_LIBM] 713=item uint32_t ecb_float_to_binary32 (float x) [-UECB_NO_LIBM]
686 714
687=item uint64_t ecb_double_to_binary64 (double x) [-UECB_NO_LIBM] 715=item uint64_t ecb_double_to_binary64 (double x) [-UECB_NO_LIBM]
688 716
689These functions each take an argument in the native C<float> or C<double> 717These functions each take an argument in the native C<float> or C<double>
690type and return the IEEE 754 bit representation of it. 718type and return the IEEE 754 bit representation of it (binary16/half,
719binary32/single or binary64/double precision).
691 720
692The bit representation is just as IEEE 754 defines it, i.e. the sign bit 721The bit representation is just as IEEE 754 defines it, i.e. the sign bit
693will be the most significant bit, followed by exponent and mantissa. 722will be the most significant bit, followed by exponent and mantissa.
694 723
695This function should work even when the native floating point format isn't 724This function should work even when the native floating point format isn't
699 728
700On all modern platforms (where C<ECB_STDFP> is true), the compiler should 729On all modern platforms (where C<ECB_STDFP> is true), the compiler should
701be able to optimise away this function completely. 730be able to optimise away this function completely.
702 731
703These functions can be helpful when serialising floats to the network - you 732These functions can be helpful when serialising floats to the network - you
704can serialise the return value like a normal uint32_t/uint64_t. 733can serialise the return value like a normal uint16_t/uint32_t/uint64_t.
705 734
706Another use for these functions is to manipulate floating point values 735Another use for these functions is to manipulate floating point values
707directly. 736directly.
708 737
709Silly example: toggle the sign bit of a float. 738Silly example: toggle the sign bit of a float.
716 745
717=item float ecb_binary16_to_float (uint16_t x) [-UECB_NO_LIBM] 746=item float ecb_binary16_to_float (uint16_t x) [-UECB_NO_LIBM]
718 747
719=item float ecb_binary32_to_float (uint32_t x) [-UECB_NO_LIBM] 748=item float ecb_binary32_to_float (uint32_t x) [-UECB_NO_LIBM]
720 749
721=item double ecb_binary32_to_double (uint64_t x) [-UECB_NO_LIBM] 750=item double ecb_binary64_to_double (uint64_t x) [-UECB_NO_LIBM]
722 751
723The reverse operation of the previous function - takes the bit 752The reverse operation of the previous function - takes the bit
724representation of an IEEE binary16, binary32 or binary64 number and 753representation of an IEEE binary16, binary32 or binary64 number (half,
725converts it to the native C<float> or C<double> format. 754single or double precision) and converts it to the native C<float> or
755C<double> format.
726 756
727This function should work even when the native floating point format isn't 757This function should work even when the native floating point format isn't
728IEEE compliant, of course at a speed and code size penalty, and of course 758IEEE compliant, of course at a speed and code size penalty, and of course
729also within reasonable limits (it tries to convert normals and denormals, 759also within reasonable limits (it tries to convert normals and denormals,
730and might be lucky for infinities, and with extraordinary luck, also for 760and might be lucky for infinities, and with extraordinary luck, also for
731negative zero). 761negative zero).
732 762
733On all modern platforms (where C<ECB_STDFP> is true), the compiler should 763On all modern platforms (where C<ECB_STDFP> is true), the compiler should
734be able to optimise away this function completely. 764be able to optimise away this function completely.
765
766=item uint16_t ecb_binary32_to_binary16 (uint32_t x)
767
768=item uint32_t ecb_binary16_to_binary32 (uint16_t x)
769
770Convert a IEEE binary32/single precision to binary16/half format, and vice
771versa, handling all details (round-to-nearest-even, subnormals, infinity
772and NaNs) correctly.
773
774These are functions are available under C<-DECB_NO_LIBM>, since
775they do not rely on the platform floating point format. The
776C<ecb_float_to_binary16> and C<ecb_binary16_to_float> functions are
777usually what you want.
735 778
736=back 779=back
737 780
738=head2 ARITHMETIC 781=head2 ARITHMETIC
739 782
820dependencies on the math library (usually called F<-lm>) - these are 863dependencies on the math library (usually called F<-lm>) - these are
821marked with [-UECB_NO_LIBM]. 864marked with [-UECB_NO_LIBM].
822 865
823=back 866=back
824 867
868=head1 UNDOCUMENTED FUNCTIONALITY
825 869
870F<ecb.h> is full of undocumented functionality as well, some of which is
871intended to be internal-use only, some of which we forgot to document, and
872some of which we hide because we are not sure we will keep the interface
873stable.
874
875While you are welcome to rummage around and use whatever you find useful
876(we can't stop you), keep in mind that we will change undocumented
877functionality in incompatible ways without thinking twice, while we are
878considerably more conservative with documented things.
879
880=head1 AUTHORS
881
882C<libecb> is designed and maintained by:
883
884 Emanuele Giaquinta <e.giaquinta@glauco.it>
885 Marc Alexander Lehmann <schmorp@schmorp.de>
886
887

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines