| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
llvm-svn: 63913
|
| |
|
|
|
|
| |
'delete'. This fixes <rdar://problem/6561143>.
llvm-svn: 63905
|
| |
|
|
| |
llvm-svn: 63903
|
| |
|
|
|
|
| |
- <rdar://problem/6551577> [ccc] require -x with -
llvm-svn: 63901
|
| |
|
|
|
|
|
|
|
|
|
| |
canonicalize by template parameter depth, index, and name, and the
unnamed version of a template parameter serves as the canonical.
TemplateTypeParmDecl no longer needs to inherit from
TemplateParmPosition, since depth and index information is present
within the type.
llvm-svn: 63899
|
| |
|
|
| |
llvm-svn: 63897
|
| |
|
|
| |
llvm-svn: 63896
|
| |
|
|
| |
llvm-svn: 63895
|
| |
|
|
|
|
| |
errors to 'fatal' error severity.
llvm-svn: 63894
|
| |
|
|
|
|
| |
tracked object to escape. Fixes <rdar://problem/6560661>.
llvm-svn: 63891
|
| |
|
|
| |
llvm-svn: 63881
|
| |
|
|
|
|
| |
Fixes PR3491.
llvm-svn: 63879
|
| |
|
|
| |
llvm-svn: 63878
|
| |
|
|
|
|
|
|
| |
Also, put Objective-C protocols into their own identifier
namespace. Otherwise, we find protocols when we don't want to in C++
(but not in C).
llvm-svn: 63877
|
| |
|
|
| |
llvm-svn: 63875
|
| |
|
|
| |
llvm-svn: 63872
|
| |
|
|
|
|
| |
the documentation to the contrary).
llvm-svn: 63871
|
| |
|
|
| |
llvm-svn: 63869
|
| |
|
|
|
|
|
|
| |
destroy its Decl.
However, the cause still remains: the Decl is linked into the chain of its DeclContext and remains there despite being deleted.
llvm-svn: 63868
|
| |
|
|
|
|
|
|
| |
This shrinks OwningResult by one pointer. Since it is no longer larger than OwningPtr, merge the two.
This leads to simpler client code and speeds up my benchmark by 2.7%.
For some reason, this exposes a previously hidden bug, causing a regression in SemaCXX/condition.cpp.
llvm-svn: 63867
|
| |
|
|
| |
llvm-svn: 63866
|
| |
|
|
|
|
|
|
| |
scalar/complex/aggregate cases.
- Currently disabled for x86_64, triggering a misoptimization
(PR3489).
llvm-svn: 63864
|
| |
|
|
|
|
|
|
| |
- No intended functionality change, this is essentially enabling
direct passing of complex and aggregate values, which no ABI is
using.
llvm-svn: 63863
|
| |
|
|
|
|
|
| |
value.
- No functionality change.
llvm-svn: 63859
|
| |
|
|
|
|
|
|
| |
- No intended functionality change, all current ABI implementations
were only using indirect for complex/aggregate types, which were
being passed indirectly with the Direct ABIInfo kind.
llvm-svn: 63858
|
| |
|
|
|
|
| |
- No (intended) functionality change, the semantic changes are to come.
llvm-svn: 63850
|
| |
|
|
| |
llvm-svn: 63849
|
| |
|
|
| |
llvm-svn: 63848
|
| |
|
|
| |
llvm-svn: 63847
|
| |
|
|
| |
llvm-svn: 63846
|
| |
|
|
| |
llvm-svn: 63845
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
do the symblic regions associated with them and we need them to be typed.
Current SymbolicRegion::getRValueType() method is very restricting. It may be
modified when we are more clear about what could be the types of symblic
regions.
BasicConstraintManager::Assume() is changed due to that now SymblicRegion is a
subclass of SubRegion.
llvm-svn: 63844
|
| |
|
|
|
|
|
|
|
|
| |
checker. This was previously needed because BugReport objects were previously
allocated on the stack and not owned by BugReporter. Now we can just issue them
on the fly. This change was motivated because we were seeing some weird cases
where some really long paths would get issued for bugs (particularly leaks)
because of some double-caching.
llvm-svn: 63840
|
| |
|
|
| |
llvm-svn: 63816
|
| |
|
|
|
|
| |
Untested, Daniel or Nate please review.
llvm-svn: 63814
|
| |
|
|
| |
llvm-svn: 63813
|
| |
|
|
| |
llvm-svn: 63811
|
| |
|
|
| |
llvm-svn: 63810
|
| |
|
|
| |
llvm-svn: 63809
|
| |
|
|
| |
llvm-svn: 63803
|
| |
|
|
|
|
| |
information.
llvm-svn: 63799
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the ownership of BugTypes and BugReports. Now BugReports are owned by BugTypes,
and BugTypes are owned by the BugReporter object.
The major functionality change in this patch is that reports are not immediately
emitted by a call to BugReporter::EmitWarning (now called EmitReport), but
instead of queued up in report "equivalence classes". When
BugReporter::FlushReports() is called, it emits one diagnostic per report
equivalence class. This provides a nice cleanup with the caching of reports as
well as enables the BugReporter engine to select the "best" path for reporting a
path-sensitive bug based on all the locations in the ExplodedGraph that the same
bug could occur.
Along with this patch, Leaks are now coalesced into a common equivalence class
by their allocation site, and the "summary" diagnostic for leaks now reports the
allocation site as the location of the bug (this may later be augmented to also
provide an example location where the leak occurs).
llvm-svn: 63796
|
| |
|
|
|
|
| |
r63765).
llvm-svn: 63795
|
| |
|
|
| |
llvm-svn: 63794
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
extension. The interaction with designated initializers is a
bit... interesting... but we follow GNU's lead and don't permit too
much crazy code in this area.
Also, make the "excess initializers" error message a bit more
informative.
Addresses PR2561: http://llvm.org/bugs/show_bug.cgi?id=2561
llvm-svn: 63785
|
| |
|
|
| |
llvm-svn: 63784
|
| |
|
|
| |
llvm-svn: 63782
|
| |
|
|
|
|
| |
wrong in some cases.
llvm-svn: 63780
|
| |
|
|
| |
llvm-svn: 63779
|
| |
|
|
|
|
| |
simplify handling of -f options clang recognizes.
llvm-svn: 63778
|