0
|
1 /*
|
|
2
|
|
3 Package: dyncall
|
|
4 Library: test
|
|
5 File: test/call_suite/globals.c
|
|
6 Description:
|
|
7 License:
|
|
8
|
|
9 Copyright (c) 2011-2015 Daniel Adler <dadler@uni-goettingen.de>,
|
|
10 Tassilo Philipp <tphilipp@potion-studios.com>
|
|
11
|
|
12 Permission to use, copy, modify, and distribute this software for any
|
|
13 purpose with or without fee is hereby granted, provided that the above
|
|
14 copyright notice and this permission notice appear in all copies.
|
|
15
|
|
16 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
17 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
18 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
19 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
20 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
21 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
22 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
23
|
|
24 */
|
|
25
|
|
26 #include <stdlib.h>
|
|
27 #include "globals.h"
|
|
28 #include <float.h>
|
|
29
|
|
30 #define X(CH,T,QCH) T *V_##CH; T *K_##CH;
|
|
31 DEF_TYPES
|
|
32 #undef X
|
|
33
|
|
34 int fid;
|
|
35
|
|
36 double rand_d() { return ( ( (double) rand() ) / ( (double) RAND_MAX ) ); }
|
|
37
|
|
38 void init_K()
|
|
39 {
|
|
40 int i;
|
|
41 #define X(CH,T,QCH) V_##CH = (T*) malloc(sizeof(T)*G_maxargs); K_##CH = (T*) malloc(sizeof(T)*G_maxargs);
|
|
42 DEF_TYPES
|
|
43 #undef X
|
|
44 for(i=0;i<G_maxargs;++i) {
|
|
45 K_c[i] = (char) (((rand_d()-0.5)*2) * (1<<7));
|
|
46 K_s[i] = (short) (((rand_d()-0.5)*2) * (1<<(sizeof(short)*8-1)));
|
|
47 K_i[i] = (int) (((rand_d()-0.5)*2) * (1<<(sizeof(int)*8-2)));
|
|
48 K_j[i] = (long) (((rand_d()-0.5)*2) * (1L<<(sizeof(long)*8-2)));
|
|
49 K_l[i] = (long long) (((rand_d()-0.5)*2) * (1LL<<(sizeof(long long)*8-2)));
|
|
50 K_p[i] = (void*) (long) (((rand_d()-0.5)*2) * (1LL<<(sizeof(void*)*8-1)));
|
|
51 K_f[i] = (float) (rand_d() * FLT_MAX); /* Plan9 doesn't know the macro. */
|
|
52 K_d[i] = (double) (((rand_d()-0.5)*2) * 1.7976931348623157E+308/*__DBL_MAX__*/); /* Plan9 doesn't know the macro. */
|
|
53 }
|
|
54 }
|
|
55
|
|
56 void clear_V()
|
|
57 {
|
|
58 int i;
|
|
59 for(i=0;i<G_maxargs;++i) {
|
|
60 #define X(CH,T,QCH) V_##CH[i] = (T) 0;
|
|
61 DEF_TYPES
|
|
62 #undef X
|
|
63 }
|
|
64 }
|
|
65
|