aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/MRegisterInfo.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-01-02 21:30:17 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-01-02 21:30:17 +0000
commit0098b3e2b69e527ddcf2ebad7a3081898fa3b4f0 (patch)
tree79e60c027d35b97c8f4708fde6f494e8495f36b2 /include/llvm/Target/MRegisterInfo.h
parentebdf389e2f0af7e90c7adf3f329e60a4e007ee70 (diff)
downloadexternal_llvm-0098b3e2b69e527ddcf2ebad7a3081898fa3b4f0.zip
external_llvm-0098b3e2b69e527ddcf2ebad7a3081898fa3b4f0.tar.gz
external_llvm-0098b3e2b69e527ddcf2ebad7a3081898fa3b4f0.tar.bz2
Fix naming inconsistency: calleesave -> calleesaved.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/MRegisterInfo.h')
-rw-r--r--include/llvm/Target/MRegisterInfo.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h
index c5a4187..ad4d3a8 100644
--- a/include/llvm/Target/MRegisterInfo.h
+++ b/include/llvm/Target/MRegisterInfo.h
@@ -283,16 +283,16 @@ public:
return false;
}
- /// getCalleeSaveRegs - Return a null-terminated list of all of the
- /// callee-save registers on this target. The register should be in the
+ /// getCalleeSavedRegs - Return a null-terminated list of all of the
+ /// callee saved registers on this target. The register should be in the
/// order of desired callee-save stack frame offset. The first register is
/// closed to the incoming stack pointer if stack grows down, and vice versa.
- virtual const unsigned* getCalleeSaveRegs() const = 0;
+ virtual const unsigned* getCalleeSavedRegs() const = 0;
- /// getCalleeSaveRegClasses - Return a null-terminated list of the preferred
- /// register classes to spill each callee-saved register with. The order and
+ /// getCalleeSavedRegClasses - Return a null-terminated list of the preferred
+ /// register classes to spill each callee saved register with. The order and
/// length of this list match the getCalleeSaveRegs() list.
- virtual const TargetRegisterClass* const *getCalleeSaveRegClasses() const = 0;
+ virtual const TargetRegisterClass* const *getCalleeSavedRegClasses() const =0;
//===--------------------------------------------------------------------===//
// Register Class Information
@@ -320,22 +320,22 @@ public:
// immediates and memory. FIXME: Move these to TargetInstrInfo.h.
//
- /// spillCalleeSaveRegisters - Issues instruction(s) to spill all callee saved
+ /// spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved
/// registers and returns true if it isn't possible / profitable to do so by
/// issuing a series of store instructions via storeRegToStackSlot(). Returns
/// false otherwise.
- virtual bool spillCalleeSaveRegisters(MachineBasicBlock &MBB,
- MachineBasicBlock::iterator MI,
+ virtual bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
+ MachineBasicBlock::iterator MI,
const std::vector<CalleeSavedInfo> &CSI) const {
return false;
}
- /// restoreCalleeSaveRegisters - Issues instruction(s) to restore all callee
+ /// restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee
/// saved registers and returns true if it isn't possible / profitable to do
/// so by issuing a series of load instructions via loadRegToStackSlot().
/// Returns false otherwise.
- virtual bool restoreCalleeSaveRegisters(MachineBasicBlock &MBB,
- MachineBasicBlock::iterator MI,
+ virtual bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
+ MachineBasicBlock::iterator MI,
const std::vector<CalleeSavedInfo> &CSI) const {
return false;
}
@@ -394,10 +394,10 @@ public:
assert(0 && "Call Frame Pseudo Instructions do not exist on this target!");
}
- /// processFunctionBeforeCalleeSaveScan - This method is called immediately
+ /// processFunctionBeforeCalleeSavedScan - This method is called immediately
/// before PrologEpilogInserter scans the physical registers used to determine
- /// what callee-save registers should be spilled. This method is optional.
- virtual void processFunctionBeforeCalleeSaveScan(MachineFunction &MF) const {
+ /// what callee saved registers should be spilled. This method is optional.
+ virtual void processFunctionBeforeCalleeSavedScan(MachineFunction &MF) const {
}
/// processFunctionBeforeFrameFinalized - This method is called immediately