1. 900b052 When inspecting the build command, strip off the preceding path to the build command. by Ted Kremenek · 16 years ago
  2. e5a4bb0 Added "Autorelease" ArgEffect to better simulate "autorelease" messages. Right by Ted Kremenek · 16 years ago
  3. ed53910 Updated checker build to checker-48 by Ted Kremenek · 16 years ago
  4. fc765ff Bug fix: when copying prefix files using 'cp', don't split file names by spaces. by Ted Kremenek · 16 years ago
  5. 50df41e Fix a bug reported by Kelly Wilson, where we incorrectly by Chris Lattner · 16 years ago
  6. ca8dbca refactor some code out into a new method. by Chris Lattner · 16 years ago
  7. 65a5704 make type attribute processing static instead of methods on Sema. by Chris Lattner · 16 years ago
  8. 703c52d make the rest of the decl attribute processing methods be by Chris Lattner · 16 years ago
  9. f669015 make most of Sema public. Sema is a class private to the Sema library by Chris Lattner · 16 years ago
  10. a72440d move a few methods, no other change. by Chris Lattner · 16 years ago
  11. f9e90cc handle type attributes when converting types, not when processing decls. by Chris Lattner · 16 years ago
  12. 2024f0a Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 16 years ago
  13. 9b384ca move some code from all callers of ProcessDeclAttributes into by Chris Lattner · 16 years ago
  14. d7e83d8 more attribute refactoring/renaming, no functionality change. by Chris Lattner · 16 years ago
  15. b0011ca more minor tidiness. by Chris Lattner · 16 years ago
  16. 8ed14aa more cleanups, refactor HandleVectorTypeAttribute by Chris Lattner · 16 years ago
  17. 1c15113 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  18. f8009b4 Handle unnamed bitfields when parsing C++ classes. by Argiris Kirtzidis · 16 years ago
  19. 0832dbc Fix for PR2501; this patch makes usual arithmetic conversions for by Eli Friedman · 16 years ago
  20. 95256e6 Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() and getCurMethodDecl() that return the appropriate Decl through CurContext. by Argiris Kirtzidis · 16 years ago
  21. 2fecf07 Updated checker build to checker-47. by Ted Kremenek · 16 years ago
  22. 1121603 Fix a bug where we didn't promote 'const float' (or typedefs) to by Chris Lattner · 16 years ago
  23. dc78956 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  24. cd66209 Nuno points out that my numbers were out of date by Chris Lattner · 16 years ago
  25. 195ce18 making progress! by Chris Lattner · 16 years ago
  26. 0d3899e Add missing include file (due to a file splitting in llvm). by Cédric Venet · 16 years ago
  27. c129055 Added a simple static analysis check to look for improper uses of CFCreateNumber. by Ted Kremenek · 16 years ago
  28. 6953a07 move decl attribute processing to a new SemaDeclAttr.cpp. by Chris Lattner · 16 years ago
  29. 1cb2c6f Update Xcode project so that the clang target depends on LLVMAnalysis.a by Ted Kremenek · 16 years ago
  30. c74ae3b clang uses the llvm backend, so define __llvm__ like llvm-gcc. by Chris Lattner · 16 years ago
  31. 0009c94 Another class -> struct in declaration to match definition. by Cédric Venet · 16 years ago
  32. 25349e4 Make clang work on 32 bit powerpc linux. by Matthijs Kooijman · 16 years ago
  33. 9b9f38d Link in LLVMAnalysis after LLVMCodeGen, since the latter depends on the former by Matthijs Kooijman · 16 years ago
  34. 5e77ade Make Declarator::getDeclSpec() return a const reference to avoid by Chris Lattner · 16 years ago
  35. 4c4a0d0 add a comment about something that was surprising, at least to me. by Chris Lattner · 16 years ago
  36. 4eb54d1 rename some attr tests for consistency. by Chris Lattner · 16 years ago
  37. 99dbc96 fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  38. c1cdb62 another const correctness bug with declspec. by Chris Lattner · 16 years ago
  39. 02c126d fix const correctness of accessor. by Chris Lattner · 16 years ago
  40. 578279d refactor more objc codegen interfaces to pass around selectors so by Chris Lattner · 16 years ago
  41. bcb3e86 indenting and other minor things. by Chris Lattner · 16 years ago
  42. ad9c3f3 refactor interface to GenerateClassStructure to avoid converting a by Chris Lattner · 16 years ago
  43. a5b1888 remove the old getSelector implementation, which removes some by Chris Lattner · 16 years ago
  44. 8384c14 avoid a lot of unneeded selector processing work by passing around by Chris Lattner · 16 years ago
  45. 469cb3e use cheaper/simpler getselector call for @selector exprs. by Chris Lattner · 16 years ago
  46. d71288e start avoid doing lots of unneeded work handling selectors by Chris Lattner · 16 years ago
  47. 769c55f improve indentation, avoid thrashing on maps and recalculating strings as much. by Chris Lattner · 16 years ago
  48. 547907c give CreateObjCRuntime a full CGM so it can get whatever state it needs, by Chris Lattner · 16 years ago
  49. ef84304 Fix 80 col violations, assert on assumptions. by Chris Lattner · 16 years ago
  50. aa37768 fix this testcase after Mon Ping's intrinsic rename. by Chris Lattner · 16 years ago
  51. e758109 a temporary minimal hack to get clang building after the getStringValue changes in llvm mainline. by Chris Lattner · 16 years ago
  52. c74c3c7 Updated latest checker build to checker-45. by Ted Kremenek · 16 years ago
  53. 272aa85 CF ref checker: by Ted Kremenek · 16 years ago
  54. 9d46444 Add Profile method to QualType. by Ted Kremenek · 16 years ago
  55. 1963b30 Update VS project files. by Ted Kremenek · 16 years ago
  56. 81d8f9a Update Xcode project. by Ted Kremenek · 16 years ago
  57. 5fa8a8b The assert at Sema::ObjCActOnStartOfMethodDef should check CurMethodDecl instead of CurFunctionDecl. by Argiris Kirtzidis · 16 years ago
  58. 3c5b5a4 Set CXXClassVar to identifier namespace IDNS_Ordinary. by Argiris Kirtzidis · 16 years ago
  59. 444244e Updated atomic intrinsic name from llvm r52706. Fixed dropped bit in shufps. by Mon P Wang · 16 years ago
  60. 85c3f6d 'Educate' IdentifierResolver about the declaration context of CXXFieldDecls. by Argiris Kirtzidis · 16 years ago
  61. d626fac Set CXXMethod to identifier namespace IDNS_Ordinary. by Argiris Kirtzidis · 16 years ago
  62. 0fb15bf The only caller of this knows that the current token is l_brace, so this can be an assert; suggestion by Chris. by Argiris Kirtzidis · 16 years ago
  63. 9d78433 Add parsing support for C++ classes. by Argiris Kirtzidis · 16 years ago
  64. 6ee20e3 "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
  65. 60eaae8 "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
  66. 1f843bc Update serialization for ObjCMessageExpr to handle additional bit-swizziling of receiver information. by Ted Kremenek · 16 years ago
  67. ee2c9fd 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
  68. 3db4ab4 Move the namespace action declarations at the "C++ declarations" section. by Argiris Kirtzidis · 16 years ago
  69. 55ab984 Test commit: changed the forward declaration of FieldDeclarator from class to struct to be coherent with its definition (DeclSpec.h) by Cédric Venet · 16 years ago
  70. a224a30 Fix comments: "class method" should be "instance method" and vis versa by Ted Kremenek · 16 years ago
  71. d13c187 Remove unneeded method arguments. by Ted Kremenek · 16 years ago
  72. 9f0fc79 Cache ObjC summaries by IdentifierInfo*, not by ObjCInterfaceDecl. by Ted Kremenek · 16 years ago
  73. 0cb803a Patch by Anders Bergh: by Ted Kremenek · 16 years ago
  74. 84f010c 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
  75. 97c1e0c Rename summary methods for "instance methods" to "class methods" (the names got screwed up). No functionality change. by Ted Kremenek · 16 years ago
  76. ebaecbf Updated latest checker build to checker-44. by Ted Kremenek · 16 years ago
  77. 6a1cc25 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
  78. f9b3df7 Update VS project files. Patch by Cedric Venet! by Ted Kremenek · 16 years ago
  79. d63b501 add a new clang::APValue class at Eli's request. It is a discriminated by Chris Lattner · 16 years ago
  80. 1062d3a add a fixme back by Chris Lattner · 16 years ago
  81. bac1245 "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
  82. e134914 Implement printing for ObjCClassDecl's, patch by Jean-Daniel Dupas! by Chris Lattner · 16 years ago
  83. c97665e Don't add isa with @defs only to work around it in the code generator, patch by Chris Lattner · 16 years ago
  84. 4e9553a "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
  85. 1bf58f6 add parser and sema support for the funny ObjC '@defs' thing. by Chris Lattner · 16 years ago
  86. ffc58c8 remove dead enums. by Chris Lattner · 16 years ago
  87. 4423d37 Switch 'super' from being a weird cast thing to being a predefined expr node. by Chris Lattner · 16 years ago
  88. c3a2aa5 "This maps the -pthread option to -lpthread - this isn't 100% correct, by Chris Lattner · 16 years ago
  89. cf69f2c Include stdint.h instead of stdio.h. by Ted Kremenek · 16 years ago
  90. d1346a5 K&R-style functions not allowed in C++. by Argiris Kirtzidis · 16 years ago
  91. 72e983c Updated latest static analyzer builder to checker-43. by Ted Kremenek · 16 years ago
  92. 8bef3ee Test the dead-store checker using both -warn-dead-stores and -checker-simple. by Ted Kremenek · 16 years ago
  93. 64a2e12 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
  94. 271d5b7 Updated latest checker build. by Ted Kremenek · 16 years ago
  95. 2f83f79 Updated call to dead stores to use proper arguments. by Ted Kremenek · 16 years ago
  96. d0ae0aa Updated latest static analyzer build to checker-41. by Ted Kremenek · 16 years ago
  97. 7c46d31 Updated Xcode project. by Ted Kremenek · 16 years ago
  98. 72f52c0 Modified the dead stores checker to... by Ted Kremenek · 16 years ago
  99. 0cac82a Added ParentMap, a class to represent a lazily constructed mapping from child to parents. by Ted Kremenek · 16 years ago
  100. 8e5dfe9 Added "Decl::getCodyBody()", a virtual method that returns the root AST node (Stmt*) that the Decl wraps (if any). Currently this only returns a non-null value for FunctionDecl and ObjCMethodDecl. by Ted Kremenek · 16 years ago