diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-16 18:37:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-16 18:37:40 +0000 |
commit | cedfcf5bcaf29e85598602de1d5b1b3b1084a534 (patch) | |
tree | d46863eb918959b8fbdbf3f50c0bac6d68484c5b /llvm/lib/Analysis/DataStructure/Local.cpp | |
parent | 544c9781db89e71d014dd6bfc431b83bd5608558 (diff) | |
download | bcm5719-llvm-cedfcf5bcaf29e85598602de1d5b1b3b1084a534.tar.gz bcm5719-llvm-cedfcf5bcaf29e85598602de1d5b1b3b1084a534.zip |
memset and bcopy and now unified by the llvm.memset intrinsic
llvm-svn: 11503
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 9ee44254214..d0bac6d71ed 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/lib/Analysis/DataStructure/Local.cpp @@ -468,6 +468,11 @@ void GraphBuilder::visitCallSite(CallSite CS) { N->setModifiedMarker()->setReadMarker(); return; } + case Intrinsic::memset: + // Mark the memory modified. + if (DSNode *N = getValueDest(**CS.arg_begin()).getNode()) + N->setModifiedMarker(); + return; default: if (F->getName() == "calloc") { setDestTo(*CS.getInstruction(), @@ -479,20 +484,6 @@ void GraphBuilder::visitCallSite(CallSite CS) { if (DSNode *N = RetNH.getNode()) N->setHeapNodeMarker()->setModifiedMarker()->setReadMarker(); return; - } else if (F->getName() == "memset") { - // Merge the first argument with the return value, and mark the memory - // modified. - DSNodeHandle RetNH = getValueDest(*CS.getInstruction()); - RetNH.mergeWith(getValueDest(**CS.arg_begin())); - if (DSNode *N = RetNH.getNode()) - N->setModifiedMarker(); - return; - } else if (F->getName() == "bzero") { - // Mark the memory modified. - DSNodeHandle H = getValueDest(**CS.arg_begin()); - if (DSNode *N = H.getNode()) - N->setModifiedMarker(); - return; } else if (F->getName() == "fopen" && CS.arg_end()-CS.arg_begin() == 2){ // fopen reads the mode argument strings. CallSite::arg_iterator AI = CS.arg_begin(); |