[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp AlphaTargetMachine.h

Andrew Lenharth alenhar2 at cs.uiuc.edu
Mon Jan 24 10:48:39 PST 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaTargetMachine.cpp updated: 1.2 -> 1.3
AlphaTargetMachine.h updated: 1.1 -> 1.2
---
Log message:

Alpha JIT prune

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

 AlphaTargetMachine.cpp |    8 --------
 AlphaTargetMachine.h   |    8 --------
 2 files changed, 16 deletions(-)


Index: llvm/lib/Target/Alpha/AlphaTargetMachine.cpp
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.2 llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.3
--- llvm/lib/Target/Alpha/AlphaTargetMachine.cpp:1.2	Mon Jan 24 12:45:41 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.cpp	Mon Jan 24 12:48:22 2005
@@ -29,14 +29,6 @@
     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0) //TODO: check these
 {}
 
-bool AlphaTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
-					  MachineCodeEmitter &MCE)
-{
-  assert(0 && "TODO");
-  return false;
-}
-
-
 /// addPassesToEmitAssembly - Add passes to the specified pass manager
 /// to implement a static compiler for this target.
 ///


Index: llvm/lib/Target/Alpha/AlphaTargetMachine.h
diff -u llvm/lib/Target/Alpha/AlphaTargetMachine.h:1.1 llvm/lib/Target/Alpha/AlphaTargetMachine.h:1.2
--- llvm/lib/Target/Alpha/AlphaTargetMachine.h:1.1	Sat Jan 22 17:41:55 2005
+++ llvm/lib/Target/Alpha/AlphaTargetMachine.h	Mon Jan 24 12:48:22 2005
@@ -18,7 +18,6 @@
 #include "llvm/Target/TargetFrameInfo.h"
 #include "llvm/PassManager.h"
 #include "AlphaInstrInfo.h"
-//#include "AlphaJITInfo.h"
 
 namespace llvm {
 
@@ -28,7 +27,6 @@
 class AlphaTargetMachine : public TargetMachine {
   AlphaInstrInfo InstrInfo;
   TargetFrameInfo FrameInfo;
-  //  AlphaJITInfo JITInfo;
 
 public:
   AlphaTargetMachine(const Module &M, IntrinsicLowering *IL);
@@ -38,13 +36,7 @@
   virtual const MRegisterInfo *getRegisterInfo() const {
     return &InstrInfo.getRegisterInfo();
   }
-  //  virtual TargetJITInfo *getJITInfo() {
-  //    return &JITInfo;
-  //  }
  
-  virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
-					  MachineCodeEmitter &MCE);
-  
   virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
   
 };






More information about the llvm-commits mailing list