1. 72390b3 Rename llvm::Attributes to llvm::Attribute. by Bill Wendling · 12 years ago
  2. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  3. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  4. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  5. c4a7790 Use empty parens for empty function parameter list instead of '(void)'. by Dmitri Gribenko · 12 years ago
  6. 4179ddd Implement codegen for init_priority attribute properly - make sure it by Anton Korobeynikov · 12 years ago
  7. c5f8046 Add codegen support for __uuidof(). by Nico Weber · 12 years ago
  8. 603571a Remove the final bits of Attributes being declared in the Attribute by Bill Wendling · 12 years ago
  9. 25a6a84 Move TargetData to DataLayout. by Micah Villmow · 12 years ago
  10. b22c7dc Add basic support for adding !tbaa.struct metadata on llvm.memcpy calls for by Dan Gohman · 12 years ago
  11. f3477c1 Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. See: http://en.wikipedia.org/wiki/If_and_only_if Commit 164766 by Sylvestre Ledru · 12 years ago
  12. 94ff8e1 Fix a typo 'iff' => 'if' by Sylvestre Ledru · 12 years ago
  13. f56faa0 Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. by Dmitri Gribenko · 12 years ago
  14. de981f3 Add -ftls-model command-line flag. by Hans Wennborg · 12 years ago
  15. 4904bf4 block literal irgen: several improvements on naming block by Fariborz Jahanian · 12 years ago
  16. 5e2d5de Support the tls_model attribute (PR9788) by Hans Wennborg · 12 years ago
  17. 4dc34eb CUDA: add CodeGen support for global variable address spaces. by Peter Collingbourne · 12 years ago
  18. e2b45e2 Refactor the C++ ABI code a little bit to take advantage of by John McCall · 12 years ago
  19. 355bba7 Make sure we unique static-local decls across multiple emissions of by John McCall · 12 years ago
  20. 0f30a12 Revert r153723, and its follow-ups r153728 and r153733. by Chandler Carruth · 12 years ago
  21. 49d26d2 Do the static-locals thing properly in the face of unions and by John McCall · 12 years ago
  22. 8cb4a07 add tbaa metadata to vtable pointer loads/stores by Kostya Serebryany · 12 years ago
  23. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  24. 71cba34 Make sure we update the static local decl address map when we are forced to rebuild a global because of the initializer. <rdar://problem/10957867>. by Eli Friedman · 12 years ago
  25. 0250393 Replace MarkVarRequired with a more generic by Rafael Espindola · 12 years ago
  26. 234fe65 Fix a small difference in sema and codegen views of what needs to be output. by Rafael Espindola · 12 years ago
  27. a3ca41f Reinstate r151879, r151880, reverted in r151922, along with a bugfix for by Richard Smith · 12 years ago
  28. 19b1a6e CodeGen support for global variables of type std::initializer_list<X>. by Sebastian Redl · 12 years ago
  29. a9b21d2 Bug fix: do not emit static const local variables with mutable members by Richard Smith · 12 years ago
  30. b49bd27 Teach clang to add metadata tags to calls and invokes in ObjC with by Dan Gohman · 12 years ago
  31. 7ca4850 Deal with a horrible C++11 special case. If a non-literal type has a constexpr by Richard Smith · 12 years ago
  32. 8b41868 simplify a bunch of code to use the well-known LLVM IR types computed by CodeGenModule. by Chris Lattner · 12 years ago
  33. 0b23971 use cheaper llvm APIs for various bits of IR generation. by Chris Lattner · 12 years ago
  34. 3026348 More dead code removal (using -Wunreachable-code) by David Blaikie · 12 years ago
  35. 2d6a567 constexpr irgen: Add irgen support for APValue::Struct, APValue::Union, by Richard Smith · 13 years ago
  36. b08cfb3 objc++: more atomic property api code for c++ object properties. wip. by Fariborz Jahanian · 13 years ago
  37. cd93b96 objc++: more code gen stuff for atomic property api, by Fariborz Jahanian · 13 years ago
  38. bcf6b98 Extend the fix for PR9614 to handle inline asm in the outer decl and by Rafael Espindola · 13 years ago
  39. 7401cf5 Use static storage duration for file-scope compound literals, even when they by Richard Smith · 13 years ago
  40. a8ecd7c Remove unnecessary include. by Devang Patel · 13 years ago
  41. 64f45a2 Fix the representation of wide strings in the AST and IR so that it uses the native representation of integers for the elements. This fixes a bunch of nastiness involving by Eli Friedman · 13 years ago
  42. eea6480 In x86_64, when calling an Objective-C method that returns a _Complex long double, make sure to use the objc_msgSend_fp2ret function which ensures that the return value will be {0, 0} if the receiver is nil. by Anders Carlsson · 13 years ago
  43. a411d2f Fix pr9614 by not emitting an available_externally function when it calls by Rafael Espindola · 13 years ago
  44. 2ed7cb6 PR11124: Don't overwrite memory outside of a base class when performing zero-initialization before running its constructor. by Eli Friedman · 13 years ago
  45. 6c0aa5f CUDA: IR generation support for kernel call expressions by Peter Collingbourne · 13 years ago
  46. 1d2b317 Create a VTableContext class and start moving CodeGenVTables methods to it by Peter Collingbourne · 13 years ago
  47. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
  48. 8c25fc5 OpenCL: introduce support for function scope __local variables by Peter Collingbourne · 13 years ago
  49. 71c758d Simplify the generation of Objective-C setters, at least a little. by John McCall · 13 years ago
  50. 77f68bb Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can by Julien Lerouge · 13 years ago
  51. ead363b Do a lookup for the blocks runtime globals to see if they were declared, by Argyrios Kyrtzidis · 13 years ago
  52. bcfd1f5 Extend the ASTContext constructor to delay the initialization of by Douglas Gregor · 13 years ago
  53. 0815b57 Move the creation of the record type for the state of Objective-C fast by Douglas Gregor · 13 years ago
  54. 45c4ea7 Move the construction of the RecordDecl representing the runtime by Douglas Gregor · 13 years ago
  55. a5e19c6 Emit wide string literals with the appropriate alignment. by John McCall · 13 years ago
  56. e926523 CodeGen: rename CodeGenModule::Runtime to ObjCRuntime by Peter Collingbourne · 13 years ago
  57. 2d3ba4f Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon Mulder! by Chris Lattner · 13 years ago
  58. 686775d now that we have a centralized place to do so, add some using declarations for by Chris Lattner · 13 years ago
  59. 2acc6e3 de-constify llvm::Type, patch by David Blaikie! by Chris Lattner · 13 years ago
  60. 8dd55a3 Change intrinsic getter to take an ArrayRef, now that the underlying function in LLVM does. by Benjamin Kramer · 13 years ago
  61. 9cbe4f0 clang side to match the LLVM IR type system rewrite patch. by Chris Lattner · 13 years ago
  62. bc8d40d Change the IR-generation of VLAs so that we capture bounds, by John McCall · 13 years ago
  63. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  64. fd05ca0 Move GlobalDecl to AST by Peter Collingbourne · 13 years ago
  65. 0774cb8 Use arrays and SmallVectors instead of std::vectors when building function by John McCall · 13 years ago
  66. 3dc0541 Preserve the full name of the file, so that '-c -o foo.pic.o' produces by Nick Lewycky · 13 years ago
  67. 5ea4f44 Record where the GCOV data files should be placed. by Nick Lewycky · 13 years ago
  68. 755d849 After some discussion with Doug, we decided that it made a lot more sense by John McCall · 13 years ago
  69. 1de4d4e Basic, untested implementation for an "unknown any" type requested by LLDB. by John McCall · 13 years ago
  70. f0c11f7 After much contemplation, I've decided that we probably shouldn't "unique" by John McCall · 13 years ago
  71. bda0d6b We were emitting construction v-tables with internal linkage all the time. by John McCall · 13 years ago
  72. e80d567 Update type cache when a type is completed. Radar 9168773 by Devang Patel · 13 years ago
  73. 3209669 The Darwin kernel does not provide useful guard variable support. by John McCall · 13 years ago
  74. 1f6f961 Fix three of the four places where I left breadcrumbs to avoid unnecessary by John McCall · 13 years ago
  75. d26bc76 Use the "undergoes default argument promotion" bit on parameters to by John McCall · 13 years ago
  76. 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 · 13 years ago
  77. 5de7a0e Do not emit stop point for CXXDefaultArgExpr. It results in suboptimial user experience. by Devang Patel · 13 years ago
  78. 9de4342 StringRefify. by Benjamin Kramer · 13 years ago
  79. bc7fbf0 Pretty up the emission of field l-values and use volatile and TBAA when by John McCall · 13 years ago
  80. 8178df3 Emit the structure layout of the block literal parameter to a block by John McCall · 13 years ago
  81. 3469585 Reorganize the emission of local variables. by John McCall · 13 years ago
  82. 5936e33 Assorted cleanup: by John McCall · 13 years ago
  83. d16c2cf Reorganize CodeGen{Function,Module} to eliminate the unfortunate by John McCall · 13 years ago
  84. 84c49e4 Simplify thunks code. by Anders Carlsson · 13 years ago
  85. bbfd5ba Pass a 'ForVTable' flag to GetAddrOfThunk and pass it along to GetOrCreateLLVMFunction so that we by Anders Carlsson · 13 years ago
  86. 1faa89f Re-land r124768, with a fix for PR9130. by Anders Carlsson · 13 years ago
  87. 5808ce4 More capturing of 'this': implicit member expressions. Getting that by John McCall · 13 years ago
  88. 01de7a4 Revert 124768. by Rafael Espindola · 13 years ago
  89. aedd9d5 Don't try to mark virtual members referenced for classes where the key function by Anders Carlsson · 13 years ago
  90. c7e98fa Move GetLLVMVisibility to CodeGenModule. by Anders Carlsson · 13 years ago
  91. fa2e99f Change CodeGenModule::setTypeVisibility to take a TypeVisibilityKind enum instead of an "IsForRTTI" flag. by Anders Carlsson · 13 years ago
  92. 0ffeaad Get rid of an unneeded parameter from setGlobalVisibility. by Anders Carlsson · 13 years ago
  93. 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 · 13 years ago
  94. c93a776 Remove IsDefinition from CodeGenModule::setTypeVisibility; it is always true. by Anders Carlsson · 13 years ago
  95. 3a717f7 Change CodeGenModule::getVTableLinkage to be a non-static member function. by Anders Carlsson · 13 years ago
  96. c532b50 Add unnamed_addr in CreateRuntimeVariable. by Rafael Espindola · 13 years ago
  97. 1411047 Move name mangling support from CodeGen to AST. In the by Peter Collingbourne · 14 years ago
  98. 9f0c7cc Simplify mem{cpy, move, set} creation with IRBuilder. by Benjamin Kramer · 14 years ago
  99. 3030eb8 Simplify the logic for emitting guard variables for template static by John McCall · 14 years ago
  100. af14603 Better solution: calculate the visibility of functions and variables by John McCall · 14 years ago