diff options
author | Serge Pavlov <sepavloff@gmail.com> | 2013-09-17 16:24:42 +0000 |
---|---|---|
committer | Serge Pavlov <sepavloff@gmail.com> | 2013-09-17 16:24:42 +0000 |
commit | 8ec39992c15aff57c13a15e571bf27dbbf5f831c (patch) | |
tree | 457c5a31c8d99f4ad41281d276f8538efb74a62b /llvm | |
parent | f04a22d9dca1f39388c61b4c27841aa03fdd6a1c (diff) | |
download | bcm5719-llvm-8ec39992c15aff57c13a15e571bf27dbbf5f831c.tar.gz bcm5719-llvm-8ec39992c15aff57c13a15e571bf27dbbf5f831c.zip |
Added documentation to getMemsetStores.
llvm-svn: 190866
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 845b9a32227..3ca1b4f44c7 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3811,6 +3811,24 @@ static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl, &OutChains[0], OutChains.size()); } +/// \brief Lower the call to 'memset' intrinsic function into a series of store +/// operations. +/// +/// \param DAG Selection DAG where lowered code is placed. +/// \param dl Link to corresponding IR location. +/// \param Chain Control flow dependency. +/// \param Dst Pointer to destination memory location. +/// \param Src Value of byte to write into the memory. +/// \param Size Number of bytes to write. +/// \param Align Alignment of the destination in bytes. +/// \param isVol True if destination is volatile. +/// \param DstPtrInfo IR information on the memory pointer. +/// \returns New head in the control flow, if lowering was successful, empty +/// SDValue otherwise. +/// +/// The function tries to replace 'llvm.memset' intrinsic with several store +/// operations and value calculation code. This is usually profitable for small +/// memory size. static SDValue getMemsetStores(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, |