-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtyp_data.c
246 lines (186 loc) · 7.31 KB
/
typ_data.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/********************************************************************/
/* */
/* s7 Seed7 interpreter */
/* Copyright (C) 1990 - 2010 Thomas Mertes */
/* */
/* This program is free software; you can redistribute it and/or */
/* modify it under the terms of the GNU General Public License as */
/* published by the Free Software Foundation; either version 2 of */
/* the License, or (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public */
/* License along with this program; if not, write to the */
/* Free Software Foundation, Inc., 51 Franklin Street, */
/* Fifth Floor, Boston, MA 02110-1301, USA. */
/* */
/* Module: Compiler data reflection */
/* File: seed7/src/typ_data.c */
/* Changes: 1993, 1994, 1999, 2000, 2008, 2010 Thomas Mertes */
/* Content: Primitive actions for the type type. */
/* */
/********************************************************************/
#define LOG_FUNCTIONS 0
#define VERBOSE_EXCEPTIONS 0
#include "version.h"
#include "stdlib.h"
#include "stdio.h"
#include "string.h"
#include "common.h"
#include "data.h"
#include "data_rtl.h"
#include "heaputl.h"
#include "datautl.h"
#include "typeutl.h"
#include "striutl.h"
#include "hsh_rtl.h"
#include "rtl_err.h"
#undef EXTERN
#define EXTERN
#include "typ_data.h"
/**
* Compare two types.
* @return -1, 0 or 1 if the first argument is considered to be
* respectively less than, equal to, or greater than the
* second.
*/
intType typCmp (const const_typeType type1, const const_typeType type2)
{
intType signumValue;
/* typCmp */
if ((memSizeType) type1 < (memSizeType) type2) {
signumValue = -1;
} else {
signumValue = (memSizeType) type1 > (memSizeType) type2;
} /* if */
return signumValue;
} /* typCmp */
/**
* Reinterpret the generic parameters as typeType and call typCmp.
* Function pointers in C programs generated by the Seed7 compiler
* may point to this function. This assures correct behaviour even
* if sizeof(genericType) != sizeof(typeType).
* @return -1, 0 or 1 if the first argument is considered to be
* respectively less than, equal to, or greater than the
* second.
*/
intType typCmpGeneric (const genericType value1, const genericType value2)
{ /* typCmpGeneric */
return typCmp((const_typeType) ((const_rtlObjectType *) &value1)->value.typeValue,
(const_typeType) ((const_rtlObjectType *) &value2)->value.typeValue);
} /* typCmpGeneric */
typeType typFunc (typeType basic_type)
{
typeType func_type;
/* typFunc */
logFunction(printf("typFunc(" FMT_X_MEM ")\n", (memSizeType) basic_type););
if (unlikely((func_type = get_func_type(NULL, basic_type)) == NULL)) {
raise_error(MEMORY_ERROR);
} /* if */
logFunction(printf("typFunc --> " FMT_X_MEM "\n", (memSizeType) func_type););
return func_type;
} /* typFunc */
boolType typIsDerived (typeType any_type)
{ /* typIsDerived */
return any_type->meta != NULL;
} /* typIsDerived */
boolType typIsFunc (typeType any_type)
{ /* typIsFunc */
return any_type->result_type != NULL && !any_type->is_varfunc_type;
} /* typIsFunc */
boolType typIsVarfunc (typeType any_type)
{ /* typIsVarfunc */
return any_type->result_type != NULL && any_type->is_varfunc_type;
} /* typIsVarfunc */
objectType typMatchobj (typeType actual_type)
{ /* typMatchobj */
return actual_type->match_obj;
} /* typMatchobj */
typeType typMeta (typeType any_type)
{
typeType meta;
/* typMeta */
logFunction(printf("typMeta(" FMT_X_MEM ")\n", (memSizeType) any_type););
meta = any_type->meta;
if (unlikely(meta == NULL)) {
raise_error(RANGE_ERROR);
} /* if */
logFunction(printf("typMeta --> " FMT_X_MEM "\n", (memSizeType) meta););
return meta;
} /* typMeta */
intType typNum (typeType actual_type)
{
intType typeNumber;
/* typNum */
logFunction(printf("typNum(" FMT_X_MEM ")\n",
(memSizeType) actual_type););
if (unlikely(actual_type == NULL)) {
typeNumber = 0;
} else if (unlikely(actual_type->owningProg == NULL ||
actual_type->owningProg->typeNumberMap == NULL)) {
logError(printf("typNum(" FMT_X_MEM "): "
"No owning program or type number map.\n",
(memSizeType) actual_type););
raise_error(RANGE_ERROR);
typeNumber = 0;
} else {
typeNumber = (intType) hshIdxEnterDefault(
actual_type->owningProg->typeNumberMap,
(genericType) (memSizeType) actual_type,
(genericType) actual_type->owningProg->nextFreeTypeNumber,
(intType) (((memSizeType) actual_type) >> 6));
if (typeNumber == actual_type->owningProg->nextFreeTypeNumber) {
actual_type->owningProg->nextFreeTypeNumber++;
} /* if */
} /* if */
logFunction(printf("typNum --> " FMT_D "\n", typeNumber););
return typeNumber;
} /* typNum */
typeType typResult (typeType any_type)
{
typeType result_type;
/* typResult */
logFunction(printf("typResult(" FMT_X_MEM ")\n", (memSizeType) any_type););
result_type = any_type->result_type;
if (unlikely(result_type == NULL)) {
raise_error(RANGE_ERROR);
} /* if */
logFunction(printf("typResult --> " FMT_X_MEM "\n", (memSizeType) result_type););
return result_type;
} /* typResult */
striType typStr (typeType type_arg)
{
const_cstriType stri;
errInfoType err_info = OKAY_NO_ERROR;
striType result;
/* typStr */
logFunction(printf("typStr(" FMT_X_MEM ")\n", (memSizeType) type_arg););
if (unlikely(type_arg == NULL)) {
stri = "*NULL_TYPE*";
} else if (type_arg->name != NULL) {
stri = id_string2(type_arg->name);
} else {
stri = "*ANONYM_TYPE*";
} /* if */
result = cstri8_to_stri(stri, &err_info);
if (unlikely(result == NULL)) {
raise_error(err_info);
} /* if */
logFunction(printf("typStr --> \"%s\"\n", striAsUnquotedCStri(result)););
return result;
} /* typStr */
typeType typVarfunc (typeType basic_type)
{
typeType result;
/* typVarfunc */
logFunction(printf("typVarfunc(" FMT_X_MEM ")\n", (memSizeType) basic_type););
if (unlikely((result = get_varfunc_type(NULL, basic_type)) == NULL)) {
raise_error(MEMORY_ERROR);
} /* if */
logFunction(printf("typVarfunc --> " FMT_X_MEM "\n", (memSizeType) result););
return result;
} /* typVarfunc */