mips: Remove unused private members to fix compile-time warning
authorAndreas Sandberg <Andreas.Sandberg@ARM.com>
Wed, 13 Aug 2014 10:57:30 +0000 (06:57 -0400)
committerAndreas Sandberg <Andreas.Sandberg@ARM.com>
Wed, 13 Aug 2014 10:57:30 +0000 (06:57 -0400)
Certain versions of clang complain about unused private members if
they are not used. This changeset removes such members from the
MIPS-specific classes to silence the warning.

src/arch/mips/interrupts.hh
src/arch/mips/linux/system.hh
src/arch/mips/stacktrace.hh
src/arch/mips/tlb.cc
src/dev/mips/malta_io.hh

index c852bc9d07bd939ca533a63827ac98d3912e1305..8367bf91c8617fd42a2c1d119b5ff8ab86489e0d 100755 (executable)
@@ -59,7 +59,6 @@ class Interrupts : public SimObject
 
     Interrupts(Params * p) : SimObject(p)
     {
-        newInfoSet = false;
     }
 
     void
@@ -127,11 +126,6 @@ class Interrupts : public SimObject
     {
         fatal("Unserialization of Interrupts Unimplemented for MIPS");
     }
-
-  private:
-    bool newInfoSet;
-    int newIpl;
-    int newSummary;
 };
 
 }
index 984f7469453a2b49e28558b6c7cbb68a2a883307..55e47bbb25080c8e28aca972c5ad19054dee7330 100644 (file)
@@ -87,45 +87,6 @@ class LinuxMipsSystem : public MipsSystem
     Addr InitrdSize() const { return Param() + 0x108; }
     static const int CommandLineSize = 256;
 
-  private:
-#ifndef NDEBUG
-    /** Event to halt the simulator if the kernel calls panic()  */
-    BreakPCEvent *kernelPanicEvent;
-
-    /** Event to halt the simulator if the kernel calls die_if_kernel  */
-    BreakPCEvent *kernelDieEvent;
-#endif
-
-    /**
-     * Event to skip determine_cpu_caches() because we don't support
-     * the IPRs that the code can access to figure out cache sizes
-     */
-    SkipFuncEvent *skipCacheProbeEvent;
-
-    /** PC based event to skip the ide_delay_50ms() call */
-    SkipFuncEvent *skipIdeDelay50msEvent;
-
-    /**
-     * PC based event to skip the dprink() call and emulate its
-     * functionality
-     */
-    Linux::DebugPrintkEvent *debugPrintkEvent;
-
-    /**
-     * Skip calculate_delay_loop() rather than waiting for this to be
-     * calculated
-     */
-    SkipDelayLoopEvent *skipDelayLoopEvent;
-
-    /**
-     * Event to print information about thread switches if the trace flag
-     * Thread is set
-     */
-    PrintThreadInfo *printThreadEvent;
-
-    /** Grab the PCBB of the idle process when it starts */
-    IdleStartEvent *idleStartEvent;
-
   public:
     typedef LinuxMipsSystemParams Params;
     LinuxMipsSystem(Params *p);
index 8520c3d1bb3903106ec010c54c452e3239307085..f4dc04d2908e49ef46e085a21afc1af2b5a9c030 100644 (file)
@@ -45,8 +45,6 @@ class ProcessInfo
   private:
     ThreadContext *tc;
 
-    int thread_info_size;
-    int task_struct_size;
     int task_off;
     int pid_off;
     int name_off;
index 420707bd047b1e66fc714ac9b94110f9aa57e582..b43797541491e14caeb85588d4950939ad772e3e 100644 (file)
@@ -59,21 +59,6 @@ using namespace MipsISA;
 //  MIPS TLB
 //
 
-static inline mode_type
-getOperatingMode(MiscReg Stat)
-{
-    if ((Stat & 0x10000006) != 0 || (Stat & 0x18) ==0) {
-        return mode_kernel;
-    } else if ((Stat & 0x18) == 0x8) {
-        return mode_supervisor;
-    } else if ((Stat & 0x18) == 0x10) {
-        return mode_user;
-    } else {
-        return mode_number;
-    }
-}
-
-
 TLB::TLB(const Params *p)
     : BaseTLB(p), size(p->size), nlu(0)
 {
index 9f49f20ccb91c54004dcd4f6f2cd7e209e970b0c..f74d42da42fadb7904e6d6dc4b598caad5cb488d 100755 (executable)
@@ -51,9 +51,6 @@
  */
 class MaltaIO : public BasicPioDevice
 {
-  private:
-    struct tm tm;
-
   protected:
 
     class RTC : public MC146818