diff options
author | Richard Sandiford <rsandifo@linux.vnet.ibm.com> | 2013-08-12 10:28:10 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@linux.vnet.ibm.com> | 2013-08-12 10:28:10 +0000 |
commit | 564681c88d643ecbb3e5b9fd47479b83f4608c0a (patch) | |
tree | 43f13236136a924339dd240a1f420e1e240bc196 /llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp | |
parent | 761703a248bbb53be681c381a27b19c84e6744a5 (diff) | |
download | bcm5719-llvm-564681c88d643ecbb3e5b9fd47479b83f4608c0a.tar.gz bcm5719-llvm-564681c88d643ecbb3e5b9fd47479b83f4608c0a.zip |
[SystemZ] Use CLC and IPM to implement memcmp
For now this is restricted to fixed-length comparisons with a length
in the range [1, 256], as for memcpy() and MVC.
llvm-svn: 188163
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp b/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp index 4ca9292092d..341dc946550 100644 --- a/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp +++ b/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp @@ -125,3 +125,30 @@ EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc DL, SDValue Chain, } return SDValue(); } + +std::pair<SDValue, SDValue> SystemZSelectionDAGInfo:: +EmitTargetCodeForMemcmp(SelectionDAG &DAG, SDLoc DL, SDValue Chain, + SDValue Src1, SDValue Src2, SDValue Size, + MachinePointerInfo Op1PtrInfo, + MachinePointerInfo Op2PtrInfo) const { + if (ConstantSDNode *CSize = dyn_cast<ConstantSDNode>(Size)) { + uint64_t Bytes = CSize->getZExtValue(); + if (Bytes >= 1 && Bytes <= 0x100) { + // A single CLC. + SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue); + Chain = DAG.getNode(SystemZISD::CLC, DL, VTs, Chain, + Src1, Src2, Size); + SDValue Glue = Chain.getValue(1); + // IPM inserts the CC value into bits 29 and 28, with 0 meaning "equal", + // 1 meaning "greater" and 2 meaning "less". Convert them into an + // integer that is respectively equal, greater or less than 0. + SDValue IPM = DAG.getNode(SystemZISD::IPM, DL, MVT::i32, Glue); + SDValue SHL = DAG.getNode(ISD::SHL, DL, MVT::i32, IPM, + DAG.getConstant(2, MVT::i32)); + SDValue SRA = DAG.getNode(ISD::SRA, DL, MVT::i32, SHL, + DAG.getConstant(30, MVT::i32)); + return std::make_pair(SRA, Chain); + } + } + return std::make_pair(SDValue(), SDValue()); +} |