ISA: generic Linux thread info support
authorDam Sunwoo <dam.sunwoo@arm.com>
Fri, 2 Nov 2012 16:32:00 +0000 (11:32 -0500)
committerDam Sunwoo <dam.sunwoo@arm.com>
Fri, 2 Nov 2012 16:32:00 +0000 (11:32 -0500)
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.

12 files changed:
src/arch/alpha/isa_traits.hh
src/arch/alpha/kernel_stats.cc
src/arch/alpha/linux/system.cc
src/arch/alpha/linux/threadinfo.hh [deleted file]
src/arch/arm/isa_traits.hh
src/arch/generic/linux/threadinfo.hh [new file with mode: 0644]
src/arch/mips/isa_traits.hh
src/arch/mips/linux/system.cc
src/arch/mips/linux/threadinfo.hh [deleted file]
src/arch/power/isa_traits.hh
src/arch/sparc/isa_traits.hh
src/arch/x86/isa_traits.hh

index 5738ccdb1b45e4a1fc924d48a778d467ffa4e86d..41b63ec5acd812c2b5eddb5dd8aef04551037e0f 100644 (file)
@@ -34,6 +34,7 @@
 
 namespace LittleEndianGuest {}
 
+#include "arch/alpha/ipr.hh"
 #include "arch/alpha/types.hh"
 #include "base/types.hh"
 #include "cpu/static_inst_fwd.hh"
@@ -129,6 +130,9 @@ const ExtMachInst NoopMachInst = 0x2ffe0000;
 // Memory accesses cannot be unaligned
 const bool HasUnalignedMemAcc = false;
 
+const bool CurThreadInfoImplemented = true;
+const int CurThreadInfoReg = AlphaISA::IPR_PALtemp23;
+
 } // namespace AlphaISA
 
 #endif // __ARCH_ALPHA_ISA_TRAITS_HH__
index c057e7f16174c38bbc17871d66ec8cb5082088dc..bac5d26cd66d85e1429fdffa75699a5fa3c704d4 100644 (file)
@@ -33,7 +33,7 @@
 #include <stack>
 #include <string>
 
-#include "arch/alpha/linux/threadinfo.hh"
+#include "arch/generic/linux/threadinfo.hh"
 #include "arch/alpha/kernel_stats.hh"
 #include "arch/alpha/osfpal.hh"
 #include "base/trace.hh"
index db3c16d7e78925bfe027466e916e9a2bec803b73..0507af0299cd812d223e1278a569476c6e25c1c7 100644 (file)
@@ -41,9 +41,9 @@
  */
 
 #include "arch/alpha/linux/system.hh"
-#include "arch/alpha/linux/threadinfo.hh"
 #include "arch/alpha/idle_event.hh"
 #include "arch/alpha/system.hh"
+#include "arch/generic/linux/threadinfo.hh"
 #include "arch/vtophys.hh"
 #include "base/loader/symtab.hh"
 #include "cpu/base.hh"
