source: libcfa/src/math.cfa @ 108b2c7

Last change on this file since 108b2c7 was 108b2c7, checked in by Andrew Beach <ajbeach@…>, 3 weeks ago

Moved the non-trivial bodies of the power (exponental) functions out of the prelude and into the library. They have caused some issues in debugging there.

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[108b2c7]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// math.cpp --
8//
9// Author           : Andrew Beach
10// Created On       : Mon Nov 25 16:20:00 2024
11// Last Modified By : Andrew Beach
12// Created On       : Mon Nov 27 15:11:00 2024
13// Update Count     : 0
14//
15
16#include "math.hfa"
17
18#include <limits.h>
19
20#pragma GCC visibility push(default)
21
22// Implementation of power functions (from the prelude):
23
24#define __CFA_EXP__() \
25        if ( y == 0 ) return 1;                             /* convention */ \
26        __CFA_EXP_INT__(                                    /* special cases for integral types */ \
27                if ( x == 1 ) return 1;                         /* base case */ \
28                if ( x == 2 ) return x << (y - 1);              /* positive shifting */ \
29                if ( y >= sizeof(y) * CHAR_BIT ) return 0;      /* immediate overflow, negative exponent > 2^size-1 */ \
30        ) \
31        typeof(x) op = 1;                                   /* accumulate odd product */ \
32        typeof(x) w = x; /* FIX-ME: possible bug in the box pass changing value argument through parameter */ \
33        for ( ; y > 1; y >>= 1 ) {                          /* squaring exponentiation, O(log2 y) */ \
34                if ( (y & 1) == 1 ) op = op * w;                /* odd ? */ \
35                w = w * w; \
36        } \
37        return w * op
38#define __CFA_EXP_INT__(...) __VA_ARGS__
39
40int ?\?( int x, unsigned int y ) { __CFA_EXP__(); }
41long int ?\?( long int x, unsigned long int y ) { __CFA_EXP__(); }
42long long int ?\?( long long int x, unsigned long long int y ) { __CFA_EXP__(); }
43unsigned int ?\?( unsigned int x, unsigned int y ) { __CFA_EXP__(); }
44unsigned long int ?\?( unsigned long int x, unsigned long int y ) { __CFA_EXP__(); }
45unsigned long long int ?\?( unsigned long long int x, unsigned long long int y ) { __CFA_EXP__(); }
46
47#undef __CFA_EXP_INT__
48#define __CFA_EXP_INT__(...)
49
50forall( OT | { void ?{}( OT & this, one_t ); OT ?*?( OT, OT ); } ) {
51        OT ?\?( OT x, unsigned int y ) { __CFA_EXP__(); }
52        OT ?\?( OT x, unsigned long int y ) { __CFA_EXP__(); }
53        OT ?\?( OT x, unsigned long long int y ) { __CFA_EXP__(); }
54} // distribution
55
56#undef __CFA_EXP_INT__
57#undef __CFA_EXP__
Note: See TracBrowser for help on using the repository browser.