1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
26 #include "src/lib/16_hc.h"
\r
29 void * LargestFreeBlock(size_t* Size)
\r
32 void __near* LargestFreeBlock(size_t* Size)
\r
43 s0 = ~(size_t)0 ^ (~(size_t)0 >> 1);
\r
45 while (s0 && (p = malloc(s0)) == NULL)
\r
48 while (s0 && (p = _nmalloc(s0)) == NULL)
\r
64 if ((p = malloc(s0 + s1)) != NULL)
\r
67 if ((p = _nmalloc(s0 + s1)) != NULL)
\r
81 while (s0 && (p = malloc(s0)) == NULL)
\r
84 while (s0 && (p = _nmalloc(s0)) == NULL)
\r
92 size_t _coreleft(void)
\r
95 void __near* pFirst = NULL;
\r
96 void __near* pLast = NULL;
\r
100 void __near* p = (void __near *)LargestFreeBlock(&largest);
\r
101 if (largest < sizeof(void __near*))
\r
104 #ifdef __BORLANDC__
\r
112 *(void __near* __near*)p = NULL;
\r
114 if (pFirst == NULL)
\r
118 *(void __near* __near*)pLast = p;
\r
122 while (pFirst != NULL)
\r
124 void __near* p = *(void __near* __near*)pFirst;
\r
125 #ifdef __BORLANDC__
\r
136 void far* LargestFarFreeBlock(size_t* Size)
\r
141 s0 = ~(size_t)0 ^ (~(size_t)0 >> 1);
\r
142 while (s0 && (p = _fmalloc(s0)) == NULL)
\r
151 if ((p = _fmalloc(s0 + s1)) != NULL)
\r
158 while (s0 && (p = _fmalloc(s0)) == NULL)
\r
165 size_t _farcoreleft(void)
\r
168 void far* pFirst = NULL;
\r
169 void far* pLast = NULL;
\r
173 void far* p = LargestFarFreeBlock(&largest);
\r
174 if (largest < sizeof(void far*))
\r
180 *(void far* far*)p = NULL;
\r
182 if (pFirst == NULL)
\r
186 *(void far* far*)pLast = p;
\r
190 while (pFirst != NULL)
\r
192 void far* p = *(void far* far*)pFirst;
\r
200 void huge* LargestHugeFreeBlock(size_t* Size)
\r
205 s0 = ~(size_t)0 ^ (~(size_t)0 >> 1);
\r
206 while (s0 && (p = halloc((dword)s0, 1)) == NULL)
\r
215 if ((p = halloc((dword)(s0 + s1), 1)) != NULL)
\r
222 while (s0 && (p = halloc((dword)s0, 1)) == NULL)
\r
229 size_t _hugecoreleft(void)
\r
232 void huge* pFirst = NULL;
\r
233 void huge* pLast = NULL;
\r
237 void huge* p = LargestHugeFreeBlock(&largest);
\r
238 if (largest < sizeof(void huge*))
\r
244 *(void huge* huge*)p = NULL;
\r
246 if (pFirst == NULL)
\r
250 *(void huge* huge*)pLast = p;
\r
254 while (pFirst != NULL)
\r
256 void huge* p = *(void huge* huge*)pFirst;
\r
263 /*void __based(__self)* LargestBasedFreeBlock(size_t* Size)
\r
267 void __based(__self)* p;
\r
269 s0 = ~(size_t)0 ^ (~(size_t)0 >> 1);
\r
270 while (s0 && (p = _bmalloc(segu, s0)) == NULL)
\r
279 if ((p = _bmalloc(segu, s0 + s1)) != NULL)
\r
286 while (s0 && (p = _bmalloc(segu, s0)) == NULL)
\r
293 size_t _basedcoreleft(void)
\r
297 void __based(segu)* pFirst = NULL;
\r
298 void __based(segu)* pLast = NULL;
\r
299 // allocate based heap
\r
300 segu = _bheapseg( 1024 );
\r
301 if( segu == _NULLSEG ) {
\r
302 printf( "Unable to allocate based heap\n" );
\r
311 void __based(segu)* p = LargestBasedFreeBlock(&largest);
\r
312 if (largest < sizeof(void far*))
\r
318 *(void far* far*)p = NULL;
\r
320 if (pFirst == NULL)
\r
324 *(void far* far*)pLast = p;
\r
328 while (pFirst != NULL)
\r
330 void far* p = *(void far* far*)pFirst;
\r
337 size_t GetFreeSize(void)
\r
339 struct _heapinfo h_info;
\r
341 size_t h_free=0, h_total=0, h_used=0;
\r
343 h_info._pentry = NULL;
\r
345 heap_status = _heapwalk( &h_info );
\r
346 if( heap_status != _HEAPOK ) break;
\r
347 if((h_info._useflag == _USEDENTRY ? "USED" : "FREE")=="FREE") h_free += h_info._size;
\r
348 if((h_info._useflag == _USEDENTRY ? "USED" : "FREE")=="USED") h_used += h_info._size;
\r
349 h_total += h_info._size;
\r
351 heapstat0(heap_status);
\r
355 size_t GetFarFreeSize(void)
\r
357 struct _heapinfo fh_info;
\r
359 size_t fh_free=0, fh_total=0, fh_used=0;
\r
361 fh_info._pentry = NULL;
\r
363 heap_status = _fheapwalk( &fh_info );
\r
364 if( heap_status != _HEAPOK ) break;
\r
365 if((fh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="FREE") fh_free += fh_info._size;
\r
366 if((fh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="USED") fh_used += fh_info._size;
\r
367 fh_total += fh_info._size;
\r
369 heapstat0(heap_status);
\r
373 size_t GetNearFreeSize(void)
\r
375 struct _heapinfo nh_info;
\r
377 size_t nh_free=0, nh_total=0, nh_used=0;
\r
379 nh_info._pentry = NULL;
\r
381 heap_status = _nheapwalk( &nh_info );
\r
382 if( heap_status != _HEAPOK ) break;
\r
383 if((nh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="FREE") nh_free += nh_info._size;
\r
384 if((nh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="USED") nh_used += nh_info._size;
\r
385 nh_total += nh_info._size;
\r
387 heapstat0(heap_status);
\r
391 void heapdump(global_game_variables_t *gvar)
\r
393 struct _heapinfo fh_info, nh_info, h_info;
\r
395 size_t h_free, nh_free, fh_free, h_total, nh_total, fh_total, h_used, nh_used, fh_used;
\r
396 byte scratch[1024],str[16];
\r
398 HC_OpenDebug(gvar);
\r
400 strcpy(scratch,"\n == default ==\n\n");
\r
401 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
402 h_info._pentry = NULL;
\r
403 h_free=0; h_total=0; h_used=0;
\r
405 heap_status = _heapwalk( &h_info );
\r
406 if( heap_status != _HEAPOK ) break;
\r
407 strcpy(scratch," "); strcat(scratch,(h_info._useflag == _USEDENTRY ? "USED" : "FREE")); strcat(scratch," block at "); ultoa((dword)h_info._pentry,str,16); strcat(scratch,str); strcat(scratch," of size "); ultoa(h_info._size,str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
408 if((h_info._useflag == _USEDENTRY ? "USED" : "FREE")=="FREE") h_free += h_info._size;
\r
409 if((h_info._useflag == _USEDENTRY ? "USED" : "FREE")=="USED") h_used += h_info._size;
\r
410 h_total += h_info._size;
\r
411 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
413 heapstat(gvar, heap_status, &scratch);
\r
416 strcpy(scratch,"\n == near ==\n\n");
\r
417 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
418 nh_info._pentry = NULL;
\r
419 nh_free=0; nh_total=0; nh_used=0;
\r
421 heap_status = _nheapwalk( &nh_info );
\r
422 if( heap_status != _HEAPOK ) break;
\r
423 strcpy(scratch," "); strcat(scratch,(h_info._useflag == _USEDENTRY ? "USED" : "FREE")); strcat(scratch," block at "); ultoa((dword)nh_info._pentry,str,16); strcat(scratch,str); strcat(scratch," of size "); ultoa(nh_info._size,str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
424 /* printf( " %s block at %Fp of size %4.4X\n",
\r
425 (nh_info._useflag == _USEDENTRY ? "USED" : "FREE"),
\r
426 nh_info._pentry, nh_info._size );*/
\r
427 if((nh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="FREE") nh_free += nh_info._size;
\r
428 if((nh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="USED") nh_used += nh_info._size;
\r
429 nh_total += nh_info._size;
\r
430 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
432 heapstat(gvar, heap_status, &scratch);
\r
435 strcpy(scratch,"\n == far ==\n\n");
\r
436 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
437 fh_info._pentry = NULL;
\r
438 fh_free=0; fh_total=0; fh_used=0;
\r
440 heap_status = _fheapwalk( &fh_info );
\r
441 if( heap_status != _HEAPOK ) break;
\r
442 strcpy(scratch," "); strcat(scratch,(h_info._useflag == _USEDENTRY ? "USED" : "FREE")); strcat(scratch," block at "); ultoa((dword)fh_info._pentry,str,16); strcat(scratch,str); strcat(scratch," of size "); ultoa(fh_info._size,str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
443 /*printf( " %s block at %Fp of size %4.4X\n",
\r
444 (fh_info._useflag == _USEDENTRY ? "USED" : "FREE"),
\r
445 fh_info._pentry, fh_info._size );*/
\r
446 if((fh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="FREE") fh_free += fh_info._size;
\r
447 if((fh_info._useflag == _USEDENTRY ? "USED" : "FREE")=="USED") fh_used += fh_info._size;
\r
448 fh_total += fh_info._size;
\r
449 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
451 heapstat(gvar, heap_status, &scratch);
\r
453 strcpy(scratch,"\n");
\r
454 strcat(scratch,kittengets(2,0,"Memory Type Total Used Free\n"));
\r
455 strcat(scratch,"---------------- -------- -------- --------\n");
\r
456 printmeminfoline(&scratch, "Default", h_total, h_used, h_free);
\r
457 printmeminfoline(&scratch, "Near", nh_total, nh_used, nh_free);
\r
458 printmeminfoline(&scratch, "Far", fh_total, fh_used, fh_free);
\r
459 strcat(scratch,"---------------- -------- -------- --------\n");
\r
460 strcat(scratch,"coreleft = "); ultoa((dword)_coreleft(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
461 strcat(scratch,"farcoreleft = "); ultoa((dword)_farcoreleft(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
462 strcat(scratch,"GetFreeSize = "); ultoa((dword)GetFreeSize(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
463 strcat(scratch,"GetNearFreeSize = "); ultoa((dword)GetNearFreeSize(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
464 strcat(scratch,"GetFarFreeSize = "); ultoa((dword)GetFarFreeSize(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
465 strcat(scratch,"memavl = "); ultoa((dword)_memavl(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
466 strcat(scratch,"stackavail = "); ultoa((dword)stackavail(),str,10); strcat(scratch,str); strcat(scratch,"\n");
\r
467 write(gvar->handle.heaphandle,scratch,strlen(scratch));
\r
468 HC_CloseDebug(gvar);
\r
471 void heapstat(global_game_variables_t *gvar, int heap_status, byte *str)
\r
473 switch( heap_status ) {
\r
475 strcpy((str),"OK - end of heap\n");
\r
478 strcpy((str),"OK - heap is empty\n");
\r
481 case _HEAPBADBEGIN:
\r
482 strcpy((str),"ERROR - heap is damaged\n");
\r
485 strcpy((str),"ERROR - bad pointer to heap\n");
\r
488 strcpy((str),"ERROR - bad node in heap\n");
\r
490 write(gvar->handle.heaphandle,(str),strlen((str)));
\r
493 void heapstat0(int heap_status)
\r
495 switch( heap_status ) {
\r
497 //printf("OK - end of heap\n");
\r
500 //printf("OK - heap is empty\n");
\r
502 case _HEAPBADBEGIN:
\r
503 printf("ERROR - heap is damaged\n");
\r
506 printf("ERROR - bad pointer to heap\n");
\r
509 printf("ERROR - bad node in heap\n");
\r
514 ============================
\r
516 = HC_OpenDebug / HC_CloseDebug
\r
518 = Opens a binary file with the handle "heaphandle"
\r
520 ============================
\r
522 void HC_OpenDebug(global_game_variables_t *gvar)
\r
524 #ifdef __BORLANDC__
\r
525 unlink("heap.16b");
\r
526 gvar->handle.heaphandle = open("heap.16b", O_CREAT | O_WRONLY | O_TEXT);
\r
529 unlink("heap.16w");
\r
530 gvar->handle.heaphandle = open("heap.16w", O_CREAT | O_WRONLY | O_TEXT);
\r
534 void HC_CloseDebug(global_game_variables_t *gvar)
\r
536 close(gvar->handle.heaphandle);
\r