Searched hist:7058 (Results 1 - 2 of 2) sorted by relevance

/gem5/src/arch/arm/insts/
H A Dstatic_inst.ccdiff 7182:7058ec69d069 Wed Jun 02 01:58:00 EDT 2010 Gabe Black <gblack@eecs.umich.edu> ARM: Don't rely on undefined behavior to get arithmetic right shift.
Shifting to the right of a signed value when the MSB is one is technically
undefined behavior, even though in my experience it's done the "right thing"
and sign extended the value. This replaces the arithmetic right shift code in
ARM that uses that coincidence with some code that relies on bit math.
/gem5/src/sim/
H A Deventq.hhdiff 7058:5c7416199efd Fri Apr 02 18:28:00 EDT 2010 Nathan Binkert <nate@binkert.org> eventq: Make priorities just an integer instead of an enum.
Symbolic names should still be used, but this makes it easier to do
things like:
Event::Priority MyObject_Pri = Event::Default_Pri + 1

Remember that higher numbers are lower priority (should we fix this?)

Completed in 31 milliseconds