[llvm-commits] CVS: llvm/include/llvm/Target/TargetMachine.h TargetCacheInfo.h

Brian Gaeke gaeke at cs.uiuc.edu
Mon Mar 1 00:44:11 PST 2004


Changes in directory llvm/include/llvm/Target:

TargetMachine.h updated: 1.42 -> 1.43
TargetCacheInfo.h (r1.12) removed

---
Log message:

TargetCacheInfo has been removed; its only uses were to propagate a constant
(16) into certain areas of the SPARC V9 back-end. I'm fairly sure the US IIIi's
dcache has 32-byte lines, so I'm not sure where the 16 came from. However, in
the interest of not breaking things any more than they already are, I'm going
to leave the constant alone.


---
Diffs of the changes:  (+0 -2)

Index: llvm/include/llvm/Target/TargetMachine.h
diff -u llvm/include/llvm/Target/TargetMachine.h:1.42 llvm/include/llvm/Target/TargetMachine.h:1.43
--- llvm/include/llvm/Target/TargetMachine.h:1.42	Sun Dec 28 15:22:35 2003
+++ llvm/include/llvm/Target/TargetMachine.h	Mon Mar  1 00:43:28 2004
@@ -25,7 +25,6 @@
 class TargetSchedInfo;
 class TargetRegInfo;
 class TargetFrameInfo;
-class TargetCacheInfo;
 class MachineCodeEmitter;
 class MRegisterInfo;
 class FunctionPassManager;
@@ -75,7 +74,6 @@
   virtual const TargetSchedInfo&        getSchedInfo() const = 0;
   virtual const TargetRegInfo&          getRegInfo()   const = 0;
   virtual const TargetFrameInfo&        getFrameInfo() const = 0;
-  virtual const TargetCacheInfo&        getCacheInfo() const = 0;
   const TargetData &getTargetData() const { return DataLayout; }
 
   /// getRegisterInfo - If register information is available, return it.  If





More information about the llvm-commits mailing list