- 56f3494 Move IgnoreParenCasts to be a method on Expr. by Chris Lattner · 17 years ago
- 754607e Added support to GREngine/GRConstants for handling computed gotos. by Ted Kremenek · 17 years ago
- 6083ea3 Fixed misspelling in comment. by Ted Kremenek · 17 years ago
- 78492da Moved class declaration for ObjCForCollectionStmt to be co-located with by Ted Kremenek · 17 years ago
- 8e49dd6 Added GRBlockCounter class, which tracks the number of times blocks by Ted Kremenek · 17 years ago
- fd888a5 Add wchar_t type to ASTContext. Will be needed for wide strings, since by Eli Friedman · 17 years ago
- 9532414 by Steve Naroff · 17 years ago
- 5f8aa69 by Steve Naroff · 17 years ago
- 705b5b5 by Steve Naroff · 17 years ago
- 406db93 by Steve Naroff · 17 years ago
- a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 17 years ago
- 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago
- 8bd36fc Behave correctly if a constraint expression is invalid. by Anders Carlsson · 17 years ago
- efe7f36 by Steve Naroff · 17 years ago
- a312ce2 Improve diagnostic for illegal array initialization. by Eli Friedman · 17 years ago
- dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
- 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
- b746ce8 by Steve Naroff · 17 years ago
- 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
- 419154d by Steve Naroff · 17 years ago
- 19227e3 Added proof-of-concept NULL pointer diagnostics to GRConstants. by Ted Kremenek · 17 years ago
- 3f1cc83 Implement support for the extremely atrocious MS /##/ extension, by Chris Lattner · 17 years ago
- 18354de these aren't tokens. by Chris Lattner · 17 years ago
- d62701b by Steve Naroff · 17 years ago
- 5101907 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 17 years ago
- c8edf6b explicitly document that return statement argument does not necessarily follow the result type of the function. Add testcase. by Chris Lattner · 17 years ago
- 8ee3c03 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 17 years ago
- 2ae34ed pass the astconsumer into Sema's ctor, clean up some stuff in by Chris Lattner · 17 years ago
- e91c134 rename ASTSTreamer.{h|cpp} -> ParseAST.{h|cpp} by Chris Lattner · 17 years ago
- dfab34a Handle simple asm statements correctly. by Anders Carlsson · 17 years ago
- 64515f3 by Steve Naroff · 17 years ago
- ef09d2b Use correct flag value. by Anders Carlsson · 17 years ago
- d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
- 768ad16 ValueManager now uses the BumpPtrAllocator owned by the ExplodedGraph. by Ted Kremenek · 17 years ago
- f233d48 Implemented initial transfer function support for '&&', '||', '?', and by Ted Kremenek · 17 years ago
- ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 17 years ago
- 7097d91 Fix PR1966 by ignoring non-error diagnostics from system headers even if they are by Chris Lattner · 17 years ago
- f848454 the macro start and macro end bits in source location are dead, remove them. by Chris Lattner · 17 years ago
- 49c1f4a by Steve Naroff · 17 years ago
- 27e2eb4 by Steve Naroff · 17 years ago
- c0ff1ca by Steve Naroff · 17 years ago
- be4b333 by Steve Naroff · 17 years ago
- ff98102 For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the next @catch) by Ted Kremenek · 17 years ago
- 6e10a08 make some diagnostics more terse, update testcases. by Chris Lattner · 17 years ago
- f7682b0 Implement __builtin_huge_val. by Anders Carlsson · 17 years ago
- aadaf78 add some helper methods for removing and replacing text, this makes the by Chris Lattner · 17 years ago
- dcbc5b0 Make rewriter::inserttext return a bool to indicate if it failed. by Chris Lattner · 17 years ago
- e0e713b Fix PR1965: missing diagnostics for parameters that are missing by Chris Lattner · 17 years ago
- 796ef3d Remainder of the __builtin_overload feedback by Nate Begeman · 17 years ago
- c4f8e8b by Steve Naroff · 17 years ago
- 3b4f670 We now delay adding nodes created by GRBranchNodeBuilder to the analysis by Ted Kremenek · 17 years ago
- b38911f Implemented some branch pruning in GRConstants using != and == for by Ted Kremenek · 17 years ago
- a292585 Added method "printTerminator" to CFGBlock so that external clients can by Ted Kremenek · 17 years ago
- 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 17 years ago
- bd144b7 Typo. by Fariborz Jahanian · 17 years ago
- 78a677b Fixed misc. issues raised by Chris L. on @synchronized implementation. by Fariborz Jahanian · 17 years ago
- 3fd1dfa Eli points out this can only happen for scalar elements. by Chris Lattner · 17 years ago
- 196ef51 Be more explicit about what flavors of initlistexpr's we can see. I don't by Chris Lattner · 17 years ago
- db6ed17 move some constructors out of line and fix indentation in ObjCAtThrowStmt::getSourceRange. by Chris Lattner · 17 years ago
- b7b032e by Steve Naroff · 17 years ago
- 52a1649 Added method "markInfeasible" to GRBranchNodeBuilder to disable the by Ted Kremenek · 17 years ago
- 71c29bd Implemented more boilerplate in GREngine for processing branches. Now by Ted Kremenek · 17 years ago
- a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
- 7d7fe6d Added boilerplate logic in GREngine for processing branches. by Ted Kremenek · 17 years ago
- f4b7a69 Renamed GRNodeBuilder to GRStmtNodeBuilder. by Ted Kremenek · 17 years ago
- fa3ee8e AST for @synchronized. by Fariborz Jahanian · 17 years ago
- c385c90 Bunch of type defs, etc. for @synchronized. by Fariborz Jahanian · 17 years ago
- 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
- 12fe558 fix comment typo by Chris Lattner · 17 years ago
- 73bd901 add diagnostic by Chris Lattner · 17 years ago
- bffaa83 Modified LiveVariables to perform all of its base initialization in the ctor, by Ted Kremenek · 17 years ago
- cb48b9c Driver now passes the top-level FunctionDecl* to GRConstants. by Ted Kremenek · 17 years ago
- 7dd0bd4 by Steve Naroff · 17 years ago
- d6326c6 by Steve Naroff · 17 years ago
- 14dd98a Factor a complex predicate out to a helper method. by Chris Lattner · 17 years ago
- 699b661 split the second half of ParseObjCMessageExpression into a new by Chris Lattner · 17 years ago
- 1dad5b2 Diagnose bad receiver type. by Fariborz Jahanian · 17 years ago
- a996033 by Steve Naroff · 17 years ago
- 874d63f Added passing "ASTContext" to both GREngine and GRConstants. by Ted Kremenek · 17 years ago
- 7da8d94 Fixed a nasty bug which took a while to come up with a test case, by Fariborz Jahanian · 17 years ago
- 116a4b1 add support for -Wundef. by Chris Lattner · 17 years ago
- 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 17 years ago
- 2338d58 Elimate bogus warning when va_start is correctly used in a method. by Fariborz Jahanian · 17 years ago
- 5c06a69 by Steve Naroff · 17 years ago
- 20ebf8f by Steve Naroff · 17 years ago
- 51f5499 Changed DataflowSolver to always associated recorded dataflow values with by Ted Kremenek · 17 years ago
- 8694674 Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This by Ted Kremenek · 17 years ago
- 2c0f01a by Steve Naroff · 17 years ago
- 79649df Added support to dataflow solver to (when requested) also record dataflow by Ted Kremenek · 17 years ago
- e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
- faf5e77 Renamed getSynthesizedSelectorSize to getSynthesizedMethodSize. Compute method name by Fariborz Jahanian · 17 years ago
- 4e99a5f Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. by Ted Kremenek · 17 years ago
- 847794a Computed length of a __func__ identifier used in an objective-c method correctly, by Fariborz Jahanian · 17 years ago
- 1b4a622 by Steve Naroff · 17 years ago
- 67c49e8 by Steve Naroff · 17 years ago
- 1501c82 Fixed invalid typedefs in the root and eop iterators for ExplodedGraph. by Ted Kremenek · 17 years ago
- 20dabe8 add accessors to switchstmt. by Chris Lattner · 17 years ago
- b365b70 Fixed broken bitmasking in the ctor of ProgramPoint. by Ted Kremenek · 17 years ago
- faa5b48 Added missing call to the checker's Initialize() method in the alternate by Ted Kremenek · 17 years ago
- b2d763a Added missing ctor to ExplodedGraph. by Ted Kremenek · 17 years ago