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