ExecContext: Rename the readBytes/writeBytes functions to readMem and writeMem.
authorGabe Black <gblack@eecs.umich.edu>
Sun, 3 Jul 2011 05:35:04 +0000 (22:35 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 3 Jul 2011 05:35:04 +0000 (22:35 -0700)
commit3a1428365a479db70d893e62e37c1dd302067d4a
tree04f070345857d9a3fc70cb4b9f2c498284983615
parent2e7426664a254688e7cf926b902cb8c535a106dd
ExecContext: Rename the readBytes/writeBytes functions to readMem and writeMem.

readBytes and writeBytes had the word "bytes" in their names because they
accessed blobs of bytes. This distinguished them from the read and write
functions which handled higher level data types. Because those functions don't
exist any more, this change renames readBytes and writeBytes to more general
names, readMem and writeMem, which reflect the fact that they are how you read
and write memory. This also makes their names more consistent with the
register reading/writing functions, although those are still read and set for
some reason.
src/arch/arm/isa/templates/mem.isa
src/arch/generic/memhelpers.hh
src/arch/x86/memhelpers.hh
src/cpu/base_dyn_inst.hh
src/cpu/exec_context.hh
src/cpu/inorder/inorder_dyn_inst.cc
src/cpu/inorder/inorder_dyn_inst.hh
src/cpu/simple/atomic.cc
src/cpu/simple/atomic.hh
src/cpu/simple/timing.cc
src/cpu/simple/timing.hh