1. 3480950 simplify management of llvm::Function creation to all go through by Chris Lattner · 15 years ago
  2. 62b33ea code cleanups, rename EmitForwardFunctionDefinition -> by Chris Lattner · 15 years ago
  3. ca3f25c fix several problems with asm renaming, by pulling it into the mangling code: by Chris Lattner · 15 years ago
  4. 2d58406 add some fixmes by Chris Lattner · 15 years ago
  5. 5d4f5c7 reduce redundant calls of getMangledName. by Chris Lattner · 15 years ago
  6. 99b5361 simplify some more code. by Chris Lattner · 15 years ago
  7. e21c4b8 simplify and comment some code better. Make BindRuntimeGlobals by Chris Lattner · 15 years ago
  8. 3c8f153 random code cleanups. by Chris Lattner · 15 years ago
  9. 5b60a0e remove obviously dead code: you can't bitcast a pointer to "Ty" (a function type). by Chris Lattner · 15 years ago
  10. 8f431a5 avoid making constant folding logic eliminate obviously dead bitcasts, speeding up PR3810 by Chris Lattner · 15 years ago
  11. c50689b Add a fast path to CodeGenModule::getMangledName for almost all C functions, by Chris Lattner · 15 years ago
  12. bc7a029 simplify CXXNameMangler::mangle, making it exit earlier for C functions. by Chris Lattner · 15 years ago
  13. 6cc88f7 Fix codegen for support for super inside block literal expressions. by Mike Stump · 15 years ago
  14. ebf9ed3 Fix a crash during meta-data generation of objc2's nonfragile abi. by Fariborz Jahanian · 15 years ago
  15. f469557 More super dot-syntax property implementation by Fariborz Jahanian · 15 years ago
  16. 99c20eb Fix ivar's size encoding. by Devang Patel · 15 years ago
  17. 8e5d232 Implement ir gen. for setter/getter applied to 'super' by Fariborz Jahanian · 15 years ago
  18. 5e1e1f9 IRgen support for alias of global variable. - PR3818. by Daniel Dunbar · 15 years ago
  19. c20482b Encode ivar access control info. by Devang Patel · 15 years ago
  20. e4e5b05 Introduce a representation for types that we referred to via a by Douglas Gregor · 15 years ago
  21. 38e24c7 objc: Implemented variables declared in class interface by Fariborz Jahanian · 15 years ago
  22. 0ac86f0 PR3835: Interaction with ABI structure passing can inhibit by Daniel Dunbar · 15 years ago
  23. 40f9292 fix the more complex cases by actually codegen'ing the right expr :) by Chris Lattner · 15 years ago
  24. 75dfeda add codegen support for casting an element to a union. by Chris Lattner · 15 years ago
  25. f8575aa Add codegen support for aggregate BlockDeclRefExprs. by Mike Stump · 15 years ago
  26. 8cc9d08 fix PR3809, codegen for inc/dec of function pointers. by Chris Lattner · 15 years ago
  27. c3953a6 teach codegen to handle noop casts as lvalues. by Chris Lattner · 15 years ago
  28. 0ae7b2b Initialize the cleanup.dst variable if necessary. Fixes PR3789. by Anders Carlsson · 15 years ago
  29. ec9b5d5 Fix struct field's debug info. by Devang Patel · 15 years ago
  30. 7c80bd6 Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. by Sebastian Redl · 15 years ago
  31. a393e9e Build system changes to use TableGen to generate the various by Douglas Gregor · 15 years ago
  32. c8a7952 Add note on theoretical IRgen improvement. by Daniel Dunbar · 15 years ago
  33. 73f697f Remove a FIXME. by Daniel Dunbar · 15 years ago
  34. 7f28a9c Do up codegen for function static data and externs in functions in block by Mike Stump · 15 years ago
  35. 209bb43 Fix a bug in building function pointer type corresponding to block pointer. by Fariborz Jahanian · 15 years ago
  36. 9d25423 Remove FIXME, issue has been resolved. by Mike Stump · 15 years ago
  37. 810f6d5 introduce a new -fheinous-gnu-extensions flag that enables really by Chris Lattner · 15 years ago
  38. e78b809 Fix <rdar://problem/6675489> BlockDecl should not use llvm::smallvector. by Steve Naroff · 15 years ago
  39. 3b8a652 Fixed an ir-gen bug related to strong-cast generation of by Fariborz Jahanian · 15 years ago
  40. c8ce9c8 More objc2's ivar layout bitmap. by Fariborz Jahanian · 15 years ago
  41. d67b09a Fix uninitialized use in GetAddrOfGlobalBlock, reenable assert. by Daniel Dunbar · 15 years ago
  42. e06a75f x86_32 ABI: Don't try and expand structures with bitfields. by Daniel Dunbar · 15 years ago
  43. 21e6f17 Code refactoring. No change in functionality. by Fariborz Jahanian · 15 years ago
  44. 9397e1d More of objc2's ivar layout bitmap (Next: specific). Work in progress. by Fariborz Jahanian · 15 years ago
  45. ceb77d9 Adjust for linkage name change. by Duncan Sands · 15 years ago
  46. e3fedbe Correct for change of this name in LLVM. by Duncan Sands · 15 years ago
  47. 820e020 More Next objc2's gc ivar layout bitmap work. Work in progress. by Fariborz Jahanian · 15 years ago
  48. fb5058e add plumbing to report diagnostics back through sema for malformed asmstrings. by Chris Lattner · 15 years ago
  49. 458cd9c move the asm string analysis code out of codegen into common by Chris Lattner · 15 years ago
  50. fbe899f Emit super class debug info. by Devang Patel · 15 years ago
  51. 3523d4f ir-gen support for class getter/setter call using property dot-syntax. by Fariborz Jahanian · 15 years ago
  52. 4a77edb Remove some now-unneeded calls to llvm::errs().flush(). by Daniel Dunbar · 15 years ago
  53. 4843e58 Address Doug's comments wrt the mangler and fix Eli's test case by Anders Carlsson · 15 years ago
  54. a5a10c3 More objc2's gc meta-data work related to ivar layout bitmap. Work in progress. by Fariborz Jahanian · 15 years ago
  55. 88beebe Fix PR3682 by just disabling a broken assertion. This check should be by Chris Lattner · 15 years ago
  56. 02af974 reduce duplication of parsing code between %0 and %x0 and by Chris Lattner · 15 years ago
  57. 10ca96a move matching of named operands into AsmStmt class. At the same by Chris Lattner · 15 years ago
  58. bb57265 reduce nesting, use memchr instead of explicit loop, eliminate a by Chris Lattner · 15 years ago
  59. 63c8b14 Expand %= into ${:uid} so that the code generator emits a unique ID for the by Chris Lattner · 15 years ago
  60. b327793 add some helper methods to AsmStmt and add some comments. by Chris Lattner · 15 years ago
  61. f1a08ca slightly simplify some code, pull the 'is simple asm' case up in by Chris Lattner · 15 years ago
  62. 4274581 Backout r66408, we don't want handling of globals to rely on the by Daniel Dunbar · 15 years ago
  63. 58a2912 NeXT: Set alignment on a number of ObjC metadata variables (matching llvm-gcc). by Daniel Dunbar · 15 years ago
  64. 63c5b50 NeXT: Move some routines over to CreateMetadataVar. by Daniel Dunbar · 15 years ago
  65. 35bd763 Tweak CreateMetadataVar, take the exact alignment instead of relying by Daniel Dunbar · 15 years ago
  66. a6681ae More fix for bitfield ivar meta-data and code gen accessing it. by Fariborz Jahanian · 15 years ago
  67. d6e941d Fix typo in pref commit. by Daniel Dunbar · 15 years ago
  68. fd65d37 NeXT: Add CreateMetadataVar utility method to encapsulate creation of by Daniel Dunbar · 15 years ago
  69. 53d8922 Be sure to never create two functions with the same name, instead arrange to by Mike Stump · 15 years ago
  70. b21f07e Code refactoring. No functional change. by Fariborz Jahanian · 15 years ago
  71. b1d947b Make mangling work with anonymous tag types. Doug, please review by Anders Carlsson · 15 years ago
  72. a40c5e4 Mangle Objective-C interfaces correctly (where correctly refers to what gcc does) by Anders Carlsson · 15 years ago
  73. a210f35 Make constant emission for @encode use the common string emission code. by Eli Friedman · 15 years ago
  74. 11894a4 correct bitfield ivar offset in ivar meta-data. (objc abi specific). by Fariborz Jahanian · 15 years ago
  75. 863cffb Mangle param names with .arg. only. by Sanjiv Gupta · 15 years ago
  76. 286acbd Fixup our uses of various linkages to match how llvm now works. I think they are all by Mike Stump · 15 years ago
  77. a91b590 If someone could figure out this is necessary, that would be good. by Mike Stump · 15 years ago
  78. 8e5d9f1 Fix typo, need parens. by Mike Stump · 15 years ago
  79. 43af76e Some struct/class mismatch fixes, to silence MSVC warnings. by Sebastian Redl · 15 years ago
  80. 63822ba Remove last FIXME for block literal codegen that I know about and turn by Mike Stump · 15 years ago
  81. f4bc312 Remove some FIXMEs for block literals that should be close to working. by Mike Stump · 15 years ago
  82. 8339b35 Back out the patch in r66302, and re-fix it properly. We assume for by Eli Friedman · 15 years ago
  83. 1edf6b6 codegen support for dispose helpers for block literals. by Mike Stump · 15 years ago
  84. 0892099 Codegen support for copy helpers for block literals. by Mike Stump · 15 years ago
  85. a6e2779 Fixed a bug where generation of read-barriers caused crash in ir-gen. by Fariborz Jahanian · 15 years ago
  86. b681b8f (LLVM svn up) Generalize RuntimeFunctions to RuntimeGlobals and add by Daniel Dunbar · 15 years ago
  87. cf62d39 Pass the type of the block literal around to make required temporal ordering of code clearer. by Mike Stump · 15 years ago
  88. 100f402 x86_64 ABI: Handle long double in union when upper eightbyte results by Daniel Dunbar · 15 years ago
  89. 5e27314 IRgen support for weak_import. by Daniel Dunbar · 15 years ago
  90. ee09422 Complete __Block_byref_id_object_copy cogegen for block literals. by Mike Stump · 15 years ago
  91. 1851b68 Finish off __Block_byref_id_object_dispose codegen for block literals. by Mike Stump · 15 years ago
  92. 416d92e Remove extra arg. by Mike Stump · 15 years ago
  93. 45031c0 More codegen support for the copy/dispose helpers for block literals. by Mike Stump · 15 years ago
  94. a4f668f Framework for codegen for copy/dispose helpers. by Mike Stump · 15 years ago
  95. ede8de9 Cleanup EH a bit given changes to ObjCCatchStmt. - No functionality change. by Daniel Dunbar · 15 years ago
  96. fe34557 Don't mangle names of local variables. by Daniel Dunbar · 15 years ago
  97. d61a50a More function stop for objc2's ivar layout bit map. by Fariborz Jahanian · 15 years ago
  98. d80d81b Adds a template for a function for objc2's gc's ivar layout bitmap. by Fariborz Jahanian · 15 years ago
  99. 00470a1 prep work for copy/destroy helpers for block literals. by Mike Stump · 15 years ago
  100. 7d22bf0 if we die in IR generation of a compound statement, include by Chris Lattner · 15 years ago