1. 0027d2b Add IRGen support for non-constant OffsetOfExpr. by Eli Friedman · 14 years ago
  2. 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
  3. 72b9057 Support #pragma weak for PCH. by Argyrios Kyrtzidis · 14 years ago
  4. 3f95477 Make sure C++ variable definitions are actually passed to the consumer when loaded from PCH. by Argyrios Kyrtzidis · 14 years ago
  5. 156361d Make checker recognize OffsetOfExpr as a form of __builtin_offsetof. by Eli Friedman · 14 years ago
  6. cee235c Give clang_codeCompleteAt() an "options" parameter, and add a new by Douglas Gregor · 14 years ago
  7. 57e9778 TDK_InconsistentQuals is really totally different from TDK_Inconsistent. by John McCall · 14 years ago
  8. f5072af Turn the predicate into an assertion. When could the unequal case happen? by Zhongxing Xu · 14 years ago
  9. aa8b0d1 Implement #pragma GCC visibility. by Eli Friedman · 14 years ago
  10. c133e9e Remove the warning for variables declared in the if-expression being used in by Nick Lewycky · 14 years ago
  11. db0bc47 Permit template argument deduction to add qualifiers within ObjC object by John McCall · 14 years ago
  12. 67c4a0c operator<< on a DiagnosticBuilder should *always* output exactly one thing. by John McCall · 14 years ago
  13. a9c7621 Tweak GRState::unbindLoc to use makeWithStore, and make sure it's only called for non-region locations. by Jordy Rose · 14 years ago
  14. 58f8b20 Remove InvalidateRegion from stores, since it's no longer called from outside. by Jordy Rose · 14 years ago
  15. fa86954 Preserve calling convention etc. across template instantiations. by Eli Friedman · 14 years ago
  16. 1357869 Get rid of isObjectType; when C++ says "object type", it generally by Eli Friedman · 14 years ago
  17. 7f584bb Drop an unjustified limitation from Type::isObjectType(). Fixes PR7801 and doesn't seem to break anything. by Sebastian Redl · 14 years ago
  18. 58e5539 Remove a redundant and broken check. Fixes PR7810. by Sebastian Redl · 14 years ago
  19. b8fd2eb Clean up of my last patch. by Fariborz Jahanian · 14 years ago
  20. 4019c4f Correctly handle 'Class<...>' when examining Cocoa conventions in the static analyzer. Fixes a crash reported in <rdar://problem/8272168>. Patch by Henry Mason! by Ted Kremenek · 14 years ago
  21. eea0d93 Remove bonehead redeclaration. by Ted Kremenek · 14 years ago
  22. 93ce50d Block variable layout bitmap API generation. by Fariborz Jahanian · 14 years ago
  23. 0fc67e2 Fix CFGBuilder to not blow out the stack when processing deeply nested CaseStmts. Fixes <rdar://problem/8268753>. by Ted Kremenek · 14 years ago
  24. 6500553 Extend the visibility-hidden optimization to linkonce_odr thunks for by John McCall · 14 years ago
  25. b8727e5 Logical AVX instrinsics can be matched directly, no need to use builtins here. by Bruno Cardoso Lopes · 14 years ago
  26. 7377ed9 Add -mavx and -mno-avx command line support by Bruno Cardoso Lopes · 14 years ago
  27. a68340f Activate selectors in chained PCH. Chained PCH now works for Objective-C. by Sebastian Redl · 14 years ago
  28. 55db5b8 Add AVX intrinsics header by Bruno Cardoso Lopes · 14 years ago
  29. fa78dec Bring stats for the method pool back. by Sebastian Redl · 14 years ago
  30. 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
  31. 68957a9 Teach SemaChecking::CheckReturnStackAddr about ImplicitCastExprs that convert values to an lvalue. This allows us to warn (again) about returning references to stack variables. (fixes PR 7812). by Ted Kremenek · 14 years ago
  32. 44034db More objc block variable layout info. work. by Fariborz Jahanian · 14 years ago
  33. 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
  34. e58aa89 When chaining, only write interesting selectors to the PCH. by Sebastian Redl · 14 years ago
  35. 5d05007 Store the IDs of selectors in the PCH file explicitly. by Sebastian Redl · 14 years ago
  36. b75d3df When performing in-process code completion, don't free the remapped by Douglas Gregor · 14 years ago
  37. 89ecd41 Some early work for providing block layout info. by Fariborz Jahanian · 14 years ago
  38. 1abc6bc Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 14 years ago
  39. cbfe502 Emit standard-library RTTI with external linkage, not weak_odr. by John McCall · 14 years ago
  40. 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
  41. 0c7d32b Extend the hidden-visibility vtables optimization to template classes that by John McCall · 14 years ago
  42. 0b25172 Some more correctness fixes and code-size optimizations for fragile-ABI by John McCall · 14 years ago
  43. eababfb When we try (but fail) to build a precompiled preamble, wait for a by Douglas Gregor · 14 years ago
  44. 1544282 Only look up an 'operator delete' on the definition of a destructor, not on by John McCall · 14 years ago
  45. 046a746 Look through using declarations when deciding whether to use an operator by John McCall · 14 years ago
  46. 39dad53 Do a very simple pass over every function we emit to infer whether we can by John McCall · 14 years ago
  47. 863e718 add a hack for visual studio, fixing PR7796 by Chris Lattner · 14 years ago
  48. 059612d Incomplete promotion of selector info to per-file data. by Sebastian Redl · 14 years ago
  49. 99c40bb Add support for VFP status & control operations for ARM. by Nate Begeman · 14 years ago
  50. f890679 Improved false positive detection and numerous small issues in UnreachableCodeChecker by Tom Care · 14 years ago
  51. 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
  52. eb8837b When using a precompiled preamble, keep track of the top-level by Douglas Gregor · 14 years ago
  53. 1d83243 PR7795: Fix the definition of __WCHAR_MAX__ with -fshort-wchar. by Eli Friedman · 14 years ago
  54. a865005 Apart from storing/retrieving the previous redeclaration from PCH, also store/retrieve the most recent by Argyrios Kyrtzidis · 14 years ago
  55. bc1e146 Send AST dumping/printing to stdout instead of stderr. by Argyrios Kyrtzidis · 14 years ago
  56. be4ebcd Avoid writing a VTABLE_USES record in PCH if there are no entries. by Argyrios Kyrtzidis · 14 years ago
  57. 8074ab3 fix some undefined behavior, PR7779. by Chris Lattner · 14 years ago
  58. 2dffe2d Driver: Don't forward any -g options to GCC, when using it to drive the by Daniel Dunbar · 14 years ago
  59. 1d715ac Reshuffle the PCH generator action and consumer, so that we can re-use by Douglas Gregor · 14 years ago
  60. 3d640e6 Emit weak vtables of non-template classes with hidden visibility. by John McCall · 14 years ago
  61. e3273e7 Allow offsets to be negative. Out-of-bound cases are checked elsewhere. We by Zhongxing Xu · 14 years ago
  62. e888233 Pull the region offset computation logic into a single method. by Zhongxing Xu · 14 years ago
  63. 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
  64. 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
  65. ad5a894 Add 'AnalysisContext::getUnoptimizedCFG()' to allow clients to get access to the original by Ted Kremenek · 14 years ago
  66. 97ba481 Labels (and case statement) don't create independent scope parents for the by John McCall · 14 years ago
  67. db9d214 Simplify global method pool implementation in Sema. No functionality change. by Sebastian Redl · 14 years ago
  68. f8dcf1a Fix another case (this time in JumpScopeChecker) where walking deeply nested CaseStmts can blow out the stack. Fixes <rdar://problem/8125165>. by Ted Kremenek · 14 years ago
  69. 074ae35 Fix idempotent operations false positive caused by ivars not being invalidated in function by Ted Kremenek · 14 years ago
  70. 4204f07 Further adjustments to -Wglobal-constructors; works for references and direct by John McCall · 14 years ago
  71. c0659ec When using a precompiled preamble, save the diagnostics produced when by Douglas Gregor · 14 years ago
  72. fe97fa1 'Assumption &A' gets default initialized to 'Possible' if it doesn't exist; no need to two by Ted Kremenek · 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. e04f5fc Compute width/align of objc builtin types (id, etc) for radar 8258797. by Fariborz Jahanian · 14 years ago
  76. 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
  77. 26faaac Rename getStdNamespace -> getOrCreateStdNamespace, to better reflect its functionality. by Argyrios Kyrtzidis · 14 years ago
  78. 25b58eb Driver/Darwin: Change where Darwin computes the host version, to normalize tool by Daniel Dunbar · 14 years ago
  79. 6699877 Driver: Have -ccc-host-triple simply override the default in the driver, for by Daniel Dunbar · 14 years ago
  80. c2bda62 Driver/Darwin: Inline some constants. by Daniel Dunbar · 14 years ago
  81. 214afe9 Driver/FreeBSD: Change how FreeBSD derives the Lib32 variable, to normalize tool by Daniel Dunbar · 14 years ago
  82. 4180011 Driver: Move HostInfo::lookupTypeForExtension to ToolChain::LookupTypeForExtension. by Daniel Dunbar · 14 years ago
  83. 74edcea Driver: Give Build{Universal,}Actions access to the default host tool chain. I by Daniel Dunbar · 14 years ago
  84. 7caf9b3 Improve flat store: MemRegion::getAsOffset() computes a region's offset within by Zhongxing Xu · 14 years ago
  85. 2fe238e Driver: Add Compilation::addCommand and switch tools to using it, now that we by Daniel Dunbar · 14 years ago
  86. d0b77e1 Driver: Eliminate PipedJob, which is now unused. by Daniel Dunbar · 14 years ago
  87. 7c1e465 Driver: Eliminate special InputInfo kind for pipes, it is now unused. by Daniel Dunbar · 14 years ago
  88. 8c631e3 Driver: Eliminate now unnecessary tool hooks for whether they accept piped input/output. by Daniel Dunbar · 14 years ago
  89. 9b18cca Driver: Simplify. by Daniel Dunbar · 14 years ago
  90. e434125 Driver: Eliminate now unused argument. by Daniel Dunbar · 14 years ago
  91. defcda7 Driver: Simplify logic for sending 'clang -E t.c' output to stdout. by Daniel Dunbar · 14 years ago
  92. 58e12fd Driver: Never try to use piped inputs. by Daniel Dunbar · 14 years ago
  93. c19a12d Driver: Start ripping out support for -pipe, which is worthless and complicates by Daniel Dunbar · 14 years ago
  94. 95c0457 Driver/OpenBSD: Update toolchain for compiler changes / C++; patch by Jonathan by Daniel Dunbar · 14 years ago
  95. edf29b0 Driver: Keep track of a separate "install dir", which is the path where clang by Daniel Dunbar · 14 years ago
  96. 270c035 PR7777: Set EnabledByDefault to something useful, instead of setting it by Eli Friedman · 14 years ago
  97. b4b9b15 Kill off RequiresGlobalConstructor in favor of isConstantInitializer. by John McCall · 14 years ago
  98. 626e96e Make a first pass at implementing -Wglobal-constructors. I'm worried that this by John McCall · 14 years ago
  99. 1d8d1cc Instantiate attributes from the pattern record when instantiating by John McCall · 14 years ago
  100. b567a8b Fix indentation. by John McCall · 14 years ago