1. 68cf1a5 Convert RecordLayout::NonVirtualAlign to CharUnits. No change in by Ken Dyck · 14 years ago
  2. bb699b0 When copy-capturing values for a nested capture, use a BlockDeclRefExpr. by John McCall · 14 years ago
  3. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 14 years ago
  4. 683564a pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) by Anton Yartsev · 14 years ago
  5. 22df7b1 Fix self-host; if a thunk already exists and has available_externally linkage, we should change its linkage instead of asserting. by Anders Carlsson · 14 years ago
  6. 14e82fd When building with optimizations, emit thunks with available_externally linkage so devirtualized function calls can also be de-thunked. by Anders Carlsson · 14 years ago
  7. 84c49e4 Simplify thunks code. by Anders Carlsson · 14 years ago
  8. bbfd5ba Pass a 'ForVTable' flag to GetAddrOfThunk and pass it along to GetOrCreateLLVMFunction so that we by Anders Carlsson · 14 years ago
  9. 1faa89f Re-land r124768, with a fix for PR9130. by Anders Carlsson · 14 years ago
  10. 53bad4e minor refactoring of -fapple-kext stuff. by Fariborz Jahanian · 14 years ago
  11. fd0f89d What was I thinking? by Fariborz Jahanian · 14 years ago
  12. 142f9e9 -fapple-kext cannot have 'weak' visibility in this abi. by Fariborz Jahanian · 14 years ago
  13. 771c678 Clean up of -fapple-kext abi code. No change otherwise. by Fariborz Jahanian · 14 years ago
  14. 5808ce4 More capturing of 'this': implicit member expressions. Getting that by John McCall · 14 years ago
  15. 01de7a4 Revert 124768. by Rafael Espindola · 14 years ago
  16. aedd9d5 Don't try to mark virtual members referenced for classes where the key function by Anders Carlsson · 14 years ago
  17. 5abec14 -fapple-kext, elimination of all direct calls to virtual dtors. by Fariborz Jahanian · 14 years ago
  18. 0ce34c6 Emit debug info for template value parameters. by Devang Patel · 14 years ago
  19. fa275df Emit debug info for template type parameters. by Devang Patel · 14 years ago
  20. 8e50a96 Add NetBSD target support. Patch by Joerg Sonnenberger. by Benjamin Kramer · 14 years ago
  21. ccd5259 -fapple-kext support for indirect call to virtuals dtors - wip. by Fariborz Jahanian · 14 years ago
  22. 7143325 Do the right thing for zero-initializing VLAs that don't have a zero by John McCall · 14 years ago
  23. 071d3af Revert 124633. The linker has been told how to merge available_externally. by Rafael Espindola · 14 years ago
  24. 5c3633f Convert RecordLayout::NonVirtualSize from bit units to CharUnits. by Ken Dyck · 14 years ago
  25. 517ebc6 Set visibility for available_externally globals. This is important for two reasons: by Rafael Espindola · 14 years ago
  26. 0413db4 Amazing that there are still issues with the fields of anonymous struct/unions.. by Argyrios Kyrtzidis · 14 years ago
  27. 6d7f847 When building with optimizations, emit vtables where the key is not in the by Anders Carlsson · 14 years ago
  28. 237f959 Remove dead code. by Anders Carlsson · 14 years ago
  29. 907c828 When emitting RTTI for a non-class type, compute the visibility of the RTTI data based on the explicit visibility of the type. by Anders Carlsson · 14 years ago
  30. c7e98fa Move GetLLVMVisibility to CodeGenModule. by Anders Carlsson · 14 years ago
  31. 9a86a13 Add RTTIBuilder::GetAddrOfTypeName which uses the newly added CreateOrReplaceCXXRuntimeVariable. by Anders Carlsson · 14 years ago
  32. fa2e99f Change CodeGenModule::setTypeVisibility to take a TypeVisibilityKind enum instead of an "IsForRTTI" flag. by Anders Carlsson · 14 years ago
  33. 934176f Replace an isa/cast with a dyn_cast. by Anders Carlsson · 14 years ago
  34. 0ffeaad Get rid of an unneeded parameter from setGlobalVisibility. by Anders Carlsson · 14 years ago
  35. 691222d Give VTTs the right visibility. by Anders Carlsson · 14 years ago
  36. 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
  37. 96eaf29 Use CGM.CreateOrReplaceCXXRuntimeVariable in CGVTables.cpp by Anders Carlsson · 14 years ago
  38. 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
  39. 3b8037a Replace a literal '8' with getCharWidth(). by Ken Dyck · 14 years ago
  40. c93a776 Remove IsDefinition from CodeGenModule::setTypeVisibility; it is always true. by Anders Carlsson · 14 years ago
  41. 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
  42. 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
  43. 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
  44. a50e33e More work to support -fapple-kext regarding by Fariborz Jahanian · 14 years ago
  45. 21a7dfc Add my new file to the CMake lists, sorry about that. by John McCall · 14 years ago
  46. 36f893c Move all the cleanups framework code into a single file. Pure motion. by John McCall · 14 years ago
  47. 804b807 Reorganize the value-dominance metaprogram and introduce a specialization by John McCall · 14 years ago
  48. 3ad32c8 Convert the exception-freeing cleanup over to the conditional cleanups code, by John McCall · 14 years ago
  49. b3d5e2f When producing IR for a lvalue-to-rvalue cast *as an lvalue*, only by Douglas Gregor · 14 years ago
  50. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  51. fd70826 Notes on dynamic array cookies in MSVC. by John McCall · 14 years ago
  52. 52a80e1 Fixes an IRgen bug where __block variable is by Fariborz Jahanian · 14 years ago
  53. f99a391 Un-nest the meat of this function. by John McCall · 14 years ago
  54. 4bbcbda Fix some obvious bugs in the conditional-cleanup code and then make the by John McCall · 14 years ago
  55. 150b462 Better framework for conditional cleanups; untested as yet. by John McCall · 14 years ago
  56. 5aa74af Add -add-plugin flag, which runs plugins in addition to codegen. by Nico Weber · 14 years ago
  57. 5af1f06 Revert r124146 for now. It appears to be failing on a few platforms. by Eric Christopher · 14 years ago
  58. e07ae4e pre/post increase/decrease for AltiVec vectors by Anton Yartsev · 14 years ago
  59. cb88a1f Use attributes for all the override control specifiers. by Anders Carlsson · 14 years ago
  60. e34e3aa When building a type info struct for EH, we always want it to have linkonce_odr linkage. by Anders Carlsson · 14 years ago
  61. 3a717f7 Change CodeGenModule::getVTableLinkage to be a non-static member function. by Anders Carlsson · 14 years ago
  62. 82a113a "Name" a bool parameter. by Anders Carlsson · 14 years ago
  63. 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
  64. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  65. 9577abc Null initialize a few variables flagged by by Ted Kremenek · 14 years ago
  66. 15f6765 Use a FunctionType::get overload that doesn't require an empty vector. by Benjamin Kramer · 14 years ago
  67. da29e09 Send code generation for xvalues down the same path as lvalues by Douglas Gregor · 14 years ago
  68. 36b8ee6 Debug info generation for rvalue references by Douglas Gregor · 14 years ago
  69. 7ac0ff2 Move cheking of kext into canDevirtualizeMemberFunctionCalls(). by Fariborz Jahanian · 14 years ago
  70. 2726267 apple kext abi requires all vf calls, including qualified by Fariborz Jahanian · 14 years ago
  71. 3dbdb58 Add CharUnits::RoundUpToAlignment() to simplify rounding in character units. by Ken Dyck · 14 years ago
  72. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  73. fe71008 Replace calls to getTypeSize() and getTypeAlign() with their 'InChars' by Ken Dyck · 14 years ago
  74. bcbd03a Emit DW_TAG_lexical_scope to surround foreach. by Devang Patel · 14 years ago
  75. ff8be0e lib/CodeGen/TargetInfo.cpp: Fix coding style and erase an obsolete comment. by NAKAMURA Takumi · 14 years ago
  76. c532b50 Add unnamed_addr in CreateRuntimeVariable. by Rafael Espindola · 14 years ago
  77. dbee341 Add support for explicit constructor calls in Microsoft mode. For example: by Francois Pichet · 14 years ago
  78. 06f486e Replace calls to CharUnits::fromQuantity() with ones to by Ken Dyck · 14 years ago
  79. dec0984 Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and by Jeffrey Yasskin · 14 years ago
  80. a757322 lib/CodeGen/TargetInfo.cpp: Add Win64 calling conversion. by NAKAMURA Takumi · 14 years ago
  81. 31f7d02 Simplify. by Devang Patel · 14 years ago
  82. d3d4e1e More unnamed_addr. by Rafael Espindola · 14 years ago
  83. 803d307 merge strings created by const NSConstantString *appKey = @"MyApp"; by Rafael Espindola · 14 years ago
  84. b266a1f Add unnamed_addr to the special strings created by by Rafael Espindola · 14 years ago
  85. cd3ac4b Also set unnamed_addr on declarations. by Rafael Espindola · 14 years ago
  86. 5576d9b Support the zero-initialization of VLAs when that really means a zero by John McCall · 14 years ago
  87. b842437 When simplifying a cleanup's entry by merging it into a single predecessor, by John McCall · 14 years ago
  88. 0990b00 Save getObjCGCAttrKind and use it in two places by Fariborz Jahanian · 14 years ago
  89. ec80512 Generate write-barriers for global objc assigns. // rdar://8761767 by Fariborz Jahanian · 14 years ago
  90. 1411047 Move name mangling support from CodeGen to AST. In the by Peter Collingbourne · 14 years ago
  91. 255c269 When your comments and your code are out-of-sync, the test case is wrong. by Douglas Gregor · 14 years ago
  92. 4fc4866 Add tests for name mangling of variadic templates. by Douglas Gregor · 14 years ago
  93. 8d3d6c9 Ensure an insertion point at the end of a statement-expression. Fixes PR8967. by John McCall · 14 years ago
  94. 62b1607 Only add unnamed_addr to definitions. by Rafael Espindola · 14 years ago
  95. 9370c8f Add IR generation support for SizeOfPackExpr. by Douglas Gregor · 14 years ago
  96. cd5b22e Fix a latent bug where, after emitting an expression statement, we would by John McCall · 14 years ago
  97. 57244f6 Set unnamed_addr in every type info. by Rafael Espindola · 14 years ago
  98. 82a0f4e Set unnamed_addr in VTTs. by Rafael Espindola · 14 years ago
  99. b1c65ff Set unnamed_addr for type infos that we are confortable marking as hidden. I by Rafael Espindola · 14 years ago
  100. 9f959db Add unnamed_addr to vtables. by Rafael Espindola · 14 years ago