This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: V3 PATCH: numeric_limits<> support, fix PR/3865


Richard Henderson wrote:

>   #define digits10_for_int_type(TYPE)                           \
>     (sizeof (TYPE) * __CHAR_BIT__ == 8 ? 2                      \
>      : sizeof (TYPE) * __CHAR_BIT__ == 16 ? 4                   \
>      : sizeof (TYPE) * __CHAR_BIT__ == 32 ? 9                   \
>      : sizeof (TYPE) * __CHAR_BIT__ == 64 ? 18 + ((TYPE)-1 > 0) \
>      : /* error */ 0)
> 
>   static const int digits10 = digits10_for_int_type (wchar_t);
surely something based on the following, culled from elsewhere
would be more concise?
	// ln (2)/ln (10) * 2^12 == 1233.0188
	#define DECIMALFORBITS(n) (((n) * 1233 + 4095) >> 12)
	#define DECIMALINBITS(n) (((n) * 1233) >> 12)
leads to
#define digits10_for_int_type(TYPE) \
	(((sizeof (TYPE) * __CHAR_BIT__ - ((TYPE)-1 < 0)) * 1233) >> 12)

nathan
-- 
Dr Nathan Sidwell   ::   http://www.codesourcery.com   ::   CodeSourcery LLC
         'But that's a lie.' - 'Yes it is. What's your point?'
nathan@codesourcery.com : http://www.cs.bris.ac.uk/~nathan/ : nathan@acm.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]