source: src/libcfa/stdlib.c@ 63c0dbf

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since 63c0dbf was 53ba273, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

switch from std=c99 to std=gnu99, update latex macros, refrat and extend user manual, update limits/iostream/fstream, add rational numbers

  • Property mode set to 100644
File size: 8.8 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// algorithm.c --
8//
9// Author : Peter A. Buhr
10// Created On : Thu Jan 28 17:10:29 2016
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Wed Mar 30 10:48:41 2016
13// Update Count : 149
14//
15
16#include "stdlib"
17
18//---------------------------------------
19
20extern "C" {
21#define _XOPEN_SOURCE 600 // posix_memalign, *rand48
22#include <stdlib.h> // malloc, free, calloc, realloc, memalign, posix_memalign, bsearch
23#include <string.h> // memset
24#include <malloc.h> // malloc_usable_size
25#include <math.h> // fabsf, fabs, fabsl
26#include <complex.h> // _Complex_I, cabsf, cabs, cabsl
27} // extern "C"
28
29forall( otype T ) T * malloc( void ) {
30 printf( "malloc1\n" );
31 return (T *)malloc( sizeof(T) );
32} // malloc
33forall( otype T ) T * malloc( size_t size ) {
34 printf( "malloc2\n" );
35 return (T *)(void *)malloc( size );
36} // malloc
37forall( otype T ) T * malloc( char fill ) {
38 printf( "malloc3\n" );
39 T * ptr = (T *)malloc( sizeof(T) );
40 return memset( ptr );
41} // malloc
42
43forall( otype T ) T * calloc( size_t size ) {
44 printf( "calloc\n" );
45 return (T *)calloc( size, sizeof(T) );
46} // calloc
47
48forall( otype T ) T * realloc( T * ptr, size_t size ) {
49 printf( "realloc1\n" );
50 return (T *)(void *)realloc( (void *)ptr, size );
51} // realloc
52forall( otype T ) T * realloc( T * ptr, size_t size, unsigned char fill ) {
53 printf( "realloc2\n" );
54 char * nptr = (T *)(void *)realloc( (void *)ptr, size );
55 size_t unused = malloc_usable_size( nptr );
56 memset( nptr + size - unused, (int)fill, unused ); // initialize any new storage
57 return nptr;
58} // realloc
59
60forall( otype T ) T * malloc( T * ptr, size_t size ) {
61 printf( "malloc4\n" );
62 return (T *)realloc( ptr, size );
63} // malloc
64forall( otype T ) T * malloc( T * ptr, size_t size, unsigned char fill ) {
65 printf( "malloc5\n" );
66 return (T *)realloc( ptr, size, fill );
67} // malloc
68
69forall( otype T ) T * aligned_alloc( size_t alignment ) {
70 printf( "aligned_alloc\n" );
71 return (T *)memalign( alignment, sizeof(T) );
72} // aligned_alloc
73
74forall( otype T ) T * memalign( size_t alignment ) {
75 printf( "memalign\n" );
76 return (T *)memalign( alignment, sizeof(T) );
77} // memalign
78
79forall( otype T ) int posix_memalign( T ** ptr, size_t alignment ) {
80 printf( "posix_memalign\n" );
81 return posix_memalign( (void **)ptr, alignment, sizeof(T) );
82} // posix_memalign
83
84forall( otype T ) T * memset( T * ptr, unsigned char fill ) { // use default value '\0' for fill
85 printf( "memset1\n" );
86 return (T *)memset( ptr, (int)fill, malloc_usable_size( ptr ) );
87} // memset
88forall( otype T ) T * memset( T * ptr ) { // remove when default value available
89 printf( "memset2\n" );
90 return (T *)memset( ptr, 0, malloc_usable_size( ptr ) );
91} // memset
92
93//---------------------------------------
94
95int ato( const char * ptr ) {
96 int i;
97 if ( sscanf( ptr, "%d", &i ) == EOF ) {} // check return code
98 return i;
99}
100unsigned int ato( const char * ptr ) {
101 unsigned int ui;
102 if ( sscanf( ptr, "%u", &ui ) == EOF ) {} // check return code
103 return ui;
104}
105long int ato( const char * ptr ) {
106 long int li;
107 if ( sscanf( ptr, "%ld", &li ) == EOF ) {} // check return code
108 return li;
109}
110unsigned long int ato( const char * ptr ) {
111 unsigned long int uli;
112 if ( sscanf( ptr, "%lu", &uli ) == EOF ) {} // check return code
113 return uli;
114}
115long long int ato( const char * ptr ) {
116 long long int lli;
117 if ( sscanf( ptr, "%lld", &lli ) == EOF ) {} // check return code
118 return lli;
119}
120unsigned long long int ato( const char * ptr ) {
121 unsigned long long int ulli;
122 if ( sscanf( ptr, "%llu", &ulli ) == EOF ) {} // check return code
123 return ulli;
124}
125
126float ato( const char * ptr ) {
127 float f;
128 if ( sscanf( ptr, "%f", &f ) == EOF ) {} // check return code
129 return f;
130}
131double ato( const char * ptr ) {
132 double d;
133 if ( sscanf( ptr, "%lf", &d ) == EOF ) {} // check return code
134 return d;
135}
136long double ato( const char * ptr ) {
137 long double ld;
138 if ( sscanf( ptr, "%Lf", &ld ) == EOF ) {} // check return code
139 return ld;
140}
141
142float _Complex ato( const char * ptr ) {
143 float re, im;
144 if ( sscanf( ptr, "%g%gi", &re, &im ) == EOF ) {} // check return code
145 return re + im * _Complex_I;
146}
147double _Complex ato( const char * ptr ) {
148 double re, im;
149 if ( sscanf( ptr, "%lf%lfi", &re, &im ) == EOF ) {} // check return code
150 return re + im * _Complex_I;
151}
152long double _Complex ato( const char * ptr ) {
153 long double re, im;
154 if ( sscanf( ptr, "%Lf%Lfi", &re, &im ) == EOF ) {} // check return code
155 return re + im * _Complex_I;
156}
157
158int strto( const char * sptr, char ** eptr, int base ) {
159 return (int)strtol( sptr, eptr, base );
160}
161unsigned int strto( const char * sptr, char ** eptr, int base ) {
162 return (unsigned int)strtoul( sptr, eptr, base );
163}
164long int strto( const char * sptr, char ** eptr, int base ) {
165 return strtol( sptr, eptr, base );
166}
167unsigned long int strto( const char * sptr, char ** eptr, int base ) {
168 return strtoul( sptr, eptr, base );
169}
170long long int strto( const char * sptr, char ** eptr, int base ) {
171 return strtoll( sptr, eptr, base );
172}
173unsigned long long int strto( const char * sptr, char ** eptr, int base ) {
174 return strtoull( sptr, eptr, base );
175}
176
177float strto( const char * sptr, char ** eptr ) {
178 return strtof( sptr, eptr );
179}
180double strto( const char * sptr, char ** eptr ) {
181 return strtod( sptr, eptr );
182}
183long double strto( const char * sptr, char ** eptr ) {
184 return strtold( sptr, eptr );
185}
186
187float _Complex strto( const char * sptr, char ** eptr ) {
188 float re, im;
189 re = strtof( sptr, eptr );
190 if ( sptr == *eptr ) return 0.0;
191 im = strtof( sptr, eptr );
192 if ( sptr == *eptr ) return 0.0;
193 return re + im * _Complex_I;
194}
195double _Complex strto( const char * sptr, char ** eptr ) {
196 double re, im;
197 re = strtod( sptr, eptr );
198 if ( sptr == *eptr ) return 0.0;
199 im = strtod( sptr, eptr );
200 if ( sptr == *eptr ) return 0.0;
201 return re + im * _Complex_I;
202}
203long double _Complex strto( const char * sptr, char ** eptr ) {
204 long double re, im;
205 re = strtold( sptr, eptr );
206 if ( sptr == *eptr ) return 0.0;
207 im = strtold( sptr, eptr );
208 if ( sptr == *eptr ) return 0.0;
209 return re + im * _Complex_I;
210}
211
212//---------------------------------------
213
214forall( otype T | { int ?<?( T, T ); } )
215T * bsearch( const T key, const T * arr, size_t dimension ) {
216 int comp( const void * t1, const void * t2 ) { return *(T *)t1 < *(T *)t2 ? -1 : *(T *)t2 < *(T *)t1 ? 1 : 0; }
217 return (T *)bsearch( &key, arr, dimension, sizeof(T), comp );
218} // bsearch
219
220forall( otype T | { int ?<?( T, T ); } )
221void qsort( const T * arr, size_t dimension ) {
222 int comp( const void * t1, const void * t2 ) { return *(T *)t1 < *(T *)t2 ? -1 : *(T *)t2 < *(T *)t1 ? 1 : 0; }
223 qsort( arr, dimension, sizeof(T), comp );
224} // qsort
225
226//---------------------------------------
227
228forall( otype T | { T ?/?( T, T ); T ?%?( T, T ); } )
229[ T, T ] div( T t1, T t2 ) { /* return [ t1 / t2, t1 % t2 ]; */ }
230
231//---------------------------------------
232
233char abs( char v ) { return abs( (int)v ); }
234long int abs( long int v ) { return labs( v ); }
235long long int abs( long long int v ) { return llabs( v ); }
236float abs( float v ) { return fabsf( v ); }
237double abs( double v ) { return fabs( v ); }
238long double abs( long double v ) { return fabsl( v ); }
239float _Complex abs( float _Complex v ) { return cabsf( v ); }
240double _Complex abs( double _Complex v ) { return cabs( v ); }
241long double _Complex abs( long double _Complex v ) { return cabsl( v ); }
242
243//---------------------------------------
244
245float floor( float v ) { return floorf( v ); }
246long double floor( long double v ) { return floorl( v ); }
247
248float ceil( float v ) { return ceilf( v ); }
249long double ceil( long double v ) { return ceill( v ); }
250
251//---------------------------------------
252
253void rand48seed( long int s ) { srand48( s ); }
254char rand48() { return mrand48(); }
255int rand48() { return mrand48(); }
256unsigned int rand48() { return lrand48(); }
257long int rand48() { return mrand48(); }
258unsigned long int rand48() { return lrand48(); }
259float rand48() { return (float)drand48(); } // otherwise float uses lrand48
260double rand48() { return drand48(); }
261float _Complex rand48() { return (float)drand48() + (float _Complex)(drand48() * _Complex_I); }
262double _Complex rand48() { return drand48() + (double _Complex)(drand48() * _Complex_I); }
263long double _Complex rand48() { return (long double)drand48() + (long double _Complex)(drand48() * _Complex_I); }
264
265//---------------------------------------
266
267forall( otype T | { int ?<?( T, T ); } )
268T min( const T t1, const T t2 ) {
269 return t1 < t2 ? t1 : t2;
270} // min
271
272forall( otype T | { int ?>?( T, T ); } )
273T max( const T t1, const T t2 ) {
274 return t1 > t2 ? t1 : t2;
275} // max
276
277forall( otype T )
278void swap( T * t1, T * t2 ) {
279 T temp = *t1;
280 *t1 = *t2;
281 *t2 = temp;
282} // swap
283
284// Local Variables: //
285// tab-width: 4 //
286// End: //
Note: See TracBrowser for help on using the repository browser.