diff --git a/src/arch/alpha/linux/threadinfo.hh b/src/arch/alpha/linux/threadinfo.hh
deleted file mode 100644 (file)
index 94e362f..0000000
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * Copyright (c) 2004 The Regents of The University of Michigan
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Ali Saidi
- *          Nathan Binkert
- */
-
-#ifndef __ARCH_ALPHA_LINUX_LINUX_TREADNIFO_HH__
-#define __ARCH_ALPHA_LINUX_LINUX_TREADNIFO_HH__
-
-#include "cpu/thread_context.hh"
-#include "sim/system.hh"
-#include "sim/vptr.hh"
-
-namespace Linux {
-
-class ThreadInfo
-{
-  private:
-    ThreadContext *tc;
-    System *sys;
-    Addr pcbb;
-
-    template <typename T>
-    bool
-    get_data(const char *symbol, T &data)
-    {
-        Addr addr = 0;
-        if (!sys->kernelSymtab->findAddress(symbol, addr))
-            return false;
-
-        CopyOut(tc, &data, addr, sizeof(T));
-
-        data = AlphaISA::gtoh(data);
-
-        return true;
-    }
-
-  public:
-    ThreadInfo(ThreadContext *_tc, Addr _pcbb = 0)
-        : tc(_tc), sys(tc->getSystemPtr()), pcbb(_pcbb)
-    {
-
-    }
-    ~ThreadInfo()
-    {}
-
-    inline Addr
-    curThreadInfo()
-    {
-        Addr addr = pcbb;
-        Addr sp;
-
-        if (!addr)
-            addr = tc->readMiscRegNoEffect(AlphaISA::IPR_PALtemp23);
-
-        PortProxy &p = tc->getPhysProxy();
-        p.readBlob(addr, (uint8_t *)&sp, sizeof(Addr));
-
-        return sp & ~ULL(0x3fff);
-    }
-
-    inline Addr
-    curTaskInfo(Addr thread_info = 0)
-    {
-        int32_t offset;
-        if (!get_data("thread_info_task", offset))
-            return 0;
-
-        if (!thread_info)
-            thread_info = curThreadInfo();
-
-        Addr addr;
-        CopyOut(tc, &addr, thread_info + offset, sizeof(addr));
-
-        return addr;
-    }
-
-    int32_t
-    curTaskPID(Addr thread_info = 0)
-    {
-        int32_t offset;
-        if (!get_data("task_struct_pid", offset))
-            return -1;
-
-        int32_t pid;
-        CopyOut(tc, &pid, curTaskInfo(thread_info) + offset, sizeof(pid));
-
-        return pid;
-    }
-
-    int64_t
-    curTaskStart(Addr thread_info = 0)
-    {
-        int32_t offset;
-        if (!get_data("task_struct_start_time", offset))
-            return -1;
-
-        int64_t data;
-        // start_time is actually of type timespec, but if we just
-        // grab the first long, we'll get the seconds out of it
-        CopyOut(tc, &data, curTaskInfo(thread_info) + offset, sizeof(data));
-
-        return data;
-    }
-
-    std::string
-    curTaskName(Addr thread_info = 0)
-    {
-        int32_t offset;
-        int32_t size;
-
-        if (!get_data("task_struct_comm", offset))
-            return "FailureIn_curTaskName";
-
-        if (!get_data("task_struct_comm_size", size))
-            return "FailureIn_curTaskName";
-
-        char buffer[size + 1];
-        CopyStringOut(tc, buffer, curTaskInfo(thread_info) + offset, size);
-
-        return buffer;
-    }
-};
-
-} // namespace Linux
-
-#endif // __ARCH_ALPHA_LINUX_LINUX_THREADINFO_HH__
index 43b3674d45a8f4e721e937b64936e4e312dd553c..742ca2037d73154e609f27e81e6b40b5980c52c4 100644 (file)
@@ -114,6 +114,9 @@ namespace ArmISA
     // Memory accesses cannot be unaligned
     const bool HasUnalignedMemAcc = true;
 
