1. a865005 Apart from storing/retrieving the previous redeclaration from PCH, also store/retrieve the most recent by Argyrios Kyrtzidis · 14 years ago
  2. ba5ff8c Introduce getMostRecentDeclaration() and getFirstDeclaration() for RedeclarableTemplateDecl. by Argyrios Kyrtzidis · 14 years ago
  3. 1d715ac Reshuffle the PCH generator action and consumer, so that we can re-use by Douglas Gregor · 14 years ago
  4. e3273e7 Allow offsets to be negative. Out-of-bound cases are checked elsewhere. We by Zhongxing Xu · 14 years ago
  5. e888233 Pull the region offset computation logic into a single method. by Zhongxing Xu · 14 years ago
  6. 5ce9462 Support x86 AVX 256-bit instructions built-ins. Right now support all of them, but by Bruno Cardoso Lopes · 14 years ago
  7. 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
  8. 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
  9. ad5a894 Add 'AnalysisContext::getUnoptimizedCFG()' to allow clients to get access to the original by Ted Kremenek · 14 years ago
  10. 97ba481 Labels (and case statement) don't create independent scope parents for the by John McCall · 14 years ago
  11. 4204f07 Further adjustments to -Wglobal-constructors; works for references and direct by John McCall · 14 years ago
  12. c0659ec When using a precompiled preamble, save the diagnostics produced when by Douglas Gregor · 14 years ago
  13. 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
  14. 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
  15. f56a488 Frontend: Change PluginASTAction::ParseArgs to take a CompilerInstance object by Daniel Dunbar · 14 years ago
  16. 9c1845d You actually have to include a header in order to use a symbol, it's so 90s.. by Argyrios Kyrtzidis · 14 years ago
  17. b81645f Use llvm_unreachable. by Argyrios Kyrtzidis · 14 years ago
  18. 62db888 Shut up warnings in Release build. by Argyrios Kyrtzidis · 14 years ago
  19. 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
  20. 4180011 Driver: Move HostInfo::lookupTypeForExtension to ToolChain::LookupTypeForExtension. by Daniel Dunbar · 14 years ago
  21. 74edcea Driver: Give Build{Universal,}Actions access to the default host tool chain. I by Daniel Dunbar · 14 years ago
  22. 7caf9b3 Improve flat store: MemRegion::getAsOffset() computes a region's offset within by Zhongxing Xu · 14 years ago
  23. 2fe238e Driver: Add Compilation::addCommand and switch tools to using it, now that we by Daniel Dunbar · 14 years ago
  24. d0b77e1 Driver: Eliminate PipedJob, which is now unused. by Daniel Dunbar · 14 years ago
  25. 8c631e3 Driver: Eliminate now unnecessary tool hooks for whether they accept piped input/output. by Daniel Dunbar · 14 years ago
  26. e434125 Driver: Eliminate now unused argument. by Daniel Dunbar · 14 years ago
  27. edf29b0 Driver: Keep track of a separate "install dir", which is the path where clang by Daniel Dunbar · 14 years ago
  28. b4b9b15 Kill off RequiresGlobalConstructor in favor of isConstantInitializer. by John McCall · 14 years ago
  29. 626e96e Make a first pass at implementing -Wglobal-constructors. I'm worried that this by John McCall · 14 years ago
  30. 64a1523 Iterate typeloc's for class bases. by Nick Lewycky · 14 years ago
  31. cbb98ed Parser: Add support for #pragma align, which is just another spelling of #pragma by Daniel Dunbar · 14 years ago
  32. 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
  33. cc5888d Implement dependency analysis for the precompiled preamble. If any of by Douglas Gregor · 14 years ago
  34. 385103b Add some timers to ASTUnit that are only enabled when the LIBCLANG_TIMING environment variable is set. by Douglas Gregor · 14 years ago
  35. 9f339ba Add specialisation iterators for {Class,Function}TemplateDecl by Peter Collingbourne · 14 years ago
  36. 4048590 Refactor find*Specialization functions using SpecEntryTraits by Peter Collingbourne · 14 years ago
  37. 44dd0b4 Introduce RedeclarableTemplateDecl::SpecEntryTraits by Peter Collingbourne · 14 years ago
  38. 35f9a19 Fixed typedef inside extern "C". by Abramo Bagnara · 14 years ago
  39. 29ee3a2 Refactor the way PCHReader tracks whether we are in recursive loading. by Argyrios Kyrtzidis · 14 years ago
  40. 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
  41. 3ce9e7d Add clang_isPODType() for querying if the CXType is POD. Implements <rdar://problem/8250669>. by Ted Kremenek · 14 years ago
  42. bb37f50 Wire up sema checking for __builtin_arm_usat and __builtin_arm_ssat immediates. by Nate Begeman · 14 years ago
  43. 4ac7c0b Change the name to something less terrible; suggestion by Doug. No functionality change. by Argyrios Kyrtzidis · 14 years ago
  44. 90e99a8 Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 14 years ago
  45. f640477 Add codegen support for ARM qadd & qsub intrinsics by Nate Begeman · 14 years ago
  46. f88718e Implement RedeclarableTemplateDecl::getNextRedeclaration by Peter Collingbourne · 14 years ago
  47. 8a798a7 Store latest redeclaration for each redeclarable template declaration by Peter Collingbourne · 14 years ago
  48. 9eabeba Refactor redeclarable template declarations by Peter Collingbourne · 14 years ago
  49. 447234d Allow a looser form of compatibility checking (which ignores by Douglas Gregor · 14 years ago
  50. 254a942 When deleting a value of class type, make sure that type is complete by Douglas Gregor · 14 years ago
  51. 0333296 Reword the empty struct/union warning in C to note that such structs and unions have size 0 in C, size 1 in C++. Put this warning under -Wc++-compat. by Douglas Gregor · 14 years ago
  52. e8a126b PR7736: Make sure to mark &Class::Member correctly as being type-dependent by Eli Friedman · 14 years ago
  53. c46111e Make the pointer arguments to the __sync_* builtins pointers to by Douglas Gregor · 14 years ago
  54. c3acb91 accept and ignore a few more gcc warnings. by Chris Lattner · 14 years ago
  55. be9aa96 Add proper callbacks for DeclStmt -- we weren't recursing on by Craig Silverstein · 14 years ago
  56. 5ec85c6 Rename -Wlogical-bitwise-confusion to -Wconstant-logical-operand, which strikes by Daniel Dunbar · 14 years ago
  57. a9fbf5b Extracted out some useful common functions in IdempotentOperationChecker to their own CheckerHelpers file. by Tom Care · 14 years ago
  58. 083abdf Record macros in dependent PCHs. Also add various info tables to dependent PCHs; tests for this to follow. by Sebastian Redl · 14 years ago
  59. a6d6af3 Revert r109546, it broke linux build. by Argyrios Kyrtzidis · 14 years ago
  60. ee94e2d Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 14 years ago
  61. 60a5257 APIs that take different sized arguments than the instruction by Eric Christopher · 14 years ago
  62. a84c02d Add non-static version of BinaryOperator::getOpcodeStr(). by Ted Kremenek · 14 years ago
  63. d692af7 Update the list of lexical decls in the TU for chained PCHs. This makes -ast-print show the decls from the dependent PCH. by Sebastian Redl · 14 years ago
  64. 2823342 Fix use-after-free with precompiled preambles by Douglas Gregor · 14 years ago
  65. 96827eb Revert r109428 "Hoist argument type checking into CheckFormatHandler. This is prep for scanf format" by Michael J. Spencer · 14 years ago
  66. 94e3d1f Add PTHLexer::LexEndOfFile() to emit diagnostics at end-of-file similar to those by Lexer::LexEndOfFile(). by Ted Kremenek · 14 years ago
  67. 56eb1ec Fix predicate in 'InCachingLexMode' to include 'CurPTHLexer'. by Ted Kremenek · 14 years ago
  68. fae3b2f Implement -fno-validate-pch at the -cc1 level, which suppresses most by Douglas Gregor · 14 years ago
  69. 681d723 - Fix recording of offsets of types in dependent PCHs. by Sebastian Redl · 14 years ago
  70. dee832c Mark __builtin_eh_return as noreturn. Patch by Dimitry Andric. by Benjamin Kramer · 14 years ago
  71. f4f6c9d Introduce basic support for loading a precompiled preamble while by Douglas Gregor · 14 years ago
  72. 55c6570 It's not necessary to call flush() on a raw_ostream immediately prior by Dan Gohman · 14 years ago
  73. f762905 Hoist argument type checking into CheckFormatHandler. This is prep for scanf format by Ted Kremenek · 14 years ago
  74. 5606220 Add source location information to C++ base specifiers. by Nick Lewycky · 14 years ago
  75. 3d398aa When LIBCLANG_CODE_COMPLETION_LOGGING is set in the environment, log code-completion command lines to stderr by Douglas Gregor · 14 years ago
  76. 87c3007 Eliminate the "minimal" and printing parser actions, which only ever by Douglas Gregor · 14 years ago
  77. 3c2d301 Wrap bit mangling logic for DiagMappings in its own class so it doesn't leak by Benjamin Kramer · 14 years ago
  78. 7cb6bd7 Remove a bunch of trivial destructors by Douglas Gregor · 14 years ago
  79. afb6416 Move Type destructor out-of-line by Douglas Gregor · 14 years ago
  80. a2da780 Remove destructors from declaration nodes by Douglas Gregor · 14 years ago
  81. 1de22a2 I lied. Kill off a few more Destroy methods by Douglas Gregor · 14 years ago
  82. 37db4db Kill off the last Destroy method in the AST library by Douglas Gregor · 14 years ago
  83. ff331c1 Remove the vast majority of the Destroy methods from the AST library, by Douglas Gregor · 14 years ago
  84. 63fe86b Make ASTContext always use the BumpPtrAllocator. by Douglas Gregor · 14 years ago
  85. 45ba9a1 Start removing the use of smart pointers from the Parse/Sema by Douglas Gregor · 14 years ago
  86. 5818f22 Fix sort order. by Nick Lewycky · 14 years ago
  87. 754f349 Once we've built (or reused) a precompiled preamble, create the by Douglas Gregor · 14 years ago
  88. 5a18039 Support catching Objective C pointers in C++ under the non-fragile NeXT runtime. by John McCall · 14 years ago
  89. 175c4a9 Once we've built a precompiled preamble, keep track of the details of by Douglas Gregor · 14 years ago
  90. f2f0f03 Make declarations in the dependent PCH visible, for C at least. by Sebastian Redl · 14 years ago
  91. 3201983 PCH read/write for selector reference pool. Finishes off radar 6507158. by Fariborz Jahanian · 14 years ago
  92. cdd209d Dataflow solver: Don't overrwite the initial value of a block with top unless new values are available. Patch by Simone Pellegrini! by Ted Kremenek · 14 years ago
  93. f609462 Vectors are not integer types, so the type system should not classify by Douglas Gregor · 14 years ago
  94. d5ef7b2 Change arg type. by Zhongxing Xu · 14 years ago
  95. b732791 AnalysisContext is not const. by Zhongxing Xu · 14 years ago
  96. 44c181a Basic plumbing for generating a precompiled preamble for an by Douglas Gregor · 14 years ago
  97. 69d5624 Warn when property ivar lookup finds a global variable by Fariborz Jahanian · 14 years ago
  98. 577d479 Thread bitstream cursors all the way through the AST reading stuff. This way, reading a trivial 2-element chained file actually works. by Sebastian Redl · 14 years ago
  99. a8e5c5b Improve performance during cursor traversal when a region of interest by Douglas Gregor · 14 years ago
  100. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago