[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp SparcV9RegisterInfo.h
Jim Laskey
jlaskey at apple.com
Fri Apr 7 09:35:06 PDT 2006
Changes in directory llvm/lib/Target/SparcV9:
SparcV9RegisterInfo.cpp updated: 1.12 -> 1.13
SparcV9RegisterInfo.h updated: 1.11 -> 1.12
---
Log message:
Foundation for call frame information.
---
Diffs of the changes: (+11 -0)
SparcV9RegisterInfo.cpp | 9 +++++++++
SparcV9RegisterInfo.h | 2 ++
2 files changed, 11 insertions(+)
Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.12 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.13
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.12 Tue Mar 28 07:48:33 2006
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp Fri Apr 7 11:34:45 2006
@@ -317,6 +317,15 @@
abort ();
}
+int SparcV9RegisterInfo::getDwarfRegNum(unsigned RegNum) const {
+ abort ();
+ return 0;
+}
+
+unsigned SparcV9RegisterInfo::getRARegister() const {
+ abort ();
+ return 0;
+}
unsigned SparcV9RegisterInfo::getFrameRegister(MachineFunction &MF) const {
abort ();
Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.11 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.12
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.11 Tue Mar 28 07:48:33 2006
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h Fri Apr 7 11:34:45 2006
@@ -46,6 +46,8 @@
void emitEpilogue (MachineFunction &MF, MachineBasicBlock &MBB) const;
// Debug information queries.
+ int getDwarfRegNum(unsigned RegNum) const;
+ unsigned getRARegister() const;
unsigned getFrameRegister(MachineFunction &MF) const;
};
More information about the llvm-commits
mailing list