arch: Get rid of (some) unused VAddr types.

X86 actually defines and uses a VAddr bitunion, but the ARM, MIPS and
SPARC versions are just stubs and aren't used anywhere.

Change-Id: Iea8d0c8ab04ac1d95f49458f0fc41f291751da1a
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/33202
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
This commit is contained in:
Gabe Black
2020-08-21 21:27:11 -07:00
parent 941a2d46a5
commit 0fdf1a5a51
3 changed files with 1 additions and 15 deletions

View File

@@ -49,12 +49,6 @@
namespace ArmISA {
struct VAddr
{
VAddr(Addr a) { panic("not implemented yet."); }
};
// ITB/DTB page table entry
struct PTE
{

View File

@@ -36,10 +36,6 @@
namespace MipsISA {
struct VAddr
{
};
// ITB/DTB page table entry
struct PTE
{

View File

@@ -37,12 +37,8 @@
class Checkpoint;
namespace SparcISA {
struct VAddr
namespace SparcISA
{
VAddr(Addr a) { panic("not implemented yet."); }
};
class TteTag
{