1. ac836e4 Introduce SourceManager::getMacroArgExpandedLocation function. by Argyrios Kyrtzidis · 13 years ago
  2. 37e59a1 Make SourceManager::isBeforeInTranslationUnit handle macro locations correctly. by Argyrios Kyrtzidis · 13 years ago
  3. d21683c [PCH] When writing out ExpansionInfo, make sure we don't lose track if it's a macro arg expansion or not. by Argyrios Kyrtzidis · 13 years ago
  4. b33c19f Switch this code to use the more idiomatic 'dyn_cast' pattern. by Chandler Carruth · 13 years ago
  5. 5bd0495 [analyzer] teach ExprEngine about loads from static C++ class fields. Fixes <rdar://problem/9948787>. by Ted Kremenek · 13 years ago
  6. 08b8653 [analyzer] Overhaul of checker registration in preparation for basic plugin support. Removes support for checker groups (we can add them back in later if we decide they are still useful), and -analyzer-checker-help output is a little worse for the time being (no packages). by Jordy Rose · 13 years ago
  7. f391dbe Finalize debug info after all deferred globals are emitted. by Devang Patel · 13 years ago
  8. b1a1950 MacOSKeychainAPIChecker: Turn it on by default. by Anna Zaks · 13 years ago
  9. f0c7fe5 MacOSKeychainAPIChecker: Do not report double allocation if first allocation returned an error. by Anna Zaks · 13 years ago
  10. 3b9e8e4 [analyzer] Enhance ConditionVisitor to handle arbitrary ValueDecls in binary expressions, and also handle inverting the order of comparison when the named decl appears on the RHS. by Ted Kremenek · 13 years ago
  11. 4ee7c9c [analyzer] fix operation inversion calculation in ConditionVisitor. by Ted Kremenek · 13 years ago
  12. 681bc11 [analyzer] Enhance ConditionVisitor to understand eagerly evaluated (simple) binary conditions, and teach it to only focus on constraint changes. by Ted Kremenek · 13 years ago
  13. 6c7511d [analyzer] add ExprEngine::getEagerlyAssumedTags() to allow externally querying of "eagerly assumed" expressions. by Ted Kremenek · 13 years ago
  14. 86b39f2 [analyzer] Remove PostStmtCustom ProgramPoint. It can be represented using tagged PostStmts. by Ted Kremenek · 13 years ago
  15. 7d458b0 MacOSKeychainAPIChecker: The security API/memory leak checker should always generate regular nodes instead of sink nodes. by Anna Zaks · 13 years ago
  16. 2fde35d Add ProgramState.cpp. by Ted Kremenek · 13 years ago
  17. 4111fef Use new DIBuilder::finalize() at the end to wrap up debug info encoding for a translation unit. by Devang Patel · 13 years ago
  18. 041087c 'pure' and 'const' functions should also be marked nounwind. Migrate by Eric Christopher · 13 years ago
  19. 18c66fd Rename GRState to ProgramState, and cleanup some code formatting along the way. by Ted Kremenek · 13 years ago
  20. af1fc7a Track in the AST whether a function is constexpr. by Richard Smith · 13 years ago
  21. faef9fc Make -findirect-virtual-calls and -fterminated-vtables aliases of -fapple-kext. by Bob Wilson · 13 years ago
  22. 0ac1ccc Remove duplicate option. by Bob Wilson · 13 years ago
  23. 67f7fa4 MacOSKeychainAPIChecker: Use llvm::SmallString instead of std::string (as per code review for r137523). by Anna Zaks · 13 years ago
  24. 9b127f3 Add fixit notes for -Wconstant-logical-operand. by Matt Beaumont-Gay · 13 years ago
  25. f20d272 Teach reference initialization from the result of a user-defined by Douglas Gregor · 13 years ago
  26. 0d95f0d Fix typo. by Francois Pichet · 13 years ago
  27. ec24b0e Fix r137086 to actually work properly in general. PR10650. by Eli Friedman · 13 years ago
  28. af0f4d0 Implement function template specialization at class scope extension in Microsoft mode. A new AST node is introduced: ClassScopeFunctionSpecialization. This node holds a FunctionDecl that is not yet specialized; then during the class template instantiation the ClassScopeFunctionSpecialization will spawn the actual function specialization. by Francois Pichet · 13 years ago
  29. 57c43a2 Fix "Uninitialized" warnings on g++-4.4. by NAKAMURA Takumi · 13 years ago
  30. a544aee Reject -mkernel for i386/Darwin C++ code; fall back to llvm-gcc instead. by Bob Wilson · 13 years ago
  31. cc52a06 Add support of -x objc-cpp-output, -x objc++-cpp-output to the Driver. by Nico Weber · 13 years ago
  32. 1f7957d Accept -x objc++-cpp-output as an alias for -x objective-c++-cpp-output by Nico Weber · 13 years ago
  33. 7c5109b Fix C++0x narrowing conversion errors in Clang. by Jeffrey Yasskin · 13 years ago
  34. 83bbba1 Move handling of vget_lane/vset_lane before the code that checks the type. by Bob Wilson · 13 years ago
  35. b18d503 [driver] Make sure to update the iterator end when erasing for Args. by Chad Rosier · 13 years ago
  36. 9c378f7 Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer and libStaticAnalyzer[*]. It was highly inconsistent, and very ugly to look at. by Ted Kremenek · 13 years ago
  37. 137a20b [driver] When generating clang failure diagnostics, don't try to preprocess by Chad Rosier · 13 years ago
  38. 20fd867 Return the proper type for objects when given a .o extension. by Chad Rosier · 13 years ago
  39. ca80453 [analyzer] change "tag" in ProgramPoint from "void*" to a ProgramPointTag*. by Ted Kremenek · 13 years ago
  40. 79c9c75 MacOSKeychainAPIChecker: If the allocated data address entered as an enclosing function parameter, skip it to avoid false positives. by Anna Zaks · 13 years ago
  41. be69f60 [driver] Refactor a bit to enable a few fixes when generating diagnostics. No functional change intended. by Chad Rosier · 13 years ago
  42. 703ffb1 MacOSKeychainAPIChecker: by Anna Zaks · 13 years ago
  43. 096aef9 [analyzer] Nitpicks on Olaf's patch, which I meant to e-mail but then didn't in by Jordy Rose · 13 years ago
  44. 864d252 MacOSKeychainAPIChecker: There is no need to use SymbolMetadata to represent the allocated data symbol, we can just use the symbol corresponding to the SymbolicRegion. This simplifies tracking of the symbol, for example, SymbolMetadata needs to go through extra hoops to stay alive. by Anna Zaks · 13 years ago
  45. 6d0ee8d Conversions to bool count as integer conversions for the purposes of by Jeffrey Yasskin · 13 years ago
  46. 3a02b44 metadata generated by the compiler does not include the weak by Fariborz Jahanian · 13 years ago
  47. 9697934 [analyzer] Introduce new MemRegion, "TypedValueRegion", so that we can separate TypedRegions that implement getValueType() from those that don't. by Ted Kremenek · 13 years ago
  48. 37bee67 Fix some comments. by Richard Smith · 13 years ago
  49. c1c2011 switch clang to use the new-new way of creating llvm::StructType's. by Chris Lattner · 13 years ago
  50. f80b0db Overriding the predefined Protocol isn't something that's actually by Douglas Gregor · 13 years ago
  51. 5290c80 Revert "Fix crash in CFGBuilder involving implicit destructor calls and gotos jumping after an object was declared. Fixes PR 10620." by Ted Kremenek · 13 years ago
  52. 772eeae Switch the __int128_t and __uint128_t types over to predefined types by Douglas Gregor · 13 years ago
  53. 7a27ea5 Switch the Objective-C 'SEL' type over to a predefined type in the by Douglas Gregor · 13 years ago
  54. 79d6726 Switch the Objective-C 'Class' type over to a predefined type in the by Douglas Gregor · 13 years ago
  55. ddddd48 De-Unicode-ify. by NAKAMURA Takumi · 13 years ago
  56. 4dfd02a Move the creation of the predefined typedef for Objective-C's 'id' by Douglas Gregor · 13 years ago
  57. a809447 Fix crash in CFGBuilder involving implicit destructor calls and gotos jumping after an object was declared. Fixes PR 10620. by Ted Kremenek · 13 years ago
  58. 7b0a038 Alignment of a va_arg must be at least as large as the ABI's minimum alignment. by Akira Hatanaka · 13 years ago
  59. 3827e42 Add definition of a static member of a class. by Akira Hatanaka · 13 years ago
  60. b7c324f Collapse ASTWriter::WriteASTChain into ASTWriter::WriteASTCore, by Douglas Gregor · 13 years ago
  61. 579ad7a Optimizations for Dependent Symbol tracking (as per Ted's code review for r137309): by Anna Zaks · 13 years ago
  62. 6bf2b9f In the serialized AST format, make the translation unit a "predefined" by Douglas Gregor · 13 years ago
  63. 63ab2c5 Fix a PCH crash bug where we kept a reference inside a DenseMap while the map was getting modified. by Argyrios Kyrtzidis · 13 years ago
  64. 79e610a The current warning in -Wnull-arithmetic for comparisons between NULL and non-pointers is not very helpful. This patch will update the wording to be more helpful to users. by Richard Trieu · 13 years ago
  65. 5f95728 When initializing a context from a particular AST file, check whether by Douglas Gregor · 13 years ago
  66. 30403a6 The AST reader and writer don't need accessors for poking at the predefined Objective-C types by Douglas Gregor · 13 years ago
  67. 01a4cf1 Encapsulate the Objective-C id/Class/SEL "redefinition" types in by Douglas Gregor · 13 years ago
  68. 0aeb289 Extended the AST importer to support ParenTypes. by Sean Callanan · 13 years ago
  69. 89f9209 Analyzer Core: Adding support for user-defined symbol dependencies. (For example, the allocated resource symbol only needs to be freed if no error has been returned by the allocator, so a checker might want to make the lifespan of the error code symbol depend on the allocated resource symbol.) Note, by default, the map that holds the dependencies will get destroyed along with the SymbolManager at the end of function exploration. by Anna Zaks · 13 years ago
  70. 03720fc Raw string followup. Pass a couple StringRefs by value. by Craig Topper · 13 years ago
  71. 2fa4e86 Add support for C++0x raw string literals. by Craig Topper · 13 years ago
  72. 777d6e5 Simplify EH control flow by observing that EH scopes form a simple by John McCall · 13 years ago
  73. 0e89061 Cleanup: remove CleanedSate member and GetState() wrapper from StmtNodeBuilder, not needed as of r137273. by Anna Zaks · 13 years ago
  74. db5e8cd Cleanup: remove GetState() wrapper from ExprEngine, not needed as of r137273. by Anna Zaks · 13 years ago
  75. 6bd528b Analyzer Core: In checkDeadSymbols checker callback, provide the state in which the symbols are not yet deleted so that checkers could inspect them. Since we are now always creating a transition in ProcessStmt(), remove the logic for adding a transition when none was generated. TODO: the extra transitions will have to be removed; more cleanups; a checker that tests teh new fucntionality. by Anna Zaks · 13 years ago
  76. 70979d4 Refactoring of DiagnoseBitwisePrecedence() in SemaExpr.cpp to reduce code duplication. by Richard Trieu · 13 years ago
  77. a6d1e76 When performing the lookup in the current scope for a member access to by Douglas Gregor · 13 years ago
  78. 94a9016 [arcmt] When checking whether properties needs to be strong or not, take into account by Argyrios Kyrtzidis · 13 years ago
  79. d10f4bc Add a test case for the divide-by-zero fix in r137234 by Kaelyn Uhrain · 13 years ago
  80. 18f1697 Make sure ptrarith_typesize is at least 1 to avoid division by zero by Kaelyn Uhrain · 13 years ago
  81. 6b8bc07 Renamings to consistently use 'Constexpr' not 'ConstExpr' when referring to the C++0x 'constexpr' keyword. by Richard Smith · 13 years ago
  82. 730cfb1 objective-c: Using existing infrastructure for finding by Fariborz Jahanian · 13 years ago
  83. 136da1c When adding the base and member initializers for an implicitly-defined by Douglas Gregor · 13 years ago
  84. c90df6a Update a comment to match the recently-changed code by Douglas Gregor · 13 years ago
  85. 3b6b7ac For the availability attribute, allow a declaration to be deprecated by Douglas Gregor · 13 years ago
  86. 4dc41c9 Rewrite default initialization of anonymous structs/unions within a by Douglas Gregor · 13 years ago
  87. a19950e Change an assert into a check. I'm pretty sure there was a point by John McCall · 13 years ago
  88. e7d0020 Formatting. by John McCall · 13 years ago
  89. 03f4861 Revert bad change. (It may look equivalent, but it isn't.) by Eli Friedman · 13 years ago
  90. b51e031 Thread Safety: Added basic argument parsing for all new attributes. by Caitlin Sadowski · 13 years ago
  91. c55db3b Cleanup; no functionality change. by Eli Friedman · 13 years ago
  92. 0815b57 Move the creation of the record type for the state of Objective-C fast by Douglas Gregor · 13 years ago
  93. 5c0d3d6 Don't serialize the block descriptor or block extended descriptor by Douglas Gregor · 13 years ago
  94. 45c4ea7 Move the construction of the RecordDecl representing the runtime by Douglas Gregor · 13 years ago
  95. 3b8043b Migrate the serialization of ASTContext's AutoDeduceTy and by Douglas Gregor · 13 years ago
  96. 6948bc4 Provide diag_iterator for iterating over the built-in diagnostic IDs/names in the internal table of DiagnosticIDs. by Ted Kremenek · 13 years ago
  97. 6b63f55 Make sure to canonicalize the argument type of a non-type template by Douglas Gregor · 13 years ago
  98. 3f86ce1 Hand materialization of temporary expressions when emitting a scalar by Douglas Gregor · 13 years ago
  99. 6b167f4 Don't emit memcpy for copying fields of arrays of volatile elements. by Fariborz Jahanian · 13 years ago
  100. 98fdfd3 If no -miphoneos-version-min specified, see if we can set the default based on by Chad Rosier · 13 years ago