1. 179064e Unlike NSWindow objects, NSPanel objects initially do not have self-ownership. by Ted Kremenek · 16 years ago
  2. 7bfa291 Update some comments. by Argyrios Kyrtzidis · 16 years ago
  3. 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  4. 80d753f Temporarily treat "Autorelease" as "StopTracking". This is the original behavior. by Ted Kremenek · 16 years ago
  5. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  6. e19f449 Added "Autorelease" ArgEffect to better simulate "autorelease" messages. Right by Ted Kremenek · 16 years ago
  7. 413d355 Fix a bug reported by Kelly Wilson, where we incorrectly by Chris Lattner · 16 years ago
  8. 368328c refactor some code out into a new method. by Chris Lattner · 16 years ago
  9. c9b346d make type attribute processing static instead of methods on Sema. by Chris Lattner · 16 years ago
  10. 803d080 make the rest of the decl attribute processing methods be by Chris Lattner · 16 years ago
  11. 0b2f4da make most of Sema public. Sema is a class private to the Sema library by Chris Lattner · 16 years ago
  12. 0744e5f move a few methods, no other change. by Chris Lattner · 16 years ago
  13. 0bf29ad handle type attributes when converting types, not when processing decls. by Chris Lattner · 16 years ago
  14. e5c5ee1 Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 16 years ago
  15. 3ff30c8 move some code from all callers of ProcessDeclAttributes into by Chris Lattner · 16 years ago
  16. f2e4bd5 more attribute refactoring/renaming, no functionality change. by Chris Lattner · 16 years ago
  17. 49e2d34 more minor tidiness. by Chris Lattner · 16 years ago
  18. 065c5a8 more cleanups, refactor HandleVectorTypeAttribute by Chris Lattner · 16 years ago
  19. 545dd34 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  20. 3a9fdb4 Handle unnamed bitfields when parsing C++ classes. by Argyrios Kyrtzidis · 16 years ago
  21. ad74a75 Fix for PR2501; this patch makes usual arithmetic conversions for by Eli Friedman · 16 years ago
  22. 53d0ea5 Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() and getCurMethodDecl() that return the appropriate Decl through CurContext. by Argyrios Kyrtzidis · 16 years ago
  23. 3cc5e5b Fix a bug where we didn't promote 'const float' (or typedefs) to by Chris Lattner · 16 years ago
  24. fbf1347 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  25. 58cbd06 Add missing include file (due to a file splitting in llvm). by Cedric Venet · 16 years ago
  26. 04bc876 Added a simple static analysis check to look for improper uses of CFCreateNumber. by Ted Kremenek · 16 years ago
  27. 6b6b537 move decl attribute processing to a new SemaDeclAttr.cpp. by Chris Lattner · 16 years ago
  28. d86522a clang uses the llvm backend, so define __llvm__ like llvm-gcc. by Chris Lattner · 16 years ago
  29. 985abd9 Make Declarator::getDeclSpec() return a const reference to avoid by Chris Lattner · 16 years ago
  30. d546fc5 add a comment about something that was surprising, at least to me. by Chris Lattner · 16 years ago
  31. fca0ddd fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  32. a421007 refactor more objc codegen interfaces to pass around selectors so by Chris Lattner · 16 years ago
  33. fba6763 indenting and other minor things. by Chris Lattner · 16 years ago
  34. d002cc6 refactor interface to GenerateClassStructure to avoid converting a by Chris Lattner · 16 years ago
  35. 5e7dcc6 remove the old getSelector implementation, which removes some by Chris Lattner · 16 years ago
  36. 9384c76 avoid a lot of unneeded selector processing work by passing around by Chris Lattner · 16 years ago
  37. 42ba3e7 use cheaper/simpler getselector call for @selector exprs. by Chris Lattner · 16 years ago
  38. 8e67b63 start avoid doing lots of unneeded work handling selectors by Chris Lattner · 16 years ago
  39. 3aba07c improve indentation, avoid thrashing on maps and recalculating strings as much. by Chris Lattner · 16 years ago
  40. dce1406 give CreateObjCRuntime a full CGM so it can get whatever state it needs, by Chris Lattner · 16 years ago
  41. 630404b Fix 80 col violations, assert on assumptions. by Chris Lattner · 16 years ago
  42. 550b8db a temporary minimal hack to get clang building after the getStringValue changes in llvm mainline. by Chris Lattner · 16 years ago
  43. 553cf18 CF ref checker: by Ted Kremenek · 16 years ago
  44. 72fd336 The assert at Sema::ObjCActOnStartOfMethodDef should check CurMethodDecl instead of CurFunctionDecl. by Argyrios Kyrtzidis · 16 years ago
  45. 09b6bf5 Updated atomic intrinsic name from llvm r52706. Fixed dropped bit in shufps. by Mon P Wang · 16 years ago
  46. 32a5ba0 'Educate' IdentifierResolver about the declaration context of CXXFieldDecls. by Argyrios Kyrtzidis · 16 years ago
  47. e2fc9cf The only caller of this knows that the current token is l_brace, so this can be an assert; suggestion by Chris. by Argyrios Kyrtzidis · 16 years ago
  48. 4cc18a4 Add parsing support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  49. 8fdf328 "Support for Objective-C message sends which return structures. Also includes a small fix for constant string handling that should have been in the last patch (sorry!) and a hook for generating selectors (rest of this implementation to follow in the next patch)." by Chris Lattner · 16 years ago
  50. 4e0b264 "This is a small fix for a bug where static object instances were being incorrectly generated. The bug was caused by my inability to read the GNU libobjc source and is only apparent when JITing code (static compilation does not expose the bug due to the data layout of other globals)." by Chris Lattner · 16 years ago
  51. be78424 Update serialization for ObjCMessageExpr to handle additional bit-swizziling of receiver information. by Ted Kremenek · 16 years ago
  52. 4df728e ObjCMessageExpr objects that represent messages to class methods now can contain the ObjCInterfaceDecl* of the target class if it was available when the ObjCMessageExpr object was constructed. The original interfaces of the class has been preserved (requiring no functionality changes from clients), but now a "getClasSInfo" method returns both the ObjCInterfaceDecl* and IdentifierInfo* of the target class. by Ted Kremenek · 16 years ago
  53. ab59227 Remove unneeded method arguments. by Ted Kremenek · 16 years ago
  54. 53301ba Cache ObjC summaries by IdentifierInfo*, not by ObjCInterfaceDecl. by Ted Kremenek · 16 years ago
  55. 4f22a78 Added ObjCSummaryCache, a new summary cache object to cache summaries for Objective-C methods. Instead of mapping from Selectors -> Summaries, we will now map from (ObjCInterfaceDecl*,Selectors) -> Summaries. This will allow more nuanced summary generation. This patch just swaps in the new data structure; the rest of the code works as before by allowing the ObjCInterfaceDecl* to be null. by Ted Kremenek · 16 years ago
  56. 1f180c3 Rename summary methods for "instance methods" to "class methods" (the names got screwed up). No functionality change. by Ted Kremenek · 16 years ago
  57. a734470 The CF retain/release checker now assumes that allocations do not fail. Eventually we will add a flag to the driver to enable allocation failures (documented as a FIXME). by Ted Kremenek · 16 years ago
  58. 27933c1 add a fixme back by Chris Lattner · 16 years ago
  59. 13fd7e5 "this patch adds code generation hooks for Objective-C constant strings. It also modifies Sema so that Objective-C constant strings are treated as untyped objects if the interface for the constant string class can not be found. This is consistent with Apple GCC. I thought it was consistent with GNU GCC, since this was causing failures when trying to compile GNUstep with (GNU) GCC, but it appears that this is not the case when attempting to produce a simple test case to demonstrate it. Possibly there is a way of making the error go away, but I haven't found out what it is yet." by Chris Lattner · 16 years ago
  60. 18ae3cf Don't add isa with @defs only to work around it in the code generator, patch by Chris Lattner · 16 years ago
  61. 6ee1f9c "This moves built-in Objective-C types up the scope chains to where they can be replaced by versions included from the runtime library's headers." by Chris Lattner · 16 years ago
  62. 5a6ddbf add parser and sema support for the funny ObjC '@defs' thing. by Chris Lattner · 16 years ago
  63. 63e9d56 remove dead enums. by Chris Lattner · 16 years ago
  64. 0d17f6f Switch 'super' from being a weird cast thing to being a predefined expr node. by Chris Lattner · 16 years ago
  65. cf28c72 K&R-style functions not allowed in C++. by Argyrios Kyrtzidis · 16 years ago
  66. bd527ef When using the dead-stores checker with the BugReporter class, properly capture the diagnostic associated with a specific warning and emit it. by Ted Kremenek · 16 years ago
  67. 1a654b6 Modified the dead stores checker to... by Ted Kremenek · 16 years ago
  68. f8e32cf Added ParentMap, a class to represent a lazily constructed mapping from child to parents. by Ted Kremenek · 16 years ago
  69. 9ea5884 Remove tabs. by Mike Stump · 16 years ago
  70. d420433 One more test checkin. by Mike Stump · 16 years ago
  71. a6f0177 Test commit to see if new account works. by Mike Stump · 16 years ago
  72. b8e26e6 Introduce initial transfer function support for __imag__ and __real__. We don't by Ted Kremenek · 16 years ago
  73. 331b0ac Added a new ProgramPoint: PostPurgeDeadSymbols. This new program point distinguishes between the cases when we just evaluated the transfer function of a Stmt* (PostStmt) or performed a load (PostLoad). This solves a caching bug observed in a recent bug report. by Ted Kremenek · 16 years ago
  74. c1da441 Fix non-termination bug reported by Thomas Clement! by Ted Kremenek · 16 years ago
  75. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  76. 1060aff Fix more strict-aliasing warnings. by Ted Kremenek · 16 years ago
  77. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 16 years ago
  78. 94cbb3e Silence uninitialized value warning in Release build. by Ted Kremenek · 16 years ago
  79. 9bcf44a Silence uninitialized value warning during Release build. by Ted Kremenek · 16 years ago
  80. 7ff22b2 Introduce preliminary support for NSString format-string checking. by Ted Kremenek · 16 years ago
  81. 9e800e3 force size of alloca to i32, which is currently required by LLVM IR. by Chris Lattner · 16 years ago
  82. 1e692ac Basic support for volatile loads and stores. Stores the volatile by Eli Friedman · 16 years ago
  83. 68617fd Fix "copy & paste" error. by Argyrios Kyrtzidis · 16 years ago
  84. 54ecfce Don't crash if we can't find FileEntry info for a typedef, since one by Eli Friedman · 16 years ago
  85. 7643536 -Add DeclChain member to DeclContext. by Argyrios Kyrtzidis · 16 years ago
  86. a7a6dc0 Make CodeGenFunction::EmitDecl() recognise CXXClass/CXXStruct/CXXUnion. by Argyrios Kyrtzidis · 16 years ago
  87. 4515ff4 Dump the name of CXXStruct/CXXUnion/CXXClass Decl subclasses. by Argyrios Kyrtzidis · 16 years ago
  88. 39ba4ae -Changes to TagDecl: by Argyrios Kyrtzidis · 16 years ago
  89. d3bb44f Added new C++ AST Decl subclasses. by Argyrios Kyrtzidis · 16 years ago
  90. 507de85 Generate debug descriptors for array types while generating the debug info. by Sanjiv Gupta · 16 years ago
  91. 4caf055 Add code to make test/CodeGen/struct-init.c work correctly without the by Eli Friedman · 16 years ago
  92. c92e5e4 For struct initialization, check compatibility with the unqualified by Eli Friedman · 16 years ago
  93. d4cbda6 implement the alias attirbute (in both Sema and Codegen) by Nuno Lopes · 16 years ago
  94. 3cd1a2d fix compiler warnings by Nuno Lopes · 16 years ago
  95. 2659052 Don't crash emitting an initializer for a static local with union type. by Eli Friedman · 16 years ago
  96. c250aae capture whether a CharacterLiteral was wide or not in the AST. by Chris Lattner · 16 years ago
  97. da8249e Fix ast dumping to work with long double literals, e.g. we dump: by Chris Lattner · 16 years ago
  98. c53296e Fix crash with conversion to an address-space-qualified pointer. Bug by Eli Friedman · 16 years ago
  99. 56d2937 Fix the line endings in the newly added DeclBase.cpp. by Eli Friedman · 16 years ago
  100. f58c27a Create debug type descriptors for aggregate/enum types. by Sanjiv Gupta · 16 years ago