Skip to content
  1. Mar 21, 2012
  2. Mar 20, 2012
  3. Mar 19, 2012
  4. Mar 18, 2012
    • Sebastian Redl's avatar
    • Jordy Rose's avatar
      [analyzer] Mark a failed-realloc's result as an interesting symbol between the... · bf38f20e
      Jordy Rose authored
      [analyzer] Mark a failed-realloc's result as an interesting symbol between the realloc call and the null check, so we get nicer path notes. Fixes a regression introduced by the diagnostic pruning added in r152361.
      
      This is accomplished by calling markInteresting /during/ path diagnostic generation, and as such relies on deterministic ordering of BugReporterVisitors -- namely, that BugReporterVisitors are run in /reverse/ order from how they are added. (Right now that's a consequence of storing visitors in an ImmutableList, where new items are added to the front.) It's a little hacky, but it works for now.
      
      I think this is the best we can do without storing the relation between the old and new symbols, and that would be a hit whether or not there ends up being an error.
      
      llvm-svn: 153010
      bf38f20e
    • Aaron Ballman's avatar
      Turns #import in MS Mode into an error. · 0467f55d
      Aaron Ballman authored
      llvm-svn: 153009
      0467f55d
    • David Blaikie's avatar
      Use character literals for vexing initialization fixit hints. · a90e86aa
      David Blaikie authored
      Instead of suggesting " = 0" for "char c();", suggest " = '\0'", and similarly
      for other char types (wide, 16, and 32). Add tests for all these, and since
      this means testing such hints under C++0x, add tests for some untested C++0x
      hint cases in the existing code, including suggesting nullptr for pointer
      initialization.
      
      This sets up the initialization helper to provide better type fidelity that
      will be especially helpful for non-assignment cases (such as fixit-correcting
      NULL usage in function calls (eg: foo(char) + foo(NULL) => foo('\0') instead
      of the less informative foo(0)))
      
      llvm-svn: 153008
      a90e86aa
    • Jordy Rose's avatar
      [analyzer] Use a FoldingSet to cache simple RetainSummary instances, rather... · 61c974b4
      Jordy Rose authored
      [analyzer] Use a FoldingSet to cache simple RetainSummary instances, rather than explicitly keeping DoNothing and StopTracking summaries and nothing else.
      
      I tried to test the effects of this change on memory usage and run time, but what I saw on retain-release.m was indistinguishable from noise (debug and release builds). Even so, some caveman profiling showed 101 cache hits that we would have generated new summaries for before (i.e. not default or stop summaries), and the more code we analyze, the more memory we should save.
      
      Maybe we should have a standard project for benchmarking the retain count checker's memory and time?
      
      llvm-svn: 153007
      61c974b4
    • Douglas Gregor's avatar
      Replace a FIXME with a diagnostic when we can't resolve the · d17dfe16
      Douglas Gregor authored
      nested-name-specifier for a class template declaration. Fixes PR12291.
      
      llvm-svn: 153006
      d17dfe16
    • Douglas Gregor's avatar
      Diagnose tag and class template declarations with qualified · 31feb337
      Douglas Gregor authored
      declarator-ids that occur at class scope. Fixes PR8019.
      
      llvm-svn: 153002
      31feb337
  5. Mar 17, 2012
Loading