1. a086783 Fix warning and be sure to set up the rethrow pointer if we fall off by Mike Stump · 15 years ago
  2. ac3f7bd Rename 'Class' to 'MostDerivedClass' by Anders Carlsson · 15 years ago
  3. a22fd85 Store the vtable components in a SmallVector. by Anders Carlsson · 15 years ago
  4. 9d4dd3e Use a different ConstantArray::get. by Anders Carlsson · 15 years ago
  5. 15318f4 Move the vtable vector directly into the Vtable builder. by Anders Carlsson · 15 years ago
  6. 77c23e5 Change getIndex to return false if the index wasn't found. Avoids an extra hash lookup. by Anders Carlsson · 15 years ago
  7. dfe33bb Minor cleanup; no functionality change. by Eli Friedman · 15 years ago
  8. 367d122 Remove unused argument. by Eli Friedman · 15 years ago
  9. ca9b56c Eliminate submethods vector. by Eli Friedman · 15 years ago
  10. 4714583 Eliminate the inner loop in VtableBuilder::OverrideMethod. by Eli Friedman · 15 years ago
  11. 47846d2 Correctly mangle the 'std' namespace inside extern "C++" blocks. by Anders Carlsson · 15 years ago
  12. 3aaf486 Make sure that overridden method decls are always canonical. by Anders Carlsson · 15 years ago
  13. 8b9006f Fix regression in vtable improvements. by Eli Friedman · 15 years ago
  14. fffefeb Try/catch statements seem to be working well enough to turn on. by Mike Stump · 15 years ago
  15. ce03390 Disable for now, doesn't play nice with the temporary code. by Mike Stump · 15 years ago
  16. d6a3e67 Rename method to something easier to search for. by Eli Friedman · 15 years ago
  17. dd454be More work in preparation of getting rid of the submethods loop. by Anders Carlsson · 15 years ago
  18. 0e88116 Remove an unused member variable. by Anders Carlsson · 15 years ago
  19. c0c4993 Add a way to get the index of a method. Assert that we have the same index for now. by Anders Carlsson · 15 years ago
  20. 29202d5 Add a premature optimization. by Anders Carlsson · 15 years ago
  21. 2fce216 Add the method directly to the vtable. by Anders Carlsson · 15 years ago
  22. 1e2180b Get rid of the PureVirtualMethods map. by Anders Carlsson · 15 years ago
  23. bf54027 Move handling of pure virtual methods to AppendMethods (and rename it to AppendMethodsToVtable). by Anders Carlsson · 15 years ago
  24. ea35722 Move covariant thunk handling to AppendMethods too. by Anders Carlsson · 15 years ago
  25. b73ba39 Move 'this' pointer adjustment thunks to AppendMethods. by Anders Carlsson · 15 years ago
  26. b17daf9 Make functions returning a struct indirectly evaluate the returned struct by Eli Friedman · 15 years ago
  27. adfa267 Factor appending methods to a vtable out into a separate function. by Anders Carlsson · 15 years ago
  28. 98fdb24 Get rid of the Thunks struct too. by Anders Carlsson · 15 years ago
  29. a875670 Remove the CovariantThunk struct. by Anders Carlsson · 15 years ago
  30. 4644b8b Remove the GlobalDecl from the Thunk as well. by Anders Carlsson · 15 years ago
  31. c71a523 Remove the GlobalDecl from the CovariantThunk struct, we can just look it up in the Methods table now. by Anders Carlsson · 15 years ago
  32. a7f1911 Start populating the VtableMembers structure. by Anders Carlsson · 15 years ago
  33. c7ab1a8 Add a data structure for efficient storing of vtable methods. Not used yet. by Anders Carlsson · 15 years ago
  34. 0a3816e Fixup reference binding for catch parameters. by Mike Stump · 15 years ago
  35. 13a5be1 Update chunk of #if 0'ed code to remove fixed FIXME and make it compile. We by Eli Friedman · 15 years ago
  36. 3faae56 These are done. by Mike Stump · 15 years ago
  37. d9cb7e9 Improve catch parameter bindings for scalar non-pointers. WIP. by Mike Stump · 15 years ago
  38. 7b0ca3f Handle static_assert inside functions. by Anders Carlsson · 15 years ago
  39. c085a98 Eli, I copied my code from this code... Let's fix the souce of the bad idea! by Mike Stump · 15 years ago
  40. 4a2251b Fix for PR5659: correct a rather nasty oversight in the type conversion for by Eli Friedman · 15 years ago
  41. 28df7a5 Convert ABIArgInfo::dump to raw_ostream. by Daniel Dunbar · 15 years ago
  42. 08a87f4 Attempt to fix the MSVC build. by Anders Carlsson · 15 years ago
  43. 6804fa2 Fix thunk generation for thunks with a parameter with reference type. by Eli Friedman · 15 years ago
  44. 35c98cc Minor cleanup. by Eli Friedman · 15 years ago
  45. 919d5e5 Add support for thunking dtors. Oh why does this make my head hurt? by Mike Stump · 15 years ago
  46. f668bd0 Reflow. by Mike Stump · 15 years ago
  47. 1750b4f Revert r90402 for now, virt.cpp is failing. by Anders Carlsson · 15 years ago
  48. b5b32f5 Use Eli's ComputeThunkAdjustment for calculating the return adjustment. by Anders Carlsson · 15 years ago
  49. 9fcfc42 Add CodeGenModule::ComputeThunkAdjustment, which Eli wrote. by Anders Carlsson · 15 years ago
  50. 3b908ce Remove the index from the Thunk struct. by Anders Carlsson · 15 years ago
  51. 491b955 Change the Thunks map to use the vtable index as the key. by Anders Carlsson · 15 years ago
  52. 6fd247b Add the global decl to the Thunk struct. by Anders Carlsson · 15 years ago
  53. 1345f4a Remove unused struct fields. by Anders Carlsson · 15 years ago
  54. 891bb4b Delay computing the return adjustments for covariant thunks until when they are added to the vtable. by Anders Carlsson · 15 years ago
  55. bc0e339 No need to create the covariant thunk in both places now. by Anders Carlsson · 15 years ago
  56. 1db4a9b Whoops, forgot to save :) by Anders Carlsson · 15 years ago
  57. 5f96bc1 Remove the index field from the CovariantThunk structure. by Anders Carlsson · 15 years ago
  58. d6f7af5 Change the CovariantThunk map to use the vtable index as its key. by Anders Carlsson · 15 years ago
  59. bdd8e38 Store a GlobalDecl in the return adjustment. by Anders Carlsson · 15 years ago
  60. d8ddffc Do not include the 'this' pointer adjustment in the covariant return type. Instead, store it in the (now oddly named) Thunks map. by Anders Carlsson · 15 years ago
  61. 27682a3 Move VtableBuilder::OverrideMethod out of line in preparation of other changes to it. No functionality change. by Anders Carlsson · 15 years ago
  62. 6b85fa4 Remove untrue statement. by Mike Stump · 15 years ago
  63. 7087d75 Note a failure I saw from the g++ testsuite: by Mike Stump · 15 years ago
  64. 61d89b6 Work-in-progress: teach mangler how to mangle thunks for destructors. by Eli Friedman · 15 years ago
  65. be7c144 Cleanups on exceptional edges don't work at all, yet. This doesn't by Mike Stump · 15 years ago
  66. f7f7467 Add a cleanup scope for each catch clause. by Mike Stump · 15 years ago
  67. 7302030 Add missing branch to exit. Seemingly obvious when I look at the by Mike Stump · 15 years ago
  68. 7facf84 Fix for PR5522 and PR5666: fix a bunch of mangling issues with extern variables by Eli Friedman · 15 years ago
  69. 639787c Pull the terminate handler up so that we can use it for the catch by Mike Stump · 15 years ago
  70. 7933628 Turn off for now. by Mike Stump · 15 years ago
  71. 92f2fe2 Put the Builder classes into the anonymous namespace. by Mike Stump · 15 years ago
  72. de05057 Change rtti/Rtti to RTTI, as it is an acronym. by Mike Stump · 15 years ago
  73. 0cb6c19 Rename CGRtti.cpp to CGRTTI.cpp. by Mike Stump · 15 years ago
  74. c88b673 Avoid warning for getTerminateFn defined but not used. by Mike Stump · 15 years ago
  75. 666571a terminate doesn't throw. by Mike Stump · 15 years ago
  76. 9953383 More exception handling improvements... WIP. by Mike Stump · 15 years ago
  77. affe67e Added an assert. by Fariborz Jahanian · 15 years ago
  78. 2b06d34 Make EmitStoreOfScalar generate a more sane representation of boolean stores. by Eli Friedman · 15 years ago
  79. 0e93d25 (objc2 nonfragile-abi specific). If the translation unit includes an implementation by Fariborz Jahanian · 15 years ago
  80. 91b5927 Update for llvm intrinsics change. by Eric Christopher · 15 years ago
  81. 0f590be Much work on try/catch statement. WIP. by Mike Stump · 15 years ago
  82. 1a5e0d7 Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 15 years ago
  83. ba2253f More support for virtual destructor calls. Fixes pr5619 by Fariborz Jahanian · 15 years ago
  84. f71d232 Reflow comments and fix 80-col violation. by Mike Stump · 15 years ago
  85. 0121fbd Fix an assert. by Anders Carlsson · 15 years ago
  86. 1bc5c03 Don't try to generate common globals for C++ files, instead of depending on the FE to set NoCommon, and simplify CodeGenOptions initialization. by Daniel Dunbar · 15 years ago
  87. 76ed1f7 Minor cleanup (no functionality change). by Eli Friedman · 15 years ago
  88. 2da84ff Don't pass false (default) for isVolatile parameter to CreateLoad. by Daniel Dunbar · 15 years ago
  89. 007b567 Explicitly use setVolatile instead of extra IRBuilder argument. by Daniel Dunbar · 15 years ago
  90. 7fda03b Don't pass false (default) for isVolatile parameter to CreateStore. by Daniel Dunbar · 15 years ago
  91. 56a44f7 Simplify code. No functionality change. by Benjamin Kramer · 15 years ago
  92. 3e518bd Add DeclarationName support for C++0x operator literals. They should now work as by Sean Hunt · 15 years ago
  93. 1b09695 Change LangOptions::ObjCConstantStringClass to an std::string to avoid worrying about the lifetime. by Daniel Dunbar · 15 years ago
  94. 7d065d0 Move MainFileName option variable into CodeGenOptions instead of LangOptions. by Daniel Dunbar · 15 years ago
  95. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  96. fa3e82b Tests now pass with the assertion. by Eli Friedman · 15 years ago
  97. 8432f25 Add a much more thorough test of casts to virtual bases, and fix by Eli Friedman · 15 years ago
  98. 724e3e2 We always want to create a virtual function pointer entry if the path from the derived return value to the base overridden return value contains a virtual base class. by Anders Carlsson · 15 years ago
  99. 27f69d0 Move the vtable builder to an anonymous namespace. by Anders Carlsson · 15 years ago
  100. d6b07fb Don't build the entire vtable when all we want is the index of a virtual method. by Anders Carlsson · 15 years ago