- Sep 22, 2012
-
-
Tim Northover authored
This patch fixes load/store instructions to handle less common cases like "asr #32", "rrx" properly throughout the MC layer. Patch by Chris Lidbury. llvm-svn: 164455
-
Abramo Bagnara authored
llvm-svn: 164454
-
Michael Liao authored
llvm-svn: 164453
-
Michael Liao authored
llvm-svn: 164452
-
Andrew Trick authored
Allow subtargets to tie SchedReadWrite types to processor specific sequences or variants. llvm-svn: 164451
-
Argyrios Kyrtzidis authored
FunctionDecl that we are importing the FunctionProtoType for, in which case we'll have infinite recursion when importing. Initially create a FunctionProtoType with null ExceptionSpecDecl/ExceptionSpecTemplate and update the type in ASTNodeImporter::VisitFunctionDecl after the FunctionDecl has been created. llvm-svn: 164450
-
Jordan Rose authored
This is a heuristic intended to greatly reduce the number of false positives resulting from inlining, particularly inlining of generic, defensive C++ methods that live in header files. The suppression is triggered in the cases where we ask to track where a null pointer came from, and it turns out that the source of the null pointer was an inlined function call. This change brings the number of bug reports in LLVM from ~1500 down to around ~300, a much more manageable number. Yes, some true positives may be hidden as well, but from what I looked at the vast majority of silenced reports are false positives, and many of the true issues found by the analyzer are still reported. I'm hoping to improve this heuristic further by adding some exceptions next week (cases in which a bug should still be reported). llvm-svn: 164449
-
Jordan Rose authored
Also, tidy up the other tracking visitors so that they mark the right things as interesting and don't do extra work. llvm-svn: 164448
-
Jordan Rose authored
Before, PathDiagnosticConsumers that did not support actual path output would (sensibly) cause the generation of the full path to be skipped. However, BugReporterVisitors may want to see the path in order to mark a BugReport as invalid. Now, even for a path generation scheme of 'None' we will still create a trimmed graph and walk backwards through the bug path, doing no work other than passing the nodes to the BugReporterVisitors. This isn't cheap, but it's necessary to properly do suppression when the first path consumer does not support path notes. In the future, we should try only generating the path and visitor-provided path notes once, or at least only creating the trimmed graph once. llvm-svn: 164447
-
Jordan Rose authored
This is intended to allow visitors to make decisions about whether a BugReport is likely a false positive. Currently there are no visitors making use of this feature, so there are no tests. When a BugReport is marked invalid, the invalidator must provide a key that identifies the invaliation (intended to be the visitor type and a context pointer of some kind). This allows us to reverse the decision later on. Being able to reverse a decision about invalidation gives us more flexibility, and allows us to formulate conditions like "this report is invalid UNLESS the original argument is 'foo'". We can use this to fine-tune our false-positive suppression (coming soon). llvm-svn: 164446
-
Jordan Rose authored
This allows us to show /why/ a particular object is nil, even when it is wrapped in an OpaqueValueExpr. llvm-svn: 164445
-
Jordan Rose authored
Rather than saying "Null pointer value stored to 'foo'", we now say "Passing null pointer value via Nth parameter 'foo'", which is much better. The note is also now on the argument expression as well, rather than the entire call. This paves the way for continuing to track arguments back to their sources. <rdar://problem/12211490> llvm-svn: 164444
-
Jordan Rose authored
Just a refactoring of common infrastructure. No intended functionality change. llvm-svn: 164443
-
Jordan Rose authored
Like with struct fields, we want to catch cases like this early, so that we can produce better diagnostics and path notes: PointObj *p = nil; int *px = &p->_x; // should warn here *px = 1; llvm-svn: 164442
-
Jordan Rose authored
We want to catch cases like this early, so that we can produce better diagnostics and path notes: Point *p = 0; int *px = &p->x; // should warn here *px = 1; llvm-svn: 164441
-
Jordan Rose authored
Used by clang to print parameter indexes. llvm-svn: 164440
-
Jordan Rose authored
This silences several analyzer warnings within LLVM, and provides a slightly nicer crash experience when someone calls isa<>, cast<>, or dyn_cast<> with a null pointer. llvm-svn: 164439
-
Jordan Rose authored
This silences literally dozens of analyzer warnings on LLVM (since DenseMap is such a commonly-used class). llvm-svn: 164438
-
Richard Smith authored
fatal error. Previously, if a fatal error was followed by a diagnostic which was suppressed due to a SFINAETrap, we'd forget that we'd seen a fatal error. llvm-svn: 164437
-
Jim Ingham authored
Missed a few places where I didn't delete the obsolete (commented out) version of the breakpoint creation. llvm-svn: 164436
-
Akira Hatanaka authored
llvm-svn: 164435
-
Akira Hatanaka authored
llvm-svn: 164434
-
Jim Ingham authored
Fix all the test case breakages caused by folks writing tests all over the place that depended explicitly on the output of "break set". Please don't do this sort of thing!!!!! llvm-svn: 164433
-
Jim Ingham authored
<rdar://problem/11333623> llvm-svn: 164432
-
Akira Hatanaka authored
TargetLowering's callback functions. llvm-svn: 164431
-
Akira Hatanaka authored
llvm-svn: 164430
-
Akira Hatanaka authored
llvm-svn: 164429
-
Akira Hatanaka authored
llvm-svn: 164428
-
Chandler Carruth authored
selects with a constant condition. This resulted in the operands remaining live through the SROA rewriter. Most of the time, this just caused some dead allocas to persist and get zapped by later passes, but in one case found by Joerg, it caused a crash when we tried to *promote* the alloca despite it having this dead use. We already have the mechanisms in place to handle this, just wire select up to them. llvm-svn: 164427
-
Eric Christopher authored
whether or not we want to print out backtrace information. Useful for libraries that don't need backtrace information on a crash. rdar://11844710 llvm-svn: 164426
-
Dan Gohman authored
llvm-svn: 164425
-
Michael J. Spencer authored
llvm-svn: 164424
-
Michael J. Spencer authored
Using CXX breaks if you add -stdlib=libc++ to CMAKE_CXX_FLAGS. llvm-svn: 164422
-
Chad Rosier authored
llvm-svn: 164421
-
Chad Rosier authored
llvm-svn: 164420
-
Eric Christopher authored
care about it being an argument variable so that we can decide that captured block and lambda vars that don't happen to be arguments could be an argument pointer. Add the object pointer for one case onto the subprogram die. rdar://12001329 llvm-svn: 164419
-
Eric Christopher authored
that the backend can mark it as the representative pointer for the block. rdar://12001329 llvm-svn: 164418
-
Argyrios Kyrtzidis authored
llvm-svn: 164417
-
Argyrios Kyrtzidis authored
nodes from the imported ASTContext. rdar://12348924 llvm-svn: 164416
-
- Sep 21, 2012
-
-
Chad Rosier authored
llvm-svn: 164415
-