Skip to content
  1. Nov 25, 2009
  2. Nov 24, 2009
    • Dale Johannesen's avatar
      Do not store R31 into the caller's link area on PPC. · 5ece8f0a
      Dale Johannesen authored
      This violates the ABI (that area is "reserved"), and
      while it is safe if all code is generated with current
      compilers, there is some very old code around that uses
      that slot for something else, and breaks if it is stored
      into.  Adjust testcases looking for current behavior.
      I've verified that the stack frame size is right in all
      testcases, whether it changed or not.  7311323.
      
      llvm-svn: 89811
      5ece8f0a
    • Ted Kremenek's avatar
      Convert test case to FileCheck to test the behavior of the nil-receiver... · 239b930a
      Ted Kremenek authored
      Convert test case to FileCheck to test the behavior of the nil-receiver checker when the code is targetted for either Tiger or Leopard.
      
      llvm-svn: 89810
      239b930a
    • Ted Kremenek's avatar
      For the nil-receiver checker, take into account the behavioral changes that... · 1fc1f20e
      Ted Kremenek authored
      For the nil-receiver checker, take into account the behavioral changes that got introduced in Mac OS X 10.5 and later, notably return values of double, float, etc., will not be garbage.  Fixes <rdar://problem/6829160>.
      
      llvm-svn: 89809
      1fc1f20e
    • Ted Kremenek's avatar
      Cleanups and fixes to the nil-receiver checker, some of it fallout the · 005e8a06
      Ted Kremenek authored
      initial transition of the nil-receiver checker to the Checker
      interface as done in r89745.  Some important changes include:
      
      1) We consolidate the BugType object used for nil receiver bug
      reports, and don't include the type of the returned value in the
      BugType (which would be wrong if a nil receiver bug was reported more
      than once)
      
      2) Added a new (temporary) flag to CheckerContext: DoneEvauating.
      This is used by GRExprEngine when evaluating message expressions to
      not continue evaluating the message expression if this flag is set.
      This flag is currently set by the nil receiver checker.  This is an
      intermediate solution to allow the nil-receiver checker to properly
      work as a plug-in outside of GRExprEngine.  Basically, this flag
      indicates that the entire message expression has been evaluated, not
      just a precondition (which is what the nil-receiver checker does).
      This flag *should not* be repurposed for general use, but just to pull
      more things out of GRExprEngine that already in there as we devise a
      better interface in the Checker class.
      
      3) Cleaned up the logic in the nil-receiver checker, making the
      control-flow a lot easier to read.
      
      llvm-svn: 89804
      005e8a06
    • Devang Patel's avatar
      Enable debug info for ppc-darwin. · 29c9b709
      Devang Patel authored
      llvm-svn: 89803
      29c9b709
    • Fariborz Jahanian's avatar
      Refactor argument collection of constructor calls using · 4fa66ce2
      Fariborz Jahanian authored
      the common routine.
      
      llvm-svn: 89802
      4fa66ce2
Loading