arch-arm: Add initial support for SVE contiguous loads/stores
[gem5.git] / src / arch / sparc / utility.hh
index f6a585e2399a97e73619f39137b00b765517a776..ae579969950243c03939a538e15a619f72ae9b09 100644 (file)
 #include "arch/sparc/isa_traits.hh"
 #include "arch/sparc/registers.hh"
 #include "arch/sparc/tlb.hh"
-#include "base/misc.hh"
 #include "base/bitfield.hh"
+#include "base/logging.hh"
+#include "cpu/static_inst.hh"
 #include "cpu/thread_context.hh"
-#include "sim/fault.hh"
+#include "sim/full_system.hh"
 
 namespace SparcISA
 {
-    uint64_t
-    getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp);
-
-    static inline bool
-    inUserMode(ThreadContext *tc)
-    {
-        return !((tc->readMiscRegNoEffect(MISCREG_PSTATE) & (1 << 2)) ||
-                 (tc->readMiscRegNoEffect(MISCREG_HPSTATE) & (1 << 2)));
-    }
-
-    /**
-     * Function to insure ISA semantics about 0 registers.
-     * @param tc The thread context.
-     */
-    template <class TC>
-    void zeroRegisters(TC *tc);
-
-    void initCPU(ThreadContext *tc, int cpuId);
-
-    inline void
-    startupCPU(ThreadContext *tc, int cpuId)
-    {
-#if FULL_SYSTEM
-        // Other CPUs will get activated by IPIs
-        if (cpuId == 0)
-            tc->activate(0);
-#else
-        tc->activate(0);
-#endif
-    }
 
-    void copyRegs(ThreadContext *src, ThreadContext *dest);
+inline PCState
+buildRetPC(const PCState &curPC, const PCState &callPC)
+{
+    PCState ret = callPC;
+    ret.uEnd();
+    ret.pc(curPC.npc());
+    return ret;
+}
+
+uint64_t getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp);
+
+static inline bool
+inUserMode(ThreadContext *tc)
+{
+    PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
+    HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
+    return !(pstate.priv || hpstate.hpriv);
+}
+
+/**
+ * Function to insure ISA semantics about 0 registers.
+ * @param tc The thread context.
+ */
+template <class TC>
+void zeroRegisters(TC *tc);
 
-    void copyMiscRegs(ThreadContext *src, ThreadContext *dest);
+void initCPU(ThreadContext *tc, int cpuId);
 
-    void skipFunction(ThreadContext *tc);
+inline void
+startupCPU(ThreadContext *tc, int cpuId)
+{
+    // Other CPUs will get activated by IPIs
+    if (cpuId == 0 || !FullSystem)
+        tc->activate();
+}
+
+void copyRegs(ThreadContext *src, ThreadContext *dest);
+
+void copyMiscRegs(ThreadContext *src, ThreadContext *dest);
+
+void skipFunction(ThreadContext *tc);
+
+inline void
+advancePC(PCState &pc, const StaticInstPtr &inst)
+{
+    inst->advancePC(pc);
+}
+
+inline uint64_t
+getExecutingAsid(ThreadContext *tc)
+{
+    return tc->readMiscRegNoEffect(MISCREG_MMU_P_CONTEXT);
+}
 
 } // namespace SparcISA