1. 0e2c34f Update aosp/master clang for rebase to r230699. by Stephen Hines · 9 years ago
  2. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  3. c568f1e Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  4. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  5. 651f13c Updated to Clang 3.5a. by Stephen Hines · 10 years ago
  6. 0cbb3ed Merging r195283: by Bill Wendling · 11 years ago
  7. c70cc5d Make thunk this/return adjustment ABI-specific. Also, fix the return adjustment when using -cxx-abi microsoft by Timur Iskhodzhanov · 11 years ago
  8. 5bd0d44 Initialize vtorDisp in class constructors and destructors by Timur Iskhodzhanov · 11 years ago
  9. 2cb17a0 Reland 192220 "Abstract out parts of thunk emission code, add support for simple thunks when using -cxx-abi microsoft" with relaxed assertions by Timur Iskhodzhanov · 11 years ago
  10. 0ac66c0 Revert 192220 as it fails on an assertion by Timur Iskhodzhanov · 11 years ago
  11. c3dcfa2 Abstract out parts of thunk emission code, add support for simple thunks when using -cxx-abi microsoft by Timur Iskhodzhanov · 11 years ago
  12. a53d7a0 Abstract out the emission of vtables, add basic support for vtable emission when using -cxx-abi microsoft by Timur Iskhodzhanov · 11 years ago
  13. 942f9fe [ms-cxxabi] Implement guard variables for static initialization by Reid Kleckner · 11 years ago
  14. 8f189a9 Abstract out virtual calls and virtual function prologue code generation; implement them for -cxx-abi microsoft by Timur Iskhodzhanov · 11 years ago
  15. bb1b797 Emit the constructor for abstract classes when using -cxx-abi microsoft, fixes PR16735 by Timur Iskhodzhanov · 11 years ago
  16. a4130ba [ms-cxxabi] Emit linkonce complete dtors in TUs that need them by Reid Kleckner · 11 years ago
  17. 3b50e8d Restore r184205 and associated commits (after commit of r185290) by Stephen Lin · 11 years ago
  18. e1e35f7 [ms-cxxabi] Move CodeGenVTables::needsVTTParameter to ItaniumCXXABI. by Peter Collingbourne · 11 years ago
  19. 3258abc Revert r184205 and associated patches while investigating issue with broken buildbot (possible interaction with LTO) by Stephen Lin · 11 years ago
  20. 4444dbb Corrections to r184205 ('this'-return optimization) due to the wrong version of the patch being committed originally. by Stephen Lin · 11 years ago
  21. 9063302 [ms-cxxabi] Emit and install appropriately mangled vbtables by Reid Kleckner · 11 years ago
  22. d4c0cd0 CodeGen: Have 'this'-returning constructors and destructors to take advantage of the new backend 'returned' attribute. by Stephen Lin · 11 years ago
  23. b0f533e [ms-cxxabi] Implement MSVC virtual base adjustment by Reid Kleckner · 11 years ago
  24. f632730 [ms-cxxabi] Implement member pointer conversions by Reid Kleckner · 11 years ago
  25. b80a16e Implement CodeGen for C++11 thread_local, following the Itanium ABI specification as discussed on cxx-abi-dev. by Richard Smith · 11 years ago
  26. ed23bdf Set SRet flags properly in '-cxx-abi microsoft'. by Timur Iskhodzhanov · 11 years ago
  27. 04e5176 CodeGen support for function-local static thread_local variables with by Richard Smith · 11 years ago
  28. a8a0f76 [ms-cxxabi] Implement member data pointers for non-dynamic classes by Reid Kleckner · 11 years ago
  29. 63fd408 Exploit this-return of a callsite in a this-return function. by Manman Ren · 11 years ago
  30. 7cd84ba revert r177211 due to its potential issues by Manman Ren · 11 years ago
  31. 2710ed8 Exploit this-return of a callsite in a this-return function. by Manman Ren · 11 years ago
  32. 1d4fff5 Better support for constructors with -cxx-abi microsoft, partly fixes PR12784 by Timur Iskhodzhanov · 11 years ago
  33. 0f9827f Abstract out emitting the vdtor calls and do it properly when using -cxx-abi microsoft; also fix vdtor calls for the ARM ABI by Timur Iskhodzhanov · 11 years ago
  34. 59660c2 Emit virtual/deleting destructors properly with -cxx-abi microsoft, PR15058 by Timur Iskhodzhanov · 11 years ago
  35. 96fcde0 Move the decision about the kind of CGCXXABI to make inside by John McCall · 12 years ago
  36. d5617ee The standard ARM C++ ABI dictates that inline functions are by John McCall · 12 years ago
  37. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  38. 2eb9a95 PR13684: Emit vtable entries for deleted functions as __cxa_deleted_function. by David Blaikie · 12 years ago
  39. ecd03b4 When performing a ::delete of an object with a virtual destructor, by John McCall · 12 years ago
  40. 285baac [Windows] Abstract pure virtual method calls in the ABI. Fix the Windows ABI to forward to the correct function. by Joao Matos · 12 years ago
  41. 9ee494f IRGen: Factor v-table generation into the CGCXXABI object. by Charles Davis · 12 years ago
  42. 16ae9de Documentation cleanup: making \param docs match the code. by James Dennett · 12 years ago
  43. 5900103 Documentation cleanup: escape "::" to avoid a Doxygen warning by James Dennett · 12 years ago
  44. 3b2adf2 Documentation fixes: Added \brief markup and fixed some formatting. by James Dennett · 12 years ago
  45. 20bb175 Abstract the emission of global destructors into ABI-specific code by John McCall · 12 years ago
  46. e2b45e2 Refactor the C++ ABI code a little bit to take advantage of by John McCall · 12 years ago
  47. 0f30a12 Revert r153723, and its follow-ups r153728 and r153733. by Chandler Carruth · 12 years ago
  48. 49d26d2 Do the static-locals thing properly in the face of unions and by John McCall · 12 years ago
  49. 4d4e5c1 Split reinterpret_casts of member pointers out from CK_BitCast; this by John McCall · 12 years ago
  50. 7ca4850 Deal with a horrible C++11 special case. If a non-literal type has a constexpr by Richard Smith · 12 years ago
  51. cec5ebd Basic support for referring to captured variables from lambdas. Some simple examples seem to work. Tests coming up soon. by Eli Friedman · 12 years ago
  52. 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 12 years ago
  53. e7aa62d Remove constant member pointer support from Expr-based constant emission now by Richard Smith · 13 years ago
  54. 2d6a567 constexpr irgen: Add irgen support for APValue::Struct, APValue::Union, by Richard Smith · 13 years ago
  55. d47d3b0 clean up forward declarations of raw_ostream to use the new LLVM.h by Chris Lattner · 13 years ago
  56. 686775d now that we have a centralized place to do so, add some using declarations for by Chris Lattner · 13 years ago
  57. 9cbe4f0 clang side to match the LLVM IR type system rewrite patch. by Chris Lattner · 13 years ago
  58. 755d849 After some discussion with Doug, we decided that it made a lot more sense by John McCall · 13 years ago
  59. 379b515 More __unknown_anytype work. by John McCall · 13 years ago
  60. 5808ce4 More capturing of 'this': implicit member expressions. Getting that by John McCall · 13 years ago
  61. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  62. 1411047 Move name mangling support from CodeGen to AST. In the by Peter Collingbourne · 14 years ago
  63. 1af610f Make the destructor be the 'vtable anchor' of the CGCXXABI class. by Anders Carlsson · 14 years ago
  64. 3030eb8 Simplify the logic for emitting guard variables for template static by John McCall · 14 years ago
  65. 5cd91b5 Implement ARM static local initialization guards, which are more compact than by John McCall · 14 years ago
  66. 1e7fe75 Abstract IR generation of array cookies into the C++ ABI class and by John McCall · 14 years ago
  67. 6c2ab1d Amusingly, I missed this point of abstraction in all my earlier by John McCall · 14 years ago
  68. 4c40d98 Teach IR generation to return 'this' from constructors and destructors by John McCall · 14 years ago
  69. 0bab0cd Abstract out everything having to do with member pointers into the ABI by John McCall · 14 years ago
  70. f16aa10 Go back to asking CodeGenTypes whether a type is zero-initializable. by John McCall · 14 years ago
  71. d608cdb Experiment with using first-class aggregates to represent member function by John McCall · 14 years ago
  72. e9fd7eb Extract member function pointer comparison and null comparison into by John McCall · 14 years ago
  73. 875ab10 Abstract out member-pointer creation. I'm really unhappy about the current by John McCall · 14 years ago
  74. cf2c85e Abstract more member-pointerness out. by John McCall · 14 years ago
  75. 3023def Abstract out member-pointer conversions. by John McCall · 14 years ago
  76. 93d557b Extract calls to method pointers out as an ABI routine. No functionality change. by John McCall · 14 years ago
  77. ee79a4c The ARM C++ ABI is sufficiently different from the Itanium C++ ABI that by John McCall · 14 years ago
  78. 071cc7d Implement support for member pointers under the Microsoft C++ ABI in the by Charles Davis · 14 years ago
  79. c392664 Add a stub Microsoft Visual C++ ABI class (with stub mangler). by Charles Davis · 14 years ago
  80. 3a811f1 IRgen: Add a stub class for generating ABI-specific C++ code. by Charles Davis · 14 years ago