1. c983b86 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 16 years ago
  2. fbc3338 Update comment. by Chris Lattner · 16 years ago
  3. 2e84257 For now, return UnknownVal() in RegionStore::getElementsSize() for AnonTypedRegions. It wasn't really doing the right thing and was crashing on rdar-6442306-1.m. This fix causes all path-sensitive test cases to pass with RegionStore. by Ted Kremenek · 16 years ago
  4. 6f78c3b remove my gross #ifdef's, using portable abstractions now that the 32-bit by Chris Lattner · 16 years ago
  5. 6fd8f91 Add RegionStore support for the implicit object region that 'self' references. This causes tests 'ObjCProperties.m' and 'refcnt_naming.m' to now pass with RegionStore. by Ted Kremenek · 16 years ago
  6. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  7. 30bc571 Use NonFragileABI as name of new Next abi. More comments for the new meta-data. by Fariborz Jahanian · 16 years ago
  8. a7ac944 Fix RegionStore::getLValueElement() to handle the case when the base region is not an ElementRegion (also do some cleanups of its core logic). by Ted Kremenek · 16 years ago
  9. 5ff4317 remove Read8/Read24, which are dead. Rename Read16/Read32 to be more by Chris Lattner · 16 years ago
  10. 53ebff3 inline Sema::getLangOptions, rdar://6515190. This speeds up by Chris Lattner · 16 years ago
  11. dcb6a26 SymbolReaper::isLive(SymbolRef) now always returns true for SymbolRegionRvalues because these represent the symbolic values for parameters/globals upon entry to the function. These values are always ;live' because they represent constraints on the context of how the function was called. This will be useful for both summary generation but is also necessary to get RegionStore's lazy-binding of locations to symbols to work in practice with RemoveDeadBindings. by Ted Kremenek · 16 years ago
  12. 9ab6b9c Static analyzer: Remove a bunch of outdated SymbolData objects and by Ted Kremenek · 16 years ago
  13. 07c487e Add a switch that allows disabling the smart pointers. by Sebastian Redl · 16 years ago
  14. 21282df EXTWARNify the warning about unnamed typedefs of enums by Douglas Gregor · 16 years ago
  15. 3733831 Avoid creating .dir files in the installation area. by Mike Stump · 16 years ago
  16. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  17. db28686 More refactoring of common API to the common class for by Fariborz Jahanian · 16 years ago
  18. 831570c Allow creation of "dummy" compile units for debug information. by Daniel Dunbar · 16 years ago
  19. 56210f7 Moved whole bunch of common APIs to the common class. by Fariborz Jahanian · 16 years ago
  20. c979e80 Combine two branches into one. No functionality change. by Ted Kremenek · 16 years ago
  21. b248d53 Fix <rdar://problem/6512717> by correctly reading the right offset in the token data in PTHLexer::getSourceLocation(). by Ted Kremenek · 16 years ago
  22. 872b9ac Fix Sema::Owned(ExprResult) to not use a ternary operator. Necessary to work around a Visual Studio compiler bug. by Steve Naroff · 16 years ago
  23. 241677a Static Analyzer: Replace LiveSymbols/DeadSymbols sets with a new object called "SymbolReaper". Right now it just consolidates the two and cleans up some client code, but shortly it will be used to enable "lazy computation" of live symbols for use with RegionStore. by Ted Kremenek · 16 years ago
  24. ee0af74 Refactoring ObjC Next's runtime classes in preparation for the new ObjC's abi. by Fariborz Jahanian · 16 years ago
  25. 80d0c89 Inline ParseOptionalTypeSpecifier into ParseDeclarationSpecifiers. by Chris Lattner · 16 years ago
  26. 60ae0f1 revert the gnu objc patches, they regress codegen-gnu.m by Chris Lattner · 16 years ago
  27. 3f33e0a switch from getTypeAtIndex to getElementType. It is non-virtual by Chris Lattner · 16 years ago
  28. 837acd0 ParseOptionalTypeSpecifier should consume a token if it returns true. by Chris Lattner · 16 years ago
  29. 2fe9e9a Fix objc type conversion issues with the GNU runtime, patch by David Chisnall by Chris Lattner · 16 years ago
  30. d0a6969 merge two checks for identifiers in the pth loop into one. by Chris Lattner · 16 years ago
  31. d1186fa a trivial micro optimization to save a load. by Chris Lattner · 16 years ago
  32. 6a170eb Add a bit to IdentifierInfo that acts as a simple predicate which by Chris Lattner · 16 years ago
  33. 5363765 silence a couple unused variable 'result' warnings. by Chris Lattner · 16 years ago
  34. cdd8f21 Don't crash on empty PTH files. This fixes <rdar://problem/6512714>. by Ted Kremenek · 16 years ago
  35. 6353beb really we only need on Read24! by Chris Lattner · 16 years ago
  36. aff6ef8 revert my previous patch, it assumed endianness. by Chris Lattner · 16 years ago
  37. 2f6572b minor cleanups: now that tokens are 4-byte aligned in a PTH by Chris Lattner · 16 years ago
  38. 0964a06 Get RegionStore to work with the retain/release checker and its test cases. by Ted Kremenek · 16 years ago
  39. e6ea279 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 16 years ago
  40. cf79b01 Don't look up decls with no name (such as parameters and unnamed tagged types), by Chris Lattner · 16 years ago
  41. bbd1fa2 Fix more bugs I discovered by Anders Carlsson · 16 years ago
  42. ddf32da Static Analyzer: When generating plists for errors reports, generate one plist file per translation unit that contains all of the diagnostics. by Ted Kremenek · 16 years ago
  43. 10a4231 Commented objective-c's metadata types. Minor clean up. by Fariborz Jahanian · 16 years ago
  44. 6ece14c Convert expressions over to Sebastian's spiffy ASTContext::new() operator. by Steve Naroff · 16 years ago
  45. ea9c26b Fix: <rdar://problem/6510344> [pth] PTH slows down regular lexer considerably (when it has substantial work) by Ted Kremenek · 16 years ago
  46. e91b3bc Provide a placement new taking an ASTContext argument. by Sebastian Redl · 16 years ago
  47. 62005c1 Fix some errors I noticed by Anders Carlsson · 16 years ago
  48. 1833a83 Fix a crash Anders' was seeing due to free'ing an invalid pointer by Chris Lattner · 16 years ago
  49. 9e0b600 Convert more exprs to use ASTContext's Allocator. by Steve Naroff · 16 years ago
  50. b17e3b0 Use the ASTContext's allocator for FunctionTypeNoProto and TypeOfExpr by Douglas Gregor · 16 years ago
  51. d9fca6e Improvements to Sema of asm statements. Fixes <rdar://problem/6156893> by Anders Carlsson · 16 years ago
  52. 83bccb8 Detailed documentation for encoding of properties and a test case. by Fariborz Jahanian · 16 years ago
  53. 0a47393 Allocate expresssions through ASTContext (still more work to do). by Steve Naroff · 16 years ago
  54. 090b3f7 Improving on encoding of objective-c's property types. More to come. by Fariborz Jahanian · 16 years ago
  55. 5af2f35 Optimize Declarator to avoid malloc/free traffic for the argument list of a by Chris Lattner · 16 years ago
  56. 4fd0aa5 Slight cleanup, and fix for va_arg on architectures where va_list is a struct. by Eli Friedman · 16 years ago
  57. c96c051 Do codegen correctly for va_start/end/copy on architectures where by Eli Friedman · 16 years ago
  58. 40f4e69 Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and document both it and DeclContext::addDecl properly by Douglas Gregor · 16 years ago
  59. 6597f98 Fix for PR3350: add special-casing for "references" to va_lists in builtins. by Eli Friedman · 16 years ago
  60. 00ad0ef Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow by Douglas Gregor · 16 years ago
  61. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  62. f4f6f21 Update for new SourceLocation API. by Daniel Dunbar · 16 years ago
  63. 7f5fce7 Dead stores checker: Fix <rdar://problem/6506065> by being more selective when say that a store is dead even though the computed value is used in the enclosing expression. by Ted Kremenek · 16 years ago
  64. 7b78b7c PTH: Emitted tokens now consist of 12 bytes that are loaded used 3 32-bit loads. This reduces user time but increases system time because of the slightly larger PTH file. Although there is no performance win on Cocoa.h and -Eonly, overall this seems like a good step. by Ted Kremenek · 16 years ago
  65. 506010b Make sure all types are allocated with 8-byte alignment. by Steve Naroff · 16 years ago
  66. b8a6aca Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
  67. 566c2ba Allocate Types using ASTContext's 'Allocator' object. by Ted Kremenek · 16 years ago
  68. acdc33b Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 16 years ago
  69. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  70. f034e9c Patch to allow @dynamic synthesis of property in a category, by Fariborz Jahanian · 16 years ago
  71. 8c61b53 do not use SourceManager::getFileCharacteristic(FileID), it is not by Chris Lattner · 16 years ago
  72. 693faa6 do not use SourceManager::getFileCharacteristic(FileID), it is not by Chris Lattner · 16 years ago
  73. a11d617 Rename SourceManager::getCanonicalFileID -> getFileID. There is by Chris Lattner · 16 years ago
  74. 9ee7d45 Run destructors of MacroInfo objects to free memory they allocate. This addresses <rdar://problem/6506035>. by Ted Kremenek · 16 years ago
  75. 2fa3ec8 remove the public SourceManager::getContentCacheForLoc method. by Chris Lattner · 16 years ago
  76. b21e5a0 remove the SourceManager:: and FullSourceLoc::getFileEntryForLoc methods. by Chris Lattner · 16 years ago
  77. 31530ba SourceManager::getBufferData(SourceLocation) is dead, delete it. by Chris Lattner · 16 years ago
  78. a90a4d4 some minor cleanups to SourceManager, and eliminate the by Chris Lattner · 16 years ago
  79. 9ebac5e Make some enums in SourceLocation private, remove a useless assertion from ScratchBuffer. by Chris Lattner · 16 years ago
  80. bcc2a67 Make SourceLocation::getFileLoc private to reduce the API exposure of by Chris Lattner · 16 years ago
  81. 0eb2330 Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
  82. 4d2d04e fix rdar://6505352 - Bogus warning with -WUndef, a case Anders noticed. by Chris Lattner · 16 years ago
  83. 460b0ac fix deallocation of FunctionDecl::ParamInfo by Nuno Lopes · 16 years ago
  84. cd965b9 Convert a few expression actions to smart pointers. by Sebastian Redl · 16 years ago
  85. f512e82 Rename move_convert to move_arg and move_res. The new names are less misleading (and shorter). by Sebastian Redl · 16 years ago
  86. 431e90e Convert ObjC statement actions to smart pointers. by Sebastian Redl · 16 years ago
  87. 3037ed0 Convert asm statement action to smart pointers. by Sebastian Redl · 16 years ago
  88. 4cffe2f Convert more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  89. e1ae1e9 Switch MinimalAction from new/delete'ing its TypeNameInfo to by Chris Lattner · 16 years ago
  90. 6fe7c8a Vector codegen improvements by Nate Begeman · 16 years ago
  91. 59b5da6 Support evaluation of vector constant expressions, and codegen of same. by Nate Begeman · 16 years ago
  92. 77ecb3a rearrange GetIdentifierInfo so that the fast path can be partially inlined into PTHLexer::Lex. This speeds up the user time of PTH -Eonly by another 2ms (4.4%) by Chris Lattner · 16 years ago
  93. 898a0bb rename some variables, only set a tokens identifierinfo if non-null. by Chris Lattner · 16 years ago
  94. f15674c On i386 and x86-64, just do unaligned loads by Chris Lattner · 16 years ago
  95. 775841f Handle the 'X' constraint. Fixes <rdar://problem/6504897>. by Anders Carlsson · 16 years ago
  96. 1b5285e switch PTHLexer to use Read32 and friends instead of lots of inlined by Chris Lattner · 16 years ago
  97. 300fb5d CG support for inline asm constraints with symbolic names. Fixes PR3345 by Anders Carlsson · 16 years ago
  98. 190d6a2 A couple more vector component access fixes. by Nate Begeman · 16 years ago
  99. da9d61c switch PTH lexer from using "const char*"s to "const unsigned char*"s by Chris Lattner · 16 years ago
  100. 42e1ee0 Add sema support for symbolic names in inline asm statements. by Anders Carlsson · 16 years ago