diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-04-07 16:34:46 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-04-07 16:34:46 +0000 |
commit | 4188699f80c233a20b6ddc61570a8a8c1804cb85 (patch) | |
tree | a711460fdce84b3c1fdd9c1dcce8be21fef48786 /lib/Target/SparcV9 | |
parent | 38ab6d887c660c7e2fe08707e8f982ab451fb224 (diff) |
Foundation for call frame information.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27491 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9')
-rw-r--r-- | lib/Target/SparcV9/SparcV9RegisterInfo.cpp | 9 | ||||
-rw-r--r-- | lib/Target/SparcV9/SparcV9RegisterInfo.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lib/Target/SparcV9/SparcV9RegisterInfo.cpp b/lib/Target/SparcV9/SparcV9RegisterInfo.cpp index 267d69a4f7..a49525b46e 100644 --- a/lib/Target/SparcV9/SparcV9RegisterInfo.cpp +++ b/lib/Target/SparcV9/SparcV9RegisterInfo.cpp @@ -317,6 +317,15 @@ void SparcV9RegisterInfo::emitEpilogue(MachineFunction &MF, abort (); } +int SparcV9RegisterInfo::getDwarfRegNum(unsigned RegNum) const { + abort (); + return 0; +} + +unsigned SparcV9RegisterInfo::getRARegister() const { + abort (); + return 0; +} unsigned SparcV9RegisterInfo::getFrameRegister(MachineFunction &MF) const { abort (); diff --git a/lib/Target/SparcV9/SparcV9RegisterInfo.h b/lib/Target/SparcV9/SparcV9RegisterInfo.h index 6de47cbb62..c9570d3a93 100644 --- a/lib/Target/SparcV9/SparcV9RegisterInfo.h +++ b/lib/Target/SparcV9/SparcV9RegisterInfo.h @@ -46,6 +46,8 @@ struct SparcV9RegisterInfo : public MRegisterInfo { void emitEpilogue (MachineFunction &MF, MachineBasicBlock &MBB) const; // Debug information queries. + int getDwarfRegNum(unsigned RegNum) const; + unsigned getRARegister() const; unsigned getFrameRegister(MachineFunction &MF) const; }; |