Skip to content
  1. Jul 31, 2012
    • Anna Zaks's avatar
      [analyzer] Handle inlining of instance calls to super. · 5808eb80
      Anna Zaks authored
      Use self-init.m for testing. (It used to have a bunch of failing tests
      with dynamic inlining turned on.)
      
      llvm-svn: 161012
      5808eb80
    • Jordan Rose's avatar
      [analyzer] Perform post-call checks for all inlined calls. · c2d249ce
      Jordan Rose authored
      Previously, we were only checking the origin expressions of inlined calls.
      Checkers using the generic postCall and older postObjCMessage callbacks were
      ignored. Now that we have CallEventManager, it is much easier to create
      a CallEvent generically when exiting an inlined function, which we can then
      use for post-call checks.
      
      No test case because we don't (yet) have any checkers that depend on this
      behavior (which is why it hadn't been fixed before now).
      
      llvm-svn: 161005
      c2d249ce
  2. Jul 30, 2012
    • Anna Zaks's avatar
      [analyzer] Very simple ObjC instance method inlining · 63282aef
      Anna Zaks authored
      - Retrieves the type of the object/receiver from the state.
      - Binds self during stack setup.
      - Only explores the path on which the method is inlined (no
      bifurcation to explore the path on which the method is not inlined).
      
      llvm-svn: 160991
      63282aef
    • Jordan Rose's avatar
      [analyzer] Only allow CallEvents to be created by CallEventManager. · fcd016e5
      Jordan Rose authored
      This ensures that it is valid to reference-count any CallEvents, and we
      won't accidentally try to reclaim a CallEvent that lives on the stack.
      It also hides an ugly switch statement for handling CallExprs!
      
      There should be no functionality change here.
      
      llvm-svn: 160986
      fcd016e5
  3. Jul 26, 2012
  4. Jul 19, 2012
  5. Jul 18, 2012
    • Jordan Rose's avatar
      [analyzer] Combine all ObjC message CallEvents into ObjCMethodCall. · 627b046c
      Jordan Rose authored
      As pointed out by Anna, we only differentiate between explicit message sends
      
      This also adds support for ObjCSubscriptExprs, which are basically the same
      as properties in many ways. We were already checking these, but not emitting
      nice messages for them.
      
      This depends on the llvm::PointerIntPair change in r160456.
      
      llvm-svn: 160461
      627b046c
    • Jordan Rose's avatar
      [analyzer] Rename addExtraInvalidatedRegions to get...Regions · 9003d0d0
      Jordan Rose authored
      Per Anna's comment that "add..." sounds like a method that modifies
      the receiver, rather than its argument.
      
      No functionality change.
      
      llvm-svn: 160460
      9003d0d0
    • Jordan Rose's avatar
      [analyzer] Make CallEvent a value object. · 59e6ce92
      Jordan Rose authored
      We will need to be able to easily reconstruct a CallEvent from an ExplodedNode
      for diagnostic purposes, and that's exactly what factory functions are for.
      CallEvent objects are small enough (four pointers and a SourceLocation) that
      returning them through the stack is fairly cheap. Clients who just need to use
      existing CallEvents can continue to do so using const references.
      
      This uses the same sort of "kind-field-dispatch" as SVal, though most of the
      nastiness is contained in the DISPATCH and DISPATCH_ARG macros at the end of
      the file. (We can't use a template for this because member-pointers to base
      class methods don't call derived-class methods even when casting to the
      derived class. We can't use variadic macros because they're a C99 feature.)
      
      llvm-svn: 160459
      59e6ce92
  6. Jul 17, 2012
  7. Jul 12, 2012
  8. Jul 11, 2012
    • Jordan Rose's avatar
      [analyzer] Add debug.DumpCalls, which prints out any CallEvents it sees. · 8889cf00
      Jordan Rose authored
      This is probably not so useful yet because it is not path-sensitive, though
      it does try to show inlining with indentation.
      
      This also adds a dump() method to CallEvent, which should be useful for
      debugging.
      
      llvm-svn: 160030
      8889cf00
    • Jordan Rose's avatar
      [analyzer] Use CallEvent for building inlined stack frames. · d1d54aa1
      Jordan Rose authored
      In order to accomplish this, we now build the callee's stack frame
      as part of the CallEnter node, rather than the subsequent BlockEdge node.
      This should not have any effect on perceived behavior or diagnostics.
      
      This makes it safe to re-enable inlining of member overloaded operators.
      
      llvm-svn: 160022
      d1d54aa1
    • Jordan Rose's avatar
      [analyzer] Add a CXXDestructorCall CallEvent. · 4ee71b8a
      Jordan Rose authored
      While this work is still fairly tentative (destructors are still left out of
      the CFG by default), we now handle destructors in the same way as any other
      calls, instead of just automatically trying to inline them.
      
      llvm-svn: 160020
      4ee71b8a
    • Jordan Rose's avatar
      [analyzer] Add new PreImplicitCall and PostImplicitCall ProgramPoints. · 681cce99
      Jordan Rose authored
      These are currently unused, but are intended to be used in lieu of PreStmt
      and PostStmt when the call is implicit (e.g. an automatic object destructor).
      
      This also modifies the Data1 field of ProgramPoints to allow storing any
      pointer-sized value, as opposed to only aligned pointers. This is necessary
      to store SourceLocations.
      
      There is currently no BugReporter support for these; they should be skipped
      over in any diagnostic output.
      
      This commit also tags checkers that currently rely on function calls only
      occurring at StmtPoints.
      
      llvm-svn: 160019
      681cce99
  9. Jul 04, 2012
    • Jordan Rose's avatar
      [analyzer] For now, don't inline non-static member overloaded operators. · 017591ab
      Jordan Rose authored
      Our current inlining support (specifically RegionStore::enterStackFrame)
      doesn't know that calls to overloaded operators may be calls to non-static
      member functions, and that in these cases the first argument should be
      treated as 'this'. This caused incorrect results and sometimes crashes.
      
      The long-term fix will be to rewrite RegionStore::enterStackFrame to use
      CallEvent and its subclasses, but for now we can just disable these
      problematic calls by classifying them under a new CallEvent,
      CXXMemberOperatorCall.
      
      llvm-svn: 159692
      017591ab
  10. Jul 02, 2012
    • Jordan Rose's avatar
      [analyzer] Use CallEvent for inlining and call default-evaluation. · cbeef558
      Jordan Rose authored
      llvm-svn: 159560
      cbeef558
    • Jordan Rose's avatar
      [analyzer] Finish replacing ObjCMessage with ObjCMethodDecl and friends. · 547060b3
      Jordan Rose authored
      The preObjCMessage and postObjCMessage callbacks now take an ObjCMethodCall
      argument, which can represent an explicit message send (ObjCMessageSend) or an
      implicit message generated by a property access (ObjCPropertyAccess).
      
      llvm-svn: 159559
      547060b3
    • Jordan Rose's avatar
      [analyzer] Begin replacing ObjCMessage with ObjCMethodCall and friends. · 6bad4905
      Jordan Rose authored
      Previously, the CallEvent subclass ObjCMessageInvocation was just a wrapper
      around the existing ObjCMessage abstraction (over message sends and property
      accesses). Now, we have abstract CallEvent ObjCMethodCall with subclasses
      ObjCMessageSend and ObjCPropertyAccess.
      
      In addition to removing yet another wrapper object, this should make it easy
      to add a ObjCSubscriptAccess call event soon.
      
      llvm-svn: 159558
      6bad4905
    • Jordan Rose's avatar
      [analyzer] Move the last bits of CallOrObjCMessage over to CallEvent. · 7ab0182e
      Jordan Rose authored
      This involved refactoring some common pointer-escapes code onto CallEvent,
      then having MallocChecker use those callbacks for whether or not to consider
      a pointer's /ownership/ as escaping. This still needs to be pinned down, and
      probably we want to make the new argumentsMayEscape() function a little more
      discerning (content invalidation vs. ownership/metadata invalidation), but
      this is a good improvement.
      
      As a bonus, also remove CallOrObjCMessage from the source completely.
      
      llvm-svn: 159557
      7ab0182e
    • Jordan Rose's avatar
      [analyzer] Add a new abstraction over all types of calls: CallEvent · 742920c8
      Jordan Rose authored
      This is intended to replace CallOrObjCMessage, and is eventually intended to be
      used for anything that cares more about /what/ is being called than /how/ it's
      being called. For example, inlining destructors should be the same as inlining
      blocks, and checking __attribute__((nonnull)) should apply to the allocator
      calls generated by operator new.
      
      llvm-svn: 159554
      742920c8
Loading