diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-02-26 03:43:08 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-02-26 03:43:08 +0000 | 
| commit | c8167b0e7ee4b4c5b306c042eb8b25527786ee55 (patch) | |
| tree | 42c6e6996516d935b20c925610995839775be293 /llvm/lib/Analysis | |
| parent | 73687be9d7f29eae2fe3289445beee5c41453177 (diff) | |
| download | bcm5719-llvm-c8167b0e7ee4b4c5b306c042eb8b25527786ee55.tar.gz bcm5719-llvm-c8167b0e7ee4b4c5b306c042eb8b25527786ee55.zip  | |
Add _more_ functions
llvm-svn: 11862
Diffstat (limited to 'llvm/lib/Analysis')
| -rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 23 | 
1 files changed, 20 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 6f9bc73510f..6760c3704d2 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/lib/Analysis/DataStructure/Local.cpp @@ -495,6 +495,15 @@ void GraphBuilder::visitCallSite(CallSite CS) {            if (DSNode *N = RetNH.getNode())              N->setHeapNodeMarker()->setModifiedMarker()->setReadMarker();            return; +        } else if (F->getName() == "memmove") { +          // Merge the first & second arguments, and mark the memory read and +          // modified. +          DSNodeHandle RetNH = getValueDest(**CS.arg_begin()); +          RetNH.mergeWith(getValueDest(**(CS.arg_begin()+1))); +          if (DSNode *N = RetNH.getNode()) +            N->setModifiedMarker()->setReadMarker(); +          return; +          } else if (F->getName() == "atoi" || F->getName() == "atof" ||                     F->getName() == "atol" || F->getName() == "atoll" ||                     F->getName() == "remove" || F->getName() == "unlink" || @@ -753,12 +762,20 @@ void GraphBuilder::visitCallSite(CallSite CS) {                N->mergeTypeInfo(PTy->getElementType(), H.getOffset());            }            return; -        } else if (F->getName() == "strchr" || F->getName() == "strrchr") { -          // These read their first argument, and return it. +        } else if (F->getName() == "strchr" || F->getName() == "strrchr" || +                   F->getName() == "strstr") { +          // These read their arguments, and return the first one            DSNodeHandle H = getValueDest(**CS.arg_begin()); +          H.mergeWith(getValueDest(*CS.getInstruction())); // Returns buffer + +          for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end(); +               AI != E; ++AI) +            if (isPointerType((*AI)->getType())) +              if (DSNode *N = getValueDest(**AI).getNode()) +                N->setReadMarker(); +                if (DSNode *N = H.getNode())              N->setReadMarker(); -          H.mergeWith(getValueDest(*CS.getInstruction())); // Returns buffer            return;          } else if (F->getName() == "modf" && CS.arg_end()-CS.arg_begin() == 2) {            // This writes its second argument, and forces it to double.  | 

