index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
SemaChecking.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Format string checking: selectively ignore implicit casts to 'int'
Ted Kremenek
2010-02-01
1
-6
/
+17
*
Fix for PR5185. C99 [*] VLA notation should be disallowed in function definit...
Sam Weinig
2010-02-01
1
-0
/
+14
*
Add basic type checking of format string conversion specifiers and their argu...
Ted Kremenek
2010-01-30
1
-6
/
+63
*
Be a little more permissive than C99: allow 'unsigned' to be used for
Ted Kremenek
2010-01-29
1
-2
/
+6
*
Switch Sema over to using the new implementation of format string
Ted Kremenek
2010-01-29
1
-268
/
+39
*
Alternate format string checking: issue warnings for incomplete format specif...
Ted Kremenek
2010-01-29
1
-12
/
+19
*
Alternate format string checking: issue a warning for invalid conversion spec...
Ted Kremenek
2010-01-29
1
-8
/
+27
*
Alternate format string checking: check for excess data arguments.
Ted Kremenek
2010-01-29
1
-0
/
+11
*
Alternate format string checking: check if the number of format specifiers ex...
Ted Kremenek
2010-01-29
1
-0
/
+12
*
Alternate format string checking: warn of '%n' as being potentially insecure.
Ted Kremenek
2010-01-29
1
-1
/
+11
*
Add precision/field width checking to AlternateCheckPrintfString().
Ted Kremenek
2010-01-29
1
-3
/
+68
*
Start fleshing out Sema::AlternateCheckPrintfString():
Ted Kremenek
2010-01-28
1
-0
/
+94
*
Add placeholder function in Sema for new format string checking logic.
Ted Kremenek
2010-01-28
1
-1
/
+18
*
Fix 80 col violation.
Ted Kremenek
2010-01-28
1
-1
/
+3
*
Remove invalid conversion specifiers from format string checking.
Ted Kremenek
2010-01-28
1
-5
/
+0
*
Split libAnalysis into two libraries: libAnalysis and libChecker.
Ted Kremenek
2010-01-25
1
-1
/
+1
*
Wire up the new range reporting for unreachable code.
Mike Stump
2010-01-21
1
-6
/
+16
*
Improve unreachable code warnings with respect to dead member and
Mike Stump
2010-01-21
1
-0
/
+12
*
Improve unreachable code warnings for with respect to dead functional casts i...
Mike Stump
2010-01-21
1
-0
/
+5
*
Improve unreachable code warnings for with respect to c-style casts.
Mike Stump
2010-01-21
1
-0
/
+5
*
Improve unreachable code warnings for with respect to ? :.
Mike Stump
2010-01-21
1
-4
/
+15
*
Improve unreachable code warnings for with respect to compound
Mike Stump
2010-01-21
1
-0
/
+6
*
Improve unreachable code warnings with respect to dead binary and
Mike Stump
2010-01-21
1
-6
/
+20
*
Speed up compilation by avoiding generating exceptional edges from
Mike Stump
2010-01-21
1
-2
/
+36
*
Move some recent checking code into SemaChecking instead.
Mike Stump
2010-01-21
1
-0
/
+430
*
Roll out ASTContext::getTypeSizeInChars(), replacing instances of
Ken Dyck
2010-01-11
1
-1
/
+2
*
Don't assert when dealing with unsigned casts of lvalues. Fixes PR5961.
John McCall
2010-01-06
1
-6
/
+11
*
Derive tighter ranges for & and >> in the conversion-checking code.
John McCall
2010-01-06
1
-6
/
+38
*
Significantly rework the calculation of effective integer-expression ranges
John McCall
2010-01-06
1
-176
/
+221
*
Remove stale comment. We already do format string checking for functions wit...
Ted Kremenek
2010-01-05
1
-3
/
+0
*
Move the -Wconversion logic into SemaChecking.cpp. There's a fair amount of
John McCall
2010-01-04
1
-0
/
+309
*
Move the -Wsign-compare logic into SemaChecking.cpp.
John McCall
2010-01-04
1
-0
/
+81
*
Update for the intrinsic changes in llvm: the object size intrinsic
Eric Christopher
2009-12-23
1
-0
/
+1
*
fix a bug handling the gnu ?: extension. Patch by Storlek on IRC,
Chris Lattner
2009-12-22
1
-1
/
+1
*
Fix for PR5679: make __builtin_prefetch a bit more flexible in what it accepts
Eli Friedman
2009-12-04
1
-9
/
+9
*
Adjust format attribute index for implicit object arguments. Fixes PR5521.
Sebastian Redl
2009-11-17
1
-1
/
+19
*
First part of changes to eliminate problems with cv-qualifiers and
Douglas Gregor
2009-11-16
1
-2
/
+1
*
warn about returning the address of a label.
Chris Lattner
2009-10-30
1
-1
/
+6
*
Eliminate QualifiedDeclRefExpr, which captured the notion of a
Douglas Gregor
2009-10-23
1
-2
/
+1
*
Remove default argument for ImpCastExprToType. Add appropriate argument
Eli Friedman
2009-10-20
1
-2
/
+1
*
Fix checking for a null pointer constant when the expression itself is
Douglas Gregor
2009-09-25
1
-2
/
+3
*
implement support for __builtin_eh_return_data_regno on x86-32 and x86-64.
Chris Lattner
2009-09-23
1
-3
/
+19
*
Revert "Switch a few clients over to StringLiteral::getString.", this is brea...
Daniel Dunbar
2009-09-22
1
-7
/
+11
*
Switch a few clients over to StringLiteral::getString.
Daniel Dunbar
2009-09-22
1
-11
/
+7
*
Change all the Type::getAsFoo() methods to specializations of Type::getAs().
John McCall
2009-09-21
1
-7
/
+7
*
Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID
Douglas Gregor
2009-09-12
1
-1
/
+1
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-170
/
+170
*
reject returning a block expr even when it has parens and casts in the way.
Chris Lattner
2009-09-08
1
-3
/
+1
*
Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate
Douglas Gregor
2009-08-31
1
-2
/
+1
*
Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will
Douglas Gregor
2009-08-31
1
-1
/
+1
[prev]
[next]