diff options
author | Jack Carter <jack.carter@imgtec.com> | 2013-08-13 20:19:16 +0000 |
---|---|---|
committer | Jack Carter <jack.carter@imgtec.com> | 2013-08-13 20:19:16 +0000 |
commit | 9770097727c21d41fe966e7faef69140a72a49b7 (patch) | |
tree | 4a3378bd0ca7a5a4552455a7c110d591f69e80fe /llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h | |
parent | 1be0c73a94c4eb86bc173821a2a4da2d52b9c156 (diff) | |
download | bcm5719-llvm-9770097727c21d41fe966e7faef69140a72a49b7.tar.gz bcm5719-llvm-9770097727c21d41fe966e7faef69140a72a49b7.zip |
[Mips] Support for unaligned load/store microMips instructions
This includes instructions lwl, lwr, swl and swr.
Patch by Zoran Jovnovic
llvm-svn: 188312
Diffstat (limited to 'llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h')
-rw-r--r-- | llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h b/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h index 03ed1f97cf7..09a15b01f03 100644 --- a/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h +++ b/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h @@ -47,6 +47,12 @@ private: virtual bool selectIntAddr(SDValue Addr, SDValue &Base, SDValue &Offset) const; + virtual bool selectAddrRegImm12(SDValue Addr, SDValue &Base, + SDValue &Offset) const; + + virtual bool selectIntAddrMM(SDValue Addr, SDValue &Base, + SDValue &Offset) const; + virtual std::pair<bool, SDNode*> selectNode(SDNode *Node); virtual void processFunctionAfterISel(MachineFunction &MF); |