- 90f163b improve comment. by Chris Lattner · 17 years ago
- 25b8285 simplify an expression by Chris Lattner · 17 years ago
- a00e074 This patch fixes all issues mentioned in clattner's feedback of by Fariborz Jahanian · 17 years ago
- f7cf3a6 Code clean up. Moved couple of static functions to be private members of Sema class. by Fariborz Jahanian · 17 years ago
- dd243ef Patch to remove use of has table for protocol name lookup. This patch mirrors my by Fariborz Jahanian · 17 years ago
- 0c5affb Removed use of hash table for class decls and do a name look up directly. by Fariborz Jahanian · 17 years ago
- 5b82d95 by Steve Naroff · 17 years ago
- 319e89e Added ProgramEdge.h, which defines ProgramEdge (and subclasses) that by Ted Kremenek · 17 years ago
- 6cb1d36 by Steve Naroff · 17 years ago
- 9729936 Do not codegen dummy block. Dummy block is an empty block with no predecessors. by Devang Patel · 17 years ago
- 83a6ba1 Fixed bug where assignments to variables wrapped in parentheses would not by Ted Kremenek · 17 years ago
- f87111b Fixed UninitializedValues to properly propagate uninitialized "taint" by Ted Kremenek · 17 years ago
- 4f20054 DeadStores no longer reports warnings for stores to non-local variables. by Ted Kremenek · 17 years ago
- eebf131 Significant cleanups and bug-fixes to LiveVariables. Uses new refactored by Ted Kremenek · 17 years ago
- 67c0b61 Refactored ExprDeclBitVector into two classes: by Ted Kremenek · 17 years ago
- 528e2a5 Fixed bug where declaration initializer expressions were not by Ted Kremenek · 17 years ago
- 3a887aa Added iterator mechanism to iterator over the decls and expressions by Ted Kremenek · 17 years ago
- 5975f77 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 17 years ago
- 6b57649 Fixed several bugs in the propagation of "uninitialized value" by Ted Kremenek · 17 years ago
- 171ceb5 Patch to use case-stmt for keywords used as selectgor names. by Fariborz Jahanian · 17 years ago
- 1e4e82f Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 17 years ago
- e41de35 by Steve Naroff · 17 years ago
- bfbb7fb Created new "ExprDeclBitVector" type bundle for dataflow analyses that need boolean by Ted Kremenek · 17 years ago
- 265c817 Fix some use of uninit variables issues, reported by Anton. by Chris Lattner · 17 years ago
- 4ed9d66 by Steve Naroff · 17 years ago
- 99f5f0b objc messages have side effects, return true from hasLocalSideEffect, fixing: by Chris Lattner · 17 years ago
- 85a7ea3 Added extra guard for null Stmt* when traversing the AST using VisitChildren. by Ted Kremenek · 17 years ago
- 680fcb8 Fixed two bugs in CFG construction: by Ted Kremenek · 17 years ago
- 56b7086 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
- 10389cf Moved "VerifyDiagnostics" variable declaration to right below ProgAction by Ted Kremenek · 17 years ago
- 2554117 Removed inclusion of <memory>, which is no longer needed since we by Ted Kremenek · 17 years ago
- 6856c63 Refactored driver so that any action that is implemented using an by Ted Kremenek · 17 years ago
- d34caf9 This patch inserts ivars declared in @implementation in its object and verifies by Fariborz Jahanian · 17 years ago
- 628abf1 Removed a few TODOs on things which are done. by Fariborz Jahanian · 17 years ago
- 9d020b3 Handle (int)1.0e40 as an i-c-e. by Chris Lattner · 17 years ago
- b0d4cb7 Updated VC++ build system. by Hartmut Kaiser · 17 years ago
- 6f324ee Updated XCode project to reflect that DataflowValues.h and DataflowSolver.h have by Ted Kremenek · 17 years ago
- 10d8046 Moved "DataflowSolver.h" to the "include/" subtree. Adjusted client by Ted Kremenek · 17 years ago
- 1c0eedb Patch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy by Fariborz Jahanian · 17 years ago
- 5812c65 Fixed broken English in comment. by Ted Kremenek · 17 years ago
- c091b5d This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
- 0841c70 Added "CheckASTConsumer", a function that generalizes by Ted Kremenek · 17 years ago
- 945fb56 Changed command line options "-check-dead-stores" and by Ted Kremenek · 17 years ago
- 7b33451 Comment formatting changes. No real content changes. by Ted Kremenek · 17 years ago
- ecc54af Minor comment changes. by Ted Kremenek · 17 years ago
- 2456192 Removed "EverKilled" class in DeadStores checker; it is no longer used. by Ted Kremenek · 17 years ago
- c9b30d6 Updated VC++ build system by Hartmut Kaiser · 17 years ago
- d7a2f81 Further refactored DataflowSolver. Now most code for the solver is shared by Ted Kremenek · 17 years ago
- 22cbc57 Added extra "constness" to parameter. by Ted Kremenek · 17 years ago
- 5aa5650 use the right rounding mode. by Chris Lattner · 17 years ago
- 9b8c88b Added PersistentMap, an ADT that implements a map data structure that by Ted Kremenek · 17 years ago
- 058dfe0 Added smart pointer class "IntrusiveSPtr" that handles reference by Ted Kremenek · 17 years ago
- e6cdeb5 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
- 4351e71 Fix for 64-bit systems. by Chris Lattner · 17 years ago
- 92803da Fixed VC++ bitfield to unsigned/signed sign propagation issue. by Hartmut Kaiser · 17 years ago
- 76a0c1b Use the APFloat routines to evaluate FP immediates as by Chris Lattner · 17 years ago
- 4e33ba3 add comments. by Chris Lattner · 17 years ago
- 7f29876 further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 17 years ago
- 36f46b8 work around bugs and missing features in apfloat. by Chris Lattner · 17 years ago
- 858eece Use APFloat for the representation of FP immediates, ask the target by Chris Lattner · 17 years ago
- ac77583 This patch adds to new things to clang: by Fariborz Jahanian · 17 years ago
- 766afb8 Make case sorting deterministic by not depending on pointer by Chris Lattner · 17 years ago
- c716c94 This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
- bebc9cb Updated VC++ project files by Hartmut Kaiser · 17 years ago
- 6ee700e Updated XCode project with locations of "Analysis" visitor header files. by Ted Kremenek · 17 years ago
- 26e4746 Updated header file inlcude to new location of by Ted Kremenek · 17 years ago
- a36bd92 Renamed "include/clang/Analysis/CFGVisitors" "<snip>/Analysis/Visitors". by Ted Kremenek · 17 years ago
- 73a70e9 Moved include/clang/Analysis/*Visitor.h to include/clang/Analysis/CFGVisitors. by Ted Kremenek · 17 years ago
- a5f4040 Handle forward declaration of classes and prevent re-instantiation of by Fariborz Jahanian · 17 years ago
- 0b59d9c Match to do some semantic analysis on objective-c class decl. by Fariborz Jahanian · 17 years ago
- 2b60687 Updated VC++ project files. Disambiguated a variable. by Hartmut Kaiser · 17 years ago
- b6976a2 Added support to clang driver to view ASTs using GraphViz. This by Ted Kremenek · 17 years ago
- 51b0aca Moved GraphTraits<Stmt*> to StmtGraphTraits.h. This allows consumers of Stmt.h not to have to pay the cost by Ted Kremenek · 17 years ago
- 64b864e Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
- 2f491fb Added GraphTraits template specialization for Stmt* to treat ASTs like graphs. by Ted Kremenek · 17 years ago
- 1ff4115 More refactoring: decl and expr regisitration now uses CFGRecStmtDeclVisitor. by Ted Kremenek · 17 years ago
- 9fa2889 Added two new visitors that extend CFGStmtVisitor: CFGRecStmtVisitor and CFGRecStmtDeclVisitor. by Ted Kremenek · 17 years ago
- 4bc52ce by Steve Naroff · 17 years ago
- c03b040 by Steve Naroff · 17 years ago
- 10ca99c Remove alloca import... by Steve Naroff · 17 years ago
- c39ca26 by Steve Naroff · 17 years ago
- 5b3036e DataflowSolver now acccepts an "_Equal" template parameter that allows the user by Ted Kremenek · 17 years ago
- 05d09a2 Fixed bug where getBitRef would incorrectly grab the bit from the by Ted Kremenek · 17 years ago
- 17aac83 Changed solver to use "==" operator when comparing dataflow values by Ted Kremenek · 17 years ago
- a1d3586 Minor performance fix in transfer function logic. Previously we by Ted Kremenek · 17 years ago
- f92ba51 More refactoring and code reduction. by Ted Kremenek · 17 years ago
- 3fa5e09 Add overloaded versions of DataflowSolver::runOnBlock to simplify by Ted Kremenek · 17 years ago
- 68447a6 Added member template CFG::VisitBlockStmts to provide a succinct way by Ted Kremenek · 17 years ago
- 9439387 Additional comments and cosmetic cleanups. by Ted Kremenek · 17 years ago
- f25220e Patch for object creation and handling of category declarations. by Fariborz Jahanian · 17 years ago
- 2a20356 Moved TransferFunction object within DataflowSolver to be a instance by Ted Kremenek · 17 years ago
- 2e3e630 Modified DataFlowValues and DataflowSolver to associate dataflow value by Ted Kremenek · 17 years ago
- d1472a5 Added type "CFG::Edge" to encapsulate the notion of directed-edges by Ted Kremenek · 17 years ago
- b61a8e4 alloca.h doesn't exist on Windows. by Hartmut Kaiser · 17 years ago
- b3886be alloca.h is needed on Solaris by Gabor Greif · 17 years ago
- 8b5ab6f Uses more description name for method implementation kind argument. by Fariborz Jahanian · 17 years ago
- 457d2ea Updated VC++ project files after file rename. by Hartmut Kaiser · 17 years ago
- 4a2b0ac Patch to remove ObjcProtoMethodDecl and use ObjcMethodDecl by Fariborz Jahanian · 17 years ago
- e6148f3 Bug fix to merging of data flow values (merge incorrectly made values by Ted Kremenek · 17 years ago
- 65a506b Add a comment and remove unused constructors. by Steve Naroff · 17 years ago