1. 650cea9 Fix generated debug info for decls with no location (which include self/_cmd by Chris Lattner · 16 years ago
  2. de866f3 Turns out that Sebastian already implemented the logic to compute the by Douglas Gregor · 16 years ago
  3. 2a131fb Refactor global decls to hold either a regular Decl or a CXXConstructorDecl + ctor type or a CXXDestructorDecl + dtor type. by Anders Carlsson · 16 years ago
  4. b9c7cbb Update checker build. by Ted Kremenek · 16 years ago
  5. e351aa1 Implement attribute 'cf_returns_owned' (mirrors 'ns_returns_owned'). by Ted Kremenek · 16 years ago
  6. a81419d Remove an unneeded lookup routine. by Daniel Dunbar · 16 years ago
  7. d331dd7 Rename ownership attributes: by Ted Kremenek · 16 years ago
  8. 921b0b5 Fix unused variable warning by Ted Kremenek · 16 years ago
  9. 0ac5618 Remove possibly incorrect assertion that doesn't matter. by Ted Kremenek · 16 years ago
  10. 6a08469 Rename attribute 'ns_ownership_returns' to 'ns_returns_ownership'. by Ted Kremenek · 16 years ago
  11. d99b345 Remove experimental attribute 'ns_ownership_make_collectable.' by Ted Kremenek · 16 years ago
  12. bf63b87 Provide basic support for generation of objc2's by Fariborz Jahanian · 16 years ago
  13. 6e8575b Fix the field count in interface record layout (it was incorrectly by Daniel Dunbar · 16 years ago
  14. 31fa7d7 Adding more test to ivar-layout-64.m. by Fariborz Jahanian · 16 years ago
  15. b4c79e0 Compute interface instanceStart and instanceSize using the record by Daniel Dunbar · 16 years ago
  16. c2e57bf Add ASTRecordLayout::getFieldCount accessor, change NextOffset field to 64-bits. by Daniel Dunbar · 16 years ago
  17. f773737 Add ASTRecordLayout::getNextOffset accessor, and some doxygen comments. by Daniel Dunbar · 16 years ago
  18. bc6ea81 Initialize NextOffset correctly, otherwise tight layout fails for empty classes. by Daniel Dunbar · 16 years ago
  19. d4edddd ignore weak_import attribute on objc method decls. by Fariborz Jahanian · 16 years ago
  20. 75494ff Rename attributes 'objc_ownership...' to 'ns_ownership...'. by Ted Kremenek · 16 years ago
  21. 305d2d2 Increase scan-view max timeout to 1 minute. by Ted Kremenek · 16 years ago
  22. dcd808c "Fix" a problem with debug info in the presence of always_inline by Chris Lattner · 16 years ago
  23. 4c6f8d3 BugReporter (extensive diagnostics): don't mark location contexts that are by Ted Kremenek · 16 years ago
  24. 65d80fd Fix false positive null dereference by unifying code paths in GRSimpleVals for by Ted Kremenek · 16 years ago
  25. 31c215e Rename attributes: by Ted Kremenek · 16 years ago
  26. 1308f57 Update test case. by Ted Kremenek · 16 years ago
  27. 1c6a3cc Remove support for ObjCMethodDecl attributes that appear between the by Ted Kremenek · 16 years ago
  28. c6e2ab0 "The attached diff fixes the //FIXME in message send to super. This should now be faster, and works in the presence of class posing. This is now the same approach as used in GCC (the earlier code was a quick hack to get something working)." by Chris Lattner · 16 years ago
  29. ea4b4aa retain checker: Add checker support for FunctionDecl ownership annotations. Need to add Sema support. by Ted Kremenek · 16 years ago
  30. 05673d6 retain checker: Pull out logic for parameter annotations into a separate method. by Ted Kremenek · 16 years ago
  31. e401a0c retain checker: Don't treat function's declared in macros differently. by Ted Kremenek · 16 years ago
  32. 5efccb1 Patch from David Chisnall: by Daniel Dunbar · 16 years ago
  33. c2eeb72 Add array index assertion: BasicStore should not expect any fancy by Ted Kremenek · 16 years ago
  34. dcef78d Update test case... the location given for this error makes it look by Daniel Dunbar · 16 years ago
  35. cd9392f Rename 'makeZeroIndex' to 'makeZeroArrayIndex'. by Ted Kremenek · 16 years ago
  36. 124838b Zhongxing already implemented this FIXME. by Ted Kremenek · 16 years ago
  37. 0b9ad89 Rename no-outofbounds.c to xfail-no-outofbounds.c and split off that by Ted Kremenek · 16 years ago
  38. 8e5ebed Update checker build. by Ted Kremenek · 16 years ago
  39. b5b848e array indexes are unsigned integers of the same width as pointer. by Zhongxing Xu · 16 years ago
  40. 8d3d13e Test now passes. I'll hold off merging it with the BasicStore test until we know this is a stable change. by Ted Kremenek · 16 years ago
  41. 20bd746 BasicStore: 'ElementRegion' is the new 'TypedViewRegion'. by Ted Kremenek · 16 years ago
  42. b84e8a6 Remove unnecessary copy of constraint info. by Daniel Dunbar · 16 years ago
  43. 9aa829b This test no longer fails. by Ted Kremenek · 16 years ago
  44. 2fb3ea3 Simplify the interesting-region code by assimmilating blocks of non-whitespace text with each expansion step. It's easier and seems to have better results. by Douglas Gregor · 16 years ago
  45. fd6b4f3 Handle 'long x = 0; char *y = (char *) x;' by layering an by Ted Kremenek · 16 years ago
  46. cfe1f9d Tweak the extraction of the "interesting" part of a source range in two ways: by Douglas Gregor · 16 years ago
  47. f936f45 Per conversations with Zhongxing, add an 'element type' to by Ted Kremenek · 16 years ago
  48. 0c6db94 Implement support for comparing pointers with <, >, <=, >=, ==, and != by Douglas Gregor · 16 years ago
  49. 885c27b retain checker: by Ted Kremenek · 16 years ago
  50. d6884a0 Add -fobjc-tight-layout. by Daniel Dunbar · 16 years ago
  51. 7faca82 retain checker: RetainSummaryManager now has a 'DefaultSummary' object by Ted Kremenek · 16 years ago
  52. 3189e4b PR4143: don't crash generating debug info for incomplete enum types. by Eli Friedman · 16 years ago
  53. 22fe248 retain checker: Don't bother using a FoldingSet to unique summaries. by Ted Kremenek · 16 years ago
  54. 5c66760 Remove unnecessary push_back (at least, I think it's unnecessary); by Eli Friedman · 16 years ago
  55. 3715328 Don't allow clients to traverse into superclass synthesized properties by Daniel Dunbar · 16 years ago
  56. 609e5c3 Set COLUMNS=0 to disable wrapping instead of a random large number. by Daniel Dunbar · 16 years ago
  57. 5f86567 Test a few more bits of the driver. by Daniel Dunbar · 16 years ago
  58. b987631 Nightly test coverage reporting is back online. by Daniel Dunbar · 16 years ago
  59. e05cc98 Inline GetFieldBaseOffset into sole callsite. by Daniel Dunbar · 16 years ago
  60. 900c198 Avoid recomputing field offsets. by Daniel Dunbar · 16 years ago
  61. 31682fd Normalize formatting by Daniel Dunbar · 16 years ago
  62. f4287fd Make diagnostic printing more deterministic when running tests. by Daniel Dunbar · 16 years ago
  63. 613e12a svn:ignore Debug+Coverage dirs by Daniel Dunbar · 16 years ago
  64. 1ef29d2 Fix an infinite loop in diagnostic printing. by Daniel Dunbar · 16 years ago
  65. 6fdca0e Fix for PR3841: follow gcc's example and fall back to the system by Eli Friedman · 16 years ago
  66. 5320285 PR2524: downgrade taking address of expression of type 'void' to an by Eli Friedman · 16 years ago
  67. c0d600c Fix/re-enable test. by Eli Friedman · 16 years ago
  68. 9c2b347 Disable this test case, I'm tired of seeing red. :) by Daniel Dunbar · 16 years ago
  69. 5a5a803 Use the implementation decl for looking up offset while building the by Daniel Dunbar · 16 years ago
  70. a74869c Rename test case by Daniel Dunbar · 16 years ago
  71. 686a21b Fix the testcase for PR4132. by Eli Friedman · 16 years ago
  72. 9668255 Add RegionStore test that illustrates a bogus array-out-of-bounds error. by Ted Kremenek · 16 years ago
  73. 3b660ef PR4134: Implement __builtin_extract_return_addr. by Eli Friedman · 16 years ago
  74. d9b856f Fix for PR4132: make sure to insert whitespace consistently before a by Eli Friedman · 16 years ago
  75. 953e8ab Add failing test case. by Ted Kremenek · 16 years ago
  76. 43907e8 Fix comment to account for r70786. by Eli Friedman · 16 years ago
  77. 5e22213 PR4133: fix always_inline implementation to be consistent with gcc. by Eli Friedman · 16 years ago
  78. 31ccf37 Make codegen for constructors work again. by Anders Carlsson · 16 years ago
  79. ed4ec8f One can use "class" and "struct" interchangeably to refer to a class by Douglas Gregor · 16 years ago
  80. 578aa64 assert that mangleName is not called for C++ ctors/dtors. by Anders Carlsson · 16 years ago
  81. 2167de4 Fix crash in source-line truncation code for diagnostic by Douglas Gregor · 16 years ago
  82. ee1ec39 Remove ASTContext::addRecordToClass. by Daniel Dunbar · 16 years ago
  83. 7c9f6c5 It turns out BuildAggrIvarLayout wasn't even using the shadow struct, by Daniel Dunbar · 16 years ago
  84. 25d583e Lift common subexpression, remove dead "base" variable. by Daniel Dunbar · 16 years ago
  85. d58edcb Factor out BuildAggrIvarRecordLayout routine. by Daniel Dunbar · 16 years ago
  86. 5e563dd Lift out GetGCAttrTypeForType routine. by Daniel Dunbar · 16 years ago
  87. 8b2926c Add constructors for GC_IVAR and SKIP_SCAN, tighten up uses. by Daniel Dunbar · 16 years ago
  88. 73c64e5 Hook msp430 in by Anton Korobeynikov · 16 years ago
  89. a7c4717 Whitespace cleanup by Anton Korobeynikov · 16 years ago
  90. 487993b Normalize style, remove a dead assert. by Daniel Dunbar · 16 years ago
  91. 532d4da Use ASTRecordLayout for computing ivar offsets instead of shadow by Daniel Dunbar · 16 years ago
  92. 9f89f2b Add a ComputeIvarBaseOffset overload taking an implementation by Daniel Dunbar · 16 years ago
  93. d8fd6ff Fix a possible memory error, the record layout entry could be by Daniel Dunbar · 16 years ago
  94. 453addb Implement the interface/implementation layout distinction. by Daniel Dunbar · 16 years ago
  95. 2bebbf0 Compute Objective-C metadata size information from the record layout, by Daniel Dunbar · 16 years ago
  96. b2dbbb9 Split out getASTObjCImplementationLayout by Daniel Dunbar · 16 years ago
  97. 24cbfb9 Remove an unneeded special case. by Daniel Dunbar · 16 years ago
  98. e5393fb PR4063, with feeling: Chain PP callbacks by default. by Daniel Dunbar · 16 years ago
  99. 0a70c64 PR4063: Fix dependency generation with -E. by Daniel Dunbar · 16 years ago
  100. 0bdaa5b look at the right operand when increasing the size of an asm output, by Chris Lattner · 16 years ago