1 /* Catacomb Apocalypse Source Code
2 * Copyright (C) 1993-2014 Flat Rock Software
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 =============================================================================
24 ID software memory manager
25 --------------------------
27 Primary coder: John Carmack
31 Quit (char *error) function
36 MM_SizePtr to change the size of a given pointer
38 Multiple purge levels utilized
40 EMS / XMS unmanaged routines
42 =============================================================================
46 Open Watcom port by sparky4
49 #include "src/lib/16_mm.h"
56 =============================================================================
60 =============================================================================
63 void (* beforesort) (void);
64 void (* aftersort) (void);
65 void (* XMSaddr) (void); // far pointer to XMS driver
68 =============================================================================
72 =============================================================================
75 static char *ParmStringsexmm[] = {"noems","noxms",""};
78 ======================
82 = Routine from p36 of Extending DOS
84 =======================
87 boolean MML_CheckForEMS(void)
90 static char emmname[] = "EMMXXXX0"; //fix by andrius4669
91 // mov dx,OFFSET emmname
93 //LEA DX, emmname //fix by andrius4669
94 mov dx,OFFSET emmname //fix by andrius4669
96 int 0x21 // try to open EMMXXXX0 device
102 int 0x21 // get device info
110 int 0x21 // get status
116 int 0x21 // close handle
146 ======================
150 =======================
153 byte MML_SetupEMS(mminfo_t *mm)
157 boolean errorflag=false;
159 unsigned int EMSVer = 0;
161 unsigned totalEMSpages,freeEMSpages,EMSpageframe,EMSpagesmapped,EMShandle;
162 totalEMSpages = freeEMSpages = EMSpageframe = EMSpagesmapped = 0;
166 int EMS_INT // make sure EMS hardware is present
168 //mov [EMS_status],ah
175 mov [EMSVer],ax // set EMSVer
176 cmp al,0x32 // only work on ems 3.2 or greater
180 int EMS_INT // find the page frame address
183 mov [EMSpageframe],bx
186 int EMS_INT // find out how much EMS is there
189 mov [totalEMSpages],dx
190 mov [freeEMSpages],bx
192 jz noEMS // no EMS at all to allocate
196 cmp bx,[freeEMSpages]
198 mov bx,[freeEMSpages]
208 jle getpages // there is only 1,2,3,or 4 pages
209 mov bx,4 // we can't use more than 4 pages
217 mov [EMSpagesmapped],bx
218 mov ah,EMS_ALLOCPAGES // allocate up to 64k of EMS
244 //err = CPURegs.h.ah;
245 strcpy(str,"MM_SetupEMS: EMS error ");
251 mm->totalEMSpages=totalEMSpages;
252 mm->freeEMSpages=freeEMSpages;
253 mm->EMSpageframe=EMSpageframe;
254 mm->EMSpagesmapped=EMSpagesmapped;
255 mm->EMShandle=EMShandle;
262 ======================
266 =======================
269 void MML_ShutdownEMS(mminfo_t *mm)
271 boolean errorflag=false;
272 unsigned EMShandle=mm->EMShandle;
290 if(errorflag==true) printf("MML_ShutdownEMS: Error freeing EMS!\n"); //++++ add something
298 = Maps the 64k of EMS used by memory manager into the page frame
299 = for general use. This only needs to be called if you are keeping
300 = other things in EMS.
305 byte MM_MapEMS(mminfo_t *mm, mminfotype *mmi)
310 boolean errorflag=false;
312 EMShandle=mm->EMShandle;
314 for (i=0;i<4/*MAPPAGES*/;i++)
318 mov bx,[i] // logical page
319 mov al,bl // physical page
320 mov dx,[EMShandle] // handle
343 //err = CPURegs.h.ah;
344 strcpy(str,"MM_MapEMS: EMS error ");
348 //printf("FACK! %x\n", err);
352 mmi->EMSmem = (i)*0x4000lu;
356 byte MM_MapXEMS(mminfo_t *mm, mminfotype *mmi)
358 //SUB EMS.MapXPages (PhysicalStart, LogicalStart, NumPages, Handle)
360 //Maps up to 4 logical EMS pages to physical pages in the page frame, where:
361 //PhysicalStart = Physical page first logical page is mapped to
362 //LogicalStart = First logical page to map
363 //NumPages = Number of pages to map (1 to 4)
364 //Handle = EMS handle logical pages are allocated to
366 /*//Create a buffer containing the page information
367 // FOR x = 0 TO NumPages - 1
368 // MapInfo$ = MapInfo$ + MKI$(LogicalStart + x) + MKI$(PhysicalStart + x)
371 // Regs.ax = 0x5000 //Map the pages in the buffer
372 // Regs.cx = NumPages //to the pageframe
374 // Regs.ds = VARSEG(MapInfo$)
375 // Regs.si = SADD(MapInfo$)
376 // InterruptX 0x67, Regs, Regs
377 // EMS.Error = (Regs.ax AND 0xFF00&) \ 0x100 //Store the status code
383 boolean errorflag=false;
385 EMShandle=mm->EMShandle;
390 for (i=0;i<MAPPAGES;i++)
394 mov cx,[i] // logical page
395 mov al,bl // physical page
396 mov dx,[EMShandle] // handle
419 //err = CPURegs.h.ah;
420 //strcpy(str,"MM_MapXEMS: EMS error 0x");
421 strcpy(str,"MM_MapXEMS: EMS error ");
425 //printf("%s%x\n",str, err);
426 //printf("FACK! %x\n", err);
430 mmi->EMSmem = (i)*0x4000lu;
434 //==========================================================================
437 ======================
441 = Check for XMM driver
443 =======================
446 boolean MML_CheckForXMS(mminfo_t *mm)
448 boolean errorflag=false;
453 int 0x2f // query status of installed diver
464 if(errorflag==true) return false;
470 ======================
474 = Try to allocate all upper memory block
476 =======================
479 void MML_SetupXMS(mminfo_t *mm, mminfotype *mmi)
487 mov [WORD PTR XMSaddr],bx
488 mov [WORD PTR XMSaddr+2],es // function pointer to XMS driver
491 mov dx,0xffff // try for largest block possible
492 //mov ax,dx // Set available Kbytes.
493 call [DWORD PTR XMSaddr]
497 cmp bl,0xb0 // error: smaller UMB is available
501 call [DWORD PTR XMSaddr] // DX holds largest available UMB
503 jz done // another error...
520 printf("base=%u ", base); printf("size=%u\n", size);
521 MML_UseSpace(base,size, mm);
522 mmi->XMSmem += size*16;
523 mm->UMBbase[mm->numUMBs] = base;
525 if(mm->numUMBs < MAXUMBS)
531 ======================
535 ======================
538 void MML_ShutdownXMS(mminfo_t *mm)
543 for (i=0;i<mm->numUMBs;i++)
545 base = mm->UMBbase[i];
549 call [DWORD PTR XMSaddr]
554 //==========================================================================
557 ======================
561 = Marks a range of paragraphs as usable by the memory manager
562 = This is used to mark space for the near heap, far heap, ems page frame,
563 = and upper memory blocks
565 ======================
568 void MML_UseSpace(/*d*/word segstart, dword seglength, mminfo_t *mm)
570 mmblocktype huge *scan,huge *last;
575 scan = last = mm->mmhead;
576 mm->mmrover = mm->mmhead; // reset rover to start of memory
579 // search for the block that contains the range of segments
581 while(scan->start+scan->length < segstart)
587 //find out how many blocks it spans!
588 if(seglength>0xffffu)
590 // segm=seglength/0x4000u;
591 segm=(word)seglength/0xffffu;
596 if(segm>1/*extra>0xfffflu*/)
607 //MML_UseSpace(?segstart?, ?length?, mm);
613 //printf("MML_UseSpace: Segment spans two blocks!\n");
617 // take the given range out of the block
619 oldend = scan->start + scan->length;
620 extra = oldend - (segstart+seglength);
622 printf("segm=%u ", segm);
623 printf("ex=%lu ", extra);
624 printf("start+seglen=%lu ", segstart+seglength);
625 printf("len=%u ", scan->length);
626 printf("segsta=%x ", segstart);
627 printf("seglen=%lu\n", seglength);
630 //++++todo: linked list of segment!
631 //printf("segm=%lu\n", segm);
632 if(segstart == scan->start)
634 last->next = scan->next; // unlink block
639 scan->length = segstart-scan->start; // shorten block
645 //MM_GetNewBlock(mm);
647 mm->mmnew->next = scan->next;
648 scan->next = mm->mmnew;
649 mm->mmnew->start = segstart+seglength;
650 mm->mmnew->length = extra;
651 mm->mmnew->attributes = LOCKBIT;
652 }//else if(segm>0) goto segu;
656 //==========================================================================
663 = We are out of blocks, so free a purgable block
668 void MML_ClearBlock(mminfo_t *mm)
670 mmblocktype huge *scan,huge *last;
672 scan = mm->mmhead->next;
676 if(!(scan->attributes&LOCKBIT) && (scan->attributes&PURGEBITS))
678 MM_FreePtr(scan->useptr, mm);
684 printf("MM_ClearBlock: No purgable blocks!\n");
688 //==========================================================================
695 = Grabs all space from turbo with malloc/farmalloc
696 = Allocates bufferseg misc buffer
701 void MM_Startup(mminfo_t *mm, mminfotype *mmi)
704 dword length,seglength;
705 //dword length; word seglength;
707 word segstart;//,endfree;
712 mm->mmstarted = true;
713 mm->bombonerror = true;
717 // set up the linked list (everything in the free list;
719 //printf(" linked list making!\n");
721 mm->mmfree = &(mm->mmblocks[0]);
722 for(i=0;i<MAXBLOCKS-1;i++)
724 mm->mmblocks[i].next = &(mm->mmblocks[i+1]);
726 mm->mmblocks[i].next = NULL;
729 // locked block of all memory until we punch out free space
731 //printf(" newblock making!\n");
732 //MM_GetNewBlock(mm);
734 mm->mmhead = mm->mmnew; // this will allways be the first node
735 mm->mmnew->start = 0;
736 mm->mmnew->length = 0xffff;
737 mm->mmnew->attributes = LOCKBIT;
738 mm->mmnew->next = NULL;
739 mm->mmrover = mm->mmhead;
742 // get all available near conventional memory segments
744 // printf(" nearheap making!\n");
747 length=(dword)_memavl();//(dword)GetFreeSize();
748 start = (void huge *)(mm->nearheap = _nmalloc(length));
752 start = (void huge *)(mm->nearheap = malloc(length));
754 length -= 16-(FP_OFF(start)&15);
755 length -= SAVENEARHEAP;
756 seglength = length / 16; // now in paragraphs
757 segstart = FP_SEG(start)+(FP_OFF(start)+15)/16;
758 MML_UseSpace(segstart,seglength, mm);
759 mmi->nearheap = length;
760 printf("start=%Fp segstart=%x seglen=%lu len=%lu\n", start, segstart, seglength, length);
764 // get all available far conventional memory segments
766 // printf(" farheap making!\n");
769 length=(dword)GetFarFreeSize();//0xffffUL*4UL;
772 length=farcoreleft();
774 //start = mm->farheap = halloc(length, 1);
775 start = mm->farheap = _fmalloc(length);
776 length -= 16-(FP_OFF(start)&15);
777 length -= SAVEFARHEAP;
778 seglength = length / 16; // now in paragraphs
779 segstart = FP_SEG(start)+(FP_OFF(start)+15)/16;
780 MML_UseSpace(segstart,seglength, mm);
781 mmi->farheap = length;
782 printf("start=%Fp segstart=%x seglen=%lu len=%lu\n", start, segstart, seglength, length);
785 mmi->mainmem = mmi->nearheap + mmi->farheap;
792 // detect EMS and allocate up to 64K at page frame
795 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
813 ,ParmStringsexmm) == 0)
814 goto emsskip; // param NOEMS
816 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
817 if(MML_CheckForEMS())
820 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
821 MML_SetupEMS(mm); // allocate space
823 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
824 //TODO: EMS4! AND EMS 3.2 MASSIVE DATA HANDLMENT!
825 MML_UseSpace(mm->EMSpageframe,(MAPPAGES)*0x4000lu, mm);
826 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
828 //if(mm->EMSVer<0x40)
829 MM_MapEMS(mm, mmi); // map in used pages
831 //MM_MapXEMS(mm, mmi); // map in used pages
838 // detect XMS and get upper memory blocks
858 ,ParmStringsexmm) == 0)
859 goto xmsskip; // param NOXMS
861 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
862 if(MML_CheckForXMS(mm))
864 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
866 MML_SetupXMS(mm, mmi); // allocate as many UMBs as possible
870 // allocate the misc buffer
873 mm->mmrover = mm->mmhead; // start looking for space after low block
875 MM_GetPtr(&(mm->bufferseg),BUFFERSIZE, mm, mmi);
878 //==========================================================================
885 = Frees all conventional, EMS, and XMS allocated
890 void MM_Shutdown(mminfo_t *mm)
895 _ffree(mm->farheap); printf(" far freed\n");
897 _nfree(mm->nearheap); printf(" near freed\n");
900 free(mm->nearheap); printf(" near freed\n");
902 if(MML_CheckForEMS()){ MML_ShutdownEMS(mm); printf(" EMS freed\n"); }
903 if(MML_CheckForXMS(mm)){ MML_ShutdownXMS(mm); printf(" XMS freed\n"); }
906 //==========================================================================
913 = Allocates an unlocked, unpurgable block
918 void MM_GetPtr(memptr *baseptr,dword size, mminfo_t *mm, mminfotype *mmi)
920 mmblocktype huge *scan,huge *lastscan,huge *endscan,huge *purge,huge *next;
925 needed = (size+15)/16; // convert size from bytes to paragraphs
927 //MM_GetNewBlock(mm);
928 GETNEWBLOCK; // fill in start and next after a spot is found
929 mm->mmnew->length = needed;
930 mm->mmnew->useptr = baseptr;
931 mm->mmnew->attributes = BASEATTRIBUTES;
933 for(search = 0; search<mm->endid; search++)
935 printf(" [case]"); //0000
937 // first search: try to allocate right after the rover, then on up
938 // second search: search from the head pointer up to the rover
939 // third search: compress memory, then scan from start
940 if(search == 1 && mm->mmrover == mm->mmhead)
947 lastscan = mm->mmrover;
948 scan = mm->mmrover->next;
953 lastscan = mm->mmhead;
954 scan = mm->mmhead->next;
955 endscan = mm->mmrover;
960 lastscan = mm->mmhead;
961 scan = mm->mmhead->next;
966 startseg = lastscan->start + (word)lastscan->length;
968 while(scan != endscan)
970 //printf(","); //0000
971 if(scan->start - startseg >= needed)
975 // got enough space between the end of lastscan and
976 // the start of scan, so throw out anything in the middle
977 // and allocate the new block
979 purge = lastscan->next;
980 lastscan->next = mm->mmnew;
981 mm->mmnew->start = *(word *)baseptr = startseg;
982 mm->mmnew->next = scan;
984 { // free the purgable block
985 printf(" freeing block~\n"); //0000
988 //MM_FreeBlock(purge, mm);
989 purge = next; // purge another if not at scan
991 mm->mmrover = mm->mmnew;
992 return; // good allocation!
996 // if this block is purge level zero or locked, skip past it
998 if((scan->attributes & LOCKBIT)
999 || !(scan->attributes & PURGEBITS) )
1001 printf(" [lock] "); //0000
1002 printf("len=%lu ", scan->length);
1004 startseg = lastscan->start + (word)lastscan->length;
1008 scan=scan->next; // look at next line
1012 if (mm->bombonerror)
1017 printf(OUT_OF_MEM_MSG,(size-mmi->nearheap));
1018 printf("for stability reasons the program will shut down! wwww\n");
1019 printf(" endid=%u\n",(mm->endid));
1027 //==========================================================================
1030 ====================
1034 = Allocates an unlocked, unpurgable block
1036 ====================
1039 void MM_FreePtr(memptr *baseptr, mminfo_t *mm)
1041 mmblocktype huge *scan,huge *last;
1046 if(baseptr == mm->mmrover->useptr) // removed the last allocated block
1047 mm->mmrover = mm->mmhead;
1049 while(scan->useptr != baseptr && scan)
1057 printf("MM_FreePtr: Block not found!\n");
1061 last->next = scan->next;
1064 //MM_FreeBlock(scan, mm);
1066 //==========================================================================
1069 =====================
1073 = Sets the purge level for a block (locked blocks cannot be made purgable)
1075 =====================
1078 void MM_SetPurge(memptr *baseptr, int purge, mminfo_t *mm)
1080 mmblocktype huge *start;
1082 start = mm->mmrover;
1086 if(mm->mmrover->useptr == baseptr)
1089 mm->mmrover = mm->mmrover->next;
1092 mm->mmrover = mm->mmhead;
1093 else if(mm->mmrover == start)
1095 printf("MM_SetPurge: Block not found!");
1101 mm->mmrover->attributes &= ~PURGEBITS;
1102 mm->mmrover->attributes |= purge;
1105 //==========================================================================
1108 =====================
1112 = Locks / unlocks the block
1114 =====================
1117 void MM_SetLock(memptr *baseptr, boolean locked, mminfo_t *mm)
1119 mmblocktype huge *start;
1121 start = mm->mmrover;
1125 if(mm->mmrover->useptr == baseptr)
1128 mm->mmrover = mm->mmrover->next;
1131 mm->mmrover = mm->mmhead;
1132 else if(mm->mmrover == start)
1134 printf("MM_SetLock: Block not found!");
1140 mm->mmrover->attributes &= ~LOCKBIT;
1141 mm->mmrover->attributes |= locked*LOCKBIT;
1144 //==========================================================================
1147 =====================
1151 = Throws out all purgable stuff and compresses movable blocks
1153 =====================
1156 void MM_SortMem(mminfo_t *mm)
1158 mmblocktype huge *scan,huge *last,huge *next;
1159 unsigned start,length,source,dest,oldborder;
1163 // lock down a currently playing sound
1165 /*++++ playing = SD_SoundPlaying ();
1171 playing += STARTPCSOUNDS;
1174 playing += STARTADLIBSOUNDS;
1177 MM_SetLock(&(memptr)audiosegs[playing],true);
1182 // oldborder = bordercolor;
1183 // VW_ColorBorder (15);
1190 last = NULL; // shut up compiler warning
1194 if(scan->attributes & LOCKBIT)
1197 // block is locked, so try to pile later blocks right after it
1199 start = scan->start + scan->length;
1203 if(scan->attributes & PURGEBITS)
1206 // throw out the purgable block
1210 //MM_FreeBlock(scan, mm);
1218 // push the non purgable block on top of the last moved block
1220 if(scan->start != start)
1222 length = scan->length;
1223 source = scan->start;
1225 while(length > 0xf00)
1227 movedata(source,0,dest,0,0xf00*16);
1232 movedata(source,0,dest,0,length*16);
1234 scan->start = start;
1235 *(unsigned *)scan->useptr = start;
1237 start = scan->start + scan->length;
1242 scan = scan->next; // go to next block
1245 mm->mmrover = mm->mmhead;
1250 // VW_ColorBorder (oldborder);
1253 MM_SetLock(&(memptr)audiosegs[playing],false);*/
1257 //==========================================================================
1261 =====================
1265 =====================
1268 void MM_ShowMemory(/*page_t *page, */mminfo_t *mm)
1270 mmblocktype huge *scan;
1274 //++++ word chx,chy;
1275 byte scratch[160],str[16];
1277 //**** VW_SetDefaultColors();
1278 //**** VW_SetLineWidth(40);
1279 //++++mh temp = bufferofs;
1280 //++++mh bufferofs = 0;
1281 //**** VW_SetScreen (0,0);
1294 /*++++ if(scan->attributes & PURGEBITS)
1295 color = 5; // dark purple = purgable
1297 color = 9; // medium blue = non purgable
1298 if(scan->attributes & LOCKBIT)
1299 color = 12; // red = locked*/
1300 if(scan->start<=end)
1303 write(debughandle,"\nMM_ShowMemory: Memory block order currupted!\n",strlen("\nMM_ShowMemory: Memory block order currupted!\n"));
1304 //modexprint(&page, chx, chy, 1, 0, 24, "\nMM_ShowMemory: Memory block order currupted!\n");
1307 end = scan->start+scan->length-1;
1308 //++++ chy = scan->start/320;
1309 //++++ chx = scan->start%320;
1310 //modexhlin(page, scan->start, (unsigned)end, chy, color);
1311 //for(chx=scan->start;chx+4>=(word)end;chx+=4)
1313 //++++ modexClearRegion(page, chx, chy, 4, 4, color);
1316 //++++ VW_Hlin(scan->start,(unsigned)end,0,color);
1318 //++++ VW_Plot(scan->start,0,15);
1319 //++++ modexClearRegion(page, chx, chy, 4, 4, 15);
1320 if(scan->next->start > end+1)
1321 //++++ VW_Hlin(end+1,scan->next->start,0,0); // black = free
1322 //for(chx=scan->next->start;chx+4>=(word)end+1;chx+=4)
1324 //++++ chx+=scan->next->start;
1325 //++++ modexClearRegion(page, chx, chy, 4, 4, 2);
1327 //modexhlin(page, end+1,scan->next->start, chy, 0);
1330 end = scan->length-1;
1331 y = scan->start/320;
1332 x = scan->start%320;
1333 VW_Hlin(x,x+end,y,color);
1335 if (scan->next && scan->next->start > end+1)
1336 VW_Hlin(x+end+1,x+(scan->next->start-scan->start),y,0); // black = free
1340 //printf("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"); //bug!
1341 strcpy(scratch,"Seg:");
1342 ultoa (scan->start,str,16);
1343 strcat (scratch,str);
1344 strcat (scratch,"\tSize:");
1345 ultoa ((dword)scan->length,str,10);
1346 strcat (scratch,str);
1347 strcat (scratch,"\tOwner:0x");
1348 owner = (unsigned)scan->useptr;
1349 ultoa (owner,str,16);
1350 strcat (scratch,str);
1351 strcat (scratch,"\n");
1352 write(debughandle,scratch,strlen(scratch));
1353 //modexprint(page, chx, chy, 1, 0, 24, &scratch);
1355 //fprintf(stdout, "%s", scratch);
1364 //**** VW_SetLineWidth(64);
1365 //++++mh bufferofs = temp;
1369 //==========================================================================
1372 =====================
1376 =====================
1379 void MM_DumpData(mminfo_t *mm)
1381 mmblocktype huge *scan,huge *best;
1382 long lowest,oldlowest;
1388 //++++free(mm->nearheap);
1389 dumpfile = fopen ("mmdump.16","w");
1391 printf("MM_DumpData: Couldn't open MMDUMP.16!\n");
1404 owner = (word)scan->useptr;
1406 if (owner && owner<lowest && owner > oldlowest)
1415 if (lowest != 0xffff)
1417 if (best->attributes & PURGEBITS)
1421 if (best->attributes & LOCKBIT)
1425 fprintf (dumpfile,"0x%p (%c%c) = %u\n"
1426 ,(word)lowest,lock,purge,best->length);
1429 } while (lowest != 0xffff);
1432 printf("MMDUMP.16 created.\n");
1435 //==========================================================================
1439 ======================
1443 = Returns the total free space without purging
1445 ======================
1448 dword MM_UnusedMemory(mminfo_t *mm)
1451 mmblocktype huge *scan;
1458 free += scan->next->start - (scan->start + scan->length);
1466 //==========================================================================
1470 ======================
1474 = Returns the total free space with purging
1476 ======================
1479 dword MM_TotalFree(mminfo_t *mm)
1482 mmblocktype huge *scan;
1489 if((scan->attributes&PURGEBITS) && !(scan->attributes&LOCKBIT))
1490 free += scan->length;
1491 free += scan->next->start - (scan->start + scan->length);
1499 //==========================================================================
1502 =====================
1506 =====================
1509 void MM_Report(/*page_t *page, */mminfo_t *mm, mminfotype *mmi)
1511 if(MML_CheckForEMS())
1513 printf("EMM v%x.%x available\n", mm->EMSVer>>4,mm->EMSVer&0x0F);
1514 printf("totalEMSpages=%u\n", mm->totalEMSpages);
1515 printf("freeEMSpages=%u\n", mm->freeEMSpages);
1516 printf("EMSpageframe=%x\n", mm->EMSpageframe);
1518 if(MML_CheckForXMS(mm)) printf("XMSaddr=%X\n", *XMSaddr);
1519 printf("near=%lu\n", mmi->nearheap);
1520 printf("far=%lu\n", mmi->farheap);
1521 printf("EMSmem=%lu\n", mmi->EMSmem);
1522 printf("XMSmem=%lu\n", mmi->XMSmem);
1523 printf("mainmem=%lu\n", mmi->mainmem);
1524 printf("UnusedMemory=%lu\n", MM_UnusedMemory(mm));
1525 printf("TotalFree=%lu\n", MM_TotalFree(mm));
1526 //mmi->nearheap+mmi->farheap+
1527 printf("TotalUsed=%lu\n", mmi->mainmem+mmi->EMSmem+mmi->XMSmem);//+);
1529 // printf("UnusedMemory=%lu kb\n", MM_UnusedMemory()/10248);
1530 // printf("TotalFree=%lu kb\n", MM_TotalFree()/10248);
1533 //==========================================================================
1536 =====================
1540 =====================
1543 void MM_EMSerr(byte *stri, byte err)
1545 //Returns a text string describing the error code in EMS.Error.
1549 strcat(stri, "successful");
1552 strcat(stri, "internal error");
1555 strcat(stri, "hardware malfunction");
1558 strcat(stri, "busy .. retry later");
1561 strcat(stri, "invalid handle");
1564 strcat(stri, "undefined function requested by application");
1567 strcat(stri, "no more handles available");
1570 strcat(stri, "error in save or restore of mapping context");
1573 strcat(stri, "insufficient memory pages in system");
1576 strcat(stri, "insufficient memory pages available");
1579 strcat(stri, "zero pages requested");
1582 strcat(stri, "invalid logical page number encountered");
1585 strcat(stri, "invalid physical page number encountered");
1588 strcat(stri, "page-mapping hardware state save area is full");
1591 strcat(stri, "save of mapping context failed");
1594 strcat(stri, "restore of mapping context failed");
1597 strcat(stri, "undefined subfunction");
1600 strcat(stri, "undefined attribute type");
1603 strcat(stri, "feature not supported");
1606 strcat(stri, "successful, but a portion of the source region has been overwritten");
1609 strcat(stri, "length of source or destination region exceeds length of region allocated to either source or destination handle");
1612 strcat(stri, "conventional and expanded memory regions overlap");
1615 strcat(stri, "offset within logical page exceeds size of logical page");
1618 strcat(stri, "region length exceeds 1 MB");
1621 strcat(stri, "source and destination EMS regions have same handle and overlap");
1624 strcat(stri, "memory source or destination type undefined");
1627 strcat(stri, "specified alternate map register or DMA register set not supported");
1630 strcat(stri, "all alternate map register or DMA register sets currently allocated");
1633 strcat(stri, "alternate map register or DMA register sets not supported");
1636 strcat(stri, "undefined or unallocated alternate map register or DMA register set");
1639 strcat(stri, "dedicated DMA channels not supported");
1642 strcat(stri, "specified dedicated DMA channel not supported");
1645 strcat(stri, "no such handle name");
1648 strcat(stri, "a handle found had no name, or duplicate handle name");
1651 strcat(stri, "attempted to wrap around 1M conventional address space");
1654 strcat(stri, "source array corrupted");
1657 strcat(stri, "operating system denied access");
1660 strcat(stri, "undefined error");
1664 //==========================================================================
1667 =====================
1671 =====================
1674 void MM_BombOnError(boolean bomb, mminfo_t *mm)
1676 mm->bombonerror = bomb;
1679 /*void MM_GetNewBlock(mminfo_t *mm)
1683 mm->mmnew=mm->mmfree;
1684 mm->mmfree=mm->mmfree->next;
1685 if(!(mm->mmnew=mm->mmfree))
1687 printf("MM_GETNEWBLOCK: No free blocks!\n");
1690 mm->mmfree=mm->mmfree->next;
1691 mm->endid++; //end of list
1694 void MM_FreeBlock(mmblocktype *x, mminfo_t *mm)
1699 mm->endid--; //end of list
1702 void MM_seguin(void)
1712 void MM_segude(void)
1720 pull data from far and put it into ds var