History log of /external/clang/test/Analysis/objc_invalidation.m
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
14f9889b9b88f73a891688d7732bf01a127d9e7c 27-Sep-2013 Rafael Espindola <rafael.espindola@gmail.com> Replace -fobjc-default-synthesize-properties with disable-objc-default-synthesize-properties.

We want the modern behavior most of the time, so inverting the option simplifies
the driver and the tests.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191551 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
caadc413a88e864e058a3bea832f42debd8ddef2 24-Apr-2013 Anna Zaks <ganna@apple.com> [analyzer] IvarInvalidation: correctly handle cases where only partial invalidators exist

- If only partial invalidators exist and there are no full invalidators in @implementation, report every ivar that has
not been invalidated. (Previously, we reported the first Ivar in the list, which could actually have been invalidated
by a partial invalidator. The code assumed you cannot have only partial invalidators.)

- Do not report missing invalidation method declaration if a partial invalidation method declaration exists.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180170 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
d523df6a143a97eea46916c6e31c8f2a0728bf28 09-Feb-2013 Anna Zaks <ganna@apple.com> [analyzer] Invalidation checker: move the "missing implementation" check

The missing definition check should be in the same category as the
missing ivar validation - in this case, the intent is to invalidate in
the given class, as described in the declaration, but the implementation
does not perform the invalidation. Whereas the MissingInvalidationMethod
checker checks the cases where the method intention is not to
invalidate. The second checker has potential to have a much higher false
positive rate.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174787 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
722cd9e3c0142948b9eb3190211dbc0dd4da4105 09-Feb-2013 Anna Zaks <ganna@apple.com> [analyzer] Split IvarInvalidation into two checkers

Separate the checking for the missing invalidation methods into a
separate checker so that it can be turned on/off independently.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174781 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
26db7dbf67b1532b2d617b3a85428699a1ffc997 09-Feb-2013 Anna Zaks <ganna@apple.com> [analyzer] IvarInvalidation: add annotation for partial invalidation

The new annotation allows having methods that only partially invalidate
IVars and might not be called from the invalidation methods directly
(instead, are guaranteed to be called before the invalidation occurs).
The checker is going to trust the programmer to call the partial
invalidation method before the invalidator.This is common in cases when
partial object tear down happens before the death of the object.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174779 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
79ccd5635495fb4588d0ec47c0bf05764441a14c 16-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Fix warning typo.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172596 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
6de7daa60412744bcf168c6c0d521688435fe221 11-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Rename the warning: state the issue before the hint of how it
can be fixed

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172170 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
b8f6678bdd54d4dabac416476993343837dd229c 11-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer]Recognize ivar invalidation protocol even if it was redeclared

This will get rid of some false positives as well as false negatives.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172169 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
ae81e172e93b75594c7053f3226a16b9d8daa6fd 11-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Ivar invalidation: track ivars declared in categories.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172168 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
6503255e4fa0689f427b3b798180fceac29c98c2 11-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Allow IvarInvalidation checker to suppress warnings via
assertions.

To ensure that custom assertions/conditional would also be supported,
just check if the ivar that needs to be invalidated or set to nil is
compared against 0.

Unfortunately, this will not work for code containing 'assert(IvarName)'

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172147 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
664566c37f81d70226df22c12aa05d1603b620f3 10-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Fix non-determinizm introduced in r172104.

In some cases, we just pick any ivar that needs invalidation and attach
the warning to it. Picking the first from DenseMap of pointer keys was
triggering non-deterministic output.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172134 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
b1fc673783dd0215a1426b2c411779cd05a16a07 10-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Add more checks to the ObjC Ivar Invalidation checker.

Restructured the checker so that it could easily find two new classes of
issues:
- when a class contains an invalidatable ivar, but no declaration of an
invalidation method
- when a class contains an invalidatable ivar, but no definition of an
invalidation method in the @implementation.

The second case might trigger some false positives, for example, when
the method is defined in a category.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172104 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
5879fb3f6d559863c18df7132ee3d5fdb62b6ae5 07-Jan-2013 Anna Zaks <ganna@apple.com> [analyzer] Fix a false positive in the ivar invalidation checker.

When a property is "inherited" through both a parent class and directly
through a protocol, we should not require the child to invalidate it
since the backing ivar belongs to the parent class.
(Fixes radar://12913734)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171769 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
c3c26b7390bc4ac3ad122f557a10ba17ab871216 18-Oct-2012 Anna Zaks <ganna@apple.com> [analyzer] Ivar invalidation: identify properties declared in protocols.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166211 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
e0c50fa01d59749e9392ccff50ee6fb90a61725b 16-Oct-2012 Anna Zaks <ganna@apple.com> [analyzer] Ivar Invalidation: track ivars in continuations and
@implementation.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166047 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
31f69cc770888ec0f0f7012212e5df7979aba4f3 29-Sep-2012 Anna Zaks <ganna@apple.com> [analyzer] Re-implement IvarInvalidationChecker so that it verifies that
the validation occurred.

The original implementation was pessimistic - we assumed that ivars
which escape are invalidated. This version is optimistic, it assumes
that the ivars will always be explicitly invalidated: either set to nil
or sent an invalidation message.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164868 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
377945cc9e4f23cdbb01ade2a664acd5ff95a888 27-Sep-2012 Anna Zaks <ganna@apple.com> [analyzer] IvarInvalidation: track synthesized ivars and allow escape
through property getters.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164802 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
b087bbf3cf44a56d60ad1ed6fd5abb48dab0e0b3 27-Sep-2012 Anna Zaks <ganna@apple.com> [analyzer] Address Jordan's code review comments for r164716.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164788 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m
5bf5c2ec54ede5352293e5739e9b44bea2f6b01b 26-Sep-2012 Anna Zaks <ganna@apple.com> [analyzer] Add experimental ObjC invalidation method checker.

This checker is annotation driven. It checks that the annotated
invalidation method accesses all ivars of the enclosing objects that are
objects of type, which in turn contains an invalidation method.

This is driven by
__attribute((annotation("objc_instance_variable_invalidator")).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164716 91177308-0d34-0410-b5e6-96231b3b80d8
/external/clang/test/Analysis/objc_invalidation.m