Remove dead member variables of SparcV9SchedInfo and TargetSchedInfo
authorBrian Gaeke <gaeke@uiuc.edu>
Sun, 29 Feb 2004 08:40:03 +0000 (08:40 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Sun, 29 Feb 2004 08:40:03 +0000 (08:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11994 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetSchedInfo.h
lib/Target/SparcV9/SparcV9SchedInfo.cpp

index ae97d109e3317d01c90f184669d302f541685d8a..f979bf08990e64a1a34af9b320833096a6f5e228 100644 (file)
@@ -191,16 +191,6 @@ struct TargetSchedInfo {
   unsigned maxNumIssueTotal;
   int  longestIssueConflict;
   
-  int  branchMispredictPenalty;        // 4 for SPARC IIi
-  int  branchTargetUnknownPenalty;     // 2 for SPARC IIi
-  int   l1DCacheMissPenalty;           // 7 or 9 for SPARC IIi
-  int   l1ICacheMissPenalty;           // ? for SPARC IIi
-  
-  bool inOrderLoads;                   // true for SPARC IIi
-  bool inOrderIssue;                   // true for SPARC IIi
-  bool inOrderExec;                    // false for most architectures
-  bool inOrderRetire;                  // true for most architectures
-  
 protected:
   inline const InstrRUsage& getInstrRUsage(MachineOpCode opCode) const {
     assert(opCode >= 0 && opCode < (int) instrRUsages.size());
index 5a6104b828d53212f49995ac4ef3391e3f441f13..7b7da721a607a1d0b5ee39db9c6b461ba52c99c1 100644 (file)
@@ -749,16 +749,6 @@ SparcV9SchedInfo::SparcV9SchedInfo(const TargetMachine& tgt)
   maxNumIssueTotal = 4;
   longestIssueConflict = 0;            // computed from issuesGaps[]
   
-  branchMispredictPenalty = 4;         // 4 for SPARC IIi
-  branchTargetUnknownPenalty = 2;      // 2 for SPARC IIi
-  l1DCacheMissPenalty = 8;             // 7 or 9 for SPARC IIi
-  l1ICacheMissPenalty = 8;             // ? for SPARC IIi
-  
-  inOrderLoads = true;                 // true for SPARC IIi
-  inOrderIssue = true;                 // true for SPARC IIi
-  inOrderExec  = false;                        // false for most architectures
-  inOrderRetire= true;                 // true for most architectures
-  
   // must be called after above parameters are initialized.
   initializeResources();
 }