1. 1d9a23a Text PathDiagnosticBuilder::getEnclosingStmt() about '?' by Ted Kremenek · 15 years ago
  2. af3e3d5 Teach PathDiagnosticBuilder::getEnclosingStmtLocation() about while/if/do/for, by Ted Kremenek · 15 years ago
  3. d8c938b BugReporter: For control-flow edges from 'if', 'for', 'do', 'while' to by Ted Kremenek · 15 years ago
  4. 00605e0 BugReporter: PathDiagnosticBuilder::ExecutionContinues now returns a by Ted Kremenek · 15 years ago
  5. babdd7b BugReporter: by Ted Kremenek · 15 years ago
  6. 6f00204 - Add class PathDiagosticLocationPair. by Ted Kremenek · 15 years ago
  7. e0e4ebf analyzer infrastructure: make a bunch of changes to symbolic expressions that by Ted Kremenek · 15 years ago
  8. 10aa554 Use the correct data structures! by Ted Kremenek · 15 years ago
  9. 082cb8d PathDiagnostics: by Ted Kremenek · 15 years ago
  10. 0e5c8d4 BugReporter: by Ted Kremenek · 15 years ago
  11. 1fbfd5b Create PathDiagnosticPiece subclasses PathDiagnosticEventPiece and by Ted Kremenek · 15 years ago
  12. be91224 BasicStore: by Ted Kremenek · 15 years ago
  13. 94c9698 Rework use of loc::SymbolVal in the retain/release checker to use the new method by Ted Kremenek · 15 years ago
  14. 025fedc BugReporter: Construct path-related PathDiagnosticPieces with kind "ControlFlow". by Ted Kremenek · 15 years ago
  15. 9b5e505 When retrieving the location of a Node, for MemberExprs use the location of the by Ted Kremenek · 15 years ago
  16. 3daea0a Use Loc::IsLocType() instead of isPointerType() and isReferenceType(). by Ted Kremenek · 15 years ago
  17. 24a9f6e Drop uses of isPointerLikeType. - No functionality change. by Daniel Dunbar · 15 years ago
  18. b479dad Tidy up 'ExecutionContinues' to distinguish between jumping to the end of a 'method' or 'funciton'. by Ted Kremenek · 15 years ago
  19. b697b10 Tidy up the path diagnostic generation logic in BugReporter and remove a case where an "Execution continues..." diagnostic could result in an empty message bubble. by Ted Kremenek · 15 years ago
  20. fe9e543 Hooked up the necessary machinery to allow the retain/release checker reference by Ted Kremenek · 16 years ago
  21. 297308e BugReporter: Use llvm::raw_string_stream instead of std::ostringstream. by Ted Kremenek · 16 years ago
  22. d90e708 Use BugReport::getDescription() for the compiler warning text. by Ted Kremenek · 16 years ago
  23. cf118d4 Overhaul BugReporter interface and implementation. The new interface cleans up by Ted Kremenek · 16 years ago
  24. a26ddab PathDiagnostics: by Ted Kremenek · 16 years ago
  25. 3148eb4 More hacking on static analyzer diagnostics. When emitting summary diagnostics the code paths for diagnostics involving paths or single locations are now unified. This patch also constifies many arguments/methods that are touched by this logic, leading to a nice overall code cleanup. by Ted Kremenek · 16 years ago
  26. 36a32eb Output summary diagnostic for each bug report. by Ted Kremenek · 16 years ago
  27. cabe668 Added virtual method DiagnosticClient::IncludeInDiagnosticCounts(). This is used by Diagnostics to determine if a diagnostic sent to a given DiagnosticClient should be included in the count of diagnostics. The default implementation of this method returns 'true'. by Ted Kremenek · 16 years ago
  28. f7cf85b more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 16 years ago
  29. 3ddc4d5 Fix <rdar://problem/6454568>: BugReporter should correctly handle switch statements with no default case. by Ted Kremenek · 16 years ago
  30. 2dabd43 Rename SymbolID to SymbolRef. This is a precursor to some overhauling of the representation of symbolic values. by Ted Kremenek · 16 years ago
  31. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  32. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  33. 470e5fc eliminate dependence of strange "Diagnostic::Report" method, by Chris Lattner · 16 years ago
  34. 1c96b24 This patch did the following renaming. There should be no functional changes. by Zhongxing Xu · 16 years ago
  35. f21a4b4 Use DeclStmt::decl_iterator instead of using Decl::getDecl(). Soon DeclStmts will wrap group of Decls. by Ted Kremenek · 16 years ago
  36. 9e24049 This is a big patch, but the functionality change is small and the rest of the patch consists of deltas due to API changes. by Ted Kremenek · 16 years ago
  37. 8c036c7 Add "category" to BugTypes, allowing bugs to be grouped. by Ted Kremenek · 16 years ago
  38. d452758 ProgramPoint now takes the space of two pointers instead of one. This change was by Ted Kremenek · 16 years ago
  39. c3517eb Add missing spaces in path diagnostics. by Ted Kremenek · 16 years ago
  40. 405674c adjust to changes in various APIs from LLVM. We can't print by Chris Lattner · 16 years ago
  41. 9aa77f1 various updates to match r54873 on mainline. by Chris Lattner · 16 years ago
  42. 4adc81e Rename ValueState -> GRState. Rename ValueStateManager -> GRStateManager. by Ted Kremenek · 16 years ago
  43. 8f26986 Refactor Dead Stores error reporting to use the simplified BugReporter::EmitBasicReport interface. by Ted Kremenek · 16 years ago
  44. 5720207 Added method "EmitBasicReport" to BugReporter to simplify the emission of simple bug diagnostics. by Ted Kremenek · 16 years ago
  45. 4323a57 Refactored most of the "Store" piece of ValueState into a Store type. The by Ted Kremenek · 16 years ago
  46. 7032f46 Have BugReporter::getCFG and BugReporter::getLiveVariables returns pointers instead of references, because they can both fail by Ted Kremenek · 16 years ago
  47. c095997 Refactored some of the BugReporter interface so that data such as the ASTContext&, PathDiagnosticClient*, can be provided by an external source. by Ted Kremenek · 16 years ago
  48. 1a654b6 Modified the dead stores checker to... by Ted Kremenek · 16 years ago
  49. 331b0ac Added a new ProgramPoint: PostPurgeDeadSymbols. This new program point distinguishes between the cases when we just evaluated the transfer function of a Stmt* (PostStmt) or performed a load (PostLoad). This solves a caching bug observed in a recent bug report. by Ted Kremenek · 16 years ago
  50. c1da441 Fix non-termination bug reported by Thomas Clement! by Ted Kremenek · 16 years ago
  51. 1aa44c7 Prototyped support in the BugReporter to emit diagnostics of the form "p now aliases q". by Ted Kremenek · 16 years ago
  52. 76d90c8 Partitioned BugTypeCachedLocation::isCached() into two methods: one that accepts and ExplodedNode, and the other that accepts a ProgramPoint. The default behavior is to cache bug reports by the by Ted Kremenek · 16 years ago
  53. 143ca22 More refactorings in GeneratePathDiagnostic: use ExecutionContinues to display by Ted Kremenek · 16 years ago
  54. 200ed92 Rename member variable. by Ted Kremenek · 16 years ago
  55. c9fa2f7 Added line number diagnostics to indicate the allocation site of the leaked object. by Ted Kremenek · 16 years ago
  56. bb77e9b Do not highlight bogus ranges for leaks. by Ted Kremenek · 16 years ago
  57. 072192b added preliminary diagnostics in scan-build results to denote whether by Ted Kremenek · 16 years ago
  58. 2673c9f Fix bug in BugReporter where we didn't handle emitting diagnostics for by Ted Kremenek · 16 years ago
  59. 5678392 Don't emit empty strings for path diagnostics when taking the default branch of a switch statement that has no label. by Ted Kremenek · 16 years ago
  60. 910e999 Do a better job at computing dead symbols. by Ted Kremenek · 16 years ago
  61. 5a42995 For case statements involving enums, BugReporter now generates PathDiagnostics by Ted Kremenek · 16 years ago
  62. 6aaca9c Fix minor regression in bug report generation. by Ted Kremenek · 16 years ago
  63. a43a1eb When building PathDiagnostics for bug reports, generate a trimmed ExplodedGraph with a single path that BugReport objects can safely walk and introspect. by Ted Kremenek · 16 years ago
  64. 8b90455 For default branches in switch statements with no default label, print out by Ted Kremenek · 16 years ago
  65. 5585114 PathDiagnosticClients now retain ownership of passed PathDiagnostics, requiring by Ted Kremenek · 16 years ago
  66. 2f0e89e Another bug fix in emitting warnings without a path: construct a unit PathDiagnostic as we did by Ted Kremenek · 16 years ago
  67. 27fd586 Reenable using the PathDiagnosticClient for BugReports without paths. by Ted Kremenek · 16 years ago
  68. 95cc1ba Generalize caching mechanism for bugs reports. Now individual BugTypes by Ted Kremenek · 16 years ago
  69. 8dd5646 BugReport::VisitNode now takes BugReporter& instead of ASTContext&. by Ted Kremenek · 16 years ago
  70. 329d2cc Added null check. by Ted Kremenek · 16 years ago
  71. 75840e1 Simplified internal logic of BugReporter, consolidating EmitWarning and by Ted Kremenek · 16 years ago
  72. bd7efa8 Modified BugReport::getEndPath() to handle the case where end path is at by Ted Kremenek · 16 years ago
  73. 5fcca68 Have BugReporter::EmitWarning use the PathDiagnosticClient if it is available. by Ted Kremenek · 16 years ago
  74. d2f642b Hooked up the dead-store checker to the BugReporter interface. Now dead-store by Ted Kremenek · 16 years ago
  75. 5e55cda Added "RangedBugReport". by Ted Kremenek · 16 years ago
  76. 4bb6ac2 When not emitting path diagnostics in BugReporter::EmitWarning(), use the by Ted Kremenek · 16 years ago
  77. 50a6d0c Major refactoring/cleanup of GRExprEngine, ExplodedGraph, and BugReporter. by Ted Kremenek · 16 years ago
  78. 6837faa Added new "BugReporterHelper" class which is used by BugReporter to emit by Ted Kremenek · 16 years ago
  79. 706e3cf Improve BugReport diagnostics for loops and ? operator. by Ted Kremenek · 16 years ago
  80. de7161f Use "getRanges" in default implementation of "getEndPath" to determine by Ted Kremenek · 16 years ago
  81. f1ae705 Hooked up GRSimpleAPICheck and the simple Objective-C Foundation checks to use by Ted Kremenek · 16 years ago
  82. 70d1722 Handle the case when getEndPath() returns NULL. by Ted Kremenek · 16 years ago
  83. 1c19245 Add back bug name to PathDiagnostic. by Ted Kremenek · 16 years ago
  84. 94826a7 When creating PathDiagnostics, created a trimmed graph first and report the by Ted Kremenek · 16 years ago
  85. 61f3e05 Created new path-sensitive bug-reporting scheme based on the classes by Ted Kremenek · 16 years ago