1. 9fc6a77 More refactoring around constructor/destructor code generation. by John McCall · 14 years ago
  2. 6065e02 Dump this-adjustments for destructors as well. by Anders Carlsson · 14 years ago
  3. d46f985 Re-introduce the ctor/dtor alias optimization, this time hidden behind a by John McCall · 14 years ago
  4. 11062e1 Patch removes IVars list from ObjCInterfaceDecl and by Fariborz Jahanian · 14 years ago
  5. c0ea885 remove unused function & enumerations by Blaine Garst · 14 years ago
  6. 8e51a1f Revert the ctor/dtor alias optimization for now; the buildbots can detect by John McCall · 14 years ago
  7. 3b47733 Make deleting and complete dtor variants defer to other dtor variants by by John McCall · 14 years ago
  8. 71b202e Attempt to fix the 32-bit test failures. by Anders Carlsson · 14 years ago
  9. 8b6765f Fix another bug and add another class. by Anders Carlsson · 14 years ago
  10. eb577d0 More work on vcall offsets. by Anders Carlsson · 14 years ago
  11. 60cc72a Start stubbing out vcall offset handling. by Anders Carlsson · 14 years ago
  12. 96309c4 Store the base offset of the final overrider in the OverriderInfo struct, to be used for vcall offsets. by Anders Carlsson · 14 years ago
  13. 588f91a Remove some dead code. by Anders Carlsson · 14 years ago
  14. a355e07 Extract out function-body code generation into its own method. No functionality by John McCall · 14 years ago
  15. 04a2311 silence warning in a cleaner way by Chris Lattner · 14 years ago
  16. 0b63ba4 Patch to remove arbitrary imporation of 'self' into by Fariborz Jahanian · 14 years ago
  17. 1d04e83 Did not intend to check this in. by Fariborz Jahanian · 14 years ago
  18. 2f14c4d Use proper lexcial context for newly added ivars. by Fariborz Jahanian · 14 years ago
  19. d5c7cca Make FinalOverriders handle virtual bases correctly. Unfortunately this can't be tested just yet. by Anders Carlsson · 14 years ago
  20. c84a8bf Handle primary bases in AddVCallOffsets. by Anders Carlsson · 14 years ago
  21. daa401c Silence GCC warning by marking an assert-only variable as unused. by Chandler Carruth · 14 years ago
  22. d9a6704 First cut at emitting vcall offsets. by Anders Carlsson · 14 years ago
  23. 92ac9ff Emit complete constructors and destructors as aliases to base constructors by John McCall · 14 years ago
  24. 340963f Pass through whether a base is virtual or not. by Anders Carlsson · 14 years ago
  25. a446ecd implement EmitVAArg. pretty much the same way other targets do. by Sanjiv Gupta · 14 years ago
  26. 6362fe6 Correctly calculate base offsets for 'this' pointer adjustments involving virtual bases. This can't be tested yet due to lack of vcall offsets :) by Anders Carlsson · 14 years ago
  27. 2504941 IRgen optimization: cache the value of 'this' and 'vtt' instead of by John McCall · 14 years ago
  28. d19429f Distinguish two lexical blocks at the same level. by Devang Patel · 14 years ago
  29. 647a1ec IRgen: Switch 'retval' to use CreateIRTemp. by Daniel Dunbar · 14 years ago
  30. 9bd4da2 IRgen: Add CreateIRTemp, which creates a temporary alloca but with type converted "not-for-memory". Dunno a better name. by Daniel Dunbar · 14 years ago
  31. 1500657 IRgen: Switch EmitCompoundLiteralLValue to use CreateMemTemp. by Daniel Dunbar · 14 years ago
  32. 69dc04e Handle layout of vtables for virtual bases. by Anders Carlsson · 14 years ago
  33. 89ad421 Move some code around in preparation for virtual base vtables. by Anders Carlsson · 14 years ago
  34. c7b6316 Fix a bug where we would not emit secondary vtables for bases of a primary base. by Anders Carlsson · 14 years ago
  35. 852213e Emit vbase offsets. by Anders Carlsson · 14 years ago
  36. a661a54 More work on the new layout code. by Anders Carlsson · 14 years ago
  37. bff225e When emitting complete destructors for classes with virtual bases, compute by John McCall · 14 years ago
  38. a92d613 Use getLocStart(), instead of getLocEnd(), to record starting location of objc method. :) by Devang Patel · 14 years ago
  39. f177d9d Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 14 years ago
  40. 63efd33 When emitting an aggregate into a temporary, make sure we set the alignment by John McCall · 14 years ago
  41. b828afa Don't compute final overriders or build vtables for bases that don't need a vtable. by Anders Carlsson · 14 years ago
  42. 8f7af12 Build fix. by Anders Carlsson · 14 years ago
  43. 9d6f0d5 Baby steps towards teaching FinalOverriders about virtual bases. by Anders Carlsson · 14 years ago
  44. c587429 Don't try to layout construction vtables for now. by Anders Carlsson · 14 years ago
  45. e67dc30 Improve support for non-virtual 'this' pointer adjustments. With this, it should be possible to use the new vtable layout code for all class hierarchies that do not involve virtual bases. by Anders Carlsson · 14 years ago
  46. 49bac9a Add basic support for simple non-virtual 'this' pointer adjustments. by Anders Carlsson · 14 years ago
  47. df31af1 Add support for very simple non-virtual this adjustments in the FinalOverriders class. by Anders Carlsson · 14 years ago
  48. f877df1 Cleanup; remove some duplicated code. by Anders Carlsson · 14 years ago
  49. 74c364e Assert if we encounter this adjustments. by Anders Carlsson · 14 years ago
  50. 76f1aa7 Start laying out secondary vtables. by Anders Carlsson · 14 years ago
  51. a469988 Merge base offsets and dump them. by Anders Carlsson · 14 years ago
  52. 1d05be5 Don't make return adjustments for pure virtual member functions. by Anders Carlsson · 14 years ago
  53. 60db0ee Handle virtual bases in return adjustment types. by Anders Carlsson · 14 years ago
  54. a4a5417 Handle virtual bases in ComputeBaseOffset. by Anders Carlsson · 14 years ago
  55. 7dbf47a More work on covariant return types. We now handle non-virtual adjustments fine. by Anders Carlsson · 14 years ago
  56. 74f7293 Emit the 'alignstack' LLVM function attribute when we encounter a function by Charles Davis · 14 years ago
  57. fd3194b Fix think-o, attributes can't come *within* the type of the variable. by Chandler Carruth · 14 years ago
  58. e087f07 Silence unused variable warning in a build without assertions. by Chandler Carruth · 14 years ago
  59. 03d15f0 Remove dead {include, semicolon, variable}. by Benjamin Kramer · 14 years ago
  60. e3d0b1c Use a different name for this iterator. MSVC and clang++ didn't like "I" in the same scope twice. by Benjamin Kramer · 14 years ago
  61. 0c0eeb2 More work on return type adjustments in the new vtable builder. by Anders Carlsson · 14 years ago
  62. 7fe0b9e Switch the standard DeclarationName comparator to be a tri-valued comparator. by John McCall · 14 years ago
  63. 4967762 if-0 out printf. by Eli Friedman · 14 years ago
  64. c1eec89 Fix a refacto that broke the clang-on-clang build. by Anders Carlsson · 14 years ago
  65. 104f45c Start stubbing out more of the covariant thunk support. by Anders Carlsson · 14 years ago
  66. 16b7312 Keep track of whether a final overrider needs a return type adjustment. by Anders Carlsson · 14 years ago
  67. a757582 Move overrider out into a separate struct. by Anders Carlsson · 14 years ago
  68. 28cbc8b Keep track of the address points for all primary bases, and add the ability to dump multiple address points for a single offset. by Anders Carlsson · 14 years ago
  69. 9605895 Fix a bug causing an assertion when a covariant return type differed from by John McCall · 14 years ago
  70. 57071e2 More work on vtable layout. We can now layout vtables with primary bases. by Anders Carlsson · 14 years ago
  71. 9824142 When dumping vtables, dump whether a virtual member function is pure or not. by Anders Carlsson · 14 years ago
  72. b8358d8 More work on the final overriders. by Anders Carlsson · 14 years ago
  73. 4835fdd Do not ignore anonymous records. by Devang Patel · 14 years ago
  74. 4cb159c Cache new compile unit. by Devang Patel · 14 years ago
  75. bdf73d8 Stub out the final overriders class. by Anders Carlsson · 14 years ago
  76. 9abb273 Use getAs instead of cast/dyn_cast on types. (I'm sure Doug will appreciate this). by Anders Carlsson · 14 years ago
  77. 9a14060 Move two functions to the top. No functionality change. by Anders Carlsson · 14 years ago
  78. 848fa64 More vtable layout dumper improvements. Handle destructors, dump the complete function type of the member functions (using PredefinedExpr::ComputeName. by Anders Carlsson · 14 years ago
  79. 822307b Keep track of, and dump, vtable address points. by Anders Carlsson · 14 years ago
  80. 824d7ea Check in the beginnings of my new vtable layout builder idea. by Anders Carlsson · 14 years ago
  81. 3d2c43e Remove use of 'std::string' from Attr objects, using instead a byte by Ted Kremenek · 14 years ago
  82. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 14 years ago
  83. 952b017 Eliminate the ASTContext parameter from RecordDecl::getDefinition() by Douglas Gregor · 14 years ago
  84. 263c4de Generate the objc_read_weak API when calling by Fariborz Jahanian · 14 years ago
  85. c0f3df3 hopefully silence a warning on the clang-i386-darwin9 tester. by Chris Lattner · 14 years ago
  86. b2987d1 Switch to using -fsjlj-exceptions instead of hard-coding it. Notably, this fixes by Daniel Dunbar · 14 years ago
  87. 809b9bb Refactor code that generates debug info for variables that has BlocksAttr. by Devang Patel · 14 years ago
  88. d263e7b Use current location as the location of compiler generated arguments, e.g. self, _cmd etc. by Devang Patel · 14 years ago
  89. 74a8bbf StringRefize two random methods, remove a dead variable and a weird constructor call. by Benjamin Kramer · 14 years ago
  90. d5322da Fix virtual bases' debug info. by Devang Patel · 14 years ago
  91. 337472d Mark implicit "this" argument as an artificial argument. by Devang Patel · 14 years ago
  92. 195337d IRgen: Add CreateMemTemp, for creating an temporary memory object for a particular type, and flood fill. - CreateMemTemp sets the alignment on the alloca correctly, which fixes a great many places in IRgen where we were doing the wrong thing. by Daniel Dunbar · 14 years ago
  93. a3fe284 Pass inline keyword to optimizer as the new InlineHint function attribute. by Jakob Stoklund Olesen · 14 years ago
  94. e86bcf0 Reapply r95393, without the change to CGExpr. I was wrong in assuming that the by Daniel Dunbar · 14 years ago
  95. 8878686 Emit global references with constant initializers as constants. Fixes PR5585. by John McCall · 14 years ago
  96. 1851a12 Make sure to set vtable pointers in the destructors as well. by Anders Carlsson · 14 years ago
  97. 585fa68 Use the right type when taking the address of a non-virtual member function pointer. Fixes PR6258. by Anders Carlsson · 14 years ago
  98. f6b89a1 Use the right linkage for static variables inside C++ inline functions. by Anders Carlsson · 14 years ago
  99. 39de84d Improved handling of the visibility attribute. Declarations now inherit their parent's visibility. by Anders Carlsson · 14 years ago
  100. a994ee4 Make EmitStartEHSpec and EmitEndEHSpec return early when exceptions are disabled. by Anders Carlsson · 14 years ago