1. 26a3142 Since the enum values for each arch's builtins overlap, it is not appropriate to check them when compiling or other archs. Fixes a problem where compiling for NEON would use x86 sema rules. by Nate Begeman · 14 years ago
  2. 37b6a57 Extend __builtin_shufflevector to expose the full power of the llvm shufflevector instruction. This means it can now be used for vector truncation and concatenation. This will be used for the ARM NEON implementation. by Nate Begeman · 14 years ago
  3. c71a491 Preserve more information from a block's original function declarator, if one by John McCall · 14 years ago
  4. b90f4b3 Tell the string literal parser when it's not permitted to emit by Douglas Gregor · 14 years ago
  5. 323ed74 Rearchitect -Wconversion and -Wsign-compare. Instead of computing them by John McCall · 14 years ago
  6. 81368fb optimize builtin_isnan/isinf to not do an extraneous extension from by Chris Lattner · 14 years ago
  7. 9498d38 Add FunctionDecl::isVariadic() to match BlockDecl::isVariadic() and ObjCMethodDecl::isVariadic(). by Ted Kremenek · 14 years ago
  8. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 14 years ago
  9. 5cf86ba Actually produce base paths for CastExprs of kind CK_DerivedToBase. by Anders Carlsson · 14 years ago
  10. 80971bd isValue is set to false by default. by Anders Carlsson · 14 years ago
  11. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 14 years ago
  12. 5e89655 Remove the argument number from the constant integer diagnostic. by Eric Christopher · 14 years ago
  13. 691ebc3 Consolidate most of the integer constant expression builtin requirement by Eric Christopher · 14 years ago
  14. d6e44a3 Collapse the three separate initialization paths in by Douglas Gregor · 14 years ago
  15. ccfa963 Expand the argument diagnostics for too many arguments and give by Eric Christopher · 14 years ago
  16. d77b9a2 Expand argument diagnostic for too few arguments to give the number by Eric Christopher · 14 years ago
  17. 3aae609 Teach -Wsign-compare to treat 1 << blah as "idiomatically non-negative". by John McCall · 14 years ago
  18. 9c12739 Do not mark the destructor of a function parameter's type. Fixes PR6709. by Douglas Gregor · 14 years ago
  19. 7eff7c4 Remove support for nand atomic builtins. They are inconsistently implemented in by Daniel Dunbar · 14 years ago
  20. 6ee7653 Fix two bugs in format-string checking: by Ted Kremenek · 14 years ago
  21. dbdbaaf Refactor CFG-based warnings in Sema to be run by a worked object called AnalysisBasedWarnings. by Ted Kremenek · 14 years ago
  22. a2936be Promote enum types during -Wsign-compare. Fixes some spurious warnings, by John McCall · 14 years ago
  23. f6ac97b Let SourceManager::getBufferData return StringRef instead of a pair of two const char*. by Benjamin Kramer · 14 years ago
  24. f715ca1 Give SourceManager a Diagnostic object with which to report errors, by Douglas Gregor · 14 years ago
  25. aea67db Introduce a new BufferResult class to act as the return type of by Douglas Gregor · 14 years ago
  26. d1b47bf Warn about comparing an unsigned expression with 0 in tautological ways. by John McCall · 14 years ago
  27. 9ea9bdb Keep an explicit stack of function and block scopes, each element of by Douglas Gregor · 14 years ago
  28. e3fc547 Fix crasher caused by setting a bit in a possibly empty bitvector while by Ted Kremenek · 14 years ago
  29. efaff19 For printf format string checking, add support for positional format strings. by Ted Kremenek · 14 years ago
  30. 7f70dc8 For printf format string checking, move the tracking of the data argument index out of by Ted Kremenek · 14 years ago
  31. c0cd21d Don't assert on compound assignment operators that operate in FP types when by John McCall · 15 years ago
  32. 72919a3 Move the rest of the unreachable code analysis from libSema by Ted Kremenek · 15 years ago
  33. 8de3cc6 Simplify check for basic block with a CXXTryStmt terminator. by Ted Kremenek · 15 years ago
  34. 3d2eed8 Start moving some of the logic for the unreachable code analysis out of libSema by Ted Kremenek · 15 years ago
  35. f067d8e Convert use of std::queue to llvm::SmallVector and fix buildbot. by Ted Kremenek · 15 years ago
  36. 133a6aa Use SmallVectorImpl::iterator. by Ted Kremenek · 15 years ago
  37. 1e025f2 Simplify logic for determining values of 'ReturnsVoid' and 'HasNoReturn' flags. by Ted Kremenek · 15 years ago
  38. 3b1e26b Rename argument so the name reflects what it's doing. by Benjamin Kramer · 15 years ago
  39. 4e4b30e Refactor the logic for printf argument type-checking into analyze_printf::ArgTypeResult. by Ted Kremenek · 15 years ago
  40. e771a7a Add Sema support for __builtin_fpclassify by extending the existing check for __builtin_isinf and friends. Part of PR6083. by Benjamin Kramer · 15 years ago
  41. 1497bff Uncomment lines I never meant to have left commented in a commit. by Ted Kremenek · 15 years ago
  42. 5c41ee8 Patch by Cristian Draghici: by Ted Kremenek · 15 years ago
  43. 0e5675d Convert tabs to spaces. by Ted Kremenek · 15 years ago
  44. 4855a52 Don't diagnose missing noreturns for uninstantiated templates. Fixes PR6247. by Anders Carlsson · 15 years ago
  45. 04a67a6 Standardize the parsing of function type attributes in a way that by John McCall · 15 years ago
  46. 74d56a1 Move ParseFormatString() and FormatStringHandler back into the analyze_printf namespace. by Ted Kremenek · 15 years ago
  47. 68c6c9a Mark dtors for parameter variables and eliminate some redundant type munging. by John McCall · 15 years ago
  48. 4f9506a Access control for implicit destructor calls. Diagnostic could be orders of by John McCall · 15 years ago
  49. 31310a2 In C++, an initializer on a variable doesn't necessarily mean it's the definition. With that in mind, rename getDefinition to getAnyInitializer (to distinguish it from getInit) and reimplement it in terms of isThisDeclarationADefinition. Update all code to use this new function. by Sebastian Redl · 15 years ago
  50. 105d41c Use early return as suggested by Cristian Draghici. by Ted Kremenek · 15 years ago
  51. 180f284 Format string checking: selectively ignore implicit casts to 'int' by Ted Kremenek · 15 years ago
  52. d17e340 Fix for PR5185. C99 [*] VLA notation should be disallowed in function definitions. by Sam Weinig · 15 years ago
  53. d635c5f Add basic type checking of format string conversion specifiers and their arguments. Thanks to Cristian Draghici for his help with this patch! by Ted Kremenek · 15 years ago
  54. 31f8e32 Be a little more permissive than C99: allow 'unsigned' to be used for by Ted Kremenek · 15 years ago
  55. f88c8e0 Switch Sema over to using the new implementation of format string by Ted Kremenek · 15 years ago
  56. 808015a Alternate format string checking: issue warnings for incomplete format specifiers. by Ted Kremenek · 15 years ago
  57. 26ac2e0 Alternate format string checking: issue a warning for invalid conversion specifiers. by Ted Kremenek · 15 years ago
  58. 07d161f Alternate format string checking: check for excess data arguments. by Ted Kremenek · 15 years ago
  59. da51f0d Alternate format string checking: check if the number of format specifiers exceeds the number of arguments. by Ted Kremenek · 15 years ago
  60. e82d804 Alternate format string checking: warn of '%n' as being potentially insecure. by Ted Kremenek · 15 years ago
  61. 0d27735 Add precision/field width checking to AlternateCheckPrintfString(). by Ted Kremenek · 15 years ago
  62. e0e5313 Start fleshing out Sema::AlternateCheckPrintfString(): by Ted Kremenek · 15 years ago
  63. ce7024e Add placeholder function in Sema for new format string checking logic. by Ted Kremenek · 15 years ago
  64. 8acc9f6 Fix 80 col violation. by Ted Kremenek · 15 years ago
  65. f291976 Remove invalid conversion specifiers from format string checking. by Ted Kremenek · 15 years ago
  66. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  67. 4a41567 Wire up the new range reporting for unreachable code. by Mike Stump · 15 years ago
  68. b5c7755 Improve unreachable code warnings with respect to dead member and by Mike Stump · 15 years ago
  69. 2d6ceab Improve unreachable code warnings for with respect to dead functional casts in C++. by Mike Stump · 15 years ago
  70. 4458230 Improve unreachable code warnings for with respect to c-style casts. by Mike Stump · 15 years ago
  71. e5fba70 Improve unreachable code warnings for with respect to ? :. by Mike Stump · 15 years ago
  72. 45db90d Improve unreachable code warnings for with respect to compound assignments. by Mike Stump · 15 years ago
  73. 55f988e Improve unreachable code warnings with respect to dead binary and by Mike Stump · 15 years ago
  74. 4c45aa1 Speed up compilation by avoiding generating exceptional edges from by Mike Stump · 15 years ago
  75. f8c4921 Move some recent checking code into SemaChecking instead. by Mike Stump · 15 years ago
  76. 199c3d6 Roll out ASTContext::getTypeSizeInChars(), replacing instances of by Ken Dyck · 15 years ago
  77. 0acc311 Don't assert when dealing with unsigned casts of lvalues. Fixes PR5961. by John McCall · 15 years ago
  78. 60fad45 Derive tighter ranges for & and >> in the conversion-checking code. by John McCall · 15 years ago
  79. f2370c9 Significantly rework the calculation of effective integer-expression ranges by John McCall · 15 years ago
  80. 724d7fc Remove stale comment. We already do format string checking for functions with the format attribute. by Ted Kremenek · 15 years ago
  81. 51313c3 Move the -Wconversion logic into SemaChecking.cpp. There's a fair amount of by John McCall · 15 years ago
  82. ba26e58 Move the -Wsign-compare logic into SemaChecking.cpp. by John McCall · 15 years ago
  83. fee667f Update for the intrinsic changes in llvm: the object size intrinsic by Eric Christopher · 15 years ago
  84. 813b70d fix a bug handling the gnu ?: extension. Patch by Storlek on IRC, by Chris Lattner · 15 years ago
  85. 9aef726 Fix for PR5679: make __builtin_prefetch a bit more flexible in what it accepts by Eli Friedman · 15 years ago
  86. 4a2614e Adjust format attribute index for implicit object arguments. Fixes PR5521. by Sebastian Redl · 15 years ago
  87. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  88. 9e6b37a warn about returning the address of a label. by Chris Lattner · 15 years ago
  89. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  90. 73c39ab Remove default argument for ImpCastExprToType. Add appropriate argument by Eli Friedman · 15 years ago
  91. ce94049 Fix checking for a null pointer constant when the expression itself is by Douglas Gregor · 15 years ago
  92. 21fb98e implement support for __builtin_eh_return_data_regno on x86-32 and x86-64. by Chris Lattner · 15 years ago
  93. f015b03 Revert "Switch a few clients over to StringLiteral::getString.", this is breaking some projects, but I don't have a test case yet. by Daniel Dunbar · 15 years ago
  94. df4eee9 Switch a few clients over to StringLiteral::getString. by Daniel Dunbar · 15 years ago
  95. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  96. 7814e6d Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID by Douglas Gregor · 15 years ago
  97. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  98. 4ca606e reject returning a block expr even when it has parens and casts in the way. by Chris Lattner · 15 years ago
  99. 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 15 years ago
  100. 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 15 years ago