-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.c
337 lines (277 loc) · 6.36 KB
/
util.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/*
* Some portions copyright (c) 1984-1993 by Symantec
* Copyright (c) 1999-2009 by Digital Mars
* All Rights Reserved
* http://www.digitalmars.com
* Written by Walter Bright
*
* This source file is made available for personal use
* only. The license is in /dmd/src/dmd/backendlicense.txt
* For any other uses, please contact Digital Mars.
*/
// Utility subroutines
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include "cc.h"
#include "global.h"
#include "mem.h"
#include "token.h"
#if SCPP || MARS
#include "el.h"
#endif
#include "parser.h"
#if _WIN32 && __DMC__
//#include "scdll.h"
#include <controlc.h>
#endif
static char __file__[] = __FILE__; /* for tassert.h */
#include "tassert.h"
void util_exit(int exitcode);
void file_progress()
{
}
/*******************************
* Alternative assert failure.
*/
void util_assert(char *file,int line)
{
fflush(stdout);
printf("Internal error: %s %d\n",file,line);
err_exit();
}
/****************************
* Clean up and exit program.
*/
void err_exit()
{
util_exit(EXIT_FAILURE);
}
/********************************
* Clean up and exit program.
*/
void err_break()
{
util_exit(255);
}
/****************************
* Clean up and exit program.
*/
void util_exit(int exitcode)
{
exit(exitcode); /* terminate abnormally */
}
#if _WIN32
volatile int controlc_saw;
/********************************
* Control C interrupts go here.
*/
static void __cdecl controlc_handler(void)
{
//printf("saw controlc\n");
controlc_saw = 1;
}
/*********************************
* Trap control C interrupts.
*/
void _STI_controlc()
{
//printf("_STI_controlc()\n");
_controlc_handler = controlc_handler;
controlc_open(); /* trap control C */
}
void _STD_controlc()
{
//printf("_STD_controlc()\n");
controlc_close();
}
/***********************************
* Send progress report.
*/
void util_progress()
{
if (controlc_saw)
err_break();
}
void util_progress(int linnum)
{
if (controlc_saw)
err_break();
}
#endif
#if linux || __APPLE__ || __FreeBSD__ || __OpenBSD__ || __sun&&__SVR4
void util_progress()
{
}
void util_progress(int linnum)
{
}
#endif
/**********************************
* Binary string search.
* Input:
* p -> string of characters
* tab array of pointers to strings
* n = number of pointers in the array
* Returns:
* index (0..n-1) into tab[] if we found a string match
* else -1
*/
#if TX86 && __INTSIZE == 4 && __DMC__ && !_DEBUG_TRACE
int binary(const char *p, const char **table,int high)
{
#define len high // reuse parameter storage
_asm
{
;First find the length of the identifier.
xor EAX,EAX ;Scan for a 0.
mov EDI,p
mov ECX,EAX
dec ECX ;Longest possible string.
repne scasb
mov EDX,high ;EDX = high
not ECX ;length of the id including '/0', stays in ECX
dec EDX ;high--
js short Lnotfound
dec EAX ;EAX = -1, so that eventually EBX = low (0)
mov len,ECX
even
L4D: mov EBX,EAX ;EBX (low) = mid
inc EBX ;low = mid + 1
cmp EBX,EDX
jg Lnotfound
even
L15: lea EAX,[EBX + EDX] ;EAX = EBX + EDX
;Do the string compare.
mov EDI,table
sar EAX,1 ;mid = (low + high) >> 1;
mov ESI,p
mov EDI,DS:[4*EAX+EDI] ;Load table[mid]
mov ECX,len ;length of id
repe cmpsb
je short L63 ;return mid if equal
jns short L4D ;if (cond < 0)
lea EDX,-1[EAX] ;high = mid - 1
cmp EBX,EDX
jle L15
Lnotfound:
mov EAX,-1 ;Return -1.
even
L63:
}
#undef len
}
#else
int binary(const char *p, const char __near * __near *table,int high)
{ int low,mid;
signed char cond;
char cp;
low = 0;
high--;
cp = *p;
p++;
while (low <= high)
{ mid = (low + high) >> 1;
if ((cond = table[mid][0] - cp) == 0)
cond = strcmp(table[mid] + 1,p);
if (cond > 0)
high = mid - 1;
else if (cond < 0)
low = mid + 1;
else
return mid; /* match index */
}
return -1;
}
#endif
/**********************
* If c is a power of 2, return that power else -1.
*/
int ispow2(unsigned long long c)
{ int i;
if (c == 0 || (c & (c - 1)))
i = -1;
else
for (i = 0; c >>= 1; i++)
;
return i;
}
/***************************
*/
#define UTIL_PH 1
#if _WIN32
void *util_malloc(unsigned n,unsigned size)
{
#if 0 && MEM_DEBUG
void *p;
p = mem_malloc(n * size);
//dbg_printf("util_calloc(%d) = %p\n",n * size,p);
return p;
#elif UTIL_PH
return ph_malloc(n * size);
#else
size_t nbytes = (size_t)n * (size_t)size;
void *p = malloc(nbytes);
if (!p && nbytes)
err_nomem();
return p;
#endif
}
#endif
/***************************
*/
#if _WIN32
void *util_calloc(unsigned n,unsigned size)
{
#if 0 && MEM_DEBUG
void *p;
p = mem_calloc(n * size);
//dbg_printf("util_calloc(%d) = %p\n",n * size,p);
return p;
#elif UTIL_PH
return ph_calloc(n * size);
#else
size_t nbytes = (size_t) n * (size_t) size;
void *p = calloc(n,size);
if (!p && nbytes)
err_nomem();
return p;
#endif
}
#endif
/***************************
*/
#if _WIN32
void util_free(void *p)
{
//dbg_printf("util_free(%p)\n",p);
#if 0 && MEM_DEBUG
mem_free(p);
#elif UTIL_PH
ph_free(p);
#else
free(p);
#endif
}
#endif
/***************************
*/
#if _WIN32
void *util_realloc(void *oldp,unsigned n,unsigned size)
{
#if 0 && MEM_DEBUG
//dbg_printf("util_realloc(%p,%d)\n",oldp,n * size);
return mem_realloc(oldp,n * size);
#elif UTIL_PH
return ph_realloc(oldp,n * size);
#else
size_t nbytes = (size_t) n * (size_t) size;
void *p = realloc(oldp,nbytes);
if (!p && nbytes)
err_nomem();
return p;
#endif
}
#endif