1. 1de4d4e Basic, untested implementation for an "unknown any" type requested by LLDB. by John McCall · 14 years ago
  2. 0ac2cf4 If this is an intrinsic function, set the function's attributes to the intrinsic's attributes. by Peter Collingbourne · 14 years ago
  3. 4421d2b On Mac OS X, the presence of an 'availability' attribute for that by Douglas Gregor · 14 years ago
  4. e80d567 Update type cache when a type is completed. Radar 9168773 by Devang Patel · 14 years ago
  5. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 14 years ago
  6. 60be607 Simplify Mac runtime selection - it's the factory function's job to select which class to produce, not CodeGenModule's. by David Chisnall · 14 years ago
  7. e81ac69 The emission of an Objective-C++'s class .cxx_destruct method should be by John McCall · 14 years ago
  8. 207f4d8 Add support for language-specific address spaces. On top of that, by Peter Collingbourne · 14 years ago
  9. 3209669 The Darwin kernel does not provide useful guard variable support. by John McCall · 14 years ago
  10. 827bbcc Remove code that was intentionally generating bad code on the GNU runtime for no reason (failing to emit .cxx_constructor / .cxx_destructor methods). by David Chisnall · 14 years ago
  11. dc0f137 Switch from internal to linker_private linkage, it is sufficient to please the new linker. by Rafael Espindola · 14 years ago
  12. 584acf2 Fix link of libxul with LTO and the linker in xcode4. It is not clear if this by Rafael Espindola · 14 years ago
  13. 1f6f961 Fix three of the four places where I left breadcrumbs to avoid unnecessary by John McCall · 14 years ago
  14. d26bc76 Use the "undergoes default argument promotion" bit on parameters to by John McCall · 14 years ago
  15. aa11289 DebugInfo can be enabled or disabled at function level (e.g. using an attribute). However, at module level it is determined by command line option and the state of command line option does not change during compilation. Make this layering explicit and fix accidental cases where the code generator was checking whether module has debug info enabled instead of checking whether debug info is enabled for this function or not. by Devang Patel · 14 years ago
  16. 5de7a0e Do not emit stop point for CXXDefaultArgExpr. It results in suboptimial user experience. by Devang Patel · 14 years ago
  17. 9de4342 StringRefify. by Benjamin Kramer · 15 years ago
  18. 3469585 Reorganize the emission of local variables. by John McCall · 15 years ago
  19. 15e310a Warn about code that uses variables and functions with internal linkage by John McCall · 15 years ago
  20. 5936e33 Assorted cleanup: by John McCall · 15 years ago
  21. c4850c2 Use raw_svector_ostream in more places in the mangler. by Rafael Espindola · 15 years ago
  22. a29bf41 When IRgen refers to a function declaration that is not a definition, by Douglas Gregor · 15 years ago
  23. d16c2cf Reorganize CodeGen{Function,Module} to eliminate the unfortunate by John McCall · 15 years ago
  24. 1faa89f Re-land r124768, with a fix for PR9130. by Anders Carlsson · 15 years ago
  25. 53bad4e minor refactoring of -fapple-kext stuff. by Fariborz Jahanian · 15 years ago
  26. fd0f89d What was I thinking? by Fariborz Jahanian · 15 years ago
  27. 142f9e9 -fapple-kext cannot have 'weak' visibility in this abi. by Fariborz Jahanian · 15 years ago
  28. 01de7a4 Revert 124768. by Rafael Espindola · 15 years ago
  29. aedd9d5 Don't try to mark virtual members referenced for classes where the key function by Anders Carlsson · 15 years ago
  30. 071d3af Revert 124633. The linker has been told how to merge available_externally. by Rafael Espindola · 15 years ago
  31. 517ebc6 Set visibility for available_externally globals. This is important for two reasons: by Rafael Espindola · 15 years ago
  32. 6d7f847 When building with optimizations, emit vtables where the key is not in the by Anders Carlsson · 15 years ago
  33. c7e98fa Move GetLLVMVisibility to CodeGenModule. by Anders Carlsson · 15 years ago
  34. 9a86a13 Add RTTIBuilder::GetAddrOfTypeName which uses the newly added CreateOrReplaceCXXRuntimeVariable. by Anders Carlsson · 15 years ago
  35. fa2e99f Change CodeGenModule::setTypeVisibility to take a TypeVisibilityKind enum instead of an "IsForRTTI" flag. by Anders Carlsson · 15 years ago
  36. 934176f Replace an isa/cast with a dyn_cast. by Anders Carlsson · 15 years ago
  37. 0ffeaad Get rid of an unneeded parameter from setGlobalVisibility. by Anders Carlsson · 15 years ago
  38. 96eaf29 Use CGM.CreateOrReplaceCXXRuntimeVariable in CGVTables.cpp by Anders Carlsson · 15 years ago
  39. 3bd6202 Add a new function, to be used by CGRTTI, CGVTables and CGVTT (which each has their own copy of this code). by Anders Carlsson · 15 years ago
  40. 3b8037a Replace a literal '8' with getCharWidth(). by Ken Dyck · 15 years ago
  41. c93a776 Remove IsDefinition from CodeGenModule::setTypeVisibility; it is always true. by Anders Carlsson · 15 years ago
  42. f502d93 Mark VTables and RTTI data linkonce_odr instead of weak_odr, with the exception of explicit template instantiations, which have to be weak_odr. by Anders Carlsson · 15 years ago
  43. 15f6765 Use a FunctionType::get overload that doesn't require an empty vector. by Benjamin Kramer · 15 years ago
  44. c532b50 Add unnamed_addr in CreateRuntimeVariable. by Rafael Espindola · 15 years ago
  45. 06f486e Replace calls to CharUnits::fromQuantity() with ones to by Ken Dyck · 15 years ago
  46. d3d4e1e More unnamed_addr. by Rafael Espindola · 15 years ago
  47. 803d307 merge strings created by const NSConstantString *appKey = @"MyApp"; by Rafael Espindola · 15 years ago
  48. b266a1f Add unnamed_addr to the special strings created by by Rafael Espindola · 15 years ago
  49. 1411047 Move name mangling support from CodeGen to AST. In the by Peter Collingbourne · 15 years ago
  50. b1c65ff Set unnamed_addr for type infos that we are confortable marking as hidden. I by Rafael Espindola · 15 years ago
  51. c5f657f Add unnamed_addr to constructors and destructors. by Rafael Espindola · 15 years ago
  52. 1257bc6 Add unnamed_addr when creating artificial string globals. For example, in by Rafael Espindola · 15 years ago
  53. 9f0c7cc Simplify mem{cpy, move, set} creation with IRBuilder. by Benjamin Kramer · 15 years ago
  54. bfdcdc8 Set the "implicitly inline" bit on a method as soon as we see a definition by John McCall · 15 years ago
  55. a6cf1e7 Add support for the common and nocommon attributes. by Eric Christopher · 15 years ago
  56. 3030eb8 Simplify the logic for emitting guard variables for template static by John McCall · 15 years ago
  57. 112c967 Ensure that static local variables in function templates inherit the by John McCall · 15 years ago
  58. af14603 Better solution: calculate the visibility of functions and variables by John McCall · 15 years ago
  59. 110e8e5 Restore r117644, this time properly ignoring -fvisibility and type visibility by John McCall · 15 years ago
  60. 034f55c Revert r117644, "Apply visibility in IR gen to variables that are merely by Daniel Dunbar · 15 years ago
  61. 87a4ed9 Apply visibility in IR gen to variables that are merely declared by John McCall · 15 years ago
  62. 354e712 Do the guarding of instantiated static data members by Fariborz Jahanian · 15 years ago
  63. 1fb0caa Substantially revise how clang computes the visibility of a declaration to by John McCall · 15 years ago
  64. 4c73307 This patch implements Next's IRGen for -fconstant-string-class=class-name. by Fariborz Jahanian · 15 years ago
  65. 0b5c4fc Experimental TBAA support for enum types. by Dan Gohman · 15 years ago
  66. 4376c85 Don't leak the TBAA object. by Dan Gohman · 15 years ago
  67. 3d5aff5 Experimental TBAA support. by Dan Gohman · 15 years ago
  68. 2c6899f lib/CodeGen/CodeGenModule.cpp: DLLImportLinkage should be processed also on declaration. by NAKAMURA Takumi · 15 years ago
  69. dd0cb22 Add support for attribute((naked)), patch by Zoxc on cfe-commits! by Daniel Dunbar · 15 years ago
  70. 3e9438b Kill FunctionDecl's IsCopyAssignment bit; it duplicated what could by Douglas Gregor · 15 years ago
  71. b259383 Opportunistically use the C++ personality function in ObjC++ by John McCall · 15 years ago
  72. e7ddfb9 get rid of a warning. by Fariborz Jahanian · 15 years ago
  73. 7da7102 Have Sema check for validity of CGString literal by Fariborz Jahanian · 15 years ago
  74. 4c40d98 Teach IR generation to return 'this' from constructors and destructors by John McCall · 15 years ago
  75. d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 15 years ago
  76. 000835d Support for IRGen of synthesize bitfield ivars in by Fariborz Jahanian · 15 years ago
  77. f16aa10 Go back to asking CodeGenTypes whether a type is zero-initializable. by John McCall · 15 years ago
  78. ee79a4c The ARM C++ ABI is sufficiently different from the Itanium C++ ABI that by John McCall · 15 years ago
  79. 20cf717 Add some enum goodness as requested by Chris. Now instead of storing the by Charles Davis · 15 years ago
  80. cf807c4 Generate Attr subclasses with TableGen. by Sean Hunt · 15 years ago
  81. 2f4eaef Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() by Benjamin Kramer · 15 years ago
  82. 279b5eb Just disable the hidden-visibility optimization for now by hiding it behind by John McCall · 15 years ago
  83. 91f31dc Thread local variables aren't considered common linkage. by Eric Christopher · 15 years ago
  84. 7a53690 It turns out that linkers (at least, the Darwin linker) don't necessarily by John McCall · 15 years ago
  85. aa8b0d1 Implement #pragma GCC visibility. by Eli Friedman · 15 years ago
  86. cbfe502 Emit standard-library RTTI with external linkage, not weak_odr. by John McCall · 15 years ago
  87. 4ac7c0b Change the name to something less terrible; suggestion by Doug. No functionality change. by Argyrios Kyrtzidis · 15 years ago
  88. 90e99a8 Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 15 years ago
  89. 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 · 15 years ago
  90. a6d6af3 Revert r109546, it broke linux build. by Argyrios Kyrtzidis · 15 years ago
  91. ee94e2d Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 15 years ago
  92. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 15 years ago
  93. 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 15 years ago
  94. 673431a IRgen: Move blocks runtime interfaces to CodeGenModule. by Daniel Dunbar · 15 years ago
  95. bf40cb5 When deferring the emission of declarations with initializers in C++, remember by John McCall · 15 years ago
  96. 7feaeee Don't suppress the emission of available_externally functions marked by Douglas Gregor · 15 years ago
  97. 44eac33 Reinstate the optimization suppressing available_externally functions by Douglas Gregor · 15 years ago
  98. 27cc633 Speculatively revert r108156; it appears to be breaking self-host. by Douglas Gregor · 15 years ago
  99. 7ce1f27 Do not generate LLVM IR for available_externally function bodies at by Douglas Gregor · 15 years ago
  100. 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 · 15 years ago