From: Jordan Rose Date: Tue, 19 Mar 2013 23:01:57 +0000 (+0000) Subject: [analyzer] Add an integer version of the Circle tests in uninit-vals.m. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25132d51561fb64c303ab19c77a95ca997f8a78e;p=platform%2Fupstream%2Fllvm.git [analyzer] Add an integer version of the Circle tests in uninit-vals.m. A floating-point version is nice for testing unknown values, but it's good to be able to check all parts of the structure as well. Test change only, no functionality change. llvm-svn: 177455 --- diff --git a/clang/test/Analysis/uninit-vals.m b/clang/test/Analysis/uninit-vals.m index 9f611ad..5a97bef 100644 --- a/clang/test/Analysis/uninit-vals.m +++ b/clang/test/Analysis/uninit-vals.m @@ -73,18 +73,63 @@ void PR14765_test() { free(testObj); } -void PR14765_incorrectBehavior(Circle *testObj) { +void PR14765_argument(Circle *testObj) { int oldSize = testObj->size; - clang_analyzer_eval(testObj->size == oldSize); // expected-warning{{TRUE}} testObj->origin = makePoint(0.0, 0.0); - clang_analyzer_eval(testObj->size == oldSize); // expected-warning{{TRUE}} - +} + + +typedef struct { + int x; + int y; +} IntPoint; +typedef struct { + IntPoint origin; + int size; +} IntCircle; + +IntPoint makeIntPoint(int x, int y) { + IntPoint result; + result.x = x; + result.y = y; + return result; +} + +void PR14765_test_int() { + IntCircle *testObj = calloc(sizeof(IntCircle), 1); + + clang_analyzer_eval(testObj->size == 0); // expected-warning{{TRUE}} + clang_analyzer_eval(testObj->origin.x == 0); // expected-warning{{TRUE}} + clang_analyzer_eval(testObj->origin.y == 0); // expected-warning{{TRUE}} + + testObj->origin = makeIntPoint(1, 2); + if (testObj->size > 0) { ; } // warning occurs here + + // FIXME: Assigning to 'testObj->origin' kills the default binding for the + // whole region, meaning that we've forgotten that testObj->size should also + // default to 0. Tracked by . + // This should be TRUE. + clang_analyzer_eval(testObj->size == 0); // expected-warning{{UNKNOWN}} + clang_analyzer_eval(testObj->origin.x == 1); // expected-warning{{TRUE}} + clang_analyzer_eval(testObj->origin.y == 2); // expected-warning{{TRUE}} + free(testObj); } +void PR14765_argument_int(IntCircle *testObj) { + int oldSize = testObj->size; + clang_analyzer_eval(testObj->size == oldSize); // expected-warning{{TRUE}} + + testObj->origin = makeIntPoint(1, 2); + clang_analyzer_eval(testObj->size == oldSize); // expected-warning{{TRUE}} + clang_analyzer_eval(testObj->origin.x == 1); // expected-warning{{TRUE}} + clang_analyzer_eval(testObj->origin.y == 2); // expected-warning{{TRUE}} +} + + void rdar13292559(Circle input) { extern void useCircle(Circle);