1. 39146d6 simplify some other code for __extension__ processing. by Chris Lattner · 16 years ago
  2. c46d1a1 implement a couple fixme's by implementing __extension__ properly. by Chris Lattner · 16 years ago
  3. da3253d fix a crash on unnamed properties like: @property (readonly) int : 4; by Chris Lattner · 16 years ago
  4. a1fed7e simplify some code by using ExpectAndConsume. When an error by Chris Lattner · 16 years ago
  5. bc662af refactor a bunch of code: by Chris Lattner · 16 years ago
  6. a2449b2 fix some minor error recovery bugs in ParseObjCInterfaceDeclList by Chris Lattner · 16 years ago
  7. e82a10f restructure the body of the ParseObjCInterfaceDeclList loop by Chris Lattner · 16 years ago
  8. 639e2d3 Fix rdar://6257721 by tightening up the block "snapshot" check, and by Chris Lattner · 16 years ago
  9. aab740a Support attributes in *yet another* place. Is there any place you by Chris Lattner · 16 years ago
  10. 7399ee0 Fix a parser bug where we let attributes interfere with our disambiguation by Chris Lattner · 16 years ago
  11. 097e916 fix indentation by Chris Lattner · 16 years ago
  12. 31c2868 fix indentation by Chris Lattner · 16 years ago
  13. 7c186be Remove an implemented fixme, only treat < as a type specifier by Chris Lattner · 16 years ago
  14. 509447e Change a couple of cast<> to reinterpret_cast<>. by Argyrios Kyrtzidis · 16 years ago
  15. 89c4fcf Add "argument key" processing similar to ccc. by Ted Kremenek · 16 years ago
  16. fa538e7 ccc: Pass '-g' through to clang. Handle -weak_framework. by Daniel Dunbar · 16 years ago
  17. d3f2c10 Improve attribute parsing & tests. by Daniel Dunbar · 16 years ago
  18. 6dfe2f5 Add support in GRExprEngine for UnaryOperator::AlignOf. This fixes one crash report in PR 2796. by Ted Kremenek · 16 years ago
  19. 42e43a9 Updated checker build by Ted Kremenek · 16 years ago
  20. 990601b Fix incorrect release of Decl* array referenced by DeclGroup. by Ted Kremenek · 16 years ago
  21. 2284ac9 Debug info bug fix, function start wasn't getting generated correctly by Daniel Dunbar · 16 years ago
  22. a85e715 Updated checker build. by Ted Kremenek · 16 years ago
  23. f8cd1b2 Generalize VisitLValue: not only can CallExprs and ObjCMessageExprs return aggregate temporaries, so can many other expressions. by Ted Kremenek · 16 years ago
  24. 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
  25. 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
  26. 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
  27. 7ae48ee Make llvm memory barrier available as an intrinsic by Mon P Wang · 16 years ago
  28. e5582f0 Added vec_set intrinsics by Mon P Wang · 16 years ago
  29. e75d849 Just do a diagIfAmbiguous -> warnIfAmbiguous rename. No functionality change. by Argyrios Kyrtzidis · 16 years ago
  30. 961b03c Emit more descriptive unsupported error message on dot-syntax use of super. by Daniel Dunbar · 16 years ago
  31. 63c3a5f Add some uses of PredefinedExpr to language coverage includes. by Daniel Dunbar · 16 years ago
  32. f951719 Add FIXME about potential problem in how property ref lvalues are handled. by Daniel Dunbar · 16 years ago
  33. dacd67a This test now passes again. by Ted Kremenek · 16 years ago
  34. 134e749 Hack: have BasicStore::getLValueElement return the "Base" lvalue. This restores null dereference checking with array accesses. by Ted Kremenek · 16 years ago
  35. 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
  36. 662b71e Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. by Daniel Dunbar · 16 years ago
  37. 5fabf9d Add option argument to GetAddrOfConstantString to use for name of by Daniel Dunbar · 16 years ago
  38. a1f23cc fix rdar://6288301: custom warnings don't respect -Werror. by Chris Lattner · 16 years ago
  39. 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
  40. 4bd1eef Add pretty-printing support for FieldRegions. by Ted Kremenek · 16 years ago
  41. 281f55c Emit error unsupported when asm string conversion fails instead of assert. by Daniel Dunbar · 16 years ago
  42. bf4e419 Fixed an elusive caching bug in ExplodedGraph construction when a PostStmtKind was used instead of a PostStoreKind. by Ted Kremenek · 16 years ago
  43. 63ffb78 Test now passes. by Ted Kremenek · 16 years ago
  44. 993f1c7 - constify some uses of MemRegion* (MemRegion should be immutable). by Ted Kremenek · 16 years ago
  45. 0d504c1 Remove unneeded EncodingRecordTypes argument to getObjCEncodingForType. by Daniel Dunbar · 16 years ago
  46. 6d5e211 Fixed vec_set_v2di signature by Mon P Wang · 16 years ago
  47. 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
  48. d96b35b More Obj-C type encoding improvements. by Daniel Dunbar · 16 years ago
  49. 66031a5 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 16 years ago
  50. e5fd2d9 Exercise #pragma pack(pop, <width>) in test case. by Daniel Dunbar · 16 years ago
  51. 82a6cfb Fix bug in Obj-C type encoding for structures. by Daniel Dunbar · 16 years ago
  52. 502a4a1 Anonymous structures print as '?=' in Obj-C type encoding. by Daniel Dunbar · 16 years ago
  53. 1c96b24 This patch did the following renaming. There should be no functional changes. by Zhongxing Xu · 16 years ago
  54. ef8b28e Add test case for array and struct variable lvalue evaluation. by Zhongxing Xu · 16 years ago
  55. 5669e57 NeXT: Use objc_msgSend_fpret for calling functions which return by Daniel Dunbar · 16 years ago
  56. a758173 Get array's lvalue through standard interface. by Zhongxing Xu · 16 years ago
  57. ab9f1a2 Return the corresponding MemRegionVal for both rvalue and lvalue of array of by Zhongxing Xu · 16 years ago
  58. cb3a795 Array and struct variables do have lvalue. For example, by Zhongxing Xu · 16 years ago
  59. 5273f51 Quick patch for PR2784, assert genereting debug info for opaque by Daniel Dunbar · 16 years ago
  60. cd162cc Remove an untrue assertion: lval::FuncVals can be returned in both rvalue and lvalue contexts. by Ted Kremenek · 16 years ago
  61. 3397e46 Mark these tests XFAIL. We need to add back assumption logic when doing array and field accesses. by Ted Kremenek · 16 years ago
  62. d9bc33e Remove lval::FieldOffset, lval::ArrayOffset. These will be replaced with regions. by Ted Kremenek · 16 years ago
  63. 97ed4f6 Add transfer function support for ObjCIvarRefExpr. by Ted Kremenek · 16 years ago
  64. c6f7345 In C++, an empty parameter list indicates a function that takes no parameters. by Argyrios Kyrtzidis · 16 years ago
  65. fd0269d Add basic FreeBSD target support, patch by Roman Divacky! by Chris Lattner · 16 years ago
  66. d3db401 Add --disable-free flag to clang. by Daniel Dunbar · 16 years ago
  67. 1e6759e Using dyn_cast_or_null here is redundant, use dyn_cast instead. by Argyrios Kyrtzidis · 16 years ago
  68. 4fa4ab6 Fix <rdar://problem/6239726> Parser rejects: type of property 'list' does not match type of ivar by Steve Naroff · 16 years ago
  69. a179be3 Speed up NumericLiteralParser::GetIntegerValue. by Daniel Dunbar · 16 years ago
  70. d70cb64 Simplify overflow-on-add check in NumericLiteralParser::GetIntegerValue. by Daniel Dunbar · 16 years ago
  71. 6d69b5d This is the first step to build a better evaluation model for GRExprEngine. A by Zhongxing Xu · 16 years ago
  72. 5db4b3f Teach tryEvaluate that fabs, copysign, and unary +/- are constants for by Daniel Dunbar · 16 years ago
  73. 3b0db90 Implement #pragma pack use in structure packing. The general approach by Daniel Dunbar · 16 years ago
  74. dc914c8 ccc: support -Xlinker by Daniel Dunbar · 16 years ago
  75. 259b0d9 Issue a warning when there's an ambiguous function declarator (that could be a direct initializer for a variable defition). by Argyrios Kyrtzidis · 16 years ago
  76. cb52925 ccc: support -fsyntax-only, add some more darwin options, support by Daniel Dunbar · 16 years ago
  77. d6caa9e Fix this bug: by Argyrios Kyrtzidis · 16 years ago
  78. 5955bfa Add TokenRewriter to VC++ project. by Steve Naroff · 16 years ago
  79. 65adb99 Add RewriteTest.cpp to VC++ project. by Steve Naroff · 16 years ago
  80. ca74360 Tighten up blocks rewriter to handle casts and some other interesting cases. by Steve Naroff · 16 years ago
  81. 20c77e9 Use BatchEmitOwnedPtrs for writing multiple child exprs, per review. by Daniel Dunbar · 16 years ago
  82. bc4f403 Added pinsrd, pinsrq, and some other vector intrinsics by Mon P Wang · 16 years ago
  83. 380277e Enhance dead store checker to not flag preincrements to dead variables where the preincrement is a subexpression, e.g. foo(++x); This can cause false negatives, but will remove a whole class of false positives. by Ted Kremenek · 16 years ago
  84. 35bc082 Simplify handling of struct/union/class tags. by Argyrios Kyrtzidis · 16 years ago
  85. 00231ee Test commit. by Daniel Dunbar · 16 years ago
  86. 3957907 Downgrade incompatibilities with objc qualified types (e.g. id <P>) to warnings. by Steve Naroff · 16 years ago
  87. d7e6221 Fix const qualifiers on ProtocolQualifierListTy. by Daniel Dunbar · 16 years ago
  88. 154d8e2 Revert my previous change, got stupidly confused with my local changes. by Argyrios Kyrtzidis · 16 years ago
  89. be6e310 Fix a call to Sema::LookupDecl that had incorrect parameters. by Argyrios Kyrtzidis · 16 years ago
  90. d17c24f Add serialization support in several missing places. by Daniel Dunbar · 16 years ago
  91. 708ef45 Move Type::EmitImpl into header, add FIXME to make abstract. by Daniel Dunbar · 16 years ago
  92. b8b10e3 Fix typo in testcase. by Daniel Dunbar · 16 years ago
  93. 94dcecb add a testcase. by Chris Lattner · 16 years ago
  94. 7cbed03 Fix test suite regression, getFloatTypeSemantics shouldn't be called by Daniel Dunbar · 16 years ago
  95. 4cde927 Add Sema implementation of #pragma pack stack. by Daniel Dunbar · 16 years ago
  96. e15fa27 Use 'realpath' to resolve the absolute path to clang and ccc-analyzer. by Ted Kremenek · 16 years ago
  97. 6b1da0e Lift out ABIInfo abstract base class. by Daniel Dunbar · 16 years ago
  98. e2ed203 More const-ness goodness. by Argyrios Kyrtzidis · 16 years ago
  99. d2595ec Improve the const-ness of a few methods. No functionality change. by Argyrios Kyrtzidis · 16 years ago
  100. 42220c5 Implement more efficient Decl <-> DeclContext conversions. by Argyrios Kyrtzidis · 16 years ago