1. 1a5e0d7 Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 15 years ago
  2. 1bc5c03 Don't try to generate common globals for C++ files, instead of depending on the FE to set NoCommon, and simplify CodeGenOptions initialization. by Daniel Dunbar · 15 years ago
  3. 15233e5 Simplify and fix up the handling of implicit constructors, copy assignment by Eli Friedman · 15 years ago
  4. bd94ab9 Use new getLinkage() method to correctly compute whether a variable has by Eli Friedman · 15 years ago
  5. 1fe598c Ignore constructor member templates in CodeGenModule::EmitTopLevelDecl. by Anders Carlsson · 15 years ago
  6. f981bf8 Mangler: Lift shouldMangleDeclName predicate out of CXXNameMangler::mangle. by Daniel Dunbar · 15 years ago
  7. 94fd26d IRgen: Switch the C++ mangler interfaces to take the SmallVector to write into, by Daniel Dunbar · 15 years ago
  8. 1b07711 Sink free mangle* methods into MangleContext. by Daniel Dunbar · 15 years ago
  9. bbd37c6 Added rudimentary C++0x attribute support. by Sean Hunt · 15 years ago
  10. a84b404 Fixup key function calculations. by Mike Stump · 15 years ago
  11. 5858894 Improve instantiation control for rtti data and allow key functions to by Mike Stump · 15 years ago
  12. 9d0c661 Skip over shadow using decls during codegen. by John McCall · 15 years ago
  13. fd01535 The ssp and sspreq function attributes should only be applied to function definitions, not declarations or calls. by Anders Carlsson · 15 years ago
  14. 7eb79c1 Make GetAddrOfConstantStringFromLiteral return a constant of the correct type. by Eli Friedman · 15 years ago
  15. 2811ccf Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. by Chandler Carruth · 15 years ago
  16. 654ad40 Rearrange function to avoid recursive use-after-free. by Eli Friedman · 15 years ago
  17. 78f7ece add missing #include by Chris Lattner · 15 years ago
  18. 393c247 Added support for static variables which require by Fariborz Jahanian · 15 years ago
  19. 7d9c3c9 Implement proper linkage for explicit instantiation declarations of by Douglas Gregor · 15 years ago
  20. 7ced9c8 Introduce FunctionDecl::isInlined() to tell whether a function should by Douglas Gregor · 15 years ago
  21. 0130f3c Rename FunctionDecl::isInline/setInline to by Douglas Gregor · 15 years ago
  22. 8e2efcc Add a PrettyStackTraceDecl in CodeGenModule::EmitGlobalDefinition. by Anders Carlsson · 15 years ago
  23. 9f0306d assert -> llvm_unreachable by Douglas Gregor · 15 years ago
  24. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  25. a0f00a7 Fix a thinko that John pointed out by Douglas Gregor · 15 years ago
  26. 1028c9f Give explicit and implicit instantiations of static data members of by Douglas Gregor · 15 years ago
  27. aa40454 Copy metadata associated with CI by Devang Patel · 15 years ago
  28. 278b9f0 fix some cfstring related issues: by Chris Lattner · 15 years ago
  29. 00549fc unbreak test/CodeGen/builtins.c, reverting Devang's change. by Chris Lattner · 15 years ago
  30. 9c09570 Check void type before using replaceAllUsesWith(). by Devang Patel · 15 years ago
  31. 70cf530 Remove extra white space line. by Devang Patel · 15 years ago
  32. 3b122bc Do not check use_empty() before invoking replaceAllUsesWith(). by Devang Patel · 15 years ago
  33. 3c0ef8c Simplify pointer creation with the new Type::getInt*Ptr methods. by Benjamin Kramer · 15 years ago
  34. dbd920c Move the vtable builder to CGVtable.cpp, general cleanup. by Anders Carlsson · 15 years ago
  35. 74d644a If a global initializer has a non-trivial constructor or destructor, we never want to defer generation of it, even if it is declared static. by Anders Carlsson · 15 years ago
  36. b540491 Add a MangleContext and pass it to all mangle functions. It will be used for keeping state, such as identifiers assigned to anonymous structs as well as scope encoding. by Anders Carlsson · 15 years ago
  37. bd6dbd1 Fix thinko and simplify. by Mike Stump · 15 years ago
  38. fb51ddf Ensure we have atleast 2-byte alignment for member functions. by Mike Stump · 15 years ago
  39. f55314d Respect alignments better. by Mike Stump · 15 years ago
  40. ffbb15e Use new predicates for some type equality tests. by Benjamin Kramer · 15 years ago
  41. 9aeed32 Anonymous namespaces, sema + codegen. A lot of semantics are still broken, by John McCall · 15 years ago
  42. 018837b Handle namespace aliases. by Anders Carlsson · 15 years ago
  43. f015b03 Revert "Switch a few clients over to StringLiteral::getString.", this is breaking some projects, but I don't have a test case yet. by Daniel Dunbar · 15 years ago
  44. df4eee9 Switch a few clients over to StringLiteral::getString. by Daniel Dunbar · 15 years ago
  45. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  46. 34771b5 Fix subtle bug in generating LLVM function declarations for builtin functions. by Daniel Dunbar · 15 years ago
  47. 1fc09a9 Rework the way we determine whether an externally visible symbol is by Douglas Gregor · 15 years ago
  48. ca6408c Change CodeGenModule::ConstructTypeAttributes to return the calling convention by Daniel Dunbar · 15 years ago
  49. 48a83b5 Remove unnecessary ASTContext parameters from isMain and isExternC by Douglas Gregor · 15 years ago
  50. 8a9f3fd Set the calling convention based on the CGFunctionInfo. by Daniel Dunbar · 15 years ago
  51. 555b4bb GlobalDecl doesn't have an explicit constructor anymore. by Anders Carlsson · 15 years ago
  52. 4a6835e Add stricter GlobalDecl constructors. by Anders Carlsson · 15 years ago
  53. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  54. d0e3daf Improve the AST representation and semantic analysis for extern by Douglas Gregor · 15 years ago
  55. 4fe95f9 Don't generate any code for an explicit call to a trivial destructor. by Douglas Gregor · 15 years ago
  56. dd9967a Don't try to CodeGen using directives, from Anders Johnsen by Douglas Gregor · 15 years ago
  57. 1feade8 Regularize the case and sort. by Mike Stump · 15 years ago
  58. 293361a Emit conversion functions correctly. by Anders Carlsson · 15 years ago
  59. b193a41 Patch toward synthesizing non-trivial destructors. WIP by Fariborz Jahanian · 15 years ago
  60. 5add683 No need to append extra padding now that we don't create packed structs for simple cases like the constant string. by Anders Carlsson · 15 years ago
  61. 183d718 Fixed a bug in ir-gen for copy assignment synthesis. by Fariborz Jahanian · 15 years ago
  62. 0032b27 Update for LLVM API change. by Owen Anderson · 15 years ago
  63. ad25883 Patch to force synthesis of copy assignment operator by Fariborz Jahanian · 15 years ago
  64. 2198ba1 Patch for synthesizing copy assignment operator. WIP. by Fariborz Jahanian · 15 years ago
  65. e649412 ir-gen support for anonymous union data member by Fariborz Jahanian · 15 years ago
  66. 8c64e00 Support for anonymous union in ctor's initializer and by Fariborz Jahanian · 15 years ago
  67. 89ed31d Add support for global initializers. by Anders Carlsson · 15 years ago
  68. 80e4b9e Remove use of uninitized variable. by Fariborz Jahanian · 15 years ago
  69. 97a9375 More synthesis of copy constructors. Work in progress. by Fariborz Jahanian · 15 years ago
  70. 9889652 Patch toward synthesizing copy constructors. Work in progress. by Fariborz Jahanian · 15 years ago
  71. 47a434f Update for LLVM API change. by Owen Anderson · 15 years ago
  72. e78b86f weak globals that are const should get weak_odr linkage. by Chris Lattner · 15 years ago
  73. 309457d rdar://7119244 - globals with an explicit section specified don't get by Chris Lattner · 15 years ago
  74. 434da48 Make sure UTF-16 strings end with a 16-bit null (as opposed to 8-bit). by Daniel Dunbar · 15 years ago
  75. c43f2f4 Whoops, meant to delete this. by Anders Carlsson · 15 years ago
  76. b0d0ea0 use CodeGenModule::EmitNullConstant in a couple of places. by Anders Carlsson · 15 years ago
  77. f976be8 Don't error on C++ linkage; if we don't support that, there are by Eli Friedman · 15 years ago
  78. c9c88b4 Update for LLVM API change. by Owen Anderson · 15 years ago
  79. c7ff8e1 Synthesize the default constructor which has not been declared as needed. by Fariborz Jahanian · 15 years ago
  80. 03e2050 Update for LLVM API changes. by Owen Anderson · 15 years ago
  81. 96e0fc7 Update for LLVM API change. by Owen Anderson · 15 years ago
  82. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  83. 3c4972d Update for LLVM API change. by Owen Anderson · 15 years ago
  84. 7db6d83 Update for LLVM API change. by Owen Anderson · 15 years ago
  85. 08e2524 Update for LLVM API change. by Owen Anderson · 15 years ago
  86. 4a28d5d Update for LLVM API change. by Owen Anderson · 15 years ago
  87. 70ee975 Output UTF-16 string literals independent of host byte order. by Daniel Dunbar · 15 years ago
  88. 1d55291 Factor out map lookup for CFString constants. by Daniel Dunbar · 15 years ago
  89. ec586e7 Simplify, NFC. by Daniel Dunbar · 15 years ago
  90. 2a3856a Simplify. by Daniel Dunbar · 15 years ago
  91. ad64e02 fix objc codegen to not have its own list of things that eventually get into llvm.used, just by Chris Lattner · 15 years ago
  92. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  93. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  94. 9d4a15f use CreateRuntimeVariable to get __CFConstantStringClassReference by Chris Lattner · 15 years ago
  95. 95b851e codegen string literals using private linkage now like llvm-gcc, eliminating by Chris Lattner · 15 years ago
  96. a1cf15f Update for LLVM API change, and contextify a bunch of related stuff. by Owen Anderson · 15 years ago
  97. 6dba432 Revert 75648 for now. It is causing test failures. by Devang Patel · 15 years ago
  98. 61b5f3e Use LLVM mangler to get mangled name for debug info entry. by Devang Patel · 15 years ago
  99. 6924382 Update for LLVM API change. by Owen Anderson · 15 years ago
  100. 1c431b3 Update for LLVM API change. by Owen Anderson · 15 years ago