1. 3b5caa2 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 15 years ago
  2. 5e40291 Improve diagnostics when printing a template instantiation backtrace by Douglas Gregor · 15 years ago
  3. 4552ff0 RegionStore: specially handle loads from integer global variables declared 'const'. by Ted Kremenek · 15 years ago
  4. 2cf073b Use 'const Optional<SVal>&' to avoid an extra copy. by Ted Kremenek · 15 years ago
  5. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 15 years ago
  6. f540305 Introduce new AST statistics that keep track of the number of isa (or by Douglas Gregor · 15 years ago
  7. 8891c42 Change the analyzer to recognize (but ignore) assignments to isa. Fixes PR 6302. by Ted Kremenek · 15 years ago
  8. f031774 Add Support for 'warn_unused_result" attribute on by Fariborz Jahanian · 15 years ago
  9. e0f3867 Don't produce a vtable if we are just instantiating a method and the by Rafael Espindola · 15 years ago
  10. 0cc70f1 Fix FileEntry declaration. by Daniel Dunbar · 15 years ago
  11. 95dd558 Teach Clang's -cc1 option -print-stats to print LLVM statistics. by Douglas Gregor · 15 years ago
  12. ee11b2d Fix a bug where we would incorrectly report an error about initializing two fields in an anonymous struct. by Anders Carlsson · 15 years ago
  13. 8f1a240 Reduce nesting. by Anders Carlsson · 15 years ago
  14. ad46886 Replace some constant-sized SmallVectors. by Benjamin Kramer · 15 years ago
  15. 30bc7e8 make -ftime-report work even in -disable-free mode. Woo, finally. by Chris Lattner · 15 years ago
  16. bfb7a1d Remove the old vtable layout code. by Anders Carlsson · 15 years ago
  17. 9dc338a Remove UseNewVTableCode checks. by Anders Carlsson · 15 years ago
  18. 8887bdc Use the new function in EmitClassAggrMemberwiseCopy, fixing the same assert as seen in PR6628 but for arrays this time. by Anders Carlsson · 15 years ago
  19. 21c9ad9 Factor emitting a call to a copy constructor out into a separate function. by Anders Carlsson · 15 years ago
  20. 44ec82b Introduce a CXXTemporariesCleanupScope RAII object and use it to cleanup the temporaries code. by Anders Carlsson · 15 years ago
  21. 46bbf8d Handle default arguments when calling copy constructors for bases or members when synthesizing a copy constructor. Fixes PR6628. by Anders Carlsson · 15 years ago
  22. d09020d Change a test to FileCheck bitcode instead of assembler. by Anders Carlsson · 15 years ago
  23. c9b64ba Flip the switch and use the new vtable layout code for everything. I've verified that this passes a self-host but I'll let the bots self host as well before removing the now dead code. by Anders Carlsson · 15 years ago
  24. 1d8422b Update xcode project by Anders Carlsson · 15 years ago
  25. 9c25039 Cache results computed by CGDebugInfo::getOrCreateFile() in a DenseMap. by Ted Kremenek · 15 years ago
  26. b836518 When copying a partial diagnostic into a DependentDiagnostic, allocate by Douglas Gregor · 15 years ago
  27. fe6b2d4 Optimize PartialDiagnostic's memory-allocation behavior by placing a by Douglas Gregor · 15 years ago
  28. 7435082 provide a simpler way to get to the headers by Gabor Greif · 15 years ago
  29. cb9bafe Exit early from the simple form of Sema::RequireNonAbstractType(), for by Douglas Gregor · 15 years ago
  30. 1c36393 When collecting virtual bases it's very important to use the canonical type of the base class. Otherwise, we might add the same virtual base class twice if the virtual base is an instantiated template. Fixes PR6251. by Anders Carlsson · 15 years ago
  31. a1d2d39 Remove FIXME comment. by Ted Kremenek · 15 years ago
  32. 590838b Change 'TypeCache' from being an std::map to a llvm::DenseMap. This reduces codegen time by Ted Kremenek · 15 years ago
  33. 3edbeb7 add support for -MQ flag to quote targets in dependency file, by Chris Lattner · 15 years ago
  34. 2eb91e4 emit signed integer subtractions as 'sub nsw', patch by Anton Yartsev! by Chris Lattner · 15 years ago
  35. adb507d Another vtable layout fix, making us match gcc better. by Anders Carlsson · 15 years ago
  36. 0b4c9b5 Support __attribute__((packed)) (along with other attributes) at the by Douglas Gregor · 15 years ago
  37. 67d568a Handle pure virtual member functions. by Anders Carlsson · 15 years ago
  38. 6f6de73 Fix a nasty bug in the virtual base computation which would lead to us initializing virtual bases in the wrong order. by Anders Carlsson · 15 years ago
  39. 802c66e Be a bit more consistent in using operator-> by Rafael Espindola · 15 years ago
  40. a7cde3b More vtable work - it's not possible to use the new vtable code for everything by setting a flag inside CGVtable.cpp. My plan is to run some tests and bootstrap and once that's done flip the bit. by Anders Carlsson · 15 years ago
  41. d18b4de More magic. by Anders Carlsson · 15 years ago
  42. f01149a Sprinkle some sed dust over check-ztt to make it work with newer clang asm output. (I am not a sed expert so this might be terribly inefficient :) by Anders Carlsson · 15 years ago
  43. acfa6ae Only add thunks for the most derived class. This fixes some link errors I was seeing in files generated by the vtable tester utility. by Anders Carlsson · 15 years ago
  44. 851853d Flip the switch to always get vtables from the VTT when necessary, I've verified that clang bootstraps with this. by Anders Carlsson · 15 years ago
  45. 0a4a2fd Use the newly added function in the VTT builder. by Anders Carlsson · 15 years ago
  46. 64c9eca Cleanup, no functionality change. by Anders Carlsson · 15 years ago
  47. 276701f Add the thunks needed by this vtable. by Anders Carlsson · 15 years ago
  48. aed924e Make sure to sort the vtable thunks by their vtable index :) With this we now pass the test from http://www.codesourcery.com/public/cxx-abi/abi-examples.html#vtable-ctor successfully. by Anders Carlsson · 15 years ago
  49. 14da9de Fix another thinko, so that flags don't depend on previous bases. by Anders Carlsson · 15 years ago
  50. b358814 When generating base ctors/dtors, we need to lookup virtual bases using the vtable. by Anders Carlsson · 15 years ago
  51. 80faf69 Fix thinko. by Anders Carlsson · 15 years ago
  52. c83f106 Use construction vtables when needed. This is currently guarded by -fdump-vtable-layouts since it doesn't work 100% yet :) by Anders Carlsson · 15 years ago
  53. f6da6a0 Two bug fixes, we weren't updating the thunk index when creating the vtable initializer and we weren't storing the secondary virtual pointer indices. by Anders Carlsson · 15 years ago
  54. 6a6aa53 Make default arguments to getFunctionNoProtoType an all or nothing option (as they already are in practise). by Rafael Espindola · 15 years ago
  55. 1279dee Drop default arguments no one is using. by Rafael Espindola · 15 years ago
  56. 603d6d1 Reapply r99775 with a fix for a silly bug - we were setting the vtable pointer for all bases, even those without a vtable pointer :) by Anders Carlsson · 15 years ago
  57. 4658990 Looks like I broke self-host again :(. by Anders Carlsson · 15 years ago
  58. bdb8865 More improvements to setting the vtable pointer. We now no longer set the vtable pointer for non-virtual primary bases. We also do a pre-order traversal of the class hierarchy; this is necessary in order to get the right vbase offset offsets in base ctors/dtors. by Anders Carlsson · 15 years ago
  59. d103f9f Factor vtable pointer setting code out into a separate function. by Anders Carlsson · 15 years ago
  60. 02024a9 After performing template argument deduction for a function template, by Douglas Gregor · 15 years ago
  61. 5e2d2c2 Checker: random include cleanup. by Benjamin Kramer · 15 years ago
  62. f283859 Further improvement to point to category by Fariborz Jahanian · 15 years ago
  63. ada087c Give thunks the same linkage as their original methods. by Anders Carlsson · 15 years ago
  64. 8822f7c Improve diagnostics on incomplete implementation by Fariborz Jahanian · 15 years ago
  65. 9a4d77f Remove VS information for analyzer until we have more real support. by Ted Kremenek · 15 years ago
  66. 03cf219 s/Clangify2010.py/clangify2010.py by Kovarththanan Rajaratnam · 15 years ago
  67. 2cc2675 Accumulate all functions and classes that the effective context is by John McCall · 15 years ago
  68. b0cb022 Implement method friends in class templates and fix a few related problems. by John McCall · 15 years ago
  69. d0c89a4 Test for the previous commit. by Rafael Espindola · 15 years ago
  70. d1a5c31 When given the magic class __cxxabiv1::__fundamental_type_info, produce by Rafael Espindola · 15 years ago
  71. b6e0edc Add initial draft of web page on 'clangifty2010.py' script for analyzing VS projects. by Ted Kremenek · 15 years ago
  72. d8e10d2 When mapping restrict to noalias, look for 'restrict' on the parameter variable by John McCall · 15 years ago
  73. 524c308 scan-build: set environment variable LDPLUSPLUS to 'c++-analyzer' to correctly link projects by Ted Kremenek · 15 years ago
  74. 5800f7e Fix comparison in isDiagnosticInFlight(). by Ted Kremenek · 15 years ago
  75. dec4c24 Remove unused static function by Douglas Gregor · 15 years ago
  76. b1a56e7 Put function templates instantiated from friend declarations in the correct by John McCall · 15 years ago
  77. c67b032 Compare namespaces properly when looking for redeclarations of by Douglas Gregor · 15 years ago
  78. cfd8ea9 Fix NoReturnFunctionChecker to properly look at a function's type by Ted Kremenek · 15 years ago
  79. 79f5e51 Add comment indicating that we intentionally don't add the noreturn by Ted Kremenek · 15 years ago
  80. d606848 When adding initializers to a constructor, be sure that we are looking by Douglas Gregor · 15 years ago
  81. 3bc96eb Driver/Darwin: Support CCC_ENABLE_NEW_DARWIN_TOOLCHAIN as an environment by Daniel Dunbar · 15 years ago
  82. 2243288 Properly account for redeclarations when explicitly instantiating class templates. by John McCall · 15 years ago
  83. 0fd8ff7 When trying to determine whether one operand of a conditional by Douglas Gregor · 15 years ago
  84. 29ecaba Eliminate the non-InitializedEntity PerformCopyInitialization() and by Douglas Gregor · 15 years ago
  85. 60c3893 Make sure we don't include mm_malloc.h in this test, it includes errno.h which by Daniel Dunbar · 15 years ago
  86. 82049c0 Fix 80 col violations. by Daniel Dunbar · 15 years ago
  87. b70cf44 Switch semantic analysis of the conditional operator from using by Douglas Gregor · 15 years ago
  88. c0e8f13 Runtime: Install the new libcc_kext.a produced by the clang_darwin compiler-rt by Daniel Dunbar · 15 years ago
  89. 1fc9e72 Spell -triple correctly for %clang, not %clang_cc1. by Daniel Dunbar · 15 years ago
  90. 9fabcbd i386-apple-darwin10 implies sse2, this option shouldn't be needed. by Chris Lattner · 15 years ago
  91. 8ff66de fix a case where macro expansion should be disabled, patch by Abramo Bagnara! by Chris Lattner · 15 years ago
  92. c7cf27f merge all the macro disable tests by using filecheck. by Chris Lattner · 15 years ago
  93. 8685110 fix a bug in paste avoidance which would cause us to accidentally by Chris Lattner · 15 years ago
  94. 5832a53 xmmintrin just requires sse2, not sse3. by Chris Lattner · 15 years ago
  95. 67e1706 No need to specify ${CMAKE_CURRENT_BINARY_DIR} by Kovarththanan Rajaratnam · 15 years ago
  96. 7c3745a add a slight variation of test3, where by Gabor Greif · 15 years ago
  97. 0e5f067 Implement new mangling for vectors. by Nick Lewycky · 15 years ago
  98. 9c12739 Do not mark the destructor of a function parameter's type. Fixes PR6709. by Douglas Gregor · 15 years ago
  99. 94e8ee5 Revert r99612 and see if it fixes self-host. by Anders Carlsson · 15 years ago
  100. 4a0bac9 Add tests for PR6707. by Douglas Gregor · 15 years ago