Fixed constants to work on 32 bit hosts

--HG--
extra : convert_revision : acc8e6f60cfdca518fa45afef4165395cba23d4f
This commit is contained in:
Gabe Black 2006-04-28 15:07:44 -04:00
parent 20c8553787
commit 7bb70e3e30
2 changed files with 3 additions and 3 deletions

View file

@ -127,7 +127,7 @@ decode OP default Unknown::unknown()
if(Rd.udw<63:31> != 0) if(Rd.udw<63:31> != 0)
Rd.udw = 0x7FFFFFFF; Rd.udw = 0x7FFFFFFF;
else if(Rd.udw<63:> && Rd.udw<62:31> != 0xFFFFFFFF) else if(Rd.udw<63:> && Rd.udw<62:31> != 0xFFFFFFFF)
Rd.udw = 0xFFFFFFFF80000000; Rd.udw = 0xFFFFFFFF80000000ULL;
} }
}}); }});
} }
@ -214,7 +214,7 @@ decode OP default Unknown::unknown()
overflow = (resTemp<63:31> != 0); overflow = (resTemp<63:31> != 0);
underflow = (resTemp<63:> && resTemp<62:31> != 0xFFFFFFFF); underflow = (resTemp<63:> && resTemp<62:31> != 0xFFFFFFFF);
if(overflow) Rd = resTemp = 0x7FFFFFFF; if(overflow) Rd = resTemp = 0x7FFFFFFF;
else if(underflow) Rd = resTemp = 0xFFFFFFFF80000000; else if(underflow) Rd = resTemp = 0xFFFFFFFF80000000ULL;
else Rd = resTemp; else Rd = resTemp;
} }}, } }},
{{0}}, {{0}},

View file

@ -85,7 +85,7 @@ SparcLiveProcess::SparcLiveProcess(const std::string &nm, ObjectFile *objFile,
// Set up stack. On SPARC Linux, stack goes from the top of memory // Set up stack. On SPARC Linux, stack goes from the top of memory
// downward, less the hole for the kernel address space. // downward, less the hole for the kernel address space.
stack_base = ((Addr)0x80000000000); stack_base = ((Addr)0x80000000000ULL);
// Set up region for mmaps. Tru64 seems to start just above 0 and // Set up region for mmaps. Tru64 seems to start just above 0 and
// grow up from there. // grow up from there.