source: src/prelude/builtins.c @ d56ca354

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since d56ca354 was 169d944, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

update abort, remove abortf, add printing exit

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[a5f0529]1//
[a1edafa]2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
[a5f0529]6//
7// builtins.c --
8//
[a1edafa]9// Author           : Peter A. Buhr
10// Created On       : Fri Jul 21 16:21:03 2017
[169d944]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Feb  8 12:47:59 2018
13// Update Count     : 19
[a5f0529]14//
[a1edafa]15
16// exception implementation
17
[36982fc]18typedef unsigned long long __cfaabi_abi_exception_type_t;
[fa4805f]19
[a5f0529]20#include "../libcfa/virtual.h"
[fa4805f]21#include "../libcfa/exception.h"
[a1edafa]22
[169d944]23void exit( int status, const char fmt[], ... ) __attribute__ (( format(printf, 2, 3), __nothrow__, __leaf__, __noreturn__ ));
24void abort ( const char fmt[], ... ) __attribute__ (( format(printf, 1, 2), __nothrow__, __leaf__, __noreturn__ ));
25
[a1edafa]26// exponentiation operator implementation
27
28extern "C" {
29        float powf( float x, float y );
30        double pow( double x, double y );
31        long double powl( long double x, long double y );
32        float _Complex cpowf( float _Complex x, _Complex float z );
33        double _Complex cpow( double _Complex x, _Complex double z );
34        long double _Complex cpowl( long double _Complex x, _Complex long double z );
35} // extern "C"
36
37static inline float ?\?( float x, float y ) { return powf( x, y ); }
38static inline double ?\?( double x, double y ) { return pow( x, y ); }
39static inline long double ?\?( long double x, long double y ) { return powl( x, y ); }
40static inline float _Complex ?\?( float _Complex x, _Complex float y ) { return cpowf(x, y ); }
41static inline double _Complex ?\?( double _Complex x, _Complex double y ) { return cpow( x, y ); }
42static inline long double _Complex ?\?( long double _Complex x, _Complex long double y ) { return cpowl( x, y ); }
43
[fe97a7d8]44static inline long int ?\?( long int ep, unsigned long int y ) { // disallow negative exponent
[a1edafa]45        if ( y == 0 ) return 1;                                                         // base case
[fe97a7d8]46    if ( ep == 2 ) return ep << (y - 1);                                // special case, positive shifting only
47    typeof( ep ) op = 1;                                                                // accumulate odd product
[a1edafa]48    for ( ; y > 1; y >>= 1 ) {                                                  // squaring exponentiation, O(log2 y)
[fe97a7d8]49                if ( (y & 1) == 1 ) op *= ep;                                   // odd ?
50                ep *= ep;
51        } // for
52    return ep * op;
[a1edafa]53} // ?\?
54
[fe97a7d8]55// FIX ME, cannot resolve the "T op = 1".
[a1edafa]56
57// static inline forall( otype T | { void ?{}( T * this, one_t ); T ?*?( T, T ); } )
[fe97a7d8]58// T ?\?( T ep, unsigned long int y ) {
[a1edafa]59//     if ( y == 0 ) return 1;
[fe97a7d8]60//     T op = 1;
[a1edafa]61//     for ( ; y > 1; y >>= 1 ) {                                                       // squaring exponentiation, O(log2 y)
[fe97a7d8]62//              if ( (y & 1) == 1 ) op = op * ep;                               // odd ?
63//              ep = ep * ep;
[a1edafa]64//     } // for
[fe97a7d8]65//     return ep * op;
[a1edafa]66// } // ?\?
67
68// unsigned computation may be faster and larger
[fe97a7d8]69static inline unsigned long int ?\?( unsigned long int ep, unsigned long int y ) { // disallow negative exponent
[a1edafa]70        if ( y == 0 ) return 1;                                                         // base case
[fe97a7d8]71    if ( ep == 2 ) return ep << (y - 1);                                // special case, positive shifting only
72    typeof( ep ) op = 1;                                                                // accumulate odd product
[a1edafa]73    for ( ; y > 1; y >>= 1 ) {                                                  // squaring exponentiation, O(log2 y)
[fe97a7d8]74                if ( (y & 1) == 1 ) op *= ep;                                   // odd ?
75                ep *= ep;
76        } // for
77    return ep * op;
[a1edafa]78} // ?\?
79
[fe97a7d8]80static inline double ?\?( long int x, signed long int y ) {     // allow negative exponent
[a1edafa]81    if ( y >=  0 ) return (double)(x \ (unsigned long int)y);
82    else return 1.0 / x \ (unsigned int)(-y);
83} // ?\?
84
[36982fc]85// FIXME (x \ (unsigned long int)y) relies on X ?\?(T, unsigned long) a function that is neither
86// defined, nor passed as an assertion parameter. Without user-defined conversions, cannot specify
87// X as a type that casts to double, yet it doesn't make sense to write functions with that type
[e472d54]88// signature where X is double.
89
90// static inline forall( otype T | { void ?{}( T & this, one_t ); T ?*?( T, T ); double ?/?( double, T ); } )
91// double ?\?( T x, signed long int y ) {
92//     if ( y >=  0 ) return (double)(x \ (unsigned long int)y);
93//     else return 1.0 / x \ (unsigned long int)(-y);
94// } // ?\?
[a1edafa]95
[1ae06fa]96static inline long int ?\=?( long int & x, unsigned long int y ) { x = x \ y; return x; }
97static inline unsigned long int ?\=?( unsigned long int & x, unsigned long int y ) { x = x \ y; return x; }
98static inline int ?\=?( int & x, unsigned long int y ) { x = x \ y; return x; }
99static inline unsigned int ?\=?( unsigned int & x, unsigned long int y ) { x = x \ y; return x; }
[a1edafa]100
101// Local Variables: //
102// mode: c //
103// tab-width: 4 //
104// End: //
Note: See TracBrowser for help on using the repository browser.