diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2015-05-05 03:22:31 -0400 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2015-05-05 03:22:31 -0400 |
commit | 1da634ace00dbae3165228b36655a62538c7c88d (patch) | |
tree | 3fbbc56c8ca5f2287caa16b8345990f4730e06ab /src/mem/request.hh | |
parent | 23b9792681d4cd794b0ad74138160a37b8bdac8f (diff) | |
download | gem5-1da634ace00dbae3165228b36655a62538c7c88d.tar.xz |
mem, alpha: Move Alpha-specific request flags
Move Alpha-specific memory request flags to an architecture-specific
header and map them to the architecture specific flag bit range.
Diffstat (limited to 'src/mem/request.hh')
-rw-r--r-- | src/mem/request.hh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mem/request.hh b/src/mem/request.hh index 82ede7e60..029636100 100644 --- a/src/mem/request.hh +++ b/src/mem/request.hh @@ -101,10 +101,6 @@ class Request static const FlagsType INST_FETCH = 0x00000100; /** The virtual address is also the physical address. */ static const FlagsType PHYSICAL = 0x00000200; - /** The request is an ALPHA VPTE pal access (hw_ld). */ - static const FlagsType VPTE = 0x00000400; - /** Use the alternate mode bits in ALPHA. */ - static const FlagsType ALTMODE = 0x00000800; /** The request is to an uncacheable address. */ static const FlagsType UNCACHEABLE = 0x00001000; /** This request is to a memory mapped register. */ |