1. af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 15 years ago
  2. f6728fc Comment the reasons for the strange little dance we do with the main file name for debug information by Douglas Gregor · 15 years ago
  3. bca5d37 More work on thunks; almost there now. by Anders Carlsson · 15 years ago
  4. 87e0ac8 Add less than operators to ThisAdjustment, ReturnAdjustment and ThunkInfo. Sort the thunks before dumping them. by Anders Carlsson · 15 years ago
  5. 09daa50 Improve dumping of thunks. by Anders Carlsson · 15 years ago
  6. 2539421 We want to add all thunks, not just 'this' adjustment thunks. by Anders Carlsson · 15 years ago
  7. 9d734f3 AddThunk should take a const reference. by Anders Carlsson · 15 years ago
  8. 8682bda Fix PR6648 by not creating a temporary with the type of a by Rafael Espindola · 15 years ago
  9. 4c8c8e9 Fixed synthesizing properties declared in properties (GNU runtime). by David Chisnall · 15 years ago
  10. cb61a7b IRgen: Wrap atomic intrinsics with memory barriers, to ensure we honor the semantics. by Daniel Dunbar · 15 years ago
  11. efb0fa9 C++: Add support for -fno-use-cxa-atexit. - So much typing, so little gain... by Daniel Dunbar · 15 years ago
  12. 5c6846e IRgen: Inline GenerateCXXGlobal[VarDecl]InitFunc into sole caller. by Daniel Dunbar · 15 years ago
  13. f746aa6 Change CodeGenModule to rely on the Module's symbol table instead of by John McCall · 15 years ago
  14. f7ad500 Try to improve computation of the main file name for debug by Douglas Gregor · 15 years ago
  15. ac91b4c For debug information, get the main file name from the source manager by Douglas Gregor · 15 years ago
  16. 7c647a1 Replace some SmallVectors with arrays. by Benjamin Kramer · 15 years ago
  17. 9135a84 When dumping vtables, also dump the thunks. by Anders Carlsson · 15 years ago
  18. 5e454aa More work on thunks. by Anders Carlsson · 15 years ago
  19. 9b35b25 Correctly mangle dependent TypenameType. Fixes PR6625. by Rafael Espindola · 15 years ago
  20. ad9e06d Fixed copy-and-paste error causing categories to contain the protocols declared on the class, not the protocols declared on the category. by David Chisnall · 15 years ago
  21. 8f51a4f Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 15 years ago
  22. fea3d4d Use raw_ostream instead of sprintf. by Benjamin Kramer · 15 years ago
  23. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
  24. 34fd284 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 15 years ago
  25. 8721360 Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 15 years ago
  26. 3352406 Allow users to set CPPFLAGS and CXXFLAGS on the make command line. by Jeffrey Yasskin · 15 years ago
  27. 20e1c7e Fix a rare corner case bug which exposed a serious block API generation by Fariborz Jahanian · 15 years ago
  28. 22fe585 If main file name is empty then use "<unknown>". by Devang Patel · 15 years ago
  29. 617def3 More this adjustment simplification. by Anders Carlsson · 15 years ago
  30. 4ea9006 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 15 years ago
  31. cd0d27f Remove OldOffset. by Anders Carlsson · 15 years ago
  32. ae936d5 Remove debug output. by Anders Carlsson · 15 years ago
  33. dd36681 Begin simplifying handling of thunks. by Anders Carlsson · 15 years ago
  34. e5e0c9d Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 15 years ago
  35. e4c1ea0 Keep track of Record context to ensure that record elements are properly nested in debug info. by Devang Patel · 15 years ago
  36. a14db75 fix PR6433, crash on va_arg of typedef. by Chris Lattner · 15 years ago
  37. c89a7cf Use the new vtable layout code for computing virtual base offset offsets. by Anders Carlsson · 15 years ago
  38. d980072 Correctly mangle address of member in template arguments. Fixes PR6460 by Rafael Espindola · 15 years ago
  39. bba1607 Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect what it actually does. by Anders Carlsson · 15 years ago
  40. 1972ced When possible, use the vbase offset offsets from the most derived class directly. by Anders Carlsson · 15 years ago
  41. bb6305b Keep track of, and dump, vbase offset offsets. by Anders Carlsson · 15 years ago
  42. 1ffd79b Fix tests. by Anders Carlsson · 15 years ago
  43. e02fc0a Run the new vtable builder for construction vtables as well now. Note that we still don't use the data it generates. by Anders Carlsson · 15 years ago
  44. ec853ba Support PPC-32 DWARF EH intrinisics. Thanks to rdivacky for his assistance. by John McCall · 15 years ago
  45. 0af9523 set alignment on static locals properly, patch by Arnaud de Grandmaison! by Chris Lattner · 15 years ago
  46. 2bc1d3a Fix calculation of whether a member function needs a thunk in construction vtables. by Anders Carlsson · 15 years ago
  47. a96a2e9 We were mistakenly marking morally virtual bases as being uninteresting. Fix this. by Anders Carlsson · 15 years ago
  48. f2c98ce Ignore non-interesting bases when emitting construction vtables. by Anders Carlsson · 15 years ago
  49. 6039661 Don't accidentally mark some functions in construction vtables as unused. Also land the test for a previous checkin, now that it's correct. by Anders Carlsson · 15 years ago
  50. 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 15 years ago
  51. d7fdae5 When building construction vtables, we need to check if a primary virtual base is actually a primary virtual base in the layout class. by Anders Carlsson · 15 years ago
  52. db4022c Improve vcall offset handling in construction vtables. With this we layout the construction vtables from the ABI examples correctly. by Anders Carlsson · 15 years ago
  53. bbf58bb Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 15 years ago
  54. f338370 Use SmallString instead of alloca. by Devang Patel · 15 years ago
  55. d58562e Fix file reference for derived and composite types. Now, dwarf writer uses strict verifier that ignores debug info for such types if their file info is unknown. by Devang Patel · 15 years ago
  56. 7573f8b More then one anonymous aggregates on one line creates chaos when MDNode uniquness is combined with RAUW operation. Right solution is to avoid using RAUW. by Devang Patel · 15 years ago
  57. 683f6db Use getLast() instead of getBasename(). by Devang Patel · 15 years ago
  58. 1780055 Start using DIFile. Corresponding llvm patch is r98020. by Devang Patel · 15 years ago
  59. b35baae add a codegen hack to work around an AST bug, allowing us to compile the by Chris Lattner · 15 years ago
  60. 0804e6e Avoid using DIDescriptor.isNull(). by Devang Patel · 15 years ago
  61. dd7b0d5 Revert r97949. by Devang Patel · 15 years ago
  62. ff03ab1 Avoid DIDescriptor.isNull() checks. by Devang Patel · 15 years ago
  63. c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 15 years ago
  64. 4ce46c2 Perform overload resolution when static_cast'ing from a by Douglas Gregor · 15 years ago
  65. 96df6cf Don't turn off mangling in implicitly extern "C" system headers. GCC by Douglas Gregor · 15 years ago
  66. d3a344c Add a message to these asserts. by Benjamin Kramer · 15 years ago
  67. 3c15745 Use static method in GlobalValue by Rafael Espindola · 15 years ago
  68. ba68b08 PR6515: Implement __builtin_signbit and friends. by Eli Friedman · 15 years ago
  69. 6374c33 Implement __builtin_dwarf_sp_column for i386 (Darwin and not), x86-64 (all), by John McCall · 15 years ago
  70. a36e223 add support for a 1<<29 bit in the block flags field to mark blocks using alternate struct return ABI by Blaine Garst · 15 years ago
  71. bc6afd1 Don't produce an alias for a destructor if the target is weak. by Rafael Espindola · 15 years ago
  72. da18261 really fix 6473 by handling weakref in constant expressions. by Rafael Espindola · 15 years ago
  73. 6a83670 Fix PR6473. by Rafael Espindola · 15 years ago
  74. 468ec6c Revert changes r97693, r97700, and r97718. by John McCall · 15 years ago
  75. 4819ac4 Refactor local class name mangling and make it ABI conforming. by Fariborz Jahanian · 15 years ago
  76. 06a3066 Implement __builtin_dwarf_sp_column(). by John McCall · 15 years ago
  77. c9fe644 Create a TargetMachine whenever we create a CodeGenAction. The codegen of by John McCall · 15 years ago
  78. 9f9efe6 Fix code gen bug generating code for ((id)cat)->isa. Fixes radar 7709015. by Fariborz Jahanian · 15 years ago
  79. b992259 fix PR6475, we were doing side-effecting stuff in an assert. by Chris Lattner · 15 years ago
  80. 5705853 Implements mangling of local class names to by Fariborz Jahanian · 15 years ago
  81. 2752c01 add framework for ARM builtins, Patch by Edmund Grimley Evans! by Chris Lattner · 15 years ago
  82. fb17a56 Sketch out an implementation for __builtin_dwarf_cfa. I have no idea by John McCall · 15 years ago
  83. 7ada111 Implement __builtin_eh_return. by John McCall · 15 years ago
  84. ce57dd5 Fix a bug with base offset merging that Devang noticed. by Anders Carlsson · 15 years ago
  85. 492c4f9 Add proper target hooks for __builtin_extract_return_address and by John McCall · 15 years ago
  86. 9a70846 Don't emit derived-to-base destructor aliases if we don't have a definition by John McCall · 15 years ago
  87. 7b9a5aa During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 15 years ago
  88. 8880066 Simplify code. by Anders Carlsson · 15 years ago
  89. d0b76ca Inspired by seeing "MIPS" go by in the commits, I've gone ahead and by John McCall · 15 years ago
  90. d86e5d8 Rename BaseOffset to Offset and make it signed in preparation of more construction vtable work. by Anders Carlsson · 15 years ago
  91. 5e11085 After much consultation aimed at figuring out what this builtin actually by John McCall · 15 years ago
  92. ad5e738 Split out types that are non-canonical unless dependent as their own by John McCall · 15 years ago
  93. e1e342f The latest draft uses 'dt' to mangle member expressions, and now so do we. by John McCall · 15 years ago
  94. 4b2ccfc Improve name mangling for dependently-scoped declaration references. by Douglas Gregor · 15 years ago
  95. 5ed1bc3 Add name mangling for DeclRefExprs that refer to external names by Douglas Gregor · 15 years ago
  96. f14e14f Remove debug output. by Anders Carlsson · 15 years ago
  97. dad0f99 Handle unused functions in construction vtables correctly. by Anders Carlsson · 15 years ago
  98. 0378bf0 When laying out vtables for virtual bases in construction vtables, we need to check if the vtable is a primary base in the layout class. by Anders Carlsson · 15 years ago
  99. 530c40c More improvements to construction vtables; we know handle vbase offsets correctly (I hope). by Anders Carlsson · 15 years ago
  100. 5d7af6b Pass information about whether a base is virtual or not down to getCtorVtable, we need this information in the vtable builder. by Anders Carlsson · 15 years ago