1. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 15 years ago
  2. 70e5a14 PCH support for Objective-C property declarations (UNTESTED!) by Douglas Gregor · 15 years ago
  3. c71303d ivar layout bitmap is alive! by Fariborz Jahanian · 15 years ago
  4. 2512308 Add PCH statistics for the number/percent of lexical/visible declcontexts read by Douglas Gregor · 15 years ago
  5. 4c5fcd9 Add PathDiagnosticRange to PathDiagnostics. These simply wrap SourceRange and by Ted Kremenek · 15 years ago
  6. 14c22f2 Support locally-declared external declarations in PCH files by Douglas Gregor · 15 years ago
  7. 4c0e86b Support tentative definitions in precompiled headers. This isn't likely by Douglas Gregor · 15 years ago
  8. 370187c Remove the serialization code that predates precompiled by Douglas Gregor · 15 years ago
  9. 6cfc1a8 Eliminate some FIXMEs in the PCH reader that were either already fixed or aren't actually things to fix by Douglas Gregor · 15 years ago
  10. 21e072b Eliminate Sema::KnownFunctionIDs, so that Sema doesn't end up pulling by Douglas Gregor · 15 years ago
  11. 4f5be3b BugReporter (extensive diagnostics): Use correct location for location contexts. by Ted Kremenek · 15 years ago
  12. 5c7168c BugReporter (extensive diagnostics): always add an edge if there is no location by Ted Kremenek · 15 years ago
  13. 1725f68 Add handling for complex->int, int->complex float, and float->complex by Eli Friedman · 15 years ago
  14. 0af2ca4 Minimize the number and kind of "external definitions" that the PCH by Douglas Gregor · 15 years ago
  15. 25bcbaf Add missing dependency, patch by Jason Haslam! by Chris Lattner · 15 years ago
  16. 2deaea3 Lazy loading of builtins for precompiled headers. by Douglas Gregor · 15 years ago
  17. 404dd7a BugReporter (extensive diagnostics): by Ted Kremenek · 15 years ago
  18. a301a67 BugReporter (extensive diagnostic algorithm): The initial control-flow edge now by Ted Kremenek · 15 years ago
  19. 8f33290 PathDiagnosticLocation: ranges for terminators now only include the first by Ted Kremenek · 15 years ago
  20. a80a0f6 Reapply r69771, with updates & fixes: by Daniel Dunbar · 15 years ago
  21. 01f4fa2 Remove some debugging output from the PCH reader by Douglas Gregor · 15 years ago
  22. a243578 Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. by Daniel Dunbar · 15 years ago
  23. 75da674 Simplify addRecordToClass, it is not legal to call it on a forward by Daniel Dunbar · 15 years ago
  24. 412f59b Don't convert interface types (to structs) as part of CodeGenTypes. by Daniel Dunbar · 15 years ago
  25. 84ad77a Add CGObjCRuntime::GetConcreteClassStruct to encapsulate access to the by Daniel Dunbar · 15 years ago
  26. 1e7c6b6 Add another workaround for -include. by Daniel Dunbar · 15 years ago
  27. ae28723 Simplify. by Daniel Dunbar · 15 years ago
  28. 3fea0c0 Emit meta data using the Ivar, not a looked up FieldDecl. by Daniel Dunbar · 15 years ago
  29. c8cbf19 Use ComputeIvarBaseOffset instead of looking up by hand. by Daniel Dunbar · 15 years ago
  30. 9777687 Merge ivar access amongst the three runtimes. by Daniel Dunbar · 15 years ago
  31. aa2b579 implement debug info support for id<proto> and interface<proto> by Chris Lattner · 15 years ago
  32. 068360e ObjCQualifiedClass is dead, remove it. by Chris Lattner · 15 years ago
  33. c6fa445 deserialization support for qualified interfaces by Chris Lattner · 15 years ago
  34. d7a3fcd pch support for protocol qualified id's. by Chris Lattner · 15 years ago
  35. 3a57a37 add three new objc expression types. @selector doesn't work because we have no by Chris Lattner · 15 years ago
  36. 4dcf151a implement serialization support for @encode, by Chris Lattner · 15 years ago
  37. 3f84ad2 change implicit int warnings to point to the identifier, not the by Chris Lattner · 15 years ago
  38. 2a03192 Make ObjCInterfaceDecl's const in some more places. by Daniel Dunbar · 15 years ago
  39. 71dfdb9 Reorganize built-in initialization to separate the creation of target builtins from marking IdentifierInfos as builtins. No functionality change by Douglas Gregor · 15 years ago
  40. d4ae6c0 Revert r69771, I missed some (obvious) details. :/ by Daniel Dunbar · 15 years ago
  41. 3b3a458 Mark another TypeForDecl const and make getObjCInterfaceType's argument const. by Daniel Dunbar · 15 years ago
  42. 0c45793 Rework the shadow struct that is layed out for Objective-C classes. by Daniel Dunbar · 15 years ago
  43. 3936024 Fix rdar://6814950 - stdint.h isn't "-pedantic -std=c89" clean, by Chris Lattner · 15 years ago
  44. 1c02f86 move 64-bit abi functions to lazy model, everything is lazy now, yay. by Chris Lattner · 15 years ago
  45. 72db6c3 remove the last of the non-lazy objc runtime functions for the 32-bit ABI, by Chris Lattner · 15 years ago
  46. bbccd61 number of non-lazy runtime functions from 9 -> 4. by Chris Lattner · 15 years ago
  47. 4176b0c make message send functions lazy, we're down from 14 non-lazy functions to 9. by Chris Lattner · 15 years ago
  48. 34b02a1 move more EH stuff to being lazily created. An empty .m file now by Chris Lattner · 15 years ago
  49. 8a56911 make try/catch objc runtime functions be lazily generated. rdar://6809612 by Chris Lattner · 15 years ago
  50. 4d00f2a Fix a problem with objc foreach loop. It turns out that objc mode changes by Chris Lattner · 15 years ago
  51. d55a71d Fix some mishandling of the attr(gnu_inline) mode when used with by Chris Lattner · 15 years ago
  52. 37e2684 Lazy deserialization of macro definitions for precompiled headers. by Douglas Gregor · 15 years ago
  53. 868210e Fix crash reported in PR 3991. The analyzer doesn't reason about ObjCKVCExpr. by Ted Kremenek · 15 years ago
  54. 30d1b99 This patch is largely due to Zhongxing Xu. I've simply applied it because of by Ted Kremenek · 15 years ago
  55. e1614bb apply Eli's patch to fix PR4008, with a testcase. Thanks Eli! by Chris Lattner · 15 years ago
  56. f0a990c fix PR4026: Clang can't codegen __func__ without implicit cast by Chris Lattner · 15 years ago
  57. 25efa10 Tighten up blocks type checking. This was discussed back in the by Mike Stump · 15 years ago
  58. 5c59e2b Fix rdar://6814047, a crash on invalid in blocks code I noticed when by Chris Lattner · 15 years ago
  59. af48fdd Fix: <rdar://problem/6777209> false Dereference of null pointer in loop: pointer increment/decrement preserves non-nullness by Ted Kremenek · 15 years ago
  60. ec751c4 Tweak pretty-printing of constraints. by Ted Kremenek · 15 years ago
  61. aff22df Don't bother writing a visible-declarations record for the translation by Douglas Gregor · 15 years ago
  62. 17f3a6d fix marking of nested blocks with the "hasBlockDeclRefExprs" to by Chris Lattner · 15 years ago
  63. 668c1a4 Lazy deserialization of the declaration chains associated with by Douglas Gregor · 15 years ago
  64. 5b54b88 this is a warning now, return a well formed ast. by Chris Lattner · 15 years ago
  65. c62abc1 Refactor 'BasicStoreManager::CastRegion' and 'RegionStoreManager::CastRegion' by Ted Kremenek · 15 years ago
  66. 24c8991 Make sure to mark the interface as completed when we see an by Daniel Dunbar · 15 years ago
  67. a104de8 Plist diagnostics: Remove deprecated single-point locations in control-flow by Ted Kremenek · 15 years ago
  68. 0468fb9 Patch to diagnose use of objc's @defs in nonfragile abi. by Fariborz Jahanian · 15 years ago
  69. 72e0320 Recommit 69694 but this time also include the header changes (sorry for breaking by Ted Kremenek · 15 years ago
  70. ca79092 reject sizeof(itf) when itf is a forward declared interface, or when by Chris Lattner · 15 years ago
  71. 7520bd1 Fix emission of static tentative definitions referenced from other static functions by Douglas Gregor · 15 years ago
  72. a37221e Revert 69694 (use of undefined getSymbol) by Daniel Dunbar · 15 years ago
  73. 7fb1627 More objc2's ivar layout bitmap. No change in functionality. by Fariborz Jahanian · 15 years ago
  74. e051308 Add pretty-printing for CodeTextRegions. by Ted Kremenek · 15 years ago
  75. 5639a3e Lexically order the implementation of MemRegion 'print' methods. No functionality change. by Ted Kremenek · 15 years ago
  76. 88207c9 don't bother emitting a zero byte memset at all. We used to get them by Chris Lattner · 15 years ago
  77. 4abbea6 Use 'getAs<CodeTextRegion>' instead of 'dyn_cast<CodeTextRegion>' to handle any by Ted Kremenek · 15 years ago
  78. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 15 years ago
  79. ff89666 Use an ASTRecordLayout to compute the sizeof an interface, not by Daniel Dunbar · 15 years ago
  80. 30833f8 Add pch reader/writer support for most of DeclObjC.h. Very close to reading/writing all ObjC AST nodes that we will encounter in header files (still a few FIXME's). by Steve Naroff · 15 years ago
  81. a868a20 implement semantic analysis for @synchronized, fixing a crash on invalid by Chris Lattner · 15 years ago
  82. 32b325f this time with more workingness. by Chris Lattner · 15 years ago
  83. 70aa5f9 Pass and return aggregate types directly to function calls. by Sanjiv Gupta · 15 years ago
  84. 46c3c4b add support for goto checking and @synchronized blocks, rdar://6810106 by Chris Lattner · 15 years ago
  85. 62f86c4 fix massive testsuite failures from Alexei's patch due to inverted logic. by Chris Lattner · 15 years ago
  86. e116ccf Split preprocessor initialization logic out of clang-cc into by Chris Lattner · 15 years ago
  87. 182e092 rename -fprint-source-range-info -> -fdiagnostics-print-source-range-info. by Chris Lattner · 15 years ago
  88. 81045d8 Fix PR4027 + rdar://6808859, we were rejecting implicit casts of by Chris Lattner · 15 years ago
  89. 2451b52 improve MacroInfo to track the source range of the macro definition, by Chris Lattner · 15 years ago
  90. f1c97eb use of predefined identifiers like __func__ at global scope warn in sema, by Chris Lattner · 15 years ago
  91. 5ce24c8 make "in included from" and "in instatiation from" messages respect by Chris Lattner · 15 years ago
  92. 41c1747 add a preprocessor callback function for #undef, patch by Alexei Svitkine! by Chris Lattner · 15 years ago
  93. 19d28a6 Add a CXXDestroyExpr. Add classof member functions to CXXTempVarDecl. by Anders Carlsson · 15 years ago
  94. 4bc11af Use an APInt of target int size to detect overflow while parsing multichars. by Sanjiv Gupta · 15 years ago
  95. 86fa750 Add the beginnings of a CXXTempVarDecl class. by Anders Carlsson · 15 years ago
  96. 7818a4d Remove unnused variable. by Daniel Dunbar · 15 years ago
  97. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 15 years ago
  98. 75b163f Fixup codegen for write barriers for block variables. Radar 6786715 by Mike Stump · 15 years ago
  99. 6bf2ae0 Remove LateBoundIVars() runtime interface, it is unused. by Daniel Dunbar · 15 years ago
  100. 9e6c20b Assert on a few conditions that (I believe) should hold by Daniel Dunbar · 15 years ago