ARM: Fix the implementation of the VFP ldm and stm macroops.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:12 +0000 (12:58 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:12 +0000 (12:58 -0500)
commit67766cbf17451559207d072eaf4fc6fb589a2656
tree0897be723657da03b6219ce0d90cccfb8a14bb05
parentd149e43c41cdb739d75101a2e600fc090820a762
ARM: Fix the implementation of the VFP ldm and stm macroops.

There were four bugs in these instructions. First, the loaded value was being
stored into a floating point register as floating point, changing the value as
it was transfered. Second, the meaning of the "up" bit had been reversed.
Third, the statically sized microop array wasn't bit enough for all possible
inputs. It's now dynamically sized and should always be big enough. Fourth,
the offset was stored as an unsigned 8 bit value. Negative offsets would look
like moderately large positive offsets.
src/arch/arm/insts/macromem.cc
src/arch/arm/isa/insts/macromem.isa