I think that V8 should coallesce registers, don't you?
authorChris Lattner <sabre@nondot.org>
Sun, 25 Jul 2004 06:19:04 +0000 (06:19 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 25 Jul 2004 06:19:04 +0000 (06:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15192 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Sparc/SparcInstrInfo.cpp
lib/Target/Sparc/SparcInstrInfo.h
lib/Target/SparcV8/SparcV8InstrInfo.cpp
lib/Target/SparcV8/SparcV8InstrInfo.h

index b9ce21cf70f6ab347a5549467652ce7d8e508c3a..64e225faf218e45b47f10d8e5d30f10b448ff9df 100644 (file)
@@ -12,6 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "SparcV8InstrInfo.h"
+#include "SparcV8.h"
 #include "llvm/CodeGen/MachineInstrBuilder.h"
 #include "SparcV8GenInstrInfo.inc"
 using namespace llvm;
@@ -20,3 +21,21 @@ SparcV8InstrInfo::SparcV8InstrInfo()
   : TargetInstrInfo(SparcV8Insts, sizeof(SparcV8Insts)/sizeof(SparcV8Insts[0])){
 }
 
+/// Return true if the instruction is a register to register move and
+/// leave the source and dest operands in the passed parameters.
+///
+bool SparcV8InstrInfo::isMoveInstr(const MachineInstr &MI,
+                                   unsigned &SrcReg, unsigned &DstReg) const {
+  if (MI.getOpcode() == V8::ORrr) {
+    if (MI.getOperand(1).getReg() == V8::G0) {  // X = or G0, Y -> X = Y
+      DstReg = MI.getOperand(0).getReg();
+      SrcReg = MI.getOperand(2).getReg();
+    }
+    return true;
+  } else if (MI.getOpcode() == V8::FMOVS) {
+    SrcReg = MI.getOperand(1).getReg();
+    DstReg = MI.getOperand(0).getReg();
+    return true;
+  }
+  return false;
+}
index 52cd7c7f8d04cd2f30aac61316bdd099c65ebb29..9c7838dfdd7eefcfa39ad9beeb49acfa5495811e 100644 (file)
@@ -41,6 +41,12 @@ public:
   /// always be able to get register info as well (through this method).
   ///
   virtual const MRegisterInfo &getRegisterInfo() const { return RI; }
+
+  /// Return true if the instruction is a register to register move and
+  /// leave the source and dest operands in the passed parameters.
+  ///
+  virtual bool isMoveInstr(const MachineInstr &MI,
+                           unsigned &SrcReg, unsigned &DstReg) const;
 };
 
 }
index b9ce21cf70f6ab347a5549467652ce7d8e508c3a..64e225faf218e45b47f10d8e5d30f10b448ff9df 100644 (file)
@@ -12,6 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "SparcV8InstrInfo.h"
+#include "SparcV8.h"
 #include "llvm/CodeGen/MachineInstrBuilder.h"
 #include "SparcV8GenInstrInfo.inc"
 using namespace llvm;
@@ -20,3 +21,21 @@ SparcV8InstrInfo::SparcV8InstrInfo()
   : TargetInstrInfo(SparcV8Insts, sizeof(SparcV8Insts)/sizeof(SparcV8Insts[0])){
 }
 
+/// Return true if the instruction is a register to register move and
+/// leave the source and dest operands in the passed parameters.
+///
+bool SparcV8InstrInfo::isMoveInstr(const MachineInstr &MI,
+                                   unsigned &SrcReg, unsigned &DstReg) const {
+  if (MI.getOpcode() == V8::ORrr) {
+    if (MI.getOperand(1).getReg() == V8::G0) {  // X = or G0, Y -> X = Y
+      DstReg = MI.getOperand(0).getReg();
+      SrcReg = MI.getOperand(2).getReg();
+    }
+    return true;
+  } else if (MI.getOpcode() == V8::FMOVS) {
+    SrcReg = MI.getOperand(1).getReg();
+    DstReg = MI.getOperand(0).getReg();
+    return true;
+  }
+  return false;
+}
index 52cd7c7f8d04cd2f30aac61316bdd099c65ebb29..9c7838dfdd7eefcfa39ad9beeb49acfa5495811e 100644 (file)
@@ -41,6 +41,12 @@ public:
   /// always be able to get register info as well (through this method).
   ///
   virtual const MRegisterInfo &getRegisterInfo() const { return RI; }
+
+  /// Return true if the instruction is a register to register move and
+  /// leave the source and dest operands in the passed parameters.
+  ///
+  virtual bool isMoveInstr(const MachineInstr &MI,
+                           unsigned &SrcReg, unsigned &DstReg) const;
 };
 
 }