diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-07-14 13:08:14 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-07-14 13:08:14 +0000 |
commit | 7ddb0ab85f04f56371ae948052188d968725b8b7 (patch) | |
tree | 1e6a4c8d0784284e475f94b83ab343fae835d748 /llvm/lib/Target/Mips/MipsMachineFunction.h | |
parent | d73e7cc8793c8501592161daa9ff307abc432155 (diff) | |
download | bcm5719-llvm-7ddb0ab85f04f56371ae948052188d968725b8b7.tar.gz bcm5719-llvm-7ddb0ab85f04f56371ae948052188d968725b8b7.zip |
[mips] For the FP64A ABI, odd-numbered double-precision moves must not use mtc1/mfc1.
Summary:
This is because the FP64A the hardware will redirect 32-bit reads/writes
from/to odd-numbered registers to the upper 32-bits of the corresponding
even register. In effect, simulating FR=0 mode when FR=0 mode is not
available.
Unfortunately, we have to make the decision to avoid mfc1/mtc1 before
register allocation so we currently do this for even registers too.
FPXX has a similar requirement on 32-bit architectures that lack
mfhc1/mthc1 so this patch also handles the affected moves from the FPU for
FPXX too. Moves to the FPU were supported by an earlier commit.
Differential Revision: http://reviews.llvm.org/D4484
llvm-svn: 212938
Diffstat (limited to 'llvm/lib/Target/Mips/MipsMachineFunction.h')
-rw-r--r-- | llvm/lib/Target/Mips/MipsMachineFunction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/Mips/MipsMachineFunction.h b/llvm/lib/Target/Mips/MipsMachineFunction.h index a667d43724c..61260e57815 100644 --- a/llvm/lib/Target/Mips/MipsMachineFunction.h +++ b/llvm/lib/Target/Mips/MipsMachineFunction.h @@ -55,7 +55,7 @@ public: MipsFunctionInfo(MachineFunction &MF) : MF(MF), SRetReturnReg(0), GlobalBaseReg(0), Mips16SPAliasReg(0), VarArgsFrameIndex(0), CallsEhReturn(false), SaveS2(false), - BuildPairF64_FI(-1) {} + MoveF64ViaSpillFI(-1) {} ~MipsFunctionInfo(); @@ -97,7 +97,7 @@ public: void setSaveS2() { SaveS2 = true; } bool hasSaveS2() const { return SaveS2; } - int getBuildPairF64_FI(const TargetRegisterClass *RC); + int getMoveF64ViaSpillFI(const TargetRegisterClass *RC); std::map<const char *, const llvm::Mips16HardFloatInfo::FuncSignature *> StubsNeeded; @@ -141,7 +141,7 @@ private: /// FrameIndex for expanding BuildPairF64 nodes to spill and reload when the /// O32 FPXX ABI is enabled. -1 is used to denote invalid index. - int BuildPairF64_FI; + int MoveF64ViaSpillFI; /// MipsCallEntry maps. StringMap<const MipsCallEntry *> ExternalCallEntries; |