diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2012-12-12 02:34:41 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2012-12-12 02:34:41 +0000 |
| commit | 962711ee71599d9f05aac3fb6678408777509e7d (patch) | |
| tree | 3c0342939d1a117887ebf0e16ee50c3f77b12554 /llvm/lib/Target/Mips/MipsISelLowering.cpp | |
| parent | a3f24b3cecd206eb42d40c6ec837c24f9c6793fc (diff) | |
| download | bcm5719-llvm-962711ee71599d9f05aac3fb6678408777509e7d.tar.gz bcm5719-llvm-962711ee71599d9f05aac3fb6678408777509e7d.zip | |
Sorry about the churn. One more change to getOptimalMemOpType() hook. Did I
mention the inline memcpy / memset expansion code is a mess?
This patch split the ZeroOrLdSrc argument into two: IsMemset and ZeroMemset.
The first indicates whether it is expanding a memset or a memcpy / memmove.
The later is whether the memset is a memset of zero. It's totally possible
(likely even) that targets may want to do different things for memcpy and
memset of zero.
llvm-svn: 169959
Diffstat (limited to 'llvm/lib/Target/Mips/MipsISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/Mips/MipsISelLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsISelLowering.cpp b/llvm/lib/Target/Mips/MipsISelLowering.cpp index 5edf82bc7f0..65b33c12b82 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.cpp +++ b/llvm/lib/Target/Mips/MipsISelLowering.cpp @@ -3476,7 +3476,8 @@ MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { } EVT MipsTargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign, - unsigned SrcAlign, bool ZeroOrLdSrc, + unsigned SrcAlign, + bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, MachineFunction &MF) const { if (Subtarget->hasMips64()) |

