corrections to scren bar rendering offsets
[AROS.git] / rom / exec / memory.c
blobac0567c058beb4f3c8e15d079e128bdf484be009
1 /*
2 Copyright � 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
7 #include <exec/rawfmt.h>
8 #include <exec/memheaderext.h>
9 #include <proto/kernel.h>
11 #include "exec_intern.h"
12 #include "exec_util.h"
13 #include "etask.h"
14 #include "memory.h"
15 #include "mungwall.h"
17 #define DMH(x)
20 * Find MemHeader to which address belongs.
21 * This function is legal to be called in supervisor mode (we use TypeOfMem()
22 * in order to validate addresses in tons of places). So, here are checks.
24 struct MemHeader *FindMem(APTR address, struct ExecBase *SysBase)
26 int usermode = (KernelBase != NULL) && (KrnIsSuper() == 0);
27 struct MemHeader *mh;
29 /* Nobody should change the memory list now. */
30 if (usermode) MEM_LOCK_SHARED;
32 /* Follow the list of MemHeaders */
33 mh = (struct MemHeader *)SysBase->MemList.lh_Head;
35 while (mh->mh_Node.ln_Succ != NULL)
37 if (mh->mh_Attributes & MEMF_MANAGED)
39 struct MemHeaderExt *mhe = (struct MemHeaderExt *)mh;
41 if (mhe->mhe_InBounds)
43 if (mhe->mhe_InBounds(mhe, address, address))
45 if (usermode) MEM_UNLOCK;
46 return mh;
50 else
52 /* Check if this MemHeader fits */
53 if (address >= mh->mh_Lower && address < mh->mh_Upper)
55 /* Yes. Return it. */
56 if (usermode) MEM_UNLOCK;
57 return mh;
60 /* Go to next MemHeader */
61 mh = (struct MemHeader *)mh->mh_Node.ln_Succ;
64 if (usermode) MEM_UNLOCK;
65 return NULL;
68 char *FormatMMContext(char *buffer, struct MMContext *ctx, struct ExecBase *SysBase)
70 if (ctx->addr)
71 buffer = NewRawDoFmt("In %s, block at 0x%p, size %lu", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->func, ctx->addr, ctx->size) - 1;
72 else
73 buffer = NewRawDoFmt("In %s, size %lu", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->func, ctx->size) - 1;
75 if (ctx->mc)
77 buffer = NewRawDoFmt("\nCorrupted MemChunk 0x%p (next 0x%p, size %lu)", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mc, ctx->mc->mc_Next, ctx->mc->mc_Bytes) - 1;
79 if (ctx->mcPrev)
80 buffer = NewRawDoFmt("\nPrevious MemChunk 0x%p (next 0x%p, size %lu)", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mcPrev, ctx->mcPrev->mc_Next, ctx->mcPrev->mc_Bytes) - 1;
83 /* Print MemHeader details */
84 buffer = NewRawDoFmt("\nMemHeader 0x%p (0x%p - 0x%p)", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mh, ctx->mh->mh_Lower, ctx->mh->mh_Upper) - 1;
85 if ((IPTR)ctx->mh->mh_First & (MEMCHUNK_TOTAL - 1))
86 buffer = NewRawDoFmt("\n- Unaligned first chunk address (0x%p)", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mh->mh_First) - 1;
88 if (ctx->mh->mh_Free & (MEMCHUNK_TOTAL - 1))
89 buffer = NewRawDoFmt("\n- Unaligned free space count (0x%p)", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mh->mh_Free) - 1;
91 if (ctx->mh->mh_First)
93 if ((APTR)ctx->mh->mh_First < ctx->mh->mh_Lower)
94 buffer = NewRawDoFmt("\n- First chunk (0x%p) below lower address", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mh->mh_First) - 1;
96 if (((APTR)ctx->mh->mh_First + ctx->mh->mh_Free > ctx->mh->mh_Upper))
97 buffer = NewRawDoFmt("\n- Free space count too large (%lu, first chunk 0x%xp)", (VOID_FUNC)RAWFMTFUNC_STRING, buffer, ctx->mh->mh_Free, ctx->mh->mh_First) - 1;
100 return buffer;
103 /* #define NO_ALLOCATOR_CONTEXT */
105 #ifdef NO_ALLOCATOR_CONTEXT
107 struct MemHeaderAllocatorCtx * mhac_GetSysCtx(struct MemHeader * mh, struct ExecBase * SysBase)
109 return NULL;
112 void mhac_PoolMemHeaderSetup(struct MemHeader * mh, struct ProtectedPool * pool)
114 mh->mh_Node.ln_Name = (STRPTR)pool;
117 ULONG mhac_GetCtxSize()
119 return 0;
122 void mhac_ClearSysCtx(struct MemHeader * mh, struct ExecBase * SysBase)
126 #define mhac_MemChunkClaimed(a, b)
127 #define mhac_IsIndexEmpty(a) (TRUE)
128 #define mhac_ClearIndex(a)
129 #define mhac_MemChunkCreated(a, b, c) { (void)b; }
130 #define mhac_GetBetterPrevMemChunk(a, b, c) (a)
131 #define mhac_GetCloserPrevMemChunk(a, b, c) (a)
132 #define mhac_PoolMemHeaderGetCtx(a) (NULL)
133 #define mhac_PoolMemHeaderGetPool(a) (a->mh_Node.ln_Name)
135 #else
136 /* Allocator optimization support */
139 * The array contains pointers to chunk previous to first chunk of at least size N
141 * N = 1 << (FIRSTPOTBIT + (i * POTSTEP)), where i is index in array
142 * first is defined as MemChunk with lowest address
144 * Each chunk in array locates the place where search should start, not necesarly
145 * where allocation should happen.
147 * If chunk is taken from MemHeader and is present in the index, it must be removed
148 * from index.
150 * If chunk is returned to MemHeader it may be registered with index.
153 #define FIRSTPOTBIT (5)
154 #define FIRSTPOT (1 << FIRSTPOTBIT)
155 #define POTSTEP (1) /* Distance between each level */
156 #define ALLOCATORCTXINDEXSIZE (10) /* Number of levels in index */
158 struct MemHeaderAllocatorCtx
160 struct Node mhac_Node;
161 struct MemHeader *mhac_MemHeader;
162 APTR mhac_Data1;
164 ULONG mhac_IndexSize;
165 struct MemChunk *mhac_PrevChunks[ALLOCATORCTXINDEXSIZE];
168 ULONG mhac_GetCtxSize()
170 return (AROS_ROUNDUP2(sizeof(struct MemHeaderAllocatorCtx), MEMCHUNK_TOTAL));
173 static BOOL mhac_IsIndexEmpty(struct MemHeaderAllocatorCtx * mhac)
175 LONG i;
176 if (!mhac)
177 return TRUE;
179 for (i = 0; i < mhac->mhac_IndexSize; i++)
180 if (mhac->mhac_PrevChunks[i] != NULL)
181 return FALSE;
183 return TRUE;
186 static void mhac_ClearIndex(struct MemHeaderAllocatorCtx * mhac)
188 LONG i;
190 if (!mhac)
191 return;
193 for (i = 0; i < ALLOCATORCTXINDEXSIZE; i++)
194 mhac->mhac_PrevChunks[i] = NULL;
197 static void mhac_SetupMemHeaderAllocatorCtx(struct MemHeader * mh, ULONG maxindexsize,
198 struct MemHeaderAllocatorCtx * mhac)
200 /* Adjust index size to space in MemHeader */
201 IPTR size = (IPTR)mh->mh_Upper - (IPTR)mh->mh_Lower;
202 LONG indexsize = 0;
204 size = size >> FIRSTPOTBIT;
205 size = size >> POTSTEP;
207 for (; size > 0; size = size >> POTSTEP) indexsize++;
209 if (indexsize < 0) indexsize = 0;
210 if (indexsize > maxindexsize) indexsize = maxindexsize;
211 if (indexsize > ALLOCATORCTXINDEXSIZE) indexsize = ALLOCATORCTXINDEXSIZE;
213 mhac->mhac_MemHeader = mh;
214 mhac->mhac_IndexSize = indexsize;
215 mhac_ClearIndex(mhac);
218 void mhac_ClearSysCtx(struct MemHeader * mh, struct ExecBase * SysBase)
220 struct MemHeaderAllocatorCtx * mhac = NULL;
222 ForeachNode(&PrivExecBase(SysBase)->AllocatorCtxList, mhac)
224 if (mhac->mhac_MemHeader == mh)
226 mhac_ClearIndex(mhac);
227 break;
232 struct MemHeaderAllocatorCtx * mhac_GetSysCtx(struct MemHeader * mh, struct ExecBase * SysBase)
234 struct MemHeaderAllocatorCtx * mhac = NULL;
236 ForeachNode(&PrivExecBase(SysBase)->AllocatorCtxList, mhac)
238 if (mhac->mhac_MemHeader == mh)
239 return mhac;
242 /* New context is needed */
243 mhac = Allocate(mh, sizeof(struct MemHeaderAllocatorCtx));
244 mhac_SetupMemHeaderAllocatorCtx(mh, ALLOCATORCTXINDEXSIZE, mhac);
245 AddTail(&PrivExecBase(SysBase)->AllocatorCtxList, (struct Node *)mhac);
247 return mhac;
250 static void mhac_MemChunkClaimed(struct MemChunk * mc, struct MemHeaderAllocatorCtx * mhac)
252 LONG i;
254 if (!mhac)
255 return;
257 for (i = 0; i < mhac->mhac_IndexSize; i++)
259 if (mhac->mhac_PrevChunks[i] != NULL &&
260 (mhac->mhac_PrevChunks[i] == mc || mhac->mhac_PrevChunks[i]->mc_Next == mc))
262 mhac->mhac_PrevChunks[i] = NULL;
267 static LONG mhac_CalcIndex(LONG size, ULONG indexsize)
269 LONG r = 0;
270 size >>= FIRSTPOTBIT;
271 while (size >>= 1)
272 r++;
274 if (r > indexsize - 1) r = indexsize - 1;
276 return r;
279 static void mhac_MemChunkCreated(struct MemChunk * mc, struct MemChunk *mcprev, struct MemHeaderAllocatorCtx * mhac)
281 LONG i, v = FIRSTPOT;
283 if (mc->mc_Bytes < FIRSTPOT) /* Allocation too small for index */
284 return;
286 if (!mhac)
287 return;
289 for (i = 0; i < mhac->mhac_IndexSize; i++, v = v << POTSTEP)
291 if (mc->mc_Bytes < v)
292 break; /* Chunk smaller than index at i. Stop */
294 /* If no chunk in index or given passed chunk has lower address than chunk in index */
295 if (mhac->mhac_PrevChunks[i] == NULL ||
296 (mhac->mhac_PrevChunks[i] != NULL && mhac->mhac_PrevChunks[i]->mc_Next > mc))
298 mhac->mhac_PrevChunks[i] = mcprev;
303 /* General idea:
304 * Function returned pointer to chunk that is prev to chunk that will allow
305 * to locate faster chunk big enough for allocation. Function never returns NULL.
306 * Current implementation:
307 * Function returns pointer to chunk that is prev to first biggest chunk,
308 * not bigger than requested size
310 static struct MemChunk * mhac_GetBetterPrevMemChunk(struct MemChunk * prev, IPTR size, struct MemHeaderAllocatorCtx * mhac)
312 struct MemChunk * _return = prev;
314 if (size < FIRSTPOT)
315 return _return; /* Allocation too small for index */
317 if (mhac)
319 LONG i;
320 LONG ii = mhac_CalcIndex(size, mhac->mhac_IndexSize);
322 if (mhac->mhac_PrevChunks[ii] != NULL)
323 _return = mhac->mhac_PrevChunks[ii];
324 else
326 for (i = ii - 1; i >= 0; i--)
328 if (mhac->mhac_PrevChunks[i] != NULL)
330 _return = mhac->mhac_PrevChunks[i];
331 break;
337 return _return;
340 static struct MemChunk * mhac_GetCloserPrevMemChunk(struct MemChunk * prev, APTR addr, struct MemHeaderAllocatorCtx * mhac)
342 struct MemChunk * _return = prev;
344 if (mhac)
346 LONG i;
348 for (i = 0; i < mhac->mhac_IndexSize; i++)
350 if (mhac->mhac_PrevChunks[i] != NULL &&
351 (APTR)mhac->mhac_PrevChunks[i]->mc_Next < addr &&
352 mhac->mhac_PrevChunks[i]->mc_Next > _return->mc_Next)
354 _return = mhac->mhac_PrevChunks[i];
359 return _return;
363 * Enhace MemHeader that is part of pool with MemHeaderAllocatorContext
365 void mhac_PoolMemHeaderSetup(struct MemHeader * mh, struct ProtectedPool * pool)
367 struct MemHeaderAllocatorCtx * mhac = Allocate(mh, sizeof(struct MemHeaderAllocatorCtx));
369 mhac_SetupMemHeaderAllocatorCtx(mh, 5, mhac);
371 mhac->mhac_Data1 = pool;
372 mh->mh_Node.ln_Name = (STRPTR)mhac;
375 #define mhac_PoolMemHeaderGetCtx(a) ((struct MemHeaderAllocatorCtx *)(a->mh_Node.ln_Name))
376 #define mhac_PoolMemHeaderGetPool(a) (mhac_PoolMemHeaderGetCtx(a)->mhac_Data1)
378 #endif
381 #ifdef NO_CONSISTENCY_CHECKS
383 #define validateHeader(mh, op, addr, size, SysBase) TRUE
384 #define validateChunk(mc, prev, mh, op, addr, size, SysBase) TRUE
386 #else
388 static ULONG memAlerts[] =
390 AT_DeadEnd|AN_MemoryInsane, /* MM_ALLOC */
391 AT_DeadEnd|AN_MemCorrupt, /* MM_FREE */
392 AN_FreeTwice /* MM_OVERLAP */
396 * MemHeader validation routine. Rules are:
398 * 1. Both mh_First and mh_Free must be MEMCHUNK_TOTAL-aligned.
399 * 2. Free space (if present) must completely fit in between mh_Lower and mh_Upper.
400 * We intentionally don't check header's own location. We assume that in future we'll
401 * be able to put MEMF_CHIP headers inside MEMF_FAST memory, for speed up.
403 static BOOL validateHeader(struct MemHeader *mh, UBYTE op, APTR addr, IPTR size, struct TraceLocation *tp, struct ExecBase *SysBase)
405 if (((IPTR)mh->mh_First & (MEMCHUNK_TOTAL - 1)) || (mh->mh_Free & (MEMCHUNK_TOTAL - 1)) || /* 1 */
406 (mh->mh_First &&
407 (((APTR)mh->mh_First < mh->mh_Lower) || ((APTR)mh->mh_First + mh->mh_Free > mh->mh_Upper)))) /* 2 */
409 if (tp)
411 /* TraceLocation is not supplied by PrepareExecBase(). Fail silently. */
412 struct MMContext alertData;
414 alertData.mh = mh;
415 alertData.mc = NULL;
416 alertData.mcPrev = NULL;
417 alertData.func = tp->function;
418 alertData.addr = addr;
419 alertData.size = size;
420 alertData.op = op;
422 Exec_ExtAlert(memAlerts[op], tp->caller, tp->stack, AT_MEMORY, &alertData, SysBase);
426 * Theoretically during very early boot we can fail to post an alert (no KernelBase yet).
427 * In this case we return with fault indication.
429 return FALSE;
431 return TRUE;
435 * MemChunk consistency check. Rules are:
437 * 1. Both mc_Next and mc_Bytes must me MEMCHUNK_TOTAL-aligned, and mc_Bytes can not be zero.
438 * 2. End of this chunk must not be greater than mh->mh_Upper
439 * 3. mc_Next (if present) must point in between end of this chunk and mh->mh_Upper - MEMCHUNK_TOTAL.
440 * There must be at least MEMHCUNK_TOTAL allocated bytes between free chunks.
442 * This function is inlined for speed improvements.
444 static inline BOOL validateChunk(struct MemChunk *p2, struct MemChunk *p1, struct MemHeader *mh,
445 UBYTE op, APTR addr, IPTR size,
446 struct TraceLocation *tp, struct ExecBase *SysBase)
448 if (((IPTR)p2->mc_Next & (MEMCHUNK_TOTAL-1)) || (p2->mc_Bytes == 0) || (p2->mc_Bytes & (MEMCHUNK_TOTAL-1)) || /* 1 */
449 ((APTR)p2 + p2->mc_Bytes > mh->mh_Upper) || /* 2 */
450 (p2->mc_Next && (((APTR)p2->mc_Next < (APTR)p2 + p2->mc_Bytes + MEMCHUNK_TOTAL) || /* 3 */
451 ((APTR)p2->mc_Next > mh->mh_Upper - MEMCHUNK_TOTAL))))
453 if (tp)
455 struct MMContext alertData;
457 alertData.mh = mh;
458 alertData.mc = p2;
459 alertData.mcPrev = (p1 == (struct MemChunk *)&mh->mh_First) ? NULL : p1;
460 alertData.func = tp->function;
461 alertData.addr = addr;
462 alertData.size = size;
463 alertData.op = op;
465 Exec_ExtAlert(memAlerts[op], tp->caller, tp->stack, AT_MEMORY, &alertData, SysBase);
467 return FALSE;
470 return TRUE;
473 #endif
476 * Allocate block from the given MemHeader in a specific way.
477 * This routine can be called with SysBase = NULL.
478 * MemHeaderAllocatorCtx
479 * This parameter is optional, allocation needs to work without it as well.
480 * However if it was passed once for a given MemHeader it needs to be passed
481 * in all consecutive calls.
483 APTR stdAlloc(struct MemHeader *mh, struct MemHeaderAllocatorCtx *mhac, IPTR size,
484 ULONG requirements, struct TraceLocation *tp, struct ExecBase *SysBase)
487 * The check has to be done for the second time. Exec uses stdAlloc on memheader
488 * passed upon startup. This is bad, very bad. So here a temporary hack :)
490 if ((mh->mh_Node.ln_Type == NT_MEMORY) &&
491 (mh->mh_Attributes & MEMF_MANAGED) &&
492 (((struct MemHeaderExt *)mh)->mhe_Magic == MEMHEADER_EXT_MAGIC))
494 struct MemHeaderExt *mhe = (struct MemHeaderExt *)mh;
496 if (mhe->mhe_Alloc)
498 return mhe->mhe_Alloc(mhe, size, &requirements);
500 else
501 return NULL;
503 else
505 /* First round byteSize up to a multiple of MEMCHUNK_TOTAL */
506 IPTR byteSize = AROS_ROUNDUP2(size, MEMCHUNK_TOTAL);
507 struct MemChunk *mc=NULL, *p1, *p2;
509 /* Validate MemHeader before doing anything. */
510 if (!validateHeader(mh, MM_ALLOC, NULL, size, tp, SysBase))
511 return NULL;
513 /* Validate if there is even enough total free memory */
514 if (mh->mh_Free < byteSize)
515 return NULL;
519 * The free memory list is only single linked, i.e. to remove
520 * elements from the list I need the node's predecessor. For the
521 * first element I can use mh->mh_First instead of a real predecessor.
523 p1 = mhac_GetBetterPrevMemChunk((struct MemChunk *)&mh->mh_First, size, mhac);
524 p2 = p1->mc_Next;
527 * Follow the memory list. p1 is the previous MemChunk, p2 is the current one.
528 * On 1st pass p1 points to mh->mh_First, so that changing p1->mc_Next actually
529 * changes mh->mh_First.
531 while (p2 != NULL)
533 /* Validate the current chunk */
534 if (!validateChunk(p2, p1, mh, MM_ALLOC, NULL, size, tp, SysBase))
535 return NULL;
537 /* Check if the current block is large enough */
538 if (p2->mc_Bytes>=byteSize)
540 /* It is. */
541 mc = p1;
543 /* Use this one if MEMF_REVERSE is not set.*/
544 if (!(requirements & MEMF_REVERSE))
545 break;
546 /* Else continue - there may be more to come. */
549 /* Go to next block */
550 p1 = p2;
551 p2 = p1->mc_Next;
554 /* Something found? */
555 if (mc != NULL)
557 /* Remember: if MEMF_REVERSE is set p1 and p2 are now invalid. */
558 p1 = mc;
559 p2 = p1->mc_Next;
561 mhac_MemChunkClaimed(p2, mhac);
563 /* Remove the block from the list and return it. */
564 if (p2->mc_Bytes == byteSize)
566 /* Fits exactly. Just relink the list. */
567 p1->mc_Next = p2->mc_Next;
568 mc = p2;
570 else
572 struct MemChunk * pp = p1;
574 if (requirements & MEMF_REVERSE)
576 /* Return the last bytes. */
577 p1->mc_Next=p2;
578 mc = (struct MemChunk *)((UBYTE *)p2+p2->mc_Bytes-byteSize);
580 else
582 /* Return the first bytes. */
583 p1->mc_Next=(struct MemChunk *)((UBYTE *)p2+byteSize);
584 mc=p2;
587 p1 = p1->mc_Next;
588 p1->mc_Next = p2->mc_Next;
589 p1->mc_Bytes = p2->mc_Bytes-byteSize;
591 mhac_MemChunkCreated(p1, pp, mhac);
594 mh->mh_Free -= byteSize;
596 /* Clear the block if requested */
597 if (requirements & MEMF_CLEAR)
598 memset(mc, 0, byteSize);
600 else
602 if (!mhac_IsIndexEmpty(mhac))
605 * Since chunks created during deallocation are not returned to index,
606 * retry with cleared index.
608 mhac_ClearIndex(mhac);
609 mc = stdAlloc(mh, mhac, size, requirements, tp, SysBase);
613 return mc;
618 * Free 'byteSize' bytes starting at 'memoryBlock' belonging to MemHeader 'freeList'
619 * MemHeaderAllocatorCtx
620 * See stdAlloc
622 void stdDealloc(struct MemHeader *freeList, struct MemHeaderAllocatorCtx *mhac, APTR addr, IPTR size, struct TraceLocation *tp, struct ExecBase *SysBase)
624 APTR memoryBlock;
625 IPTR byteSize;
626 struct MemChunk *p1, *p2, *p3;
627 UBYTE *p4;
629 if ((freeList->mh_Node.ln_Type == NT_MEMORY) &&
630 (freeList->mh_Attributes & MEMF_MANAGED) &&
631 (((struct MemHeaderExt *)freeList)->mhe_Magic == MEMHEADER_EXT_MAGIC))
633 struct MemHeaderExt *mhe = (struct MemHeaderExt *)freeList;
635 if (mhe->mhe_Free)
636 mhe->mhe_Free(mhe, addr, size);
638 else
640 /* Make sure the MemHeader is OK */
641 if (!validateHeader(freeList, MM_FREE, addr, size, tp, SysBase))
642 return;
644 /* Align size to the requirements */
645 byteSize = size + ((IPTR)addr & (MEMCHUNK_TOTAL - 1));
646 byteSize = (byteSize + MEMCHUNK_TOTAL-1) & ~(MEMCHUNK_TOTAL - 1);
648 /* Align the block as well */
649 memoryBlock = (APTR)((IPTR)addr & ~(MEMCHUNK_TOTAL-1));
652 The free memory list is only single linked, i.e. to insert
653 elements into the list I need the node as well as its
654 predecessor. For the first element I can use freeList->mh_First
655 instead of a real predecessor.
657 p1 = (struct MemChunk *)&freeList->mh_First;
658 p2 = freeList->mh_First;
660 /* Start and end(+1) of the block */
661 p3 = (struct MemChunk *)memoryBlock;
662 p4 = (UBYTE *)p3 + byteSize;
664 /* No chunk in list? Just insert the current one and return. */
665 if (p2 == NULL)
667 p3->mc_Bytes = byteSize;
668 p3->mc_Next = NULL;
669 p1->mc_Next = p3;
670 freeList->mh_Free += byteSize;
671 return;
674 /* Find closer chunk */
675 p1=mhac_GetCloserPrevMemChunk(p1, addr, mhac);
676 p2=p1->mc_Next;
678 /* Follow the list to find a place where to insert our memory. */
681 if (!validateChunk(p2, p1, freeList, MM_FREE, addr, size, tp, SysBase))
682 return;
684 /* Found a block with a higher address? */
685 if (p2 >= p3)
687 #if !defined(NO_CONSISTENCY_CHECKS)
689 If the memory to be freed overlaps with the current
690 block something must be wrong.
692 if (p4>(UBYTE *)p2)
694 bug("[MM] Chunk allocator error\n");
695 bug("[MM] Attempt to free %u bytes at 0x%p from MemHeader 0x%p\n", byteSize, memoryBlock, freeList);
696 bug("[MM] Block overlaps (1) with chunk 0x%p (%u bytes)\n", p2, p2->mc_Bytes);
698 Alert(AN_FreeTwice);
699 return;
701 #endif
702 /* End the loop with p2 non-zero */
703 break;
705 /* goto next block */
706 p1 = p2;
707 p2 = p2->mc_Next;
709 /* If the loop ends with p2 zero add it at the end. */
710 } while (p2 != NULL);
712 /* If there was a previous block merge with it. */
713 if (p1 != (struct MemChunk *)&freeList->mh_First)
715 #if !defined(NO_CONSISTENCY_CHECKS)
716 /* Check if they overlap. */
717 if ((UBYTE *)p1 + p1->mc_Bytes > (UBYTE *)p3)
719 bug("[MM] Chunk allocator error\n");
720 bug("[MM] Attempt to free %u bytes at 0x%p from MemHeader 0x%p\n", byteSize, memoryBlock, freeList);
721 bug("[MM] Block overlaps (2) with chunk 0x%p (%u bytes)\n", p1, p1->mc_Bytes);
723 Alert(AN_FreeTwice);
724 return;
726 #endif
727 /* Merge if possible */
728 if ((UBYTE *)p1 + p1->mc_Bytes == (UBYTE *)p3)
730 mhac_MemChunkClaimed(p1, mhac);
731 p3 = p1;
733 * Note: this case does not lead to mhac_MemChunkCreated, because
734 * we don't have chunk prev to p1
737 else
738 /* Not possible to merge */
739 p1->mc_Next = p3;
740 }else
742 There was no previous block. Just insert the memory at
743 the start of the list.
745 p1->mc_Next = p3;
747 /* Try to merge with next block (if there is one ;-) ). */
748 if (p4 == (UBYTE *)p2 && p2 != NULL)
751 Overlap checking already done. Doing it here after
752 the list potentially changed would be a bad idea.
754 mhac_MemChunkClaimed(p2, mhac);
755 p4 += p2->mc_Bytes;
756 p2 = p2->mc_Next;
758 /* relink the list and return. */
759 p3->mc_Next = p2;
760 p3->mc_Bytes = p4 - (UBYTE *)p3;
761 freeList->mh_Free += byteSize;
762 if (p1->mc_Next==p3) mhac_MemChunkCreated(p3, p1, mhac);
767 * TODO:
768 * During transition period four routines below use nommu allocator.
769 * When transition is complete they should use them only if MMU
770 * is inactive. Otherwise they should use KrnAllocPages()/KrnFreePages().
773 /* Non-mungwalled AllocAbs(). Does not destroy sideways regions. */
774 APTR InternalAllocAbs(APTR location, IPTR byteSize, struct ExecBase *SysBase)
776 return nommu_AllocAbs(location, byteSize, SysBase);
780 * Use this if you want to free region allocated by InternalAllocAbs().
781 * Otherwise you hit mungwall problem (FreeMem() expects header).
783 void InternalFreeMem(APTR location, IPTR byteSize, struct TraceLocation *loc, struct ExecBase *SysBase)
785 nommu_FreeMem(location, byteSize, loc, SysBase);
789 * Allocate a region managed by own header. Usable size is reduced by size
790 * of header.
792 APTR AllocMemHeader(IPTR size, ULONG flags, struct TraceLocation *loc, struct ExecBase *SysBase)
794 struct MemHeader *mh;
796 mh = nommu_AllocMem(size, flags, loc, SysBase);
797 DMH(bug("[AllocMemHeader] Allocated %u bytes at 0x%p\n", size, mh));
799 if (mh)
801 struct MemHeader *orig = FindMem(mh, SysBase);
803 if (orig->mh_Attributes & MEMF_MANAGED)
805 struct MemHeaderExt *mhe_orig = (struct MemHeaderExt *)orig;
806 struct MemHeaderExt *mhe = (struct MemHeaderExt *)mh;
807 IPTR header_size = (sizeof(struct MemHeaderExt) + 15) & ~15;
809 /* Copy the basic information */
810 mh->mh_Node.ln_Type = NT_MEMORY;
811 mh->mh_Node.ln_Pri = orig->mh_Node.ln_Pri;
812 mh->mh_Attributes = orig->mh_Attributes;
813 mh->mh_Upper = (void *)mh + size;
814 mh->mh_Lower = (void *)mh;
815 mh->mh_First = (APTR)(IPTR)flags;
816 mh->mh_Free = 0;
818 mhe->mhe_Magic = mhe_orig->mhe_Magic;
820 /* Copy init functions */
821 mhe->mhe_InitPool = mhe_orig->mhe_InitPool;
822 mhe->mhe_DestroyPool = mhe_orig->mhe_DestroyPool;
824 /* Copy memory allocation functions */
825 mhe->mhe_Alloc = mhe_orig->mhe_Alloc;
826 mhe->mhe_AllocAbs = mhe_orig->mhe_AllocAbs;
827 mhe->mhe_AllocVec = mhe_orig->mhe_AllocVec;
828 mhe->mhe_Avail = mhe_orig->mhe_Avail;
829 mhe->mhe_Free = mhe_orig->mhe_Free;
830 mhe->mhe_FreeVec = mhe_orig->mhe_FreeVec;
831 mhe->mhe_InBounds = mhe_orig->mhe_InBounds;
832 mhe->mhe_ReAlloc = mhe_orig->mhe_ReAlloc;
835 * User data will be initialized. Memory pool will get first region
836 * for free.
838 mhe->mhe_UserData = (APTR)mh + header_size;
840 /* Initialize the pool with rest size */
841 if (mhe->mhe_InitPool)
842 mhe->mhe_InitPool(mhe, size, size - header_size);
844 else
846 size -= MEMHEADER_TOTAL;
849 * Initialize new MemHeader.
850 * Inherit attributes from system MemHeader from which
851 * our chunk was allocated.
853 mh->mh_Node.ln_Type = NT_MEMORY;
854 mh->mh_Node.ln_Pri = orig->mh_Node.ln_Pri;
855 mh->mh_Attributes = orig->mh_Attributes;
856 mh->mh_Lower = (APTR)mh + MEMHEADER_TOTAL;
857 mh->mh_Upper = mh->mh_Lower + size;
858 mh->mh_First = mh->mh_Lower;
859 mh->mh_Free = size;
861 /* Create the first (and the only) MemChunk */
862 mh->mh_First->mc_Next = NULL;
863 mh->mh_First->mc_Bytes = size;
866 return mh;
869 /* Free a region allocated by AllocMemHeader() */
870 void FreeMemHeader(APTR addr, struct TraceLocation *loc, struct ExecBase *SysBase)
872 struct MemHeaderExt *mhe = (struct MemHeaderExt *)addr;
874 IPTR size = (IPTR)mhe->mhe_MemHeader.mh_Upper - (IPTR)addr;
876 if (mhe->mhe_MemHeader.mh_Attributes & MEMF_MANAGED)
878 if (mhe->mhe_DestroyPool)
879 mhe->mhe_DestroyPool(mhe);
882 DMH(bug("[FreeMemHeader] Freeing %u bytes at 0x%p\n", size, addr));
883 nommu_FreeMem(addr, size, loc, SysBase);
887 * This is our own Enqueue() version. Currently the only differece is that
888 * we insert our node before the first node with LOWER OR EQUAL priority,
889 * so that for nodes with equal priority it will be LIFO, not FIFO queue.
890 * This speeds up the allocator.
891 * TODO: implement secondary sorting by mh_Free. This will allow to
892 * implement best-match algorithm (so that puddles with smaller free space
893 * will be picked up first). This way the smallest allocations will reuse
894 * smallest chunks instead of fragmenting large ones.
896 static void EnqueueMemHeader(struct MinList *list, struct MemHeader *mh)
898 struct MemHeader *next;
900 /* Look through the list */
901 ForeachNode (list, next)
904 Look for the first MemHeader with a lower or equal pri as the node
905 we have to insert into the list.
907 if (mh->mh_Node.ln_Pri >= next->mh_Node.ln_Pri)
908 break;
911 /* Insert the node before next */
912 mh->mh_Node.ln_Pred = next->mh_Node.ln_Pred;
913 mh->mh_Node.ln_Succ = &next->mh_Node;
914 next->mh_Node.ln_Pred->ln_Succ = &mh->mh_Node;
915 next->mh_Node.ln_Pred = &mh->mh_Node;
919 * Allocate memory with given physical properties from the given pool.
920 * Our pools can be mixed. This means that different puddles from the
921 * pool can have different physical flags. For example the same pool
922 * can contain puddles from both CHIP and FAST memory. This is done in
923 * order to provide a single system default pool for all types of memory.
925 APTR InternalAllocPooled(APTR poolHeader, IPTR memSize, ULONG flags, struct TraceLocation *loc, struct ExecBase *SysBase)
927 struct ProtectedPool *pool = poolHeader + MEMHEADER_TOTAL;
928 APTR ret = NULL;
929 IPTR origSize;
930 struct MemHeader *mh;
932 D(bug("[exec] InternalAllocPooled(0x%p, %u, 0x%08X), header 0x%p\n", poolHeader, memSize, flags, pool));
935 * Memory blocks allocated from the pool store pointers to the MemHeader they were
936 * allocated from. This is done in order to avoid slow lookups in InternalFreePooled().
937 * This is done in AllocVec()-alike manner; the pointer is placed right before the block.
939 memSize += sizeof(struct MemHeader *);
940 origSize = memSize;
942 /* If mungwall is enabled, count also size of walls */
943 if (PrivExecBase(SysBase)->IntFlags & EXECF_MungWall)
944 memSize += MUNGWALL_TOTAL_SIZE;
946 if (pool->pool.Requirements & MEMF_SEM_PROTECTED)
948 ObtainSemaphore(&pool->sem);
951 /* Follow the list of MemHeaders */
952 mh = (struct MemHeader *)pool->pool.PuddleList.mlh_Head;
953 for(;;)
955 ULONG physFlags = flags & MEMF_PHYSICAL_MASK;
957 /* Are there no more MemHeaders? */
958 if (mh->mh_Node.ln_Succ == NULL)
961 * Get a new one.
962 * Usually we allocate puddles of default size, specified during
963 * pool creation. However we can be asked to allocate block whose
964 * size will be larger than default puddle size.
965 * Previously this was handled by threshSize parameter. In our new
966 * implementation we just allocate enlarged puddle. This is done
967 * in order not to waste page tails beyond the allocated large block.
968 * These tails will be used for our pool too. Their size is smaller
969 * than page size but they still perfectly fit for small allocations
970 * (the primary use for pools).
971 * Since our large block is also a puddle, it will be reused for our
972 * pool when the block is freed. It can also be reused for another
973 * large allocation, if it fits in.
974 * Our final puddle size still includes MEMHEADER_TOTAL +
975 * allocator ctx size in any case.
977 IPTR puddleSize = pool->pool.PuddleSize;
979 if (memSize > puddleSize - (MEMHEADER_TOTAL + mhac_GetCtxSize()))
981 IPTR align = PrivExecBase(SysBase)->PageSize - 1;
983 puddleSize = memSize + MEMHEADER_TOTAL + mhac_GetCtxSize();
984 /* Align the size up to page boundary */
985 puddleSize = (puddleSize + align) & ~align;
988 mh = AllocMemHeader(puddleSize, flags, loc, SysBase);
989 D(bug("[InternalAllocPooled] Allocated new puddle 0x%p, size %u\n", mh, puddleSize));
991 /* No memory left? */
992 if (mh == NULL)
993 break;
995 /* Add the new puddle to our pool */
996 mhac_PoolMemHeaderSetup(mh, pool);
997 Enqueue((struct List *)&pool->pool.PuddleList, &mh->mh_Node);
999 /* Fall through to get the memory */
1001 else
1003 /* Ignore existing MemHeaders with free memory smaller than allocation */
1004 if (mh->mh_Free < memSize)
1006 mh = (struct MemHeader *)mh->mh_Node.ln_Succ;
1007 continue;
1011 /* Ignore existing MemHeaders with memory type that differ from the requested ones */
1012 if (physFlags & ~mh->mh_Attributes)
1014 D(bug("[InternalAllocPooled] Wrong flags for puddle 0x%p (wanted 0x%08X, have 0x%08X\n", flags, mh->mh_Attributes));
1016 mh = (struct MemHeader *)mh->mh_Node.ln_Succ;
1017 continue;
1021 /* Try to get the memory */
1022 ret = stdAlloc(mh, mhac_PoolMemHeaderGetCtx(mh), memSize, flags, loc, SysBase);
1023 D(bug("[InternalAllocPooled] Allocated memory at 0x%p from puddle 0x%p\n", ret, mh));
1025 /* Got it? */
1026 if (ret != NULL)
1029 * If this is not the first MemHeader and it has some free space,
1030 * move it forward (so that the next allocation will attempt to use it first).
1031 * IMPORTANT: We use modification of Enqueue() because we still sort MemHeaders
1032 * according to their priority (which they inherit from system MemHeaders).
1033 * This allows us to have mixed pools (e.g. with both CHIP and FAST regions). This
1034 * will be needed in future for memory protection.
1036 if (mh->mh_Node.ln_Pred != NULL && mh->mh_Free > 32)
1038 D(bug("[InternalAllocPooled] Re-sorting puddle list\n"));
1039 Remove(&mh->mh_Node);
1040 EnqueueMemHeader(&pool->pool.PuddleList, mh);
1043 break;
1046 /* No. Try next MemHeader */
1047 mh = (struct MemHeader *)mh->mh_Node.ln_Succ;
1050 if (pool->pool.Requirements & MEMF_SEM_PROTECTED)
1052 ReleaseSemaphore(&pool->sem);
1055 if (ret)
1057 /* Build munge walls if requested */
1058 ret = MungWall_Build(ret, pool, origSize, flags, loc, SysBase);
1060 /* Remember where we were allocated from */
1061 *((struct MemHeader **)ret) = mh;
1062 ret += sizeof(struct MemHeader *);
1065 /* Everything fine */
1066 return ret;
1070 * This is a pair to InternalAllocPooled()
1071 * This code separated from FreePooled() in order to provide compatibility with various
1072 * memory tracking patches. If some exec code calls InternalAllocPooled() directly
1073 * (AllocMem() will do it), it has to call also InternalFreePooled() directly.
1074 * Our chunks remember from which pool they came, so we don't need a pointer to pool
1075 * header here. This will save us from headaches in future FreeMem() implementation.
1077 void InternalFreePooled(APTR memory, IPTR memSize, struct TraceLocation *loc, struct ExecBase *SysBase)
1079 struct MemHeader *mh;
1080 APTR freeStart;
1081 IPTR freeSize;
1083 D(bug("[exec] InternalFreePooled(0x%p, %u)\n", memory, memSize));
1085 if (!memory || !memSize) return;
1087 /* Get MemHeader pointer. It is stored right before our block. */
1088 freeStart = memory - sizeof(struct MemHeader *);
1089 freeSize = memSize + sizeof(struct MemHeader *);
1090 mh = *((struct MemHeader **)freeStart);
1092 /* Check walls first */
1093 freeStart = MungWall_Check(freeStart, freeSize, loc, SysBase);
1094 if (PrivExecBase(SysBase)->IntFlags & EXECF_MungWall)
1095 freeSize += MUNGWALL_TOTAL_SIZE;
1097 /* Verify that MemHeader pointer is correct */
1098 if ((mh->mh_Node.ln_Type != NT_MEMORY) ||
1099 (freeStart < mh->mh_Lower) || (freeStart + freeSize > mh->mh_Upper))
1102 * Something is wrong.
1103 * TODO: the following should actually be printed as part of the alert.
1104 * In future there should be some kind of "alert context". CPU alerts
1105 * (like illegal access) should remember CPU context there. Memory manager
1106 * alerts (like this one) should remember some own information.
1108 bug("[MM] Pool manager error\n");
1109 bug("[MM] Attempt to free %u bytes at 0x%p\n", memSize, memory);
1110 bug("[MM] The chunk does not belong to a pool\n");
1112 Alert(AN_BadFreeAddr);
1114 else
1116 struct ProtectedPool *pool = (struct ProtectedPool *)mhac_PoolMemHeaderGetPool(mh);
1117 IPTR size;
1119 if (pool->pool.Requirements & MEMF_SEM_PROTECTED)
1121 ObtainSemaphore(&pool->sem);
1124 size = mh->mh_Upper - mh->mh_Lower;
1125 D(bug("[FreePooled] Allocated from puddle 0x%p, size %u\n", mh, size));
1127 /* Free the memory. */
1128 stdDealloc(mh, mhac_PoolMemHeaderGetCtx(mh), freeStart, freeSize, loc, SysBase);
1129 D(bug("[FreePooled] Deallocated chunk, %u free bytes in the puddle\n", mh->mh_Free));
1131 /* Is this MemHeader completely free now? */
1132 if (mh->mh_Free == size)
1134 D(bug("[FreePooled] Puddle is empty, giving back to the system\n"));
1136 /* Yes. Remove it from the list. */
1137 Remove(&mh->mh_Node);
1138 /* And free it. */
1139 FreeMemHeader(mh, loc, SysBase);
1141 /* All done. */
1143 if (pool->pool.Requirements & MEMF_SEM_PROTECTED)
1145 ReleaseSemaphore(&pool->sem);
1150 ULONG checkMemHandlers(struct checkMemHandlersState *cmhs, struct ExecBase *SysBase)
1152 struct Node *tmp;
1153 struct Interrupt *lmh;
1155 if (cmhs->cmhs_Data.memh_RequestFlags & MEMF_NO_EXPUNGE)
1156 return MEM_DID_NOTHING;
1158 /* In order to keep things clean, we must run in a single thread */
1159 ObtainSemaphore(&PrivExecBase(SysBase)->LowMemSem);
1162 * Loop over low memory handlers. Handlers can remove
1163 * themselves from the list while being invoked, thus
1164 * we need to be careful!
1166 for (lmh = (struct Interrupt *)cmhs->cmhs_CurNode;
1167 (tmp = lmh->is_Node.ln_Succ);
1168 lmh = (struct Interrupt *)(cmhs->cmhs_CurNode = tmp))
1170 ULONG ret;
1172 ret = AROS_UFC3 (LONG, lmh->is_Code,
1173 AROS_UFCA(struct MemHandlerData *, &cmhs->cmhs_Data, A0),
1174 AROS_UFCA(APTR, lmh->is_Data, A1),
1175 AROS_UFCA(struct ExecBase *, SysBase, A6)
1178 if (ret == MEM_TRY_AGAIN)
1180 /* MemHandler said he did something. Try again. */
1181 /* Is there any program that depends on this flag??? */
1182 cmhs->cmhs_Data.memh_Flags |= MEMHF_RECYCLE;
1184 ReleaseSemaphore(&PrivExecBase(SysBase)->LowMemSem);
1185 return MEM_TRY_AGAIN;
1187 else
1189 /* Nothing more to expect from this handler. */
1190 cmhs->cmhs_Data.memh_Flags &= ~MEMHF_RECYCLE;
1194 ReleaseSemaphore(&PrivExecBase(SysBase)->LowMemSem);
1195 return MEM_DID_NOTHING;