diff options
| author | Anna Zaks <ganna@apple.com> | 2016-12-15 22:55:11 +0000 |
|---|---|---|
| committer | Anna Zaks <ganna@apple.com> | 2016-12-15 22:55:11 +0000 |
| commit | 40c74c6d2233f7c228365740f683c4d16c0693c6 (patch) | |
| tree | cf6c6c78da6f25cfb692222f59b1a4107bd06dc4 /clang/test | |
| parent | 232ecfdf9c29b6cf8d2b9de07012629529085213 (diff) | |
| download | bcm5719-llvm-40c74c6d2233f7c228365740f683c4d16c0693c6.tar.gz bcm5719-llvm-40c74c6d2233f7c228365740f683c4d16c0693c6.zip | |
[analyzer] Refer to macro names in diagnostics for macros representing a literal
When a macro expending to a literal is used in a comparison, use the macro name
in the diagnostic rather than the literal. This improves readability of path
notes.
Added tests for various macro literals that could occur. Only BOOl, Int, and
NULL tests have changed behavior with this patch.
Differential Revision: https://reviews.llvm.org/D27726
llvm-svn: 289884
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/Analysis/Inputs/system-header-simulator-objc.h | 7 | ||||
| -rw-r--r-- | clang/test/Analysis/Inputs/system-header-simulator.h | 8 | ||||
| -rw-r--r-- | clang/test/Analysis/diagnostics/macros.cpp | 48 | ||||
| -rw-r--r-- | clang/test/Analysis/diagnostics/macros.m | 31 |
4 files changed, 93 insertions, 1 deletions
diff --git a/clang/test/Analysis/Inputs/system-header-simulator-objc.h b/clang/test/Analysis/Inputs/system-header-simulator-objc.h index 9563fb1f81f..df751d03e64 100644 --- a/clang/test/Analysis/Inputs/system-header-simulator-objc.h +++ b/clang/test/Analysis/Inputs/system-header-simulator-objc.h @@ -17,7 +17,11 @@ typedef unsigned long NSUInteger; typedef unsigned short unichar; typedef UInt16 UniChar; -#define NULL ((void *)0) +#ifndef NULL +#define __DARWIN_NULL ((void *)0) +#define NULL __DARWIN_NULL +#endif + #define nil ((id)0) enum { @@ -54,6 +58,7 @@ typedef struct _NSZone NSZone; - (oneway void)release; - (id)autorelease; - (id)init; +@property (readonly, copy) NSString *description; @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone; @end @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; diff --git a/clang/test/Analysis/Inputs/system-header-simulator.h b/clang/test/Analysis/Inputs/system-header-simulator.h index 889e23398f0..2e6f1e7d4a9 100644 --- a/clang/test/Analysis/Inputs/system-header-simulator.h +++ b/clang/test/Analysis/Inputs/system-header-simulator.h @@ -102,3 +102,11 @@ void exit(int status) __attribute__ ((__noreturn__)); void _exit(int status) __attribute__ ((__noreturn__)); void _Exit(int status) __attribute__ ((__noreturn__)); +#define UINT32_MAX 4294967295U +#define INT64_MIN (-INT64_MAX-1) +#define __DBL_MAX__ 1.7976931348623157e+308 +#define DBL_MAX __DBL_MAX__ +#ifndef NULL +#define __DARWIN_NULL 0 +#define NULL __DARWIN_NULL +#endif
\ No newline at end of file diff --git a/clang/test/Analysis/diagnostics/macros.cpp b/clang/test/Analysis/diagnostics/macros.cpp new file mode 100644 index 00000000000..8d7fccde1c6 --- /dev/null +++ b/clang/test/Analysis/diagnostics/macros.cpp @@ -0,0 +1,48 @@ +// RUN: %clang_cc1 -analyze -std=c++11 -analyzer-checker=core,osx -analyzer-output=text -verify %s + +#include "../Inputs/system-header-simulator.h" +#include "../Inputs/system-header-simulator-cxx.h" + +void testIntMacro(unsigned int i) { + if (i == UINT32_MAX) { // expected-note {{Assuming 'i' is equal to UINT32_MAX}} + // expected-note@-1 {{Taking true branch}} + char *p = NULL; // expected-note {{'p' initialized to a null pointer value}} + *p = 7; // expected-warning {{Dereference of null pointer (loaded from variable 'p')}} + // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} + } +} + +void testNULLMacro(int *p) { + if (p == NULL) { // expected-note {{Assuming 'p' is equal to NULL}} + // expected-note@-1 {{Taking true branch}} + *p = 7; // expected-warning {{Dereference of null pointer (loaded from variable 'p')}} + // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} + } +} + +void testnullptrMacro(int *p) { + if (p == nullptr) { // expected-note {{Assuming pointer value is null}} + // expected-note@-1 {{Taking true branch}} + *p = 7; // expected-warning {{Dereference of null pointer (loaded from variable 'p')}} + // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} + } +} + +// There are no path notes on the comparison to float types. +void testDoubleMacro(double d) { + if (d == DBL_MAX) { // expected-note {{Taking true branch}} + + char *p = NULL; // expected-note {{'p' initialized to a null pointer value}} + *p = 7; // expected-warning {{Dereference of null pointer (loaded from variable 'p')}} + // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} + } +} + +void testboolMacro(bool b, int *p) { + p = nullptr; // expected-note {{Null pointer value stored to 'p'}} + if (b == false) { // expected-note {{Assuming the condition is true}} + // expected-note@-1 {{Taking true branch}} + *p = 7; // expected-warning {{Dereference of null pointer (loaded from variable 'p')}} + // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} + } +} diff --git a/clang/test/Analysis/diagnostics/macros.m b/clang/test/Analysis/diagnostics/macros.m new file mode 100644 index 00000000000..7ef80b302dd --- /dev/null +++ b/clang/test/Analysis/diagnostics/macros.m @@ -0,0 +1,31 @@ +// RUN: %clang_cc1 -analyze -analyzer-checker=core,osx -fblocks -analyzer-output=text -verify %s + +#include "../Inputs/system-header-simulator-objc.h" + +@interface NSDictionary : NSObject +- (NSUInteger)count; +- (id)objectForKey:(id)aKey; +- (NSEnumerator *)keyEnumerator; +@end +@interface NSMutableDictionary : NSDictionary +- (void)setObject:(id)anObject forKey:(id <NSCopying>)aKey; +@end + +void testBOOLMacro(BOOL b) { + if (b == YES) { // expected-note {{Assuming 'b' is equal to YES}} + // expected-note@-1 {{Taking true branch}} + char *p = NULL;// expected-note {{'p' initialized to a null pointer value}} + *p = 7; // expected-warning {{Dereference of null pointer (loaded from variable 'p')}} + // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} + } +} + +void testNilMacro(NSMutableDictionary *d, NSObject *o) { + if (o == nil) // expected-note {{Assuming 'o' is equal to nil}} + // expected-note@-1 {{Taking true branch}} + [d setObject:o forKey:[o description]]; // expected-warning {{Key argument to 'setObject:forKey:' cannot be nil}} + // expected-note@-1 {{'description' not called because the receiver is nil}} + // expected-note@-2 {{Key argument to 'setObject:forKey:' cannot be nil}} + + return; +} |

