1. 2cad900 Added TypeLocs to VAArgExpr node. by Abramo Bagnara · 14 years ago
  2. 3fcb73d Added TypeLocs to TypesCompatibleExpr node. by Abramo Bagnara · 14 years ago
  3. 4a5496b Make replicate intrinsics use shufflevector instead of dup builtins, also remove the dup builtins by Bruno Cardoso Lopes · 14 years ago
  4. c2350b2 Use i32 instead of i8 for AVX dot product intrinsic by Bruno Cardoso Lopes · 14 years ago
  5. ba30bbe Run the assembler instead of gcc on Linux. by Rafael Espindola · 14 years ago
  6. 368b76e Consider the last argument of vblend builtin to be i32 instead of i8 by Bruno Cardoso Lopes · 14 years ago
  7. 6b308f6 Implements gcc's -Wstrict-selector-match. (radar 8127244). by Fariborz Jahanian · 14 years ago
  8. b1c031b Instead of having a specific CXTranslationUnit_* option flag for by Douglas Gregor · 14 years ago
  9. 74c730a - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition. by Sebastian Redl · 14 years ago
  10. 35cc962 Added vecreturn attribute parsing. by John Thompson · 14 years ago
  11. 219cffc Change warning about incomplete parsing of C++ default arg to error and provide a test case; thanks Doug! by Argyrios Kyrtzidis · 14 years ago
  12. df95a13 Use precompiled preambles for in-process code completion. by Douglas Gregor · 14 years ago
  13. 9668033 Revert the dump functions to send output to llvm::errs(), matching the LLVM convention; suggestion by Daniel. by Argyrios Kyrtzidis · 14 years ago
  14. f315fd6 Replace a parser assertion with a warning, suggestion by Doug. by Argyrios Kyrtzidis · 14 years ago
  15. 9d50c06 Support ObjC implementation decls for PCH. by Argyrios Kyrtzidis · 14 years ago
  16. 8e706f4 Refactor into functions PCH reading/writing the CXXBaseOrMemberInitializers. No functionality change. by Argyrios Kyrtzidis · 14 years ago
  17. 42b879a Remove C++0x concept keyword tokens since concepts were removed from C++0x. by Sean Hunt · 14 years ago
  18. 10fe93d Revert r110440, the fix for PR4897. Chris claims to have a better way. by Douglas Gregor · 14 years ago
  19. f84d409 Make -funroll-loops turn on loop unrolling in the optimizer instead by Eric Christopher · 14 years ago
  20. 2f05449 Push location through the MacroUndefined PPCallback and use it to print #undefs in -dD mode. (PR7818) by Benjamin Kramer · 14 years ago
  21. 569c316 Allow reference binding of a reference of Objective-C object type to by Douglas Gregor · 14 years ago
  22. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  23. 1fafd1d Removed IdempotentOperationChecker from default analysis and returned back to a flag (-analyzer-check-idempotent-operations) by Tom Care · 14 years ago
  24. db14230 Fix leaks of ExplicitSpecializationInfo objects by allocating them with 'new (ASTContext)' instead of 'new'. by Ted Kremenek · 14 years ago
  25. 7c15353 Template keyword should not be ignored building a QualifiedTemplateName. by Abramo Bagnara · 14 years ago
  26. 91db30a Fix the #include search path when reading from stdin, from Jon Simons! by Douglas Gregor · 14 years ago
  27. ed328c6 Diagnose the use of "inline" on block-scope function declarations in by Douglas Gregor · 14 years ago
  28. 255210e Introduce implicit conversions between AltiVec vectors and GCC by Douglas Gregor · 14 years ago
  29. 2b602ad Introduce a new token kind 'cxx_defaultarg_end' to mark the end of C++ default arguments that were part of by Argyrios Kyrtzidis · 14 years ago
  30. fcecd3c Remove ElseScope which is also dead code now. by Nick Lewycky · 14 years ago
  31. a834888 Remove the DeclaredInCondition bit now that it's no longer used. by Nick Lewycky · 14 years ago
  32. cd480ad vdup_lane was missing <rdar://problem/8278732> by Nate Begeman · 14 years ago
  33. f8c6db4 We don't want to support built-ins which aren't needed by the intrinsics. Remove them by Bruno Cardoso Lopes · 14 years ago
  34. a7be506 Collect namespaces that need updating in a PCH chain. WIP by Sebastian Redl · 14 years ago
  35. 7a53690 It turns out that linkers (at least, the Darwin linker) don't necessarily by John McCall · 14 years ago
  36. 0e03638 Store the pending implicit instantiations in the PCH and perform them at the end of the translation unit that by Argyrios Kyrtzidis · 14 years ago
  37. 72b9057 Support #pragma weak for PCH. by Argyrios Kyrtzidis · 14 years ago
  38. cee235c Give clang_codeCompleteAt() an "options" parameter, and add a new by Douglas Gregor · 14 years ago
  39. 57e9778 TDK_InconsistentQuals is really totally different from TDK_Inconsistent. by John McCall · 14 years ago
  40. aa8b0d1 Implement #pragma GCC visibility. by Eli Friedman · 14 years ago
  41. c133e9e Remove the warning for variables declared in the if-expression being used in by Nick Lewycky · 14 years ago
  42. 14bc105 Add support for -Woverlength-strings. by Eli Friedman · 14 years ago
  43. 1357869 Get rid of isObjectType; when C++ says "object type", it generally by Eli Friedman · 14 years ago
  44. 7377ed9 Add -mavx and -mno-avx command line support by Bruno Cardoso Lopes · 14 years ago
  45. fa78dec Bring stats for the method pool back. by Sebastian Redl · 14 years ago
  46. 725cd96 Implement per-file reading of the selector table. This disables statistics about method pool hits for the moment. by Sebastian Redl · 14 years ago
  47. a6d6930 Add CFGStmtMap, which defines a mapping from Stmt* to CFGBlock*. The immediate intended use is in the unreachable code analysis. by Ted Kremenek · 14 years ago
  48. e58aa89 When chaining, only write interesting selectors to the PCH. by Sebastian Redl · 14 years ago
  49. 5d05007 Store the IDs of selectors in the PCH file explicitly. by Sebastian Redl · 14 years ago
  50. 1abc6bc Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 14 years ago
  51. 72905cf Change the checker callback cache in GRExprEngine to be more compact (and IMHO a little easier to understand), and add the same sort of caching for EvalAssume (tied for least-used callback), mostly as proof-of-concept. by Jordy Rose · 14 years ago
  52. 5fcefd9 Accept and ignore (for now) -funroll-loops. by Eric Christopher · 14 years ago
  53. eababfb When we try (but fail) to build a precompiled preamble, wait for a by Douglas Gregor · 14 years ago
  54. e898ed5 Add more AVX 256-bit intrinsics and test cases for them by Bruno Cardoso Lopes · 14 years ago
  55. 046a746 Look through using declarations when deciding whether to use an operator by John McCall · 14 years ago
  56. 059612d Incomplete promotion of selector info to per-file data. by Sebastian Redl · 14 years ago
  57. 99c40bb Add support for VFP status & control operations for ARM. by Nate Begeman · 14 years ago
  58. ac63193 Remove DoneEvaluating field (unused since r90296) by Jordy Rose · 14 years ago
  59. ff59efd Makes GRState::makeWithStore private, to encourage clients to make store changes through GRState instead of directly accessing the StoreManager. Also adds cover methods for InvalidateRegion(s) and EnterStackFrame to GRState. by Jordy Rose · 14 years ago
  60. eb8837b When using a precompiled preamble, keep track of the top-level by Douglas Gregor · 14 years ago
  61. a865005 Apart from storing/retrieving the previous redeclaration from PCH, also store/retrieve the most recent by Argyrios Kyrtzidis · 14 years ago
  62. ba5ff8c Introduce getMostRecentDeclaration() and getFirstDeclaration() for RedeclarableTemplateDecl. by Argyrios Kyrtzidis · 14 years ago
  63. 1d715ac Reshuffle the PCH generator action and consumer, so that we can re-use by Douglas Gregor · 14 years ago
  64. e3273e7 Allow offsets to be negative. Out-of-bound cases are checked elsewhere. We by Zhongxing Xu · 14 years ago
  65. e888233 Pull the region offset computation logic into a single method. by Zhongxing Xu · 14 years ago
  66. 5ce9462 Support x86 AVX 256-bit instructions built-ins. Right now support all of them, but by Bruno Cardoso Lopes · 14 years ago
  67. bc42c53 Changed GRExprEngine to pass down a reference to itself when checkers are doing postanalysis. This allows the checker to gather information about the state of the engine when it has finished. by Tom Care · 14 years ago
  68. 9b823e8 Add -cc1 option '-unoptimized-cfg' to toggle using a CFG (for static analysis) that doesn't prune CFG edges. by Ted Kremenek · 14 years ago
  69. ad5a894 Add 'AnalysisContext::getUnoptimizedCFG()' to allow clients to get access to the original by Ted Kremenek · 14 years ago
  70. 97ba481 Labels (and case statement) don't create independent scope parents for the by John McCall · 14 years ago
  71. 4204f07 Further adjustments to -Wglobal-constructors; works for references and direct by John McCall · 14 years ago
  72. c0659ec When using a precompiled preamble, save the diagnostics produced when by Douglas Gregor · 14 years ago
  73. d8c5abb Query only the latest version of an identifier in the PCH chain. Make sure this version holds the entire declaration chain. This is a much saner solution than trying to merge the info from all elements, and makes redeclarations work properly. Expand the declarations test case to cover more compliated cases. by Sebastian Redl · 14 years ago
  74. ed48a8f Remove mutable data on TagType and InjectedClassNameType, by instead walking the declaration chain in search of a definition. This is necessary for a sane chained PCH implementation. No observable performance change on Carbon.h syntax-only, and bootstraps cleanly. by Sebastian Redl · 14 years ago
  75. f56a488 Frontend: Change PluginASTAction::ParseArgs to take a CompilerInstance object by Daniel Dunbar · 14 years ago
  76. 9c1845d You actually have to include a header in order to use a symbol, it's so 90s.. by Argyrios Kyrtzidis · 14 years ago
  77. b81645f Use llvm_unreachable. by Argyrios Kyrtzidis · 14 years ago
  78. 62db888 Shut up warnings in Release build. by Argyrios Kyrtzidis · 14 years ago
  79. 76c38d3 Read/write in PCH Sema's StdNamespace and StdBadAlloc and use a LazyDeclPtr for them that will deserialize them when needed. by Argyrios Kyrtzidis · 14 years ago
  80. 4180011 Driver: Move HostInfo::lookupTypeForExtension to ToolChain::LookupTypeForExtension. by Daniel Dunbar · 14 years ago
  81. 74edcea Driver: Give Build{Universal,}Actions access to the default host tool chain. I by Daniel Dunbar · 14 years ago
  82. 7caf9b3 Improve flat store: MemRegion::getAsOffset() computes a region's offset within by Zhongxing Xu · 14 years ago
  83. 2fe238e Driver: Add Compilation::addCommand and switch tools to using it, now that we by Daniel Dunbar · 14 years ago
  84. d0b77e1 Driver: Eliminate PipedJob, which is now unused. by Daniel Dunbar · 14 years ago
  85. 8c631e3 Driver: Eliminate now unnecessary tool hooks for whether they accept piped input/output. by Daniel Dunbar · 14 years ago
  86. e434125 Driver: Eliminate now unused argument. by Daniel Dunbar · 14 years ago
  87. edf29b0 Driver: Keep track of a separate "install dir", which is the path where clang by Daniel Dunbar · 14 years ago
  88. b4b9b15 Kill off RequiresGlobalConstructor in favor of isConstantInitializer. by John McCall · 14 years ago
  89. 626e96e Make a first pass at implementing -Wglobal-constructors. I'm worried that this by John McCall · 14 years ago
  90. 64a1523 Iterate typeloc's for class bases. by Nick Lewycky · 14 years ago
  91. cbb98ed Parser: Add support for #pragma align, which is just another spelling of #pragma by Daniel Dunbar · 14 years ago
  92. dd0e490 After a lengthy design discussion, add support for "ownership attributes" for malloc/free checking. Patch by Andrew McGregor! by Ted Kremenek · 14 years ago
  93. cc5888d Implement dependency analysis for the precompiled preamble. If any of by Douglas Gregor · 14 years ago
  94. 385103b Add some timers to ASTUnit that are only enabled when the LIBCLANG_TIMING environment variable is set. by Douglas Gregor · 14 years ago
  95. 9f339ba Add specialisation iterators for {Class,Function}TemplateDecl by Peter Collingbourne · 14 years ago
  96. 4048590 Refactor find*Specialization functions using SpecEntryTraits by Peter Collingbourne · 14 years ago
  97. 44dd0b4 Introduce RedeclarableTemplateDecl::SpecEntryTraits by Peter Collingbourne · 14 years ago
  98. 35f9a19 Fixed typedef inside extern "C". by Abramo Bagnara · 14 years ago
  99. 29ee3a2 Refactor the way PCHReader tracks whether we are in recursive loading. by Argyrios Kyrtzidis · 14 years ago
  100. ffaab3e Make macro weirdness in chained PCH work. This required changing the way PCHReader and PCHWriter are initialized to correctly pick up all initializer. On the upside, this means that there is far less repetition in the dependent PCH now. by Sebastian Redl · 14 years ago