source: libcfa/prelude/builtins.c @ bad15f7

Last change on this file since bad15f7 was 8e4f34e, checked in by Michael Brooks <mlbrooks@…>, 8 days ago

Allow builtin ++ from += overloads, and similar, to work on a type witout a parameterless constructor

  • Property mode set to 100644
File size: 8.4 KB
Line 
1//
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.
6//
7// builtins.c --
8//
9// Author           : Peter A. Buhr
10// Created On       : Fri Jul 21 16:21:03 2017
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sun Dec  8 09:01:23 2024
13// Update Count     : 149
14//
15
16#define __cforall_builtins__
17
18// Type that wraps a pointer and a destructor-like function - used in generating implicit destructor calls for struct
19// members in user-defined functions. Note: needs to occur early, because it is used to generate destructor calls during
20// code generation
21forall( T & )
22struct __Destructor {
23        T * object;
24        void (*dtor)( T * );
25};
26
27// Defined destructor in the case that non-generated code wants to use __Destructor.
28forall( T & )
29static inline void ^?{}( __Destructor(T) & x ) {
30        if ( x.object && x.dtor ) {
31                x.dtor( x.object );
32        }
33}
34
35// Easy interface into __Destructor's destructor for easy codegen purposes.
36extern "C" {
37        forall( T & )
38        static inline void __destroy_Destructor( __Destructor(T) * dtor ) {
39                ^(*dtor){};
40        }
41}
42
43// exception implementation
44
45typedef unsigned long long __cfaabi_abi_exception_type_t;
46
47#include "../src/virtual.h"
48#include "../src/exception.h"
49
50void exit( int status, const char fmt[], ... ) __attribute__ (( format( printf, 2, 3 ), __nothrow__, __leaf__, __noreturn__ ));
51void abort( const char fmt[], ... ) __attribute__ (( format( printf, 1, 2 ), __nothrow__, __leaf__, __noreturn__ ));
52
53forall( T & )
54static inline T & identity( T & i ) {
55        return i;
56}
57
58// generator support
59struct generator$ {
60        inline int;
61};
62
63static inline void  ?{}( generator$ & this ) { ((int&)this) = 0; }
64static inline void ^?{}( generator$ & ) {}
65
66forall( T & )
67trait is_generator {
68      void main( T & this );
69      generator$ * get_generator( T & this );
70};
71
72forall( T & | is_generator( T ) )
73static inline T & resume( T & gen ) {
74        main( gen );
75        return gen;
76}
77
78// Nearly "otype," except no parameterless constructor.
79// All you need, to store values in variables and to pass and return by value.
80// Many cases of
81//     forall( T ...
82// can be "simplified" to
83//     forall( T& | is_value(T) ...
84forall( T* )
85trait is_value {
86        void ?{}( T&, T );
87        T ?=?( T&, T );
88        void ^?{}( T& );
89};
90
91// implicit increment, decrement if += defined, and implicit not if != defined
92
93// C11 reference manual Section 6.5.16 (page 101): "An assignment expression has the value of the left operand after the
94// assignment, but is not an lvalue." Hence, return a value not a reference.
95static inline {
96        forall( T& | is_value(T) | { T ?+=?( T &, one_t ); } )
97        T ++?( T & x ) { return x += 1; }
98
99        forall( T& | is_value(T) | { T ?+=?( T &, one_t ); } )
100        T ?++( T & x ) { T tmp = x; x += 1; return tmp; }
101
102        forall( T& | is_value(T) | { T ?-=?( T &, one_t ); } )
103        T --?( T & x ) { return x -= 1; }
104
105        forall( T& | is_value(T) | { T ?-=?( T &, one_t ); } )
106        T ?--( T & x ) { T tmp = x; x -= 1; return tmp; }
107
108        forall( T& | is_value(T) | { int ?!=?( T, zero_t ); } )
109        int !?( T & x ) { return !( x != 0 ); }
110} // distribution
111
112// universal typed pointer constant
113static inline forall( DT & ) DT * intptr( uintptr_t addr ) { return (DT *)addr; }
114static inline forall( ftype FT ) FT * intptr( uintptr_t addr ) { return (FT *)addr; }
115
116#if defined(__SIZEOF_INT128__)
117// constructor for 128-bit numbers (all constants are unsigned as +/- are operators)
118static inline void ?{}( unsigned int128 & this, unsigned long int h, unsigned long int l ) {
119        this = (unsigned int128)h << 64 | (unsigned int128)l;
120} // ?{}
121#endif // __SIZEOF_INT128__
122
123
124// exponentiation operator implementation
125
126extern "C" {
127        float powf( float x, float y );
128        double pow( double x, double y );
129        long double powl( long double x, long double y );
130        float _Complex cpowf( float _Complex x, _Complex float z );
131        double _Complex cpow( double _Complex x, _Complex double z );
132        long double _Complex cpowl( long double _Complex x, _Complex long double z );
133} // extern "C"
134
135static inline {                                                                                 // wrappers
136        float ?\?( float x, float y ) { return powf( x, y ); }
137        double ?\?( double x, double y ) { return pow( x, y ); }
138        long double ?\?( long double x, long double y ) { return powl( x, y ); }
139        float _Complex ?\?( float _Complex x, _Complex float y ) { return cpowf( x, y ); }
140        double _Complex ?\?( double _Complex x, _Complex double y ) { return cpow( x, y ); }
141        long double _Complex ?\?( long double _Complex x, _Complex long double y ) { return cpowl( x, y ); }
142} // distribution
143
144int ?\?( int x, unsigned int y );
145long int ?\?( long int x, unsigned long int y );
146long long int ?\?( long long int x, unsigned long long int y );
147// unsigned computation may be faster and larger
148unsigned int ?\?( unsigned int x, unsigned int y );
149unsigned long int ?\?( unsigned long int x, unsigned long int y );
150unsigned long long int ?\?( unsigned long long int x, unsigned long long int y );
151
152forall( OT | { void ?{}( OT & this, one_t ); OT ?*?( OT, OT ); } ) {
153        OT ?\?( OT x, unsigned int y );
154        OT ?\?( OT x, unsigned long int y );
155        OT ?\?( OT x, unsigned long long int y );
156} // distribution
157
158static inline {
159        int ?\=?( int & x, unsigned int y ) { x = x \ y; return x; }
160        long int ?\=?( long int & x, unsigned long int y ) { x = x \ y; return x; }
161        long long int ?\=?( long long int & x, unsigned long long int y ) { x = x \ y; return x; }
162        unsigned int ?\=?( unsigned int & x, unsigned int y ) { x = x \ y; return x; }
163        unsigned long int ?\=?( unsigned long int & x, unsigned long int y ) { x = x \ y; return x; }
164        unsigned long long int ?\=?( unsigned long long int & x, unsigned long long int y ) { x = x \ y; return x; }
165} // distribution
166
167
168// enumeration implementation
169
170forall( E ) trait Bounded {
171        E lowerBound( void );
172        E upperBound( void );
173};
174
175forall( E | Bounded( E ) ) trait Serial {
176        int fromInstance( E e );
177        E fromInt_unsafe( int i );
178        E succ_unsafe( E e );
179        E pred_unsafe( E e );
180};
181
182static inline forall( E | Serial( E ) ) {
183        E fromInt( int i );
184        E succ( E e );
185        E pred( E e );
186        int Countof( E );
187}
188
189forall( E ) trait CfaEnum {
190        const char * label( E e );
191        int posn( E e );
192};
193
194forall( E, V | CfaEnum( E ) ) trait TypedEnum {
195        V value( E e );
196};
197
198static inline {
199forall( E | Serial( E ) ) {
200        E fromInt( int i ) {
201                E upper = upperBound();
202                E lower = lowerBound();
203                // It is okay to overflow as overflow will be theoretically caught by the other bound
204                if ( i < fromInstance( lower ) || i > fromInstance( upper ) )
205                        abort( "call to fromInt has index %d outside of enumeration range %d-%d.",
206                                   i, fromInstance( lower ), fromInstance( upper ) );
207                return fromInt_unsafe( i );
208        }
209
210        E succ( E e ) {
211                E upper = upperBound();
212                if ( fromInstance( e ) >= fromInstance( upper ) )
213                        abort( "call to succ() exceeds enumeration upper bound of %d.", fromInstance( upper ) );
214                return succ_unsafe( e );
215        }
216
217        E pred( E e ) {
218                E lower = lowerBound();
219                if ( fromInstance( e ) <= fromInstance( lower ) )
220                        abort( "call to pred() exceeds enumeration lower bound of %d.", fromInstance( lower ) );
221                return pred_unsafe( e );
222        }
223
224        int Countof( E ) {
225                E upper = upperBound();
226                E lower = lowerBound();
227                return fromInstance( upper ) + fromInstance( lower ) + 1;
228        }
229}
230}
231
232static inline
233forall( E | CfaEnum( E ) | Serial( E ) ) {
234        int ?==?( E l, E r ) { return posn( l ) == posn( r ); } // relational operators
235        int ?!=?( E l, E r ) { return posn( l ) != posn( r ); }
236        int ?<?( E l, E r ) { return posn( l ) < posn( r ); }
237        int ?<=?( E l, E r ) { return posn( l ) <= posn( r ); }
238        int ?>?( E l, E r ) { return posn( l ) > posn( r ); }
239        int ?>=?( E l, E r ) { return posn( l ) >= posn( r ); }
240
241        E ++?( E & l ) {                                                                        // increment operators
242                int pos = posn( l );
243                l = fromInt_unsafe( pos + 1 );
244                return l;
245        }
246
247        E --?( E & l ) {
248                int pos = posn( l );
249                l = fromInt_unsafe( pos - 1 );
250                return l;
251        }
252
253        E ?+=?( E & l, one_t ) {
254                int pos = posn( l );
255                l = fromInt_unsafe( pos + 1 );
256                return l;
257        }
258
259        E ?-=?( E & l, one_t ) {
260                int pos = posn( l );
261                l = fromInt_unsafe( pos - 1 );
262                return l;
263        }
264
265        E ?+=?( E & l, int i ) {
266                int pos = posn( l );
267                l = fromInt_unsafe( pos + i );
268                return l;
269        }
270
271        E ?-=?( E & l, int i ) {
272                int pos = posn( l );
273                l = fromInt_unsafe( pos - i );
274                return l;
275        }
276
277        E ?++( E & l ) {
278                int pos = posn( l );
279                l = fromInt_unsafe( pos + 1 );
280                return fromInt_unsafe( pos );
281        }
282
283        E ?--( E & l ) {
284                int pos = posn( l );
285                l = fromInt_unsafe( pos - 1 );
286                return fromInt_unsafe( pos );
287        }
288}
289
290// Local Variables: //
291// mode: c //
292// tab-width: 4 //
293// End: //
Note: See TracBrowser for help on using the repository browser.