+    const bool CurThreadInfoImplemented = false;
+    const int CurThreadInfoReg = -1;
+
     enum InterruptTypes
     {
         INT_RST,
diff --git a/src/arch/generic/linux/threadinfo.hh b/src/arch/generic/linux/threadinfo.hh
new file mode 100644 (file)
index 0000000..6a5d031
--- /dev/null
@@ -0,0 +1,186 @@
+/*
+ * Copyright (c) 2004 The Regents of The University of Michigan
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Ali Saidi
+ *          Nathan Binkert
+ *          Dam Sunwoo
+ */
+
+#ifndef __ARCH_GENERIC_LINUX_THREADINFO_HH__
+#define __ARCH_GENERIC_LINUX_THREADINFO_HH__
+
+#include "cpu/thread_context.hh"
+#include "sim/system.hh"
+#include "sim/vptr.hh"
+
+namespace Linux {
+
+class ThreadInfo
+{
+  private:
+    ThreadContext *tc;
+    System *sys;
+    Addr pcbb;
+
+    template <typename T>
+    bool
+    get_data(const char *symbol, T &data)
+    {
+        Addr addr = 0;
+        if (!sys->kernelSymtab->findAddress(symbol, addr)) {
+            warn_once("Unable to find kernel symbol %s\n", symbol);
+            warn_once("Kernel not compiled with task_struct info; can't get "
+                      "currently executing task/process/thread name/ids!\n");
+            return false;
+        }
+
+        CopyOut(tc, &data, addr, sizeof(T));
+
+        data = TheISA::gtoh(data);
+
+        return true;
+    }
+
+  public:
+    ThreadInfo(ThreadContext *_tc, Addr _pcbb = 0)
+        : tc(_tc), sys(tc->getSystemPtr()), pcbb(_pcbb)
+    {
+
+    }
+    ~ThreadInfo()
+    {}
+
+    inline Addr
+    curThreadInfo()
+    {
+        if (!TheISA::CurThreadInfoImplemented)
+            panic("curThreadInfo() not implemented for this ISA");
+
+        Addr addr = pcbb;
+        Addr sp;
+
+        if (!addr)
+            addr = tc->readMiscRegNoEffect(TheISA::CurThreadInfoReg);
+
+        PortProxy &p = tc->getPhysProxy();
+        p.readBlob(addr, (uint8_t *)&sp, sizeof(Addr));
+
+        return sp & ~ULL(0x3fff);
+    }
+
+    inline Addr
+    curTaskInfo(Addr thread_info = 0)
+    {
+        int32_t offset;
+        if (!get_data("thread_info_task", offset))
+            return 0;
+
+        if (!thread_info)
+            thread_info = curThreadInfo();
+
+        Addr addr;
+        CopyOut(tc, &addr, thread_info + offset, sizeof(addr));
+
+        return addr;
+    }
+
+    int32_t
+    curTaskPID(Addr thread_info = 0)
+    {
+        int32_t offset;
+        if (!get_data("task_struct_pid", offset))
+            return -1;
+
+        int32_t pid;
+        CopyOut(tc, &pid, curTaskInfo(thread_info) + offset, sizeof(pid));
+
+        return pid;
+    }
+
+    int32_t
+    curTaskTGID(Addr thread_info = 0)
+    {
+        int32_t offset;
+        if (!get_data("task_struct_tgid", offset))
+            return -1;
+
+        int32_t tgid;
+        CopyOut(tc, &tgid, curTaskInfo(thread_info) + offset, sizeof(tgid));
+
+        return tgid;
+    }
+
+    int64_t
+    curTaskStart(Addr thread_info = 0)
+    {
+        int32_t offset;
+        if (!get_data("task_struct_start_time", offset))
+            return -1;
+
+        int64_t data;
+        // start_time is actually of type timespec, but if we just
+        // grab the first long, we'll get the seconds out of it
+        CopyOut(tc, &data, curTaskInfo(thread_info) + offset, sizeof(data));
+
+        return data;
+    }
+
+    std::string
+    curTaskName(Addr thread_info = 0)
+    {
+        int32_t offset;
+        int32_t size;
+
+        if (!get_data("task_struct_comm", offset))
+            return "FailureIn_curTaskName";
+
+        if (!get_data("task_struct_comm_size", size))
+            return "FailureIn_curTaskName";
+
+        char buffer[size + 1];
+        CopyStringOut(tc, buffer, curTaskInfo(thread_info) + offset, size);
+
+        return buffer;
+    }
+
+    int32_t
+    curTaskMm(Addr thread_info = 0)
+    {
+        int32_t offset;
+        if (!get_data("task_struct_mm", offset))
+            return -1;
+
+        int32_t mm_ptr;
+        CopyOut(tc, &mm_ptr, curTaskInfo(thread_info) + offset, sizeof(mm_ptr));
+
+        return mm_ptr;
+    }
+};
+
+} // namespace Linux
+
+#endif // __ARCH_GENERIC_LINUX_THREADINFO_HH__
index f2a748da9c3a891e18dda690809993cd88f6975d..af99461c922c00baa59c49852474fa21a7cacaad 100644 (file)
@@ -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__
index f97426f8578f7e6bf9c83565e64a12fb65740a67..dc2ac7da595f418e377010c6a9d23e10ea7ce26f 100644 (file)
@@ -39,8 +39,8 @@
  * up boot time.
  */
 
+#include "arch/generic/linux/threadinfo.hh"
 #include "arch/mips/linux/system.hh"
-#include "arch/mips/linux/threadinfo.hh"
 #include "arch/mips/idle_event.hh"
 #include "arch/mips/system.hh"
 #include "arch/vtophys.hh"
diff --git a/src/arch/mips/linux/threadinfo.hh b/src/arch/mips/linux/threadinfo.hh
deleted file mode 100644 (file)
index 5788b3b..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-/*
- * Copyright (c) 2004 The Regents of The University of Michigan
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Ali Saidi
- *          Nathan Binkert
- */
-
-#ifndef __ARCH_MIPS_LINUX_LINUX_TREADNIFO_HH__
-#define __ARCH_MIPS_LINUX_LINUX_TREADNIFO_HH__
-
-#include "cpu/thread_context.hh"
-#include "sim/system.hh"
-#include "sim/vptr.hh"
-
-namespace Linux {
-
-class ThreadInfo
-{
-  private:
-    ThreadContext *tc;
-    System *sys;
-    Addr pcbb;
-
-    template <typename T>
-    bool
-    get_data(const char *symbol, T &data)
-    {
-        Addr addr = 0;
-        if (!sys->kernelSymtab->findAddress(symbol, addr))
-            return false;
-
-        CopyOut(tc, &data, addr, sizeof(T));
-
-        data = MipsISA::gtoh(data);
-
-        return true;
-    }
-
-  public:
-    ThreadInfo(ThreadContext *_tc, Addr _pcbb = 0)
-        : tc(_tc), sys(tc->getSystemPtr()), pcbb(_pcbb)
-    {
-
-    }
-    ~ThreadInfo()
-    {}
-
-    inline Addr
-    curThreadInfo()
-    {
-        panic("curThreadInfo not implemented for MIPS");
-        Addr addr = pcbb;
-        Addr sp;
-
-        if (!addr)
-            addr = tc->readMiscRegNoEffect(0/*MipsISA::IPR_PALtemp23*/);
-
-        PortProxy &p = tc->getPhysProxy();
-        p.readBlob(addr, (uint8_t *)&sp, sizeof(Addr));
-
-        return sp & ~ULL(0x3fff);
-    }
-
-    inline Addr
-    curTaskInfo(Addr thread_info = 0)
-    {
-        int32_t offset;
-        if (!get_data("thread_info_task", offset))
-            return 0;
-
-        if (!thread_info)
-            thread_info = curThreadInfo();
-
-        Addr addr;
-        CopyOut(tc, &addr, thread_info + offset, sizeof(addr));
-
-        return addr;
-    }
-
-    int32_t
-    curTaskPID(Addr thread_info = 0)
-    {
-        Addr offset;
-        if (!get_data("task_struct_pid", offset))
-            return -1;
-
-        int32_t pid;
-        CopyOut(tc, &pid, curTaskInfo(thread_info) + offset, sizeof(pid));
-
-        return pid;
-    }
-
-    int64_t
-    curTaskStart(Addr thread_info = 0)
-    {
-        Addr offset;
-        if (!get_data("task_struct_start_time", offset))
-            return -1;
-
-        int64_t data;
-        // start_time is actually of type timespec, but if we just
-        // grab the first long, we'll get the seconds out of it
-        CopyOut(tc, &data, curTaskInfo(thread_info) + offset, sizeof(data));
-
-        return data;
-    }
-
-    std::string
-    curTaskName(Addr thread_info = 0)
-    {
-        int32_t offset;
-        int32_t size;
-
-        if (!get_data("task_struct_comm", offset))
-            return "FailureIn_curTaskName";
-
-        if (!get_data("task_struct_comm_size", size))
-            return "FailureIn_curTaskName";
-
-        char buffer[size + 1];
-        CopyStringOut(tc, buffer, curTaskInfo(thread_info) + offset, size);
-
-        return buffer;
-    }
-};
-
-} // namespace Linux
-
-#endif // __ARCH_MIPS_LINUX_LINUX_THREADINFO_HH__
index 3db4ab5aa4b5956fe3ad136d9da7bb2e4194e5af..393073bf794fca6953ced316fe18009b4435bec7 100644 (file)
@@ -72,6 +72,9 @@ const ExtMachInst NoopMachInst = 0x60000000;
 // Memory accesses can be unaligned
 const bool HasUnalignedMemAcc = true;
 
+const bool CurThreadInfoImplemented = false;
+const int CurThreadInfoReg = -1;
+
 } // namespace PowerISA
 
 #endif // __ARCH_POWER_ISA_TRAITS_HH__
index 9b02a4d80f619d7caebec08a1cb641e09ed18970..22d49b12e9e99fd3d840c5b598abba1ab7026417 100644 (file)
@@ -91,6 +91,10 @@ enum InterruptTypes
 
 // Memory accesses cannot be unaligned
 const bool HasUnalignedMemAcc = false;
+
+const bool CurThreadInfoImplemented = false;
+const int CurThreadInfoReg = -1;
+
 }
 
 #endif // __ARCH_SPARC_ISA_TRAITS_HH__
index 383e56eeec680658b2de31956afba06e2e73d1c0..27f20e9b2c921122ecb079f91c5aeaaad14c0e39 100644 (file)
@@ -71,6 +71,9 @@ namespace X86ISA
     // Memory accesses can be unaligned
     const bool HasUnalignedMemAcc = true;
 
+    const bool CurThreadInfoImplemented = false;
+    const int CurThreadInfoReg = -1;
+
     const ExtMachInst NoopMachInst = {
         0x0,                            // No legacy prefixes.
         0x0,                            // No rex prefix.