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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
/* asmalloc.c -- microsoft 80x86 assembler
**
** microsoft (r) macro assembler
** copyright (c) microsoft corp 1986, 1987. all rights reserved
**
** randy nevin
** michael hobbs 7/87
** 10/90 - Quick conversion to 32 bit by Jeff Spencer
**
** Storage allocation/deallocation
**
** dalloc, dfree
** talloc, tfree
** nearalloc, faralloc, pBCBalloc, freefarbuf
*/
#include <stdio.h>
#include "asm86.h"
#include "asmfcn.h"
/*
* dalloc/dfree
*
* Allocation/deallocation of descriptor nodes. Uses a list of
* deallocated descriptors available for allocation.
*/
/* dscfree list descriptor */
struct dscfree {
struct dscfree *strnext; /* next string in list */
UCHAR size; /* allocated size */
UCHAR text[1]; /* text of string */
};
static struct dscfree *dscrfree = (struct dscfree *)NULL;
#define nearheap(fp) ((int)(((long)(char far *)&pcoffset) >> 16) == highWord(fp))
/*
* dalloc - allocate descriptor from temporary list
*/
DSCREC * PASCAL CODESIZE
dalloc (
){
register struct dscfree *t;
if (!(t = dscrfree))
t = (struct dscfree *)nalloc( sizeof(DSCREC), "dalloc");
else
dscrfree = t->strnext;
return((DSCREC *)t);
}
/*
* dfree - return descriptor to free list
*/
VOID PASCAL CODESIZE
dfree (
UCHAR *p
){
register struct dscfree *tp;
tp = (struct dscfree *)p;
tp->strnext = dscrfree;
dscrfree = tp;
}
/*
* talloc, tfree
*
* Allocation\deallocation of memory.
* Allocation is made with minimum size of TEMPMAX bytes.
* Any allocation request for <= TEMPMAX bytes will be made
* by grabbing a block off the free list. Deallocation of these
* blocks returns them to the free list. For blocks larger than
* TEMPMAX bytes, nalloc() and free() are called.
*/
#define TEMPMAX 32
static TEXTSTR FAR *tempfree = (TEXTSTR FAR *)NULL;
#ifndef M8086
/*
* talloc - allocate space from temporary list
*/
UCHAR * PASCAL
talloc(
UINT nbytes
){
register TEXTSTR *t;
if (nbytes > TEMPMAX)
t = (TEXTSTR *) nalloc(nbytes, "talloc");
else if (!(t = tempfree))
t = (TEXTSTR *) nalloc (TEMPMAX, "talloc");
else
tempfree = t->strnext;
return ((UCHAR *)t);
}
/*
* tfree - return temp allocation to free list
*/
VOID PASCAL
tfree (
UCHAR *ap,
UINT nbytes
){
register TEXTSTR *tp;
if (nbytes > TEMPMAX)
free (ap);
else {
tp = (TEXTSTR *)ap;
tp->strnext = tempfree;
tempfree = tp;
}
}
#else
/*
* talloc - allocate space from temporary list
*/
UCHAR FAR * PASCAL CODESIZE
talloc(
USHORT nbytes
){
TEXTSTR FAR *t;
if (nbytes > TEMPMAX)
t = (TEXTSTR FAR *) falloc(nbytes, "talloc");
else if (!(t = tempfree))
t = (TEXTSTR FAR *) falloc(TEMPMAX, "talloc");
else
tempfree = t->strnext;
return ((UCHAR FAR *)t);
}
/*
* tfree - return temp allocation to free list
*/
VOID PASCAL CODESIZE
tfree (
UCHAR FAR *ap,
UINT nbytes
){
register TEXTSTR FAR *tp;
if (nbytes > TEMPMAX)
_ffree (ap);
else {
tp = (TEXTSTR FAR *)ap;
tp->strnext = tempfree;
tempfree = tp;
}
}
#endif /* NOT M8086 */
#ifndef M8086
/**** nearalloc - normal near memory allocation
*
* nearalloc (usize, szfunc)
*
* Entry usize = number of bytes to allocate
* szfunc = name of calling routine
* Returns Pointer to block if successful
* Calls malloc(), memerror()
* Note Generates error if malloc unsuccessful
* IF NOT M8086, nalloc AND falloc MAP TO THIS FUNCTION
*/
UCHAR * CODESIZE PASCAL
nearalloc(
UINT usize,
char * szfunc
){
register char * pchT;
if (!(pchT = malloc(usize)))
memerror(szfunc);
return(pchT);
}
#else
/**** nearalloc - normal near memory allocation
*
* nearalloc (usize)
*
* Entry usize = number of bytes to allocate
* Returns Pointer to block if successful
* Calls malloc(), memerror()
* Note Generates error if malloc unsuccessful
*/
UCHAR * CODESIZE PASCAL
nearalloc(
USHORT usize
){
register char * pchT;
if (!(pchT = malloc(usize)))
outofmem();
return(pchT);
}
/**** faralloc - Routine for normal far memory allocation
*
* faralloc (usize)
*
* Entry usize = number of bytes to allocate
* Returns Pointer to block if successful
* Calls _fmalloc(), nearheap(), freefarbuf(), memerror(), _ffree()
* Note Should call instead of _fmalloc(),
* at least after the first call to pBCBalloc() has been made.
* Not called by pBCBalloc.
* Generates error if memory full
*/
UCHAR FAR * CODESIZE PASCAL
faralloc(
USHORT usize
){
char FAR * fpchT;
#ifdef BCBOPT
/* need check of _fmalloc 'ing into near heap too */
while ( (!(fpchT = _fmalloc(usize)) || nearheap(fpchT)) && pBCBAvail) {
fBuffering = FALSE; /* can't buffer any more */
if (fpchT)
_ffree(fpchT);
freefarbuf();
}
#endif
#ifdef FLATMODEL /* If 32 bit small model then use normal malloc */
fpchT = malloc(usize);
#else
fpchT = _fmalloc(usize);
#endif
if (!fpchT)
outofmem();
return (fpchT);
}
#ifdef BCBOPT
/**** pBCBalloc - allocate a BCB and associated buffer
*
* pBCBalloc ()
*
* Entry fBuffering must be TRUE
* Returns pointer to BCB (connected to buffer if bufalloc() successful)
* Calls bufalloc()
* Note Returns a BCB even if buffer allocation fails
* Returns NULL only after Out-of-memory error
*/
BCB * FAR PASCAL
pBCBalloc(
UINT cbBuf
){
register BCB * pBCBT;
char FARIO * pfchT;
pBCBT = (BCB *) nearalloc(sizeof(BCB));
#ifndef XENIX286
if ((pfchT = _fmalloc(cbBuf)) && nearheap(pfchT)) {
_ffree(pfchT);
pfchT = NULL;
}
if (!(pfchT))
#else
pfchT = NULL;
#endif
{
fBuffering = FALSE; /* can't buffer anymore */
pBCBT->filepos = 0;
}
#ifndef XENIX286
else {
pFCBCur->cbufCur = cbBuf;
pBCBT->pBCBPrev = pBCBAvail;
pBCBAvail = pBCBT;
}
#endif
pFCBCur->pbufCur = pBCBT->pbuf = pfchT;
pBCBT->pBCBNext = NULL;
pBCBT->fInUse = 0;
return(pBCBT);
}
#endif //BCBOPT
#ifdef BCBOPT
/**** freefarbuf - free a file buffer
*
* freefarbuf ()
*
* Entry
* Returns
* Calls _ffree()
* Note Frees the last-allocated file buffer
*/
freefarbuf(
){
while (pBCBAvail && pBCBAvail->fInUse)
pBCBAvail = pBCBAvail->pBCBPrev;
if (pBCBAvail) {
#ifdef XENIX286
free(pBCBAvail->pbuf);
#else
_ffree(pBCBAvail->pbuf);
#endif
pBCBAvail->pbuf = NULL;
pBCBAvail = pBCBAvail->pBCBPrev;
}
}
#endif //BCBOPT
#endif /* M8086 */
#if 0
/* sleazy way to check for valid heap
* _mcalls tells how calls to malloc were made so that
* a countdown breakpoint can be set for _mcalls iterations
*/
extern char *_nmalloc();
long _mcalls;
UCHAR *
malloc (
UINT n
){
register UINT fb;
fb = _freect(0); /* walks near heap - usually loops if corrupt */
_mcalls++;
return (_nmalloc(n));
}
#endif /* 0 */
|