1. 0dec1e0 IRGen for initialization/destruction of by Fariborz Jahanian · 16 years ago
  2. d06fb86 Properly pass the address of a lazily-generated function declaration with by John McCall · 16 years ago
  3. d3fa701 More -fno-constant-cfstrings API work. by Fariborz Jahanian · 16 years ago
  4. e804c28 More work toward implementing NeXt's -fno-constant-cfstrings - wip. by Fariborz Jahanian · 16 years ago
  5. 63408e8 Support for -fno-constant-cfstrings option - wip. by Fariborz Jahanian · 16 years ago
  6. 47cf5b5 Add comment explaning the use of c99 inline in c++. by Rafael Espindola · 16 years ago
  7. 145f3f1 Fix -Wcast-qual warnings. by Dan Gohman · 16 years ago
  8. 683fe4f If a method is virtual and the class key function is in another file, emit the method as available_externally. by Rafael Espindola · 16 years ago
  9. 11e5140 Vtable -> VTable renames across the board. by Anders Carlsson · 16 years ago
  10. d8d760c unbreak tests. by Chris Lattner · 16 years ago
  11. 7a4a29f minor cleanups by Chris Lattner · 16 years ago
  12. 2e8ca0b Fix use after free. Incrementing an use_iterator after its user is erased is unsafe. by Benjamin Kramer · 16 years ago
  13. d394aec rely even less on CallInst internals by Gabor Greif · 16 years ago
  14. d0ef134 do not rely on CallInst interna, use CallSite to access arguments by Gabor Greif · 16 years ago
  15. 6936c86 Provide an extremely unsatisfactory diagnostic (instead of crashing) when by John McCall · 16 years ago
  16. eadd3ca Eliminate excessive PCH deserialization caused by the search for by Douglas Gregor · 16 years ago
  17. cc2ab0c Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 16 years ago
  18. f7f3bff Revert r100193 since it causes failures in objc in clang by Mon P Wang · 16 years ago
  19. 4b82a88 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 16 years ago
  20. e675d0f adjust to IRBuilder change and use faster DebugLoc apis. by Chris Lattner · 16 years ago
  21. be49c03 use the new optimized debug info metadata accessors. In by Chris Lattner · 16 years ago
  22. adb58e3 Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. by Bob Wilson · 16 years ago
  23. 231e997 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 16 years ago
  24. adcc1d1 When given the magic class __cxxabiv1::__fundamental_type_info, produce by Rafael Espindola · 16 years ago
  25. fa1708fd revert 99311. Looks like it broke darwin bootstrap. by Rafael Espindola · 16 years ago
  26. 4d3745a Avoid producing implicit methods when we have a explicit template instantiation by Rafael Espindola · 16 years ago
  27. af82f63 Always emit associated thunks when emitting the function itself. Remove getVtableAddressPoint, it's not used. by Anders Carlsson · 16 years ago
  28. 8841024 Rename MaybeEmitVtable to EmitVTableRelatedData in preparation for making it emit thunks as well. by Anders Carlsson · 16 years ago
  29. a864caf Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 16 years ago
  30. fe06df4 C++: Add support for -fno-use-cxa-atexit. - So much typing, so little gain... by Daniel Dunbar · 16 years ago
  31. 7ec5043 Change CodeGenModule to rely on the Module's symbol table instead of by John McCall · 16 years ago
  32. b14d123 Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 16 years ago
  33. 17b7618 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 16 years ago
  34. 89cae0f Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 16 years ago
  35. 539bc40 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 16 years ago
  36. ee3f722 Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 16 years ago
  37. e7113ca Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 16 years ago
  38. f0a0f68 Add a message to these asserts. by Benjamin Kramer · 16 years ago
  39. beec5a0 Implement __builtin_dwarf_sp_column for i386 (Darwin and not), x86-64 (all), by John McCall · 16 years ago
  40. 2e42fec Fix PR6473. by Rafael Espindola · 16 years ago
  41. 731be66 Revert changes r97693, r97700, and r97718. by John McCall · 16 years ago
  42. 9eba9df Refactor local class name mangling and make it ABI conforming. by Fariborz Jahanian · 16 years ago
  43. 6abe39c Create a TargetMachine whenever we create a CodeGenAction. The codegen of by John McCall · 16 years ago
  44. 70e040d During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 16 years ago
  45. c18086a Add support for the weakref attribute. We still produce "alias weak" as llvm-gcc does, but are more strict on what uses of weakref we accept. by Rafael Espindola · 16 years ago
  46. f8ff7b9 Perform two more constructor/destructor code-size optimizations: by John McCall · 16 years ago
  47. d432414 Re-introduce the ctor/dtor alias optimization, this time hidden behind a by John McCall · 16 years ago
  48. 334ce7c Revert the ctor/dtor alias optimization for now; the buildbots can detect by John McCall · 16 years ago
  49. 67cea74 Emit complete constructors and destructors as aliases to base constructors by John McCall · 16 years ago
  50. 7f4945a Remove use of 'std::string' from Attr objects, using instead a byte by Ted Kremenek · 16 years ago
  51. 340aafa Emit global references with constant initializers as constants. Fixes PR5585. by John McCall · 16 years ago
  52. 10d369d Improved handling of the visibility attribute. Declarations now inherit their parent's visibility. by Anders Carlsson · 16 years ago
  53. 61f6db5 Switch CodeGen's "is this variable declaration a definition?" logic by Douglas Gregor · 16 years ago
  54. 6710c53 Use the correct function info for constructors when applying function attributes. Fixes PR6245. by Anders Carlsson · 16 years ago
  55. 7dc5c17 When a function or variable somehow depends on a type or declaration by Douglas Gregor · 16 years ago
  56. 5b5d2db Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 16 years ago
  57. 5ca7984 In C++, an initializer on a variable doesn't necessarily mean it's the definition. With that in mind, rename getDefinition to getAnyInitializer (to distinguish it from getInit) and reimplement it in terms of isThisDeclarationADefinition. Update all code to use this new function. by Sebastian Redl · 16 years ago
  58. 160146e Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 16 years ago
  59. a0f99ff Use CharUnits for alignment of UTF16 string in GetAddrOfConstantCFString(). by Ken Dyck · 16 years ago
  60. ca4a545 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 16 years ago
  61. 98ca794 Introduce CodeGenModule::GetTargetTypeStoreSize() to calculate the store size by Ken Dyck · 16 years ago
  62. d6b21e4 If a global variable has an initializer with side effects, it can never be deferred (even if it's in an anonymous namespace). by Anders Carlsson · 16 years ago
  63. 481e3a8 Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 16 years ago
  64. 55bcea1 Generalize target weirdness handling having proper layering in mind: by Anton Korobeynikov · 16 years ago
  65. 34c72dd revert r92749, which is just dead code. by Chris Lattner · 16 years ago
  66. 5866fe3 Fix for PR5967: Make const-marking for LLVM globals correct for cases requiring by Eli Friedman · 16 years ago
  67. 2a34df3 Fix linkage for RTTI names by re-using the logic for computing the by Douglas Gregor · 16 years ago
  68. ccecc1b Fix marking of virtual members for nested classes whose first non-pure virtual function has a body inlined in the class by Douglas Gregor · 16 years ago
  69. a318efd Improve key-function computation for templates. In particular: by Douglas Gregor · 16 years ago
  70. 79ed590 Add code to skip the emission of available externally functions at -O0. WIP. by Mike Stump · 16 years ago
  71. 3f8e5dd strength reduce this call away. by Chris Lattner · 16 years ago
  72. 5e124bf this form of SetDebugLocation is about to go away, add some #includes that by Chris Lattner · 16 years ago
  73. 2e06e8b Some small improvements to dead code elimination; helps a bit on by Eli Friedman · 16 years ago
  74. 1615d45 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 16 years ago
  75. b095e15 Fix for PR5714: make sure globals that will be modified aren't marked const. by Eli Friedman · 16 years ago
  76. b11118b Random string-related cleanups. by Benjamin Kramer · 16 years ago
  77. 781161d Make sure that explicitly instantiated functions get the right linkage. by Anders Carlsson · 16 years ago
  78. 4f678f3 Fix for PR5709: use the computed type of the declaration instead of the by Eli Friedman · 16 years ago
  79. f2c79b6 Misc key function fixes. by Eli Friedman · 16 years ago
  80. 31bc3ad A bunch more thunk fixes from misc testing. by Eli Friedman · 16 years ago
  81. 8174f2c Work-in-progess rewrite of thunks: move thunk generation outside of vtable by Eli Friedman · 16 years ago
  82. 3efc6e6 Add rudimentary support for member pointers to CGDebugInfo. by Anders Carlsson · 16 years ago
  83. a30e175 Don't emit explicit specializations of static member variable declarations. by Anders Carlsson · 16 years ago
  84. b1d3f7c Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 16 years ago
  85. 2c11cd1 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 · 16 years ago
  86. 84a7e34 Simplify and fix up the handling of implicit constructors, copy assignment by Eli Friedman · 16 years ago
  87. 8a5f75e Use new getLinkage() method to correctly compute whether a variable has by Eli Friedman · 16 years ago
  88. 0ade971 Ignore constructor member templates in CodeGenModule::EmitTopLevelDecl. by Anders Carlsson · 16 years ago
  89. e949e6c Mangler: Lift shouldMangleDeclName predicate out of CXXNameMangler::mangle. by Daniel Dunbar · 16 years ago
  90. e128dd1 IRgen: Switch the C++ mangler interfaces to take the SmallVector to write into, by Daniel Dunbar · 16 years ago
  91. ef5d75a Sink free mangle* methods into MangleContext. by Daniel Dunbar · 16 years ago
  92. 96d5c76 Added rudimentary C++0x attribute support. by Alexis Hunt · 16 years ago
  93. a7a1b7e Fixup key function calculations. by Mike Stump · 16 years ago
  94. 1a139f8 Improve instantiation control for rtti data and allow key functions to by Mike Stump · 16 years ago
  95. 1e9de05 Skip over shadow using decls during codegen. by John McCall · 16 years ago
  96. 0d82fa6 The ssp and sspreq function attributes should only be applied to function definitions, not declarations or calls. by Anders Carlsson · 16 years ago
  97. 49ddc5f Make GetAddrOfConstantStringFromLiteral return a constant of the correct type. by Eli Friedman · 16 years ago
  98. bc55fe2 Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. by Chandler Carruth · 16 years ago
  99. cc522d9 Rearrange function to avoid recursive use-after-free. by Eli Friedman · 16 years ago
  100. 15275e5 add missing #include by Chris Lattner · 16 years ago