diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-02-12 09:26:47 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-02-12 09:26:47 -0800 |
commit | f78bc80bd75f6f4ebf080620b3aaeaee3b3e46cc (patch) | |
tree | 56134929157da94c31188651787a254e5b7b251b /src/arch/alpha/locked_mem.hh | |
parent | 6b37bb67101803f12b6ed2bef714af583d03f814 (diff) | |
download | gem5-f78bc80bd75f6f4ebf080620b3aaeaee3b3e46cc.tar.xz |
Move store conditional result checking from SimpleAtomicCpu write
function into Alpha ISA description. write now just generically
returns a result value if the res pointer is non-null (which means
we can only provide a res pointer if we expect a valid result
value).
--HG--
extra : convert_revision : fb1c315515787f5fbbf7d1af7e428bdbfe8148b8
Diffstat (limited to 'src/arch/alpha/locked_mem.hh')
-rw-r--r-- | src/arch/alpha/locked_mem.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/arch/alpha/locked_mem.hh b/src/arch/alpha/locked_mem.hh index 52fe24173..be5086bd7 100644 --- a/src/arch/alpha/locked_mem.hh +++ b/src/arch/alpha/locked_mem.hh @@ -35,6 +35,14 @@ * @file * * ISA-specific helper functions for locked memory accesses. + * + * Note that these functions are not embedded in the ISA description + * because they operate on the *physical* address rather than the + * virtual address. In the current M5 design, the physical address is + * not accessible from the ISA description, only from the CPU model. + * Thus the CPU is responsible for calling back to the ISA (here) + * after the address translation has been performed to allow the ISA + * to do these manipulations based on the physical address. */ #include "arch/alpha/miscregfile.hh" |