1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-08 18:02:23 +05:30
gists/c-programming/math/opt_int_div.h

53 lines
2.6 KiB
C
Raw Normal View History

2024-02-24 22:35:25 +05:30
/*
* opt_int_div.h
*
* "Optimized integer division": A header-only library
2024-02-25 03:39:36 +05:30
*
2024-04-22 02:38:49 +05:30
* NOTE: This code will work only on a computer that uses bits.
*
2024-02-24 22:35:25 +05:30
* Author: Intel A80486DX2-66
2024-04-26 01:46:39 +05:30
* License: Unlicense
2024-02-24 22:35:25 +05:30
*/
#ifndef _OPT_INT_DIV_H
#define _OPT_INT_DIV_H
2024-02-24 22:35:25 +05:30
#include <math.h>
#include <stdint.h>
// helper functions
#define INT_BIN_DIV(a, b) ((a) >> (uintmax_t) log2l((b))) /* NOTE: log2l may
slow things down */
#define INT_DIV_NEG_RESULT_SIGN(a, b) \
/* the sign is negative only if one of the numbers is negative */ \
(((a) < 0) != ((b) < 0)) /* 1 if sign is negative else 0 */
2024-02-24 22:35:25 +05:30
#define INT_ABS(x) ((x) < 0 ? -(x) : (x))
#define OPT_INT_DIV_TEST(b) \
/* check if b is a power of 2 */ \
/* */ \
/* condition: ( X & (X - 1) ) == 0 */ \
((b) & ((b) - 1)) == 0
2024-02-24 22:35:25 +05:30
// the main macro
#define OPT_INT_DIV(a, b) \
( /* beginning */ \
/* check for equality of abs(a) and abs(b) */ \
2024-02-24 22:35:25 +05:30
INT_ABS((a)) == INT_ABS((b)) ? \
/* the result is +/-1 */ \
2024-02-24 22:35:25 +05:30
(INT_DIV_NEG_RESULT_SIGN(a, b) ? -1 : 1) : ( \
\
/* check if abs(a) < abs(b) */ \
INT_ABS((a)) < INT_ABS((b)) ? \
/* if abs(a) < abs(b), then the result is less than 1 (i.e., 0) */\
0 : ( \
\
OPT_INT_DIV_TEST((b)) ? \
(INT_DIV_NEG_RESULT_SIGN(a, b) ? \
-INT_BIN_DIV(INT_ABS((a)), INT_ABS((b))) \
2024-02-24 22:35:25 +05:30
: \
INT_BIN_DIV(INT_ABS((a)), INT_ABS((b)))) \
2024-02-24 22:35:25 +05:30
: \
((a) / (b)) )) \
2024-02-24 22:35:25 +05:30
) /* end */
#endif /* _OPT_INT_DIV_H */