Darn defaulting to 32-bit integers :(
authorJohn Hodge <[email protected]>
Mon, 31 May 2010 15:23:12 +0000 (23:23 +0800)
committerJohn Hodge <[email protected]>
Mon, 31 May 2010 15:23:12 +0000 (23:23 +0800)
Kernel/arch/x86_64/mm_phys.c
Kernel/arch/x86_64/proc.c

index 5d9f2ef..64266f9 100644 (file)
@@ -228,14 +228,14 @@ void MM_InitPhys_Multiboot(tMBoot_Info *MBoot)
                size = ent->Size >> 12;
                
                if(base & 63) {
-                       Uint64  val = -1 << (base & 63);
+                       Uint64  val = -1L << (base & 63);
                        gaMainBitmap[base / 64] &= ~val;
                        size -= (base & 63);
                        base += 64 - (base & 63);
                }
                memset( &gaMainBitmap[base / 64], 0, size/8 );
                if( size & 7 ) {
-                       Uint64  val = -1 << (size & 7);
+                       Uint64  val = -1L << (size & 7);
                        val <<= (size/8)&7;
                        gaMainBitmap[base / 64] &= ~val;
                }
@@ -246,7 +246,7 @@ void MM_InitPhys_Multiboot(tMBoot_Info *MBoot)
                size = (size + (base & 63) + 63) >> 6;
                base = base >> 6;
                if(base & 63) {
-                       Uint64  val = -1 << (base & 63);
+                       Uint64  val = -1L << (base & 63);
                        gaSuperBitmap[base / 64] &= ~val;
                        size -= (base & 63);
                        base += 64 - (base & 63);
@@ -258,7 +258,7 @@ void MM_InitPhys_Multiboot(tMBoot_Info *MBoot)
        size = firstFreePage >> 12;
        memset( &gaMainBitmap[base / 64], -1, size/8 );
        if( size & 7 ) {
-               Uint64  val = -1 << (size & 7);
+               Uint64  val = -1L << (size & 7);
                val <<= (size/8)&7;
                gaMainBitmap[base / 64] |= val;
        }
@@ -268,7 +268,7 @@ void MM_InitPhys_Multiboot(tMBoot_Info *MBoot)
                if(gaiStaticAllocPages[i] != 0)
                        continue;
                gaMainBitmap[ gaiStaticAllocPages[i] >> (12+6) ]
-                       &= ~(1 << ((gaiStaticAllocPages[i]>>12)&63));
+                       &= ~(1L << ((gaiStaticAllocPages[i]>>12)&63));
        }
        
        // Fill the super bitmap
@@ -277,7 +277,7 @@ void MM_InitPhys_Multiboot(tMBoot_Info *MBoot)
        for( base = 0; base < (size+63)/64; base ++)
        {
                if( gaMainBitmap[ base ] == -1 )
-                       gaSuperBitmap[ base/64 ] |= 1 << (base&63);
+                       gaSuperBitmap[ base/64 ] |= 1L << (base&63);
        }
        
        // Set free page counts
@@ -285,7 +285,7 @@ void MM_InitPhys_Multiboot(tMBoot_Info *MBoot)
        {
                 int    rangeID;
                // Skip allocated
-               if( gaMainBitmap[ base >> 6 ] & (1 << (base&63))  )     continue;
+               if( gaMainBitmap[ base >> 6 ] & (1L << (base&63))  )    continue;
                
                // Get range ID
                rangeID = MM_int_GetRangeID( base << 12 );
@@ -323,7 +323,7 @@ tPAddr MM_AllocPhysRange(int Num, int Bits)
        if( Bits <= 0 || Bits >= 64 )   // Speedup for the common case
                rangeID = MM_PHYS_MAX;
        else
-               rangeID = MM_int_GetRangeID( (1 << Bits) -1 );
+               rangeID = MM_int_GetRangeID( (1L << Bits) -1 );
        
        LOG("rangeID = %i", rangeID);
        
@@ -367,20 +367,20 @@ tPAddr MM_AllocPhysRange(int Num, int Bits)
                        if( gaSuperBitmap[addr >> (6+6)] == -1 ) {
                                LOG("nFree = %i = 0 (super) (0x%x)", nFree, addr);
                                nFree = 0;
-                               addr += 1 << (6+6);
-                               addr &= ~( (1 << (6+6)) - 1 );
+                               addr += 1L << (6+6);
+                               addr &= ~0xFFF; // (1L << 6+6) - 1
                                continue;
                        }
                        // Check page block (64 pages)
                        if( gaMainBitmap[addr >> 6] == -1) {
                                LOG("nFree = %i = 0 (main) (0x%x)", nFree, addr);
                                nFree = 0;
-                               addr += 1 << (6);
-                               addr &= ~( (1 << (6)) - 1 );
+                               addr += 1L << (6);
+                               addr &= ~0x3F;
                                continue;
                        }
                        // Check individual page
-                       if( gaMainBitmap[addr >> 6] & (1 << (addr & 63)) ) {
+                       if( gaMainBitmap[addr >> 6] & (1L << (addr & 63)) ) {
                                LOG("nFree = %i = 0 (page) (0x%x)", nFree, addr);
                                nFree = 0;
                                addr ++;
@@ -422,9 +422,10 @@ tPAddr MM_AllocPhysRange(int Num, int Bits)
        addr -= Num;
        for( i = 0; i < Num; i++, addr++ )
        {
-               gaMainBitmap[addr >> 6] |= 1 << (addr & 63);
+               gaMainBitmap[addr >> 6] |= 1L << (addr & 63);
                rangeID = MM_int_GetRangeID(addr << 12);
                giPhysRangeFree[ rangeID ] --;
+               LOG("%x == %x", addr, giPhysRangeFirst[ rangeID ]);
                if(addr == giPhysRangeFirst[ rangeID ])
                        giPhysRangeFirst[ rangeID ] += 1;
        }
@@ -437,7 +438,7 @@ tPAddr MM_AllocPhysRange(int Num, int Bits)
        for( i = 0; i < Num/64; i++ )
        {
                if( gaMainBitmap[ addr >> 6 ] == -1 )
-                       gaSuperBitmap[addr>>12] |= 1 << ((addr >> 6) & 64);
+                       gaSuperBitmap[addr>>12] |= 1L << ((addr >> 6) & 63);
        }
        
        RELEASE(&glPhysicalPages);
@@ -475,18 +476,18 @@ void MM_RefPhys(tPAddr PAddr)
        
        if( PAddr >> 12 > giMaxPhysPage )       return ;
        
-       if( gaMainBitmap[ page >> 6 ] & (1 << (page&63)) )
+       if( gaMainBitmap[ page >> 6 ] & (1L << (page&63)) )
        {
                // Reference again
-               gaMultiBitmap[ page >> 6 ] |= 1 << (page&63);
+               gaMultiBitmap[ page >> 6 ] |= 1L << (page&63);
                gaiPageReferences[ page ] ++;
        }
        else
        {
                // Allocate
-               gaMainBitmap[page >> 6] |= 1 << (page&63);
+               gaMainBitmap[page >> 6] |= 1L << (page&63);
                if( gaMainBitmap[page >> 6 ] == -1 )
-                       gaSuperBitmap[page>> 12] |= 1 << ((page >> 6) & 63);
+                       gaSuperBitmap[page>> 12] |= 1L << ((page >> 6) & 63);
        }
 }
 
@@ -499,18 +500,18 @@ void MM_DerefPhys(tPAddr PAddr)
        
        if( PAddr >> 12 > giMaxPhysPage )       return ;
        
-       if( gaMultiBitmap[ page >> 6 ] & (1 << (page&63)) ) {
+       if( gaMultiBitmap[ page >> 6 ] & (1L << (page&63)) ) {
                gaiPageReferences[ page ] --;
                if( gaiPageReferences[ page ] == 1 )
-                       gaMultiBitmap[ page >> 6 ] &= ~(1 << (page&63));
+                       gaMultiBitmap[ page >> 6 ] &= ~(1L << (page&63));
                if( gaiPageReferences[ page ] == 0 )
-                       gaMainBitmap[ page >> 6 ] &= ~(1 << (page&63));
+                       gaMainBitmap[ page >> 6 ] &= ~(1L << (page&63));
        }
        else
-               gaMainBitmap[ page >> 6 ] &= ~(1 << (page&63));
+               gaMainBitmap[ page >> 6 ] &= ~(1L << (page&63));
        
        // Update the free counts if the page was freed
-       if( !(gaMainBitmap[ page >> 6 ] & (1 << (page&63))) )
+       if( !(gaMainBitmap[ page >> 6 ] & (1L << (page&63))) )
        {
                 int    rangeID;
                rangeID = MM_int_GetRangeID( PAddr );
@@ -523,7 +524,7 @@ void MM_DerefPhys(tPAddr PAddr)
        
        // If the bitmap entry is not -1, unset the bit in the super bitmap
        if(gaMainBitmap[ page >> 6 ] != -1 ) {
-               gaSuperBitmap[page >> 12] &= ~(1 << ((page >> 6) & 63));
+               gaSuperBitmap[page >> 12] &= ~(1L << ((page >> 6) & 63));
        }
 }
 
index 1c81991..2a246a6 100644 (file)
@@ -424,8 +424,11 @@ int Proc_Clone(Uint *Err, Uint Flags)
        newThread = Threads_CloneTCB(Err, Flags);
        if(!newThread)  return -1;
        
+       Log("Proc_Clone: newThread = %p", newThread);
+       
        // Initialise Memory Space (New Addr space or kernel stack)
        if(Flags & CLONE_VM) {
+               Log("Proc_Clone: Cloning VM");
                newThread->MemState.CR3 = MM_Clone();
                newThread->KernelStack = cur->KernelStack;
        } else {
@@ -436,6 +439,7 @@ int Proc_Clone(Uint *Err, Uint Flags)
 
                // Create new KStack
                newThread->KernelStack = MM_NewKStack();
+               Log("Proc_Clone: newKStack = %p", newThread->KernelStack);
                // Check for errors
                if(newThread->KernelStack == 0) {
                        free(newThread);
@@ -457,7 +461,7 @@ int Proc_Clone(Uint *Err, Uint Flags)
 
                // Repair EBPs & Stack Addresses
                // Catches arguments also, but may trash stack-address-like values
-               for(tmp_rbp = rsp; tmp_rbp < newThread->KernelStack; tmp_rbp += 4)
+               for(tmp_rbp = rsp; tmp_rbp < newThread->KernelStack; tmp_rbp += sizeof(Uint))
                {
                        if(old_rsp < *(Uint*)tmp_rbp && *(Uint*)tmp_rbp < cur->KernelStack)
                                *(Uint*)tmp_rbp += newThread->KernelStack - cur->KernelStack;

UCC git Repository :: git.ucc.asn.au