diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2007-12-05 03:14:33 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2007-12-05 03:14:33 +0000 |
| commit | bb26301864354b6bfc01212d4aa0ef695fbdc833 (patch) | |
| tree | 2a038c5528298d90a23e0f9d74a1a8d2078376b5 /llvm/lib/Target/X86/X86RegisterInfo.h | |
| parent | d766e5d7c24b517bb8e2315dfd880dc78dedaed6 (diff) | |
| download | bcm5719-llvm-bb26301864354b6bfc01212d4aa0ef695fbdc833.tar.gz bcm5719-llvm-bb26301864354b6bfc01212d4aa0ef695fbdc833.zip | |
Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether
the stored register is killed.
llvm-svn: 44600
Diffstat (limited to 'llvm/lib/Target/X86/X86RegisterInfo.h')
| -rw-r--r-- | llvm/lib/Target/X86/X86RegisterInfo.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/llvm/lib/Target/X86/X86RegisterInfo.h b/llvm/lib/Target/X86/X86RegisterInfo.h index c74d2e769df..eda48c20e24 100644 --- a/llvm/lib/Target/X86/X86RegisterInfo.h +++ b/llvm/lib/Target/X86/X86RegisterInfo.h @@ -101,10 +101,10 @@ public: void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, - unsigned SrcReg, int FrameIndex, + unsigned SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC) const; - void storeRegToAddr(MachineFunction &MF, unsigned SrcReg, + void storeRegToAddr(MachineFunction &MF, unsigned SrcReg, bool isKill, SmallVectorImpl<MachineOperand> &Addr, const TargetRegisterClass *RC, SmallVectorImpl<MachineInstr*> &NewMIs) const; @@ -148,11 +148,9 @@ public: SmallVectorImpl<unsigned> &Ops, MachineInstr* LoadMI) const; - /// getOpcodeAfterMemoryFold - Returns the opcode of the would be new - /// instruction after load / store is folded into an instruction of the - /// specified opcode. It returns zero if the specified unfolding is not - /// possible. - unsigned getOpcodeAfterMemoryFold(unsigned Opc, unsigned OpNum) const; + /// canFoldMemoryOperand - Returns true if the specified load / store is + /// folding is possible. + bool canFoldMemoryOperand(MachineInstr*, SmallVectorImpl<unsigned> &) const; /// unfoldMemoryOperand - Separate a single instruction which folded a load or /// a store or a load and a store into two or more instruction. If this is |

