1. 91f31dc Thread local variables aren't considered common linkage. by Eric Christopher · 14 years ago
  2. 7a53690 It turns out that linkers (at least, the Darwin linker) don't necessarily by John McCall · 14 years ago
  3. aa8b0d1 Implement #pragma GCC visibility. by Eli Friedman · 14 years ago
  4. cbfe502 Emit standard-library RTTI with external linkage, not weak_odr. by John McCall · 14 years ago
  5. 4ac7c0b Change the name to something less terrible; suggestion by Doug. No functionality change. by Argyrios Kyrtzidis · 14 years ago
  6. 90e99a8 Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 14 years ago
  7. 8670cd3 we are not supposed to create an improper callsite using a CallInstr; leave a fixme mentioning the simplification when CallSite can clone itself by Gabor Greif · 14 years ago
  8. a6d6af3 Revert r109546, it broke linux build. by Argyrios Kyrtzidis · 14 years ago
  9. ee94e2d Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 14 years ago
  10. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago
  11. 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 14 years ago
  12. 673431a IRgen: Move blocks runtime interfaces to CodeGenModule. by Daniel Dunbar · 14 years ago
  13. bf40cb5 When deferring the emission of declarations with initializers in C++, remember by John McCall · 14 years ago
  14. 7feaeee Don't suppress the emission of available_externally functions marked by Douglas Gregor · 14 years ago
  15. 44eac33 Reinstate the optimization suppressing available_externally functions by Douglas Gregor · 14 years ago
  16. 27cc633 Speculatively revert r108156; it appears to be breaking self-host. by Douglas Gregor · 14 years ago
  17. 7ce1f27 Do not generate LLVM IR for available_externally function bodies at by Douglas Gregor · 14 years ago
  18. 06a54a3 Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of getBody() when we are just checking the existence of a body, to avoid de-serialization of the body from PCH. by Argyrios Kyrtzidis · 14 years ago
  19. 744016d Provide a hook for the benefit of clients using clang IR gen as a subroutine: by John McCall · 14 years ago
  20. bcaedae Reapply: by Chris Lattner · 14 years ago
  21. f8153065 reduce nesting. by Chris Lattner · 14 years ago
  22. 564360b Patch to correctly mangle block helper functions by Fariborz Jahanian · 14 years ago
  23. 9a20d55 Switch over to the new caching version of getMangledName. by Anders Carlsson · 14 years ago
  24. 793a990 Add a new variant of getMangledName that caches the mangling for decls. by Anders Carlsson · 14 years ago
  25. af89689 Instantiations subject to an explicit template instantiation by Douglas Gregor · 14 years ago
  26. 61c6c91 Fix for PR7415: refactor CodeGenModule::MayDeferGeneration and make it less by Eli Friedman · 14 years ago
  27. 06057ce Move CodeGenOptions.h *back* into Frontend. This should have been done when the by Chandler Carruth · 14 years ago
  28. 7cf84d6 Implement -fvisibility-inlines-hidden. <rdar://problem/7819834> by Douglas Gregor · 14 years ago
  29. 98b7c5c Add an option to specify the target C++ ABI to the frontend. Use it to by Charles Davis · 14 years ago
  30. 9a8822b Get rid of getMangledCXXCtorName and getMangledCXXDtorName. by Anders Carlsson · 14 years ago
  31. afd0429 Get rid of an unnecessary getMangledName overload. by Anders Carlsson · 14 years ago
  32. c76702c When deciding whether a deferred declaration has already been emitted, by John McCall · 14 years ago
  33. 3a811f1 IRgen: Add a stub class for generating ABI-specific C++ code. by Charles Davis · 14 years ago
  34. 8b24233 If a function definition has any sort of weak linkage, its static local by John McCall · 14 years ago
  35. 1297fd7 Disable the available_externally optimization for inline virtual by Douglas Gregor · 14 years ago
  36. 6fb745b Rework when and how vtables are emitted, by tracking where vtables are by Douglas Gregor · 14 years ago
  37. b076910 Do not give implicitly-defined virtual members functions by Douglas Gregor · 14 years ago
  38. c446d18 When we emit a non-constant initializer for a global variable of by Douglas Gregor · 14 years ago
  39. 109dfc6 IRGen for initialization/destruction of by Fariborz Jahanian · 14 years ago
  40. 784f211 Properly pass the address of a lazily-generated function declaration with by John McCall · 14 years ago
  41. ec951e0 More -fno-constant-cfstrings API work. by Fariborz Jahanian · 14 years ago
  42. 2bb5dda More work toward implementing NeXt's -fno-constant-cfstrings - wip. by Fariborz Jahanian · 14 years ago
  43. 33e982b Support for -fno-constant-cfstrings option - wip. by Fariborz Jahanian · 14 years ago
  44. b1af4c8 Add comment explaning the use of c99 inline in c++. by Rafael Espindola · 14 years ago
  45. cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 14 years ago
  46. b8cab18 If a method is virtual and the class key function is in another file, emit the method as available_externally. by Rafael Espindola · 14 years ago
  47. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 14 years ago
  48. b5e8156 unbreak tests. by Chris Lattner · 14 years ago
  49. 4357a82 minor cleanups by Chris Lattner · 14 years ago
  50. dbf02bc Fix use after free. Incrementing an use_iterator after its user is erased is unsafe. by Benjamin Kramer · 14 years ago
  51. 35db3b9 rely even less on CallInst internals by Gabor Greif · 14 years ago
  52. 6ba728d do not rely on CallInst interna, use CallSite to access arguments by Gabor Greif · 14 years ago
  53. 6ae1f35 Provide an extremely unsatisfactory diagnostic (instead of crashing) when by John McCall · 14 years ago
  54. 1e201b4 Eliminate excessive PCH deserialization caused by the search for by Douglas Gregor · 14 years ago
  55. 3ecd785 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  56. c90f56d Revert r100193 since it causes failures in objc in clang by Mon P Wang · 14 years ago
  57. 8facca6 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  58. c603463 adjust to IRBuilder change and use faster DebugLoc apis. by Chris Lattner · 14 years ago
  59. aaa210c use the new optimized debug info metadata accessors. In by Chris Lattner · 14 years ago
  60. b5896c3 Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. by Bob Wilson · 14 years ago
  61. 3b5caa2 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 14 years ago
  62. d1a5c31 When given the magic class __cxxabiv1::__fundamental_type_info, produce by Rafael Espindola · 14 years ago
  63. f075b22 revert 99311. Looks like it broke darwin bootstrap. by Rafael Espindola · 14 years ago
  64. 5fb12c6 Avoid producing implicit methods when we have a explicit template instantiation by Rafael Espindola · 14 years ago
  65. 7270ee4 Always emit associated thunks when emitting the function itself. Remove getVtableAddressPoint, it's not used. by Anders Carlsson · 14 years ago
  66. 13189d0 Rename MaybeEmitVtable to EmitVTableRelatedData in preparation for making it emit thunks as well. by Anders Carlsson · 14 years ago
  67. af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 14 years ago
  68. efb0fa9 C++: Add support for -fno-use-cxa-atexit. - So much typing, so little gain... by Daniel Dunbar · 14 years ago
  69. f746aa6 Change CodeGenModule to rely on the Module's symbol table instead of by John McCall · 14 years ago
  70. 8f51a4f Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 14 years ago
  71. 34fd284 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 14 years ago
  72. 8721360 Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 14 years ago
  73. 4ea9006 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 14 years ago
  74. e5e0c9d Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 14 years ago
  75. bbf58bb Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 14 years ago
  76. d3a344c Add a message to these asserts. by Benjamin Kramer · 14 years ago
  77. 6374c33 Implement __builtin_dwarf_sp_column for i386 (Darwin and not), x86-64 (all), by John McCall · 14 years ago
  78. 6a83670 Fix PR6473. by Rafael Espindola · 14 years ago
  79. 468ec6c Revert changes r97693, r97700, and r97718. by John McCall · 14 years ago
  80. 4819ac4 Refactor local class name mangling and make it ABI conforming. by Fariborz Jahanian · 14 years ago
  81. c9fe644 Create a TargetMachine whenever we create a CodeGenAction. The codegen of by John McCall · 14 years ago
  82. 7b9a5aa During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 14 years ago
  83. 11e8ce7 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 · 15 years ago
  84. c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 15 years ago
  85. d46f985 Re-introduce the ctor/dtor alias optimization, this time hidden behind a by John McCall · 15 years ago
  86. 8e51a1f Revert the ctor/dtor alias optimization for now; the buildbots can detect by John McCall · 15 years ago
  87. 92ac9ff Emit complete constructors and destructors as aliases to base constructors by John McCall · 15 years ago
  88. 3d2c43e Remove use of 'std::string' from Attr objects, using instead a byte by Ted Kremenek · 15 years ago
  89. 8878686 Emit global references with constant initializers as constants. Fixes PR5585. by John McCall · 15 years ago
  90. 39de84d Improved handling of the visibility attribute. Declarations now inherit their parent's visibility. by Anders Carlsson · 15 years ago
  91. a9a55c0 Switch CodeGen's "is this variable declaration a definition?" logic by Douglas Gregor · 15 years ago
  92. b2bcf1c Use the correct function info for constructors when applying function attributes. Fixes PR6245. by Anders Carlsson · 15 years ago
  93. 0b6bc8b When a function or variable somehow depends on a type or declaration by Douglas Gregor · 15 years ago
  94. b9f7096 Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 15 years ago
  95. 31310a2 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 · 15 years ago
  96. 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
  97. 4da244c Use CharUnits for alignment of UTF16 string in GetAddrOfConstantCFString(). by Ken Dyck · 15 years ago
  98. 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
  99. 687cc4a Introduce CodeGenModule::GetTargetTypeStoreSize() to calculate the store size by Ken Dyck · 15 years ago
  100. d0c4792 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 · 15 years ago