1. 4064de9 Add new checker-specific attribute 'objc_ownership_cfretain'. This is the same by Ted Kremenek · 16 years ago
  2. c7c11b1 rdar://6827200 - [sema] reject statically allocated arrays of interface types by Chris Lattner · 16 years ago
  3. d0359af Change our silencing of C typedef redefinition handling to what we had by Chris Lattner · 16 years ago
  4. f91f5c8 Add a bit more handling for declarations like "int a[*]". by Eli Friedman · 16 years ago
  5. e935696 Fix for PR4079: make sure to construct the member expressions for by Eli Friedman · 16 years ago
  6. d3a413d Implement function-try-blocks. However, there's a very subtle bug that I can't track down. by Sebastian Redl · 16 years ago
  7. 9a901bb Remove getIntegerConstantExprValue in favor of using EvaluateAsInt. by Eli Friedman · 16 years ago
  8. 49ac881 implement PR4077: [Linux kernel] inscrutable error on inline asm input/output constraint mismatch by Chris Lattner · 16 years ago
  9. d688761 in a tied operand, don't copy over the name or constraint string, just the flags. by Chris Lattner · 16 years ago
  10. 2819fa8 pull operands names "[foo]" into ConstraintInfo. by Chris Lattner · 16 years ago
  11. 432c869 pull the constraint string into the ConstraintInfo struct by Chris Lattner · 16 years ago
  12. a5cd2cd Make reference class unification in conditional expressions check for validity of the conversion. by Sebastian Redl · 16 years ago
  13. 44def07 change TargetInfo::ConstraintInfo to be a struct that contains by Chris Lattner · 16 years ago
  14. 16f0049 split ObjC and C++ Statements out into their own headers. by Chris Lattner · 16 years ago
  15. d5e3e8e Correct the order of the parameters to CheckAssignmentConstraints in by Eli Friedman · 16 years ago
  16. 7c32f8e Fix for PR4074: allow subscripting non-lvalue arrays in C90 mode. by Eli Friedman · 16 years ago
  17. 338395d minor diagnostics improvements. by Chris Lattner · 16 years ago
  18. 3b5ccca Make VerifyIntegerConstantExpr print extension warnings for non-ICEs. by Eli Friedman · 16 years ago
  19. 3bf6893 fix PR4073 by making designated initializer checking code use by Chris Lattner · 16 years ago
  20. 4a049f0 remove a fixme that is already done. by Chris Lattner · 16 years ago
  21. 740782a improve a diagnostic to make more sense. by Chris Lattner · 16 years ago
  22. 5e20448 accept an ignore the no_instrument_function attribute. Since we don't by Chris Lattner · 16 years ago
  23. 84bb944 with the fixes for better invalid decl/type propagation, this code by Chris Lattner · 16 years ago
  24. 5153ee6 Change SemaType's "GetTypeForDeclarator" and "ConvertDeclSpecToType" to by Chris Lattner · 16 years ago
  25. 6e47501 change a couple more c++ sema methods to be based on isinvalid bits. by Chris Lattner · 16 years ago
  26. 6540180 various "is invalid" cleanups for C++ ctors/dtors. by Chris Lattner · 16 years ago
  27. eaaebc7 This is a pretty big cleanup for how invalid decl/type are handle. by Chris Lattner · 16 years ago
  28. 2dbd285 fix PR4049, a crash on invalid, by making sema install the right number of by Chris Lattner · 16 years ago
  29. 1ad9b28 rename getNumParmVarDeclsFromType back to getNumParams(), by Chris Lattner · 16 years ago
  30. 7cbeef2 in: typedef void foo(void); by Chris Lattner · 16 years ago
  31. 584be45 set NewFD->setInvalidDecl() in one place, sharing code and ensuring that by Chris Lattner · 16 years ago
  32. de9a81b Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up by Ted Kremenek · 16 years ago
  33. b5f1562 reject explicit pointer arithmetic on interface pointers in 64-bit objc ABI by Chris Lattner · 16 years ago
  34. 0fc169e Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked by Ted Kremenek · 16 years ago
  35. 5cb10d3 fix the sizeof error recovery issue (sizeof-interface.m:attributeRuns) by Chris Lattner · 16 years ago
  36. 27a4566 Fix a pasto in the lookup of instance methods in the global pool by Douglas Gregor · 16 years ago
  37. f0aaf7a PCH support for the global method pool (= instance and factory method by Douglas Gregor · 16 years ago
  38. ced1e28 Avoid issuing spurious errors as side-effect of diagnosing by Fariborz Jahanian · 16 years ago
  39. 09c4abb Add an ASTContext parameter to CXXTemporaryObjectExpr. by Anders Carlsson · 16 years ago
  40. 26de549 Add a VarDecl parameter to the CXXTemporaryObjectExpr constructor. It's unused for now, so no functionality change yet. Also, create CXXTempVarDecls to pass to the CXXTemporaryObjectExpr ctor. by Anders Carlsson · 16 years ago
  41. 49d4401 Create a CXXConstructExpr instead of a CXXTemporaryObjectExpr in InitializeVarWithConstructor. by Anders Carlsson · 16 years ago
  42. 516ff43 Eliminate Sema::ObjCAliasDecls. This is based on Steve's fix, but also by Douglas Gregor · 16 years ago
  43. a4aa34d Fix Objective-C crashes by Douglas Gregor · 16 years ago
  44. 1efaa95 Fix rdar://6821047 - clang crashes on subscript of interface in 64-bit mode by Chris Lattner · 16 years ago
  45. 8b9fb30 Eliminate Sema::ObjCInterfaceDecls by Douglas Gregor · 16 years ago
  46. 8fc463a Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's good for uniformity is good for PCH (or is it the other way around?). by Douglas Gregor · 16 years ago
  47. 6e378de Eliminate Sema::ObjCProtocols. Instead, we place ObjCProtocolDecls in by Douglas Gregor · 16 years ago
  48. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 16 years ago
  49. 77a6be4 Diagnose if an implementation implements a forward class by Fariborz Jahanian · 16 years ago
  50. b3efa98 Fix handling of C99 "extern inline" semantics when dealing with by Douglas Gregor · 16 years ago
  51. 04c5f4f Remove @compatibility_alias regression. by Steve Naroff · 16 years ago
  52. 8f06f84 More PushOnScopeChain() FIXME's. by Steve Naroff · 16 years ago
  53. a7503a7 Sema::ActOnStartClassInterface(): Use PushOnScopeChains(). by Steve Naroff · 16 years ago
  54. 8f36aba The ivars in an ObjCImplementationDecl are now stored in the by Douglas Gregor · 16 years ago
  55. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 16 years ago
  56. 21e072b Eliminate Sema::KnownFunctionIDs, so that Sema doesn't end up pulling by Douglas Gregor · 16 years ago
  57. 068360e ObjCQualifiedClass is dead, remove it. by Chris Lattner · 16 years ago
  58. 3f84ad2 change implicit int warnings to point to the identifier, not the by Chris Lattner · 16 years ago
  59. d55a71d Fix some mishandling of the attr(gnu_inline) mode when used with by Chris Lattner · 16 years ago
  60. 25efa10 Tighten up blocks type checking. This was discussed back in the by Mike Stump · 16 years ago
  61. 5c59e2b Fix rdar://6814047, a crash on invalid in blocks code I noticed when by Chris Lattner · 16 years ago
  62. 17f3a6d fix marking of nested blocks with the "hasBlockDeclRefExprs" to by Chris Lattner · 16 years ago
  63. 668c1a4 Lazy deserialization of the declaration chains associated with by Douglas Gregor · 16 years ago
  64. 5b54b88 this is a warning now, return a well formed ast. by Chris Lattner · 16 years ago
  65. 24c8991 Make sure to mark the interface as completed when we see an by Daniel Dunbar · 16 years ago
  66. 0468fb9 Patch to diagnose use of objc's @defs in nonfragile abi. by Fariborz Jahanian · 16 years ago
  67. ca79092 reject sizeof(itf) when itf is a forward declared interface, or when by Chris Lattner · 16 years ago
  68. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 16 years ago
  69. a868a20 implement semantic analysis for @synchronized, fixing a crash on invalid by Chris Lattner · 16 years ago
  70. 46c3c4b add support for goto checking and @synchronized blocks, rdar://6810106 by Chris Lattner · 16 years ago
  71. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 16 years ago
  72. 33feeb0 Add pch reader/writer support for ObjCContainerDecl, ObjCInterfaceDecl, & ObjCIvarDecl. by Steve Naroff · 16 years ago
  73. cf2a721 the __gnuc_inline__ attribute is actually named __gnu_inline__, PR4023 by Chris Lattner · 16 years ago
  74. df9bcd5 clean up anonymous bitfield diagnostics, PR4017 by Chris Lattner · 16 years ago
  75. e778504 Introduce the notion of a SemaConsumer, which is an ASTConsumer that by Douglas Gregor · 16 years ago
  76. 53c9d8a Add pch reader/writer support for ObjCMethodDecl. by Steve Naroff · 16 years ago
  77. 23d58ce Some cleanup and bug-fixing for address-of checking. This causes a couple of by Eli Friedman · 16 years ago
  78. 78eb874 Conditional operator C++ checking complete. What issues remain are in more general code. by Sebastian Redl · 16 years ago
  79. 4fb71b0 Print an error for uses of __thread on targets which don't support it. by Eli Friedman · 16 years ago
  80. 9bebfad Bring member pointer operands of the conditional operator to a common type. We're getting there ... by Sebastian Redl · 16 years ago
  81. 63054b3 Add more thorough/correct checking for invalid __thread specifiers. by Eli Friedman · 16 years ago
  82. d1bd7fc Another piece of the conditional operator puzzle. We'll want to use FindCompositePointerType in some other places, too. by Sebastian Redl · 16 years ago
  83. 498603d rearrange #include order. by Chris Lattner · 16 years ago
  84. 17a7830 run the jump checker on blocks, even though they don't have gotos, by Chris Lattner · 16 years ago
  85. 38c5ebd add a new Sema::CurFunctionNeedsScopeChecking bool that is used to avoid by Chris Lattner · 16 years ago
  86. 5af280c move jump scope checking and related code out into its own file, SemaDecl.cpp is by Chris Lattner · 16 years ago
  87. e52a693 rewrite an O(N^2) algorithm to be O(n). by Chris Lattner · 16 years ago
  88. b5cf1ea second half of indirect jump checking: make sure that any by Chris Lattner · 16 years ago
  89. 04ea2b6 First half of jump scope checking for indirect goto. by Chris Lattner · 16 years ago
  90. ad56d68 Add location info for indirect goto. by Chris Lattner · 16 years ago
  91. 2b7b2ca reimplement DeclStmt handling so that we correctly handle intermixed by Chris Lattner · 16 years ago
  92. 5223af8 the scope checker does work with objc methods, add testcase. by Chris Lattner · 16 years ago
  93. dabbad0 I didn't understand how @catches were chained. Now that I get it, fix by Chris Lattner · 16 years ago
  94. cd99d9e forgot to commit this before. by Chris Lattner · 16 years ago
  95. 07e775d reject invalid jumps among pieces of @try blocks. This seems to work by Chris Lattner · 16 years ago
  96. b565937 unconditionally check for goto correctness. This is because switch by Chris Lattner · 16 years ago
  97. bcfce66 abstract the SwitchStack for blocks just like we do the goto labels. by Chris Lattner · 16 years ago
  98. 4f2aac3 fix two error paths out of ParseBlockLiteralExpression to by Chris Lattner · 16 years ago
  99. ea29a3a refactor some code, adding a new getLabelMap() accessor method by Chris Lattner · 16 years ago
  100. a9768b7 Improve switch diagnostic to emit the "jump" message on the by Chris Lattner · 16 years ago