1. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  2. cabeeed Updated checker build. by Ted Kremenek · 16 years ago
  3. bd589e0 Add coverage of part of getPrimaryDecl that was failing prior to by Daniel Dunbar · 16 years ago
  4. 48d04ae Fix use of dyn_cast. by Daniel Dunbar · 16 years ago
  5. d8c0ea1 Add GetModule accessor to ModuleBuilder by Daniel Dunbar · 16 years ago
  6. 0944ccc When conjuring symbols for compound assignments, use the promoted type to determine if the symbolic value as a "loc::" or "nonloc::" value. by Ted Kremenek · 16 years ago
  7. 6ae9850 Fix <rdar://problem/6257645> clang static analyzer crashes when encountering blocks as objects by Steve Naroff · 16 years ago
  8. 2bd0372 Fix <rdar://problem/6257645> clang static analyzer crashes when encountering blocks as objects by Steve Naroff · 16 years ago
  9. 0165b0c Cosmetic patch from João Paulo Rechi Vita by Douglas Gregor · 16 years ago
  10. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago
  11. 6d34893 Handle [NSAutoreleasePool addObject:] (an alternative way to add objects to the current autorelease pool). by Ted Kremenek · 16 years ago
  12. e117d48 Update Xcode project. by Ted Kremenek · 16 years ago
  13. d7333c2 Fix a crasher during error recovery in Parser::ParseObjCTypeName(). by Steve Naroff · 16 years ago
  14. 94ac21e Fix <rdar://problem/6297052> confused in some way by embedded /* */ comments. by Steve Naroff · 16 years ago
  15. abacf91 Update VC++ project files. by Steve Naroff · 16 years ago
  16. 0fe7060 Tweak an expected-error to match the output. IMHO it is better to diagnose 'int (void)' because it has the same meaning in C and C++. by Gabor Greif · 16 years ago
  17. 6f5f41c Fix typo. by Steve Naroff · 16 years ago
  18. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  19. 933c3e1 Localize the special processing of array variable inside by Zhongxing Xu · 16 years ago
  20. 8485ec6 Modify Store interface: GetSVal/SetSVal => Retrieve/Bind. by Zhongxing Xu · 16 years ago
  21. 65e5e40 Add partial specialization of ImmutableList for GRStatePartialTrait. by Ted Kremenek · 16 years ago
  22. 22ab7a4 Rename: RValues.h/cpp => SVals.h/cpp by Zhongxing Xu · 16 years ago
  23. 53bcdd4 Process decls in RegionStore. Individual elements of fixed size arrays are by Zhongxing Xu · 16 years ago
  24. 511191c Add ElementRegion to represent memory chunks for array elements. by Zhongxing Xu · 16 years ago
  25. 1714b2b Updated checker build by Ted Kremenek · 16 years ago
  26. 8673ae7 Add fileid_iterator to SourceManager. by Ted Kremenek · 16 years ago
  27. ef3b215 Added method to access the raw flags of Token. by Ted Kremenek · 16 years ago
  28. dda0468 Change signature for CheckDivideZero. by Ted Kremenek · 16 years ago
  29. 8588896 Added the start of a prototype implementation of PCH based on token caching. by Ted Kremenek · 16 years ago
  30. c13b6e2 Further improve path-sensitivity with divide-by-zero checking by assuming that a denominator cannot be zero even when the result of an '/' or '%' expression is unknown. by Ted Kremenek · 16 years ago
  31. 9253b0f Added test case inspired by <rdar://6268365>: recover path-sensitivity after compound assignment when the result of the assignment is not known. by Ted Kremenek · 16 years ago
  32. 9ff267d Used conjured symbols to recover path-sensitivity when the result of a compound assignment is UnknownVal(). by Ted Kremenek · 16 years ago
  33. 18bc164 Fix <rdar://problem/6268365> Parser rejects property (dot notation) access on id<protocol>. by Steve Naroff · 16 years ago
  34. 87f3b93 Sema::CheckCompareOperands() and ASTContext::mergeTypes(): Change handling of ObjC qualified id types to be consistent with gcc. This changes a handful of test case errors into warnings (diff will tell you which cases have changed). by Steve Naroff · 16 years ago
  35. 85b4897 Add newline at the end of file, to silence compiler warning. by Matthijs Kooijman · 16 years ago
  36. 5fd80fa eliminate ObjCPropertyAttrs an corresponding enums, just use strcmp when needed. by Chris Lattner · 16 years ago
  37. e00da7c rearrange some code. by Chris Lattner · 16 years ago
  38. 156b061 more simplifications to error recovery in ParseObjCPropertyAttribute by Chris Lattner · 16 years ago
  39. 8f5421a remove extraneous braces by Chris Lattner · 16 years ago
  40. 8ca329c move some code around to make it fall through more, no functionality change. by Chris Lattner · 16 years ago
  41. f6ed855 reject properties completely in objc1 instead of emitting by Chris Lattner · 16 years ago
  42. cd9f4b3 More property attribute recovery improvements. Instead of this: by Chris Lattner · 16 years ago
  43. 9186764 add testcase for the recovery improvements in my last patch. by Chris Lattner · 16 years ago
  44. dd5b5f2 significantly simplify and clean up error recovery in by Chris Lattner · 16 years ago
  45. 2091a3f Updated checker build by Ted Kremenek · 16 years ago
  46. 39146d6 simplify some other code for __extension__ processing. by Chris Lattner · 16 years ago
  47. c46d1a1 implement a couple fixme's by implementing __extension__ properly. by Chris Lattner · 16 years ago
  48. da3253d fix a crash on unnamed properties like: @property (readonly) int : 4; by Chris Lattner · 16 years ago
  49. a1fed7e simplify some code by using ExpectAndConsume. When an error by Chris Lattner · 16 years ago
  50. bc662af refactor a bunch of code: by Chris Lattner · 16 years ago
  51. a2449b2 fix some minor error recovery bugs in ParseObjCInterfaceDeclList by Chris Lattner · 16 years ago
  52. e82a10f restructure the body of the ParseObjCInterfaceDeclList loop by Chris Lattner · 16 years ago
  53. 639e2d3 Fix rdar://6257721 by tightening up the block "snapshot" check, and by Chris Lattner · 16 years ago
  54. aab740a Support attributes in *yet another* place. Is there any place you by Chris Lattner · 16 years ago
  55. 7399ee0 Fix a parser bug where we let attributes interfere with our disambiguation by Chris Lattner · 16 years ago
  56. 097e916 fix indentation by Chris Lattner · 16 years ago
  57. 31c2868 fix indentation by Chris Lattner · 16 years ago
  58. 7c186be Remove an implemented fixme, only treat < as a type specifier by Chris Lattner · 16 years ago
  59. 509447e Change a couple of cast<> to reinterpret_cast<>. by Argyrios Kyrtzidis · 16 years ago
  60. 89c4fcf Add "argument key" processing similar to ccc. by Ted Kremenek · 16 years ago
  61. fa538e7 ccc: Pass '-g' through to clang. Handle -weak_framework. by Daniel Dunbar · 16 years ago
  62. d3f2c10 Improve attribute parsing & tests. by Daniel Dunbar · 16 years ago
  63. 6dfe2f5 Add support in GRExprEngine for UnaryOperator::AlignOf. This fixes one crash report in PR 2796. by Ted Kremenek · 16 years ago
  64. 42e43a9 Updated checker build by Ted Kremenek · 16 years ago
  65. 990601b Fix incorrect release of Decl* array referenced by DeclGroup. by Ted Kremenek · 16 years ago
  66. 2284ac9 Debug info bug fix, function start wasn't getting generated correctly by Daniel Dunbar · 16 years ago
  67. a85e715 Updated checker build. by Ted Kremenek · 16 years ago
  68. f8cd1b2 Generalize VisitLValue: not only can CallExprs and ObjCMessageExprs return aggregate temporaries, so can many other expressions. by Ted Kremenek · 16 years ago
  69. c7df6d2 Function calls and ObjC message expressions can be used in a lvalue context if they return a structure. E.g foo().x == 1. We don't really support, however, such temporaries yet in the environment or the store. by Ted Kremenek · 16 years ago
  70. a496d16 retain/release checker: Check if a tracked value escapes if we also try binding it to the store and the store doesn't support that binding (i.e., it cannot track it). This has the nice feature that the checker will automatically get more powerful if we use a more powerful store model. by Ted Kremenek · 16 years ago
  71. 5c456fe Use "VisitLValue" when processing the base for "x.f" field accesses, and "Visit" when processing the base for "x->f" field accesses. by Ted Kremenek · 16 years ago
  72. 7ae48ee Make llvm memory barrier available as an intrinsic by Mon P Wang · 16 years ago
  73. e5582f0 Added vec_set intrinsics by Mon P Wang · 16 years ago
  74. e75d849 Just do a diagIfAmbiguous -> warnIfAmbiguous rename. No functionality change. by Argyrios Kyrtzidis · 16 years ago
  75. 961b03c Emit more descriptive unsupported error message on dot-syntax use of super. by Daniel Dunbar · 16 years ago
  76. 63c3a5f Add some uses of PredefinedExpr to language coverage includes. by Daniel Dunbar · 16 years ago
  77. f951719 Add FIXME about potential problem in how property ref lvalues are handled. by Daniel Dunbar · 16 years ago
  78. dacd67a This test now passes again. by Ted Kremenek · 16 years ago
  79. 134e749 Hack: have BasicStore::getLValueElement return the "Base" lvalue. This restores null dereference checking with array accesses. by Ted Kremenek · 16 years ago
  80. fd30194 When conjuring symbols to recover path-sensitivity, don't conjure symbols that represent an entire struct. We need to implement struct temporaries as an actual "region", and then bind symbols to the FieldRegion of those temporaries. by Ted Kremenek · 16 years ago
  81. 662b71e Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. by Daniel Dunbar · 16 years ago
  82. 5fabf9d Add option argument to GetAddrOfConstantString to use for name of by Daniel Dunbar · 16 years ago
  83. a1f23cc fix rdar://6288301: custom warnings don't respect -Werror. by Chris Lattner · 16 years ago
  84. c523471 Enhance "Assumption" logic in BasicConstraintManager when reasoning about regions and symbolic regions. When assuming whether or not a location is non-null, walk up the region hierarchy until we hit a symbolic region (and test it for null). This may not be the end all solution, as the notion of what a "symbolic region" is really belongs in the specific subclass of StoreManager. by Ted Kremenek · 16 years ago
  85. 4bd1eef Add pretty-printing support for FieldRegions. by Ted Kremenek · 16 years ago
  86. 281f55c Emit error unsupported when asm string conversion fails instead of assert. by Daniel Dunbar · 16 years ago
  87. bf4e419 Fixed an elusive caching bug in ExplodedGraph construction when a PostStmtKind was used instead of a PostStoreKind. by Ted Kremenek · 16 years ago
  88. 63ffb78 Test now passes. by Ted Kremenek · 16 years ago
  89. 993f1c7 - constify some uses of MemRegion* (MemRegion should be immutable). by Ted Kremenek · 16 years ago
  90. 0d504c1 Remove unneeded EncodingRecordTypes argument to getObjCEncodingForType. by Daniel Dunbar · 16 years ago
  91. 6d5e211 Fixed vec_set_v2di signature by Mon P Wang · 16 years ago
  92. b6b81d1 "Implement" GRExprEngine::VisitLValue for ObjCPropertyRefExpr. This is only a bandid; we need to properly handle properties by using locv/nonloc objects and specially handling property assignments in the transfer function for BinaryOperator. by Ted Kremenek · 16 years ago
  93. d96b35b More Obj-C type encoding improvements. by Daniel Dunbar · 16 years ago
  94. 66031a5 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 16 years ago
  95. e5fd2d9 Exercise #pragma pack(pop, <width>) in test case. by Daniel Dunbar · 16 years ago
  96. 82a6cfb Fix bug in Obj-C type encoding for structures. by Daniel Dunbar · 16 years ago
  97. 502a4a1 Anonymous structures print as '?=' in Obj-C type encoding. by Daniel Dunbar · 16 years ago
  98. 1c96b24 This patch did the following renaming. There should be no functional changes. by Zhongxing Xu · 16 years ago
  99. ef8b28e Add test case for array and struct variable lvalue evaluation. by Zhongxing Xu · 16 years ago
  100. 5669e57 NeXT: Use objc_msgSend_fpret for calling functions which return by Daniel Dunbar · 16 years ago