summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa_traits.hh
diff options
context:
space:
mode:
authorDam Sunwoo <dam.sunwoo@arm.com>2012-11-02 11:32:00 -0500
committerDam Sunwoo <dam.sunwoo@arm.com>2012-11-02 11:32:00 -0500
commitac161c1d7294fc755b6c06e23f719f577d926695 (patch)
tree356f6fca7b368a34e68687ac02bef6f543207022 /src/arch/mips/isa_traits.hh
parentd0678d1c31bbb0c08e58762a36d5d2382b0a537f (diff)
downloadgem5-ac161c1d7294fc755b6c06e23f719f577d926695.tar.xz
ISA: generic Linux thread info support
This patch takes the Linux thread info support scattered across different ISA implementations (currently in ARM, ALPHA, and MIPS), and unifies them into a single file. Adds a few more helper functions to read out TGID, mm, etc. ISA-specific information (e.g., ALPHA PCBB register) is now moved to the corresponding isa_traits.hh files.
Diffstat (limited to 'src/arch/mips/isa_traits.hh')
-rw-r--r--src/arch/mips/isa_traits.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/mips/isa_traits.hh b/src/arch/mips/isa_traits.hh
index f2a748da9..af99461c9 100644
--- a/src/arch/mips/isa_traits.hh
+++ b/src/arch/mips/isa_traits.hh
@@ -160,6 +160,9 @@ const uint32_t ITOUCH_ANNOTE = 0xffffffff;
const bool HasUnalignedMemAcc = true;
+const bool CurThreadInfoImplemented = false;
+const int CurThreadInfoReg = -1;
+
} // namespace MipsISA
#endif // __ARCH_MIPS_ISA_TRAITS_HH__