1. 0ffeaad Get rid of an unneeded parameter from setGlobalVisibility. by Anders Carlsson · 14 years ago
  2. 691222d Give VTTs the right visibility. by Anders Carlsson · 14 years ago
  3. 1cbce12 Make emitting a VTT a two-step process, much like emitting a VTable. You first get the address of the VTT, and then pass it to EmitVTTDefinition. by Anders Carlsson · 14 years ago
  4. 96eaf29 Use CGM.CreateOrReplaceCXXRuntimeVariable in CGVTables.cpp by Anders Carlsson · 14 years ago
  5. 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 · 14 years ago
  6. 3b8037a Replace a literal '8' with getCharWidth(). by Ken Dyck · 14 years ago
  7. c93a776 Remove IsDefinition from CodeGenModule::setTypeVisibility; it is always true. by Anders Carlsson · 14 years ago
  8. 268ab8c When trying to get the most derived class, don't assume that we can ignore all casts. We can only ignore derived-to-base and no-op casts. Fixes selfhost. by Anders Carlsson · 14 years ago
  9. 1679f5a When calling a virtual member function on a base class and the most derived class is marked 'final', we can devirtualize the call. by Anders Carlsson · 14 years ago
  10. 336a7dc When doing a derived-to-base class through a virtual class, we don't have to get the vbase offset from the vtable if the derived class is marked final. by Anders Carlsson · 14 years ago
  11. a50e33e More work to support -fapple-kext regarding by Fariborz Jahanian · 14 years ago
  12. 21a7dfc Add my new file to the CMake lists, sorry about that. by John McCall · 14 years ago
  13. 36f893c Move all the cleanups framework code into a single file. Pure motion. by John McCall · 14 years ago
  14. 804b807 Reorganize the value-dominance metaprogram and introduce a specialization by John McCall · 14 years ago
  15. 3ad32c8 Convert the exception-freeing cleanup over to the conditional cleanups code, by John McCall · 14 years ago
  16. b3d5e2f When producing IR for a lvalue-to-rvalue cast *as an lvalue*, only by Douglas Gregor · 14 years ago
  17. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  18. fd70826 Notes on dynamic array cookies in MSVC. by John McCall · 14 years ago
  19. 52a80e1 Fixes an IRgen bug where __block variable is by Fariborz Jahanian · 14 years ago
  20. f99a391 Un-nest the meat of this function. by John McCall · 14 years ago
  21. 4bbcbda Fix some obvious bugs in the conditional-cleanup code and then make the by John McCall · 14 years ago
  22. 150b462 Better framework for conditional cleanups; untested as yet. by John McCall · 14 years ago
  23. 5aa74af Add -add-plugin flag, which runs plugins in addition to codegen. by Nico Weber · 14 years ago
  24. 5af1f06 Revert r124146 for now. It appears to be failing on a few platforms. by Eric Christopher · 14 years ago
  25. e07ae4e pre/post increase/decrease for AltiVec vectors by Anton Yartsev · 14 years ago
  26. cb88a1f Use attributes for all the override control specifiers. by Anders Carlsson · 14 years ago
  27. e34e3aa When building a type info struct for EH, we always want it to have linkonce_odr linkage. by Anders Carlsson · 14 years ago
  28. 3a717f7 Change CodeGenModule::getVTableLinkage to be a non-static member function. by Anders Carlsson · 14 years ago
  29. 82a113a "Name" a bool parameter. by Anders Carlsson · 14 years ago
  30. 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 · 14 years ago
  31. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  32. 9577abc Null initialize a few variables flagged by by Ted Kremenek · 14 years ago
  33. 15f6765 Use a FunctionType::get overload that doesn't require an empty vector. by Benjamin Kramer · 14 years ago
  34. da29e09 Send code generation for xvalues down the same path as lvalues by Douglas Gregor · 14 years ago
  35. 36b8ee6 Debug info generation for rvalue references by Douglas Gregor · 14 years ago
  36. 7ac0ff2 Move cheking of kext into canDevirtualizeMemberFunctionCalls(). by Fariborz Jahanian · 14 years ago
  37. 2726267 apple kext abi requires all vf calls, including qualified by Fariborz Jahanian · 14 years ago
  38. 3dbdb58 Add CharUnits::RoundUpToAlignment() to simplify rounding in character units. by Ken Dyck · 14 years ago
  39. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  40. fe71008 Replace calls to getTypeSize() and getTypeAlign() with their 'InChars' by Ken Dyck · 14 years ago
  41. bcbd03a Emit DW_TAG_lexical_scope to surround foreach. by Devang Patel · 14 years ago
  42. ff8be0e lib/CodeGen/TargetInfo.cpp: Fix coding style and erase an obsolete comment. by NAKAMURA Takumi · 14 years ago
  43. c532b50 Add unnamed_addr in CreateRuntimeVariable. by Rafael Espindola · 14 years ago
  44. dbee341 Add support for explicit constructor calls in Microsoft mode. For example: by Francois Pichet · 14 years ago
  45. 06f486e Replace calls to CharUnits::fromQuantity() with ones to by Ken Dyck · 14 years ago
  46. dec0984 Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and by Jeffrey Yasskin · 14 years ago
  47. a757322 lib/CodeGen/TargetInfo.cpp: Add Win64 calling conversion. by NAKAMURA Takumi · 14 years ago
  48. 31f7d02 Simplify. by Devang Patel · 14 years ago
  49. d3d4e1e More unnamed_addr. by Rafael Espindola · 14 years ago
  50. 803d307 merge strings created by const NSConstantString *appKey = @"MyApp"; by Rafael Espindola · 14 years ago
  51. b266a1f Add unnamed_addr to the special strings created by by Rafael Espindola · 14 years ago
  52. cd3ac4b Also set unnamed_addr on declarations. by Rafael Espindola · 14 years ago
  53. 5576d9b Support the zero-initialization of VLAs when that really means a zero by John McCall · 14 years ago
  54. b842437 When simplifying a cleanup's entry by merging it into a single predecessor, by John McCall · 14 years ago
  55. 0990b00 Save getObjCGCAttrKind and use it in two places by Fariborz Jahanian · 14 years ago
  56. ec80512 Generate write-barriers for global objc assigns. // rdar://8761767 by Fariborz Jahanian · 14 years ago
  57. 1411047 Move name mangling support from CodeGen to AST. In the by Peter Collingbourne · 14 years ago
  58. 255c269 When your comments and your code are out-of-sync, the test case is wrong. by Douglas Gregor · 14 years ago
  59. 4fc4866 Add tests for name mangling of variadic templates. by Douglas Gregor · 14 years ago
  60. 8d3d6c9 Ensure an insertion point at the end of a statement-expression. Fixes PR8967. by John McCall · 14 years ago
  61. 62b1607 Only add unnamed_addr to definitions. by Rafael Espindola · 14 years ago
  62. 9370c8f Add IR generation support for SizeOfPackExpr. by Douglas Gregor · 14 years ago
  63. cd5b22e Fix a latent bug where, after emitting an expression statement, we would by John McCall · 14 years ago
  64. 57244f6 Set unnamed_addr in every type info. by Rafael Espindola · 14 years ago
  65. 82a0f4e Set unnamed_addr in VTTs. by Rafael Espindola · 14 years ago
  66. b1c65ff Set unnamed_addr for type infos that we are confortable marking as hidden. I by Rafael Espindola · 14 years ago
  67. 9f959db Add unnamed_addr to vtables. by Rafael Espindola · 14 years ago
  68. 29dd67b Remove special handling for opaque Neon vector types. by Bob Wilson · 14 years ago
  69. b1fd0eb Fix debug info for __block variable referenced outside of block. by Devang Patel · 14 years ago
  70. c5f657f Add unnamed_addr to constructors and destructors. by Rafael Espindola · 14 years ago
  71. 0024f94 Move DefaultABIInfo::classifyReturnType where it belongs. No functional change. by Bob Wilson · 14 years ago
  72. 1257bc6 Add unnamed_addr when creating artificial string globals. For example, in by Rafael Espindola · 14 years ago
  73. 12bbc5c Make a helper function static. by Benjamin Kramer · 14 years ago
  74. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 14 years ago
  75. d88687f Rework a few things about how we emit ObjC's for enumeration statement. by John McCall · 14 years ago
  76. 9d156a7 Introduce an AttributedType, but don't actually use it anywhere yet. by John McCall · 14 years ago
  77. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 14 years ago
  78. cbf40f9 fix a -Wself-assign warning by Chris Lattner · 14 years ago
  79. 711c52b Refactor the application of type attributes so that attributes from by John McCall · 14 years ago
  80. 2e774c4 Implement name mangling for sizeof...(pack), to silence the last of by Douglas Gregor · 14 years ago
  81. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 14 years ago
  82. f96bdf4 Consider zero-length array of structs when by Fariborz Jahanian · 14 years ago
  83. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  84. 33a5344 Add support for passing variables declared to use a xmm register to asm by Rafael Espindola · 14 years ago
  85. baf8695 Produce a better error message for invalid register names. by Rafael Espindola · 14 years ago
  86. 03117d1 Fix typo and add comment. by Rafael Espindola · 14 years ago
  87. 0ec89f9 Add support for declaring register contraints in variables. They are only used by Rafael Espindola · 14 years ago
  88. a9de3fa Correct function name in comment. by Nick Lewycky · 14 years ago
  89. 9f0c7cc Simplify mem{cpy, move, set} creation with IRBuilder. by Benjamin Kramer · 14 years ago
  90. 8fac25d Add support for GNU runtime property set / get structure functions. Minor refactoring of Mac runtime (returns the same function for both, as the Mac runtimes currently only provide a single entry point for setting and getting struct properties, although this will presumably be fixed at some point). by David Chisnall · 14 years ago
  91. 3f59c97 The -fshort-wchar option causes wchar_t to become unsigned, in addition to being by Chris Lattner · 14 years ago
  92. 7536dd5 Introduce a new type, PackExpansionType, to capture types that are by Douglas Gregor · 14 years ago
  93. 276fdf4 1. Add some ABI information for the Microblaze. by Wesley Peck · 14 years ago
  94. 9c39acf Give hidden visibility to RTTI for derived types. This is kindof a hacky by John McCall · 14 years ago
  95. 46e392a Implement builtins for Neon half-precision float conversions. by Bob Wilson · 14 years ago
  96. bfdcdc8 Set the "implicitly inline" bit on a method as soon as we see a definition by John McCall · 14 years ago
  97. e23cf43 Restore r121752 without modification. by John McCall · 14 years ago
  98. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 14 years ago
  99. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 14 years ago
  100. 2ea7e73 Implement CodeGen support for the may_alias attribute. by Dan Gohman · 14 years ago