1. df6b68c Initial codegen for block literals. This is a work in progress. I've by Mike Stump · 16 years ago
  2. 4ab2414 Sema::ActOnObjCAtThrowStmt(): return from recently added errors. Thanks Chris! by Steve Naroff · 16 years ago
  3. d5cab54 Add a very basic implemenation of global blocks. This needs to be cleaned up. by Anders Carlsson · 16 years ago
  4. a30b17b Make nonfragile-abi the default for darwin's 64bit abi for objective-c programs. by Fariborz Jahanian · 16 years ago
  5. 389bf46 Several cleanups: by Steve Naroff · 16 years ago
  6. 17f194f Support __attribute__(section(<name>)) by Daniel Dunbar · 16 years ago
  7. 3dcfe10 Turn warning into error. Minor incompatibility with GCC (for scalar types, GCC only produces a warning). by Steve Naroff · 16 years ago
  8. adadd8d Fix va_arg bug noticed by Eli, __builtin_va_arg is not an l-value by Daniel Dunbar · 16 years ago
  9. be9eb09 x86_64: Initial varargs support. by Daniel Dunbar · 16 years ago
  10. 5f747d1 Re-enable PTH stat caching. All tests pass now. by Ted Kremenek · 16 years ago
  11. d69ab87 Fix bad reading of bytes in ReadUnalignedLE64() (copy-paste error). by Ted Kremenek · 16 years ago
  12. c8b44f5 Temporarily disable PTH stat caching as it appears to be failing on some machines. by Ted Kremenek · 16 years ago
  13. 337edcd PTH: Cache stat information for files in the PTH file. Hook up FileManager by Ted Kremenek · 16 years ago
  14. 96438f3 FileManager: by Ted Kremenek · 16 years ago
  15. 3102c83 search and replaceo? by Chris Lattner · 16 years ago
  16. acfde80 Add support for generating block call expressions. by Anders Carlsson · 16 years ago
  17. fc7052d Add lightweight shim "clang::StatSysCallCache" that caches 'stat' system calls by Ted Kremenek · 16 years ago
  18. b7b5d13 Expand the definition of a complex promotion to include complex -> by Douglas Gregor · 16 years ago
  19. 5cdf821 Introduce _Complex conversions into the function overloading by Douglas Gregor · 16 years ago
  20. c657eba Last @encode'ing fix for objc2's nonfragile abi. by Fariborz Jahanian · 16 years ago
  21. a4bd8eb PTH: Have meta data be at the beginning of the PTH file, not the end. by Ted Kremenek · 16 years ago
  22. 1a35fde Fix comment. by Mike Stump · 16 years ago
  23. f9201e0 Initial implementation of function overloading in C. by Douglas Gregor · 16 years ago
  24. 72696e1 Patch to fix encoding in 64bit abi. With this patch by Fariborz Jahanian · 16 years ago
  25. 0785570 Use EmitVAListRef instead of EmitLValue directly to handle array decay by Daniel Dunbar · 16 years ago
  26. 7e3a004 PTH: Replace string identifier to persistent ID lookup with a hashtable. This is by Ted Kremenek · 16 years ago
  27. 5b5c9ef Support IRgen of va_arg of structure as l-value. by Daniel Dunbar · 16 years ago
  28. 26cc89f ir-gen for objc's @selector expression in nonfragile abi mode. by Fariborz Jahanian · 16 years ago
  29. 1bc6913 Appease the language lawyers by Douglas Gregor · 16 years ago
  30. 84c4310 Fix <rdar://problem/6505139> [clang on growl]: need to allow unnamed selectors as the first argument by Steve Naroff · 16 years ago
  31. e21dd6f Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block. by Steve Naroff · 16 years ago
  32. cc45cb3 Finished semantic analysis of non-type template arguments, to check by Douglas Gregor · 16 years ago
  33. 5fa77e9 Avoid bogus warning. by Mike Stump · 16 years ago
  34. 8e6563b Reverted r64307. Moved hasSameType and hasSameUnqualifiedType from by Douglas Gregor · 16 years ago
  35. 62cb18d Allow the use of default template arguments when forming a class by Douglas Gregor · 16 years ago
  36. 7151bbb Fix <rdar://problem/6206858> [sema] type check @throw statements. by Steve Naroff · 16 years ago
  37. 26a0bdb Rename Sema::hasSameType to QualType::isSameAs by Douglas Gregor · 16 years ago
  38. 71d8174 Silence a warning about an unused variable in -Asserts builds by Douglas Gregor · 16 years ago
  39. 658bbb5 Implement semantic checking for template arguments that correspond to by Douglas Gregor · 16 years ago
  40. f1de464 PTH: Don't emit the PTH offset of the IdentifierInfo string data as that data is by Ted Kremenek · 16 years ago
  41. db3bd4b Fix rdar://6518463, increment of a bool is always true, due to by Chris Lattner · 16 years ago
  42. e5ed151 finish off codegen support for sub of pointer to functions, by Chris Lattner · 16 years ago
  43. 8cb6fb3 Per PR 3187, disable the missing -dealloc check for classes that subclass SenTestCase. by Ted Kremenek · 16 years ago
  44. f29b774 Add pmmintrin.h header. by Anders Carlsson · 16 years ago
  45. 4cc4427 Fix some mistakes I made when I tried to decipher the Intel documentation of the MXCSR register by Anders Carlsson · 16 years ago
  46. dedb84a CHAR_BIT == 8 by Douglas Gregor · 16 years ago
  47. b86b057 Add semantic checking for template arguments that correspond to by Douglas Gregor · 16 years ago
  48. f684e6e Semantic checking for template arguments that correspond to non-type by Douglas Gregor · 16 years ago
  49. a35284b Add partial semantic checking of template arguments that are meant for by Douglas Gregor · 16 years ago
  50. 297308e BugReporter: Use llvm::raw_string_stream instead of std::ostringstream. by Ted Kremenek · 16 years ago
  51. c5840c0 Add private extern to pretty printer(s). by Mike Stump · 16 years ago
  52. 6ae5e66 Add type-checking and implicit conversions for template parameters of by Douglas Gregor · 16 years ago
  53. 22ab8d8 Handle the case where EmitBlock might be called multiple times for the same block. Fixes PR3536. by Anders Carlsson · 16 years ago
  54. 3afdfd7 This patch is all it takes to pass all objc2's fast-enumeration by Fariborz Jahanian · 16 years ago
  55. d8c0292 PTH: Replace ad hoc 'file name' -> 'PTH data' lookup table in the PTH file with an on-disk chained hash table. This data structure is implemented using templates, and will be used to replace similar data structures. This change leads to no visibile performance impact on Cocoa.h, but now we only pay a price for the table on order with the number of files accessed and not the number in the PTH file. by Ted Kremenek · 16 years ago
  56. 0bfe54f GNU allows structs with flexible array members to be placed inside by Douglas Gregor · 16 years ago
  57. b53e3e7 Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 16 years ago
  58. b4094ea Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 16 years ago
  59. ed157d3 Generate ir for ivar offset. This will pass by Fariborz Jahanian · 16 years ago
  60. 071e4da Fixup -ast-print so that: by Mike Stump · 16 years ago
  61. 080cc35 Refactor FieldDecls to be ValueDecls instead of NamedDecls. by Mike Stump · 16 years ago
  62. 68c6993 Fix a problem with bogus template shadowing warnings by Douglas Gregor · 16 years ago
  63. d684b00 Implement parsing, semantic analysis and ASTs for default template by Douglas Gregor · 16 years ago
  64. f63aa3f Some refactoring of Ivar offset code gen. by Fariborz Jahanian · 16 years ago
  65. 5d290d5 Semantic analysis for non-type template parameter declarations. by Douglas Gregor · 16 years ago
  66. 3b4e9cd Tweak x86-64 ABI to allow reuse for vararg handling. by Daniel Dunbar · 16 years ago
  67. 6c90919 Fix an #ifndef that should be an #ifdef instead. by Anders Carlsson · 16 years ago
  68. fa1f756 Remove the last remnants of the Obj-C EH stack code. by Anders Carlsson · 16 years ago
  69. e4b6d34 Start removing the old Obj-C EH stack now that the cleanup stack is used instead. by Anders Carlsson · 16 years ago
  70. 3f34d80 Fix a crash in GRSimpleVals::EvalCast due not handling transparent unions. by Ted Kremenek · 16 years ago
  71. 193cdbe Function parameters for PIC16 are like local variables. So use the keyword ".auto." to mangle their names. The working of PIC16AsmPrinter relies on that keyword currently. by Sanjiv Gupta · 16 years ago
  72. 4e484b8 Support va_arg on _Complex. by Daniel Dunbar · 16 years ago
  73. adc8bdd ABI: Correctly handle load/store of values which have a different LLVM by Daniel Dunbar · 16 years ago
  74. 9d9cc87 Add util Emit{LoadOf,StoreTo}Scalar methods to encapsulate conversion by Daniel Dunbar · 16 years ago
  75. 8b64259 Teach the type-id/expression disambiguator about different by Douglas Gregor · 16 years ago
  76. dd0574e Check template template arguments against their corresponding template by Douglas Gregor · 16 years ago
  77. 8b979d9 Make sure to initialize local variables, even if they were ignored by ABI. by Daniel Dunbar · 16 years ago
  78. c15cb38 Rudimentary checking of template arguments against their corresponding by Douglas Gregor · 16 years ago
  79. 672c91d id<Foo> is a POD type. by Anders Carlsson · 16 years ago
  80. f02da89 Implement Sebastian's idea for simplifying our handling of the greater-than operator/delimiter. Also, clean up after ourselves following a failed parse of a template-argument-list by Douglas Gregor · 16 years ago
  81. 668bf91 CallExpr now uses ASTContext's allocate to allocate/delete its array of subexpressions. by Ted Kremenek · 16 years ago
  82. 5ecb1b9 Use the new cleanup infrastructure for VLAs. The next iteration of patches will remove the old Obj-C EH cleanup code. by Anders Carlsson · 16 years ago
  83. f3a79a9 Use the new cleanup infrastructure for @try/@finally by Anders Carlsson · 16 years ago
  84. 82d8ef0 Replace a bunch of EmitBranch calls with EmitBranchThroughCleanup. No functionality change (yet). by Anders Carlsson · 16 years ago
  85. 7433189 Save and restore the DidCallStackSave variable by Anders Carlsson · 16 years ago
  86. 4cc1a47 Add DidCallStackSave variable to CodeGenFunction. by Anders Carlsson · 16 years ago
  87. fdf5569 When handling "the rest" of a designated array subobject, maybe sure by Douglas Gregor · 16 years ago
  88. 5908e9f Eliminate TemplateArg so that we only have a single kind of by Douglas Gregor · 16 years ago
  89. 55f6b14 Start processing template-ids as types when the template-name refers by Douglas Gregor · 16 years ago
  90. 00e68e2 Update new expression to make use of Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
  91. ab197ba Implement Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
  92. d3098ee Fix PR 2514: Do not flag dead initializations for variables initialized to a constant global variable. by Ted Kremenek · 16 years ago
  93. 353ffce Deallocate the StringLiteral itself in StringLiteral::Destroy() and deallocate the string data before running StringLiteral's destructor. by Ted Kremenek · 16 years ago
  94. fb7413f Allocate the subexpression array for OberloadExpr from ASTContext's allocator. by Ted Kremenek · 16 years ago
  95. 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 16 years ago
  96. 0dd9e88 Add some more documentation. Also reflowed comments to 80 col. by Mike Stump · 16 years ago
  97. cc89920 Reuse case destinations. by Anders Carlsson · 16 years ago
  98. ad9d00e Always check if we can remove branch fixups, even if the cleanup stack is empty. by Anders Carlsson · 16 years ago
  99. 48de101 Add a simplified EmitJumpThroughFinally and use it in CGObjC in preparation of making it use the cleanup stack. by Anders Carlsson · 16 years ago
  100. 46831a9 Misc fixes to the cleanup stack code. by Anders Carlsson · 16 years ago