[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp SparcV9RegisterInfo.h
Jim Laskey
jlaskey at apple.com
Thu Mar 23 10:13:13 PST 2006
Changes in directory llvm/lib/Target/SparcV9:
SparcV9RegisterInfo.cpp updated: 1.10 -> 1.11
SparcV9RegisterInfo.h updated: 1.9 -> 1.10
---
Log message:
Add support to locate local variables in frames (early version.)
---
Diffs of the changes: (+8 -0)
SparcV9RegisterInfo.cpp | 6 ++++++
SparcV9RegisterInfo.h | 2 ++
2 files changed, 8 insertions(+)
Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.10 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.11
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp:1.10 Wed Nov 30 22:51:06 2005
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.cpp Thu Mar 23 12:12:57 2006
@@ -316,3 +316,9 @@
MachineBasicBlock &MBB) const {
abort ();
}
+
+
+void SparcV9RegisterInfo::getLocation(MachineFunction &MF, unsigned Index,
+ MachineLocation &ML) const {
+ abort ();
+}
Index: llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h
diff -u llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.9 llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.10
--- llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h:1.9 Fri Sep 30 01:55:18 2005
+++ llvm/lib/Target/SparcV9/SparcV9RegisterInfo.h Thu Mar 23 12:12:57 2006
@@ -44,6 +44,8 @@
void eliminateFrameIndex (MachineBasicBlock::iterator MI) const;
void emitPrologue (MachineFunction &MF) const;
void emitEpilogue (MachineFunction &MF, MachineBasicBlock &MBB) const;
+ void getLocation(MachineFunction &MF, unsigned Index,
+ MachineLocation &ML) const;
};
} // End llvm namespace
More information about the llvm-commits
mailing list