aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis
AgeCommit message (Expand)Author
2010-04-11Fix CFG bug where bases of member expressions were not always evaluated in a ...Ted Kremenek
2010-04-11Fix bug in AddStmtChoice:asLValue() where 'AsLValueNotAlwaysAdd' would not be...Ted Kremenek
2010-04-11Sort visitor methods. No functionality change.Ted Kremenek
2010-03-30the big refactoring bits of PR3782.Rafael Espindola
2010-03-29Be a bit more consistent in using operator->Rafael Espindola
2010-03-25Fix '+=' accumulation error when parsing numeric amounts in a format string.Ted Kremenek
2010-03-23Only perform CFG-based warnings on 'static inline' functions thatTed Kremenek
2010-03-12Allow users to set CPPFLAGS and CXXFLAGS on the make command line.Jeffrey Yasskin
2010-03-10When computing in AnalysisContext the variables referencedTed Kremenek
2010-03-03Simplify code a bit and remove unneeded semicolons.Benjamin Kramer
2010-03-03Fix an algorithmic bug in LiveVariables pointed out by Zhongxing.Ted Kremenek
2010-03-02[CFG]Ted Kremenek
2010-03-02Register all parameters even if they didn't occur in the function body.Zhongxing Xu
2010-03-01Allow a '0' precision in format strings (as the man page says it is okay).Ted Kremenek
2010-02-27For printf format string checking, add support for positional format strings.Ted Kremenek
2010-02-26For printf format string checking, move the tracking of the data argument ind...Ted Kremenek
2010-02-24Always add CallExpr as block-level expression. Inline-based interproceduralZhongxing Xu
2010-02-24Add support for '%C' and '%S' printf conversion specifiers.Ted Kremenek
2010-02-23Move the rest of the unreachable code analysis from libSemaTed Kremenek
2010-02-23Start moving some of the logic for the unreachable code analysis out of libSemaTed Kremenek
2010-02-22Revert "Simplify code: Succ is guaranteed to be not NULL.", which turns out toDaniel Dunbar
2010-02-22Simplify code: Succ is guaranteed to be not NULL.Zhongxing Xu
2010-02-17Add a utility method.Zhongxing Xu
2010-02-16Refactor the logic for printf argument type-checking into analyze_printf::Arg...Ted Kremenek
2010-02-09Convert tabs to spaces.Ted Kremenek
2010-02-06Teach RegionStore::InvalidateRegions() to also invalidate static variables re...Ted Kremenek
2010-02-04Move ParseFormatString() and FormatStringHandler back into the analyze_printf...Ted Kremenek
2010-02-01Add format string type checking support for 'long double'.Ted Kremenek
2010-01-30Recognize 'q' as a format length modifier (from BSD).Daniel Dunbar
2010-01-30Add format string checking of 'double' arguments. Fixes <rdar://problem/6931...Ted Kremenek
2010-01-29Fix spacing.Ted Kremenek
2010-01-29Per a suggestion from Cristian Draghici, add a method to FormatSpecifier that...Ted Kremenek
2010-01-29Enhancements to the alternate (WIP) format string checking:Ted Kremenek
2010-01-29Alternate format string checking: issue warnings for incomplete format specif...Ted Kremenek
2010-01-29Alternate format string checking: issue a warning for invalid conversion spec...Ted Kremenek
2010-01-29Yet another attempt to make the Linux buildbots happy. Apparently there are ...Ted Kremenek
2010-01-29Move definition of FormatStringHandler::~FormatStringHandler() within namespa...Ted Kremenek
2010-01-29Add precision/field width checking to AlternateCheckPrintfString().Ted Kremenek
2010-01-28Fix off-by-one error in ParseFormatSpecifier() when reporting the location of...Ted Kremenek
2010-01-28Add position of conversion specifier character to 'ConversionSpecifier'.Ted Kremenek
2010-01-28Rename namespace clang::printf to clang::analyze_printf to avoid problems whe...Ted Kremenek
2010-01-28Allow HandleFormatSpecifier() to indicate that no more processing of the form...Ted Kremenek
2010-01-28Add '@' conversion specifier.Ted Kremenek
2010-01-28Remove invalid conversion specifiers from format string checking.Ted Kremenek
2010-01-28Add a few more conversion specifiers to ParseFormatSpecifier (these appear in...Ted Kremenek
2010-01-27Add skeleton for a more structured way to analyzing pring formatTed Kremenek
2010-01-25Split libAnalysis into two libraries: libAnalysis and libChecker.Ted Kremenek
2010-01-24-fno-rtti is now the default.Chris Lattner
2010-01-22Process cast according to the cast kind. Prepare for more specific cast Zhongxing Xu
2010-01-21Improve unreachable code warnings with respect to dead binary andMike Stump