mirror of
https://git.wuffs.org/MWCC
synced 2025-12-14 15:46:16 +00:00
fix lots more issues, add endian conversions to ObjGenMachO, add 64-bit kludge to Switch.c
This commit is contained in:
@@ -53,6 +53,69 @@ unsigned char *CTool_CtoPstr(char *cstr) {
|
||||
return (unsigned char *) cstr;
|
||||
}
|
||||
|
||||
#ifdef CW_64_BIT_SUPPORT
|
||||
enum { PoolCapacity = 64 };
|
||||
typedef struct ITPPool {
|
||||
void *pointers[PoolCapacity];
|
||||
UInt32 baseIndex;
|
||||
UInt32 size;
|
||||
struct ITPPool *next;
|
||||
} ITPPool;
|
||||
static ITPPool *poolHead;
|
||||
static ITPPool *poolTail;
|
||||
|
||||
void *CTool_ResolveIndexToPointer(UInt32 index) {
|
||||
ITPPool *pool = poolHead;
|
||||
|
||||
if (index == 0)
|
||||
return NULL;
|
||||
|
||||
while (pool && index >= PoolCapacity) {
|
||||
pool = pool->next;
|
||||
index -= PoolCapacity;
|
||||
}
|
||||
|
||||
if (pool && index < pool->size)
|
||||
return pool->pointers[index];
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
|
||||
UInt32 CTool_CreateIndexFromPointer(void *ptr) {
|
||||
ITPPool *pool = poolTail;
|
||||
UInt32 index;
|
||||
|
||||
if (ptr == NULL)
|
||||
return 0;
|
||||
|
||||
if (!pool || pool->size >= PoolCapacity) {
|
||||
pool = lalloc(sizeof(ITPPool));
|
||||
pool->size = 0;
|
||||
if (poolTail) {
|
||||
pool->baseIndex = poolTail->baseIndex + PoolCapacity;
|
||||
poolTail->next = pool;
|
||||
} else {
|
||||
pool->baseIndex = 0;
|
||||
// always reserve index 0 for NULL
|
||||
pool->pointers[0] = NULL;
|
||||
pool->size = 1;
|
||||
poolHead = pool;
|
||||
}
|
||||
poolTail = pool;
|
||||
}
|
||||
|
||||
index = pool->baseIndex + pool->size;
|
||||
pool->pointers[pool->size] = ptr;
|
||||
pool->size++;
|
||||
return index;
|
||||
}
|
||||
|
||||
static void CTool_ResetPointerPool(void) {
|
||||
poolHead = NULL;
|
||||
poolTail = NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
static void GListError(void) {
|
||||
if (GListErrorProc)
|
||||
GListErrorProc();
|
||||
@@ -845,6 +908,10 @@ void freelheap(void) {
|
||||
blockp->blockfree = blockp->blocksize - sizeof(HeapBlock);
|
||||
blockp = blockp->next;
|
||||
}
|
||||
|
||||
#ifdef CW_64_BIT_SUPPORT
|
||||
CTool_ResetPointerPool();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user