1. d5d3180 Don't emit K&R unprototyped function definitions as varargs. by Daniel Dunbar · 15 years ago
  2. 232350d Emission of global variable initialializer was broken in rare by Daniel Dunbar · 15 years ago
  3. bd65cac More codegen for blocks. The type of block literals should be better. by Mike Stump · 15 years ago
  4. c1debf3 Some code simplification. ir gen for gc'able array of objects in objc. by Fariborz Jahanian · 15 years ago
  5. 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 15 years ago
  6. b5da3e9 Add anti-FIXME. by Daniel Dunbar · 15 years ago
  7. 570f0cf i386 ABI: Offset computation in va_arg was incorrect for sizeof(Ty)>4. by Daniel Dunbar · 15 years ago
  8. 90dafa1 x86_64 ABI: Fix thinko in computation of bound for "passed in SSE regs" test. by Daniel Dunbar · 15 years ago
  9. 1e4db7c rip out __builtin_overload by Chris Lattner · 15 years ago
  10. f231346 x86_64 ABI: "is passed in regs" computation for va_arg was broken for by Daniel Dunbar · 15 years ago
  11. 4fd83ea Some refactoring and simplificaiotn of objc's gc ir gen. by Fariborz Jahanian · 15 years ago
  12. 6aee306 Simplify. by Daniel Dunbar · 15 years ago
  13. 5934e75 Start generating gc'able code using the new objc gc type attributes. by Fariborz Jahanian · 15 years ago
  14. ba372b8 Cleanup objc's gc attributes code no longer needed. by Fariborz Jahanian · 15 years ago
  15. 3e030b4 x86_64 ABI: Two bug fixes. 1. Return of _Complex long double used wrong type. by Daniel Dunbar · 15 years ago
  16. 1905061 Avoid getNameAsCString when the decl doesn't have a name. by Mike Stump · 15 years ago
  17. d311f37 Remove some redundant Decl -> Decl castings. by Argyrios Kyrtzidis · 15 years ago
  18. d60f2fb Change EmitConstantExpr to allow failure. by Daniel Dunbar · 15 years ago
  19. bb76773 80-cols. by Daniel Dunbar · 15 years ago
  20. f11284a Renamed ASQualType to ExtQualType to reflect its more by Fariborz Jahanian · 15 years ago
  21. cb71722 Be sure to initialize Name. by Mike Stump · 15 years ago
  22. 09429b9 Fixup spacing a little. by Mike Stump · 15 years ago
  23. 6e53e9b x86_64 ABI: Fix assert on return of _Complex long double. by Daniel Dunbar · 15 years ago
  24. dd81d44 x86_64 ABI: Implement classification for bit-fields. by Daniel Dunbar · 15 years ago
  25. c5bcee4 x86_64 ABI: Handle va_arg arguments with alignment > 8. by Daniel Dunbar · 15 years ago
  26. f57c5b2 Add support for throwing exceptions to the nonfragile ABI by Anders Carlsson · 15 years ago
  27. 6948aea Added implementation of objc2's gc API calls for nonfragile abi. by Fariborz Jahanian · 15 years ago
  28. ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 15 years ago
  29. 1bd885e fix volatile handling with ExtVectorElementExpr, so that we by Chris Lattner · 15 years ago
  30. 2140e90 introduce and use a new ExtVectorElementExpr::isArrow method, at Eli's suggestion by Chris Lattner · 15 years ago
  31. 62c29c6 Fix IRgen of __builtin_memset. - Fix test case to not only have negative tests. by Daniel Dunbar · 15 years ago
  32. 73525de enhance ExtVectorElementExpr to allow V->xxyy to work like (*V).xxyy by Chris Lattner · 15 years ago
  33. 28ed084 assert/ErrorUnsupported in unimplemented stub functions instead of miscompiling. by Daniel Dunbar · 15 years ago
  34. 948e258 Obj-C non-fragile ABI: Fix types of a few globals; these were not by Daniel Dunbar · 16 years ago
  35. 30395dd Use getNameAsCString instead of getNameAsString and reflow the type. by Mike Stump · 16 years ago
  36. 67a6448 Generate the helper function for blocks. Now basic codegen is by Mike Stump · 16 years ago
  37. 3ab75bd Fixed a bad ir-gen bug which caused a dejagnu test to fail. by Fariborz Jahanian · 16 years ago
  38. f3710ba Fixed a problem caused by foreward @class use by Fariborz Jahanian · 16 years ago
  39. 3c385e5 Add hook to add attributes to function declarations that we know by Douglas Gregor · 16 years ago
  40. 3327f6e x86_64 ABI: Need to use canonical types when comparing against ASTContext types. by Daniel Dunbar · 16 years ago
  41. 644f4c3 x86_64 ABI: Pass simple types directly when possible. This is by Daniel Dunbar · 16 years ago
  42. 370ab3f Make it possible for builtins to expression FILE* arguments, so that by Douglas Gregor · 16 years ago
  43. 12d152f fix rdar://6586493, a bug in codegen of the GNU by Chris Lattner · 16 years ago
  44. 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
  45. e4c9238 Set constant bit on static block vars as well. Patch by Anders Johnson!q by Daniel Dunbar · 16 years ago
  46. 7542bca Simplify predicate. by Daniel Dunbar · 16 years ago
  47. 5c61d97 IRgen support for attribute used. - PR3566 by Daniel Dunbar · 16 years ago
  48. 73241df Pull MayDeferGeneration out of EmitGlobal. by Daniel Dunbar · 16 years ago
  49. 0269871 Rename EmitStatics (etc) to EmitDeferred; provide basic infrastructure by Daniel Dunbar · 16 years ago
  50. 7d6dc4f Let the backend unique these. by Mike Stump · 16 years ago
  51. f744895 Fix spelling. by Mike Stump · 16 years ago
  52. 3246991 Move DescriptorUniqueCount into CGM. by Mike Stump · 16 years ago
  53. 59c5b11 Move NSConcreteStackBlock into CGM. by Mike Stump · 16 years ago
  54. 3fa3dc1 Eliminate an unused variable by Douglas Gregor · 16 years ago
  55. ecc90e9 Reflow to 80col. by Mike Stump · 16 years ago
  56. 26efc33 Move GlobalUniqueCount up into CGM. by Mike Stump · 16 years ago
  57. 943ed6f Fixed a 64bit code gen bug of a cateogory by Fariborz Jahanian · 16 years ago
  58. 55e5d89 x86_64 ABI: Support va_arg passed in mixed registers. by Daniel Dunbar · 16 years ago
  59. f99f1d0 Condense NSConcreteGlobalBlock handling. by Mike Stump · 16 years ago
  60. 3ba8215 Calculate size correctly. by Mike Stump · 16 years ago
  61. 56129b1 Size should be unsigned. by Mike Stump · 16 years ago
  62. e5fee25 Condense all the blocks code into CGBlocks.cpp. by Mike Stump · 16 years ago
  63. 7cbb360 Fixup types, the runtime uses int, not int32. by Mike Stump · 16 years ago
  64. 4783787 Fix cmake builds. by Mike Stump · 16 years ago
  65. a544854 Fixup spacing a tad. by Mike Stump · 16 years ago
  66. 9b8a797 Move GenericBlockLiteralType into CGM. by Mike Stump · 16 years ago
  67. ab69514 Move BlockDescriptorType into CGM. by Mike Stump · 16 years ago
  68. e896d98 Add CodeGen support for the nodebug attribute. by Anders Carlsson · 16 years ago
  69. f98aba3 Initial implementation of arbitrary fixed-width integer types. by Eli Friedman · 16 years ago
  70. 219cc61 Add mangling for variadic functions and conversion functions by Douglas Gregor · 16 years ago
  71. 5f2bfd4 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 16 years ago
  72. 30510ab Honor attribute section on static block var decls. by Daniel Dunbar · 16 years ago
  73. 01a0c36 Fix a bug whereby, an ivar used to synthesize a property belongs by Fariborz Jahanian · 16 years ago
  74. df6b68c Initial codegen for block literals. This is a work in progress. I've by Mike Stump · 16 years ago
  75. d5cab54 Add a very basic implemenation of global blocks. This needs to be cleaned up. by Anders Carlsson · 16 years ago
  76. 389bf46 Several cleanups: by Steve Naroff · 16 years ago
  77. 17f194f Support __attribute__(section(<name>)) by Daniel Dunbar · 16 years ago
  78. be9eb09 x86_64: Initial varargs support. by Daniel Dunbar · 16 years ago
  79. acfde80 Add support for generating block call expressions. by Anders Carlsson · 16 years ago
  80. 0785570 Use EmitVAListRef instead of EmitLValue directly to handle array decay by Daniel Dunbar · 16 years ago
  81. 5b5c9ef Support IRgen of va_arg of structure as l-value. by Daniel Dunbar · 16 years ago
  82. 26cc89f ir-gen for objc's @selector expression in nonfragile abi mode. by Fariborz Jahanian · 16 years ago
  83. 71d8174 Silence a warning about an unused variable in -Asserts builds by Douglas Gregor · 16 years ago
  84. db3bd4b Fix rdar://6518463, increment of a bool is always true, due to by Chris Lattner · 16 years ago
  85. e5ed151 finish off codegen support for sub of pointer to functions, by Chris Lattner · 16 years ago
  86. 22ab8d8 Handle the case where EmitBlock might be called multiple times for the same block. Fixes PR3536. by Anders Carlsson · 16 years ago
  87. 3afdfd7 This patch is all it takes to pass all objc2's fast-enumeration by Fariborz Jahanian · 16 years ago
  88. b53e3e7 Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 16 years ago
  89. b4094ea Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 16 years ago
  90. ed157d3 Generate ir for ivar offset. This will pass by Fariborz Jahanian · 16 years ago
  91. f63aa3f Some refactoring of Ivar offset code gen. by Fariborz Jahanian · 16 years ago
  92. 3b4e9cd Tweak x86-64 ABI to allow reuse for vararg handling. by Daniel Dunbar · 16 years ago
  93. fa1f756 Remove the last remnants of the Obj-C EH stack code. by Anders Carlsson · 16 years ago
  94. e4b6d34 Start removing the old Obj-C EH stack now that the cleanup stack is used instead. by Anders Carlsson · 16 years ago
  95. 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
  96. 4e484b8 Support va_arg on _Complex. by Daniel Dunbar · 16 years ago
  97. adc8bdd ABI: Correctly handle load/store of values which have a different LLVM by Daniel Dunbar · 16 years ago
  98. 9d9cc87 Add util Emit{LoadOf,StoreTo}Scalar methods to encapsulate conversion by Daniel Dunbar · 16 years ago
  99. 8b979d9 Make sure to initialize local variables, even if they were ignored by ABI. by Daniel Dunbar · 16 years ago
  100. 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