- Mar 07, 2013
-
-
Nick Lewycky authored
llvm-svn: 176619
-
Nick Lewycky authored
string to be emitted, and two properties about the files themselves. Use $PWD to absolut-ify the path to the coverage file. Yes, this is what GCC does. Reverts my own r175706. llvm-svn: 176617
-
Anna Zaks authored
Warn about null pointer dereference earlier when a reference to a null pointer is passed in a call. The idea is that even though the standard might allow this, reporting the issue earlier is better for diagnostics (the error is reported closer to the place where the pointer was set to NULL). This also simplifies analyzer’s diagnostic logic, which has to track “where the null came from”. As a consequence, some of our null pointer warning suppression mechanisms started triggering more often. TODO: Change the name of the file and class to reflect the new check. llvm-svn: 176612
-
Rafael Espindola authored
llvm-svn: 176607
-
Rafael Espindola authored
It is possible that some of the current uses of "getStorageClassAsWritten() == SC_Extern" should use this but I don't know enough about SC_PrivateExtern to change and test them. llvm-svn: 176606
-
Jordan Rose authored
Officially in the C++ standard, a null reference cannot exist. However, it's still very easy to create one: int &getNullRef() { int *p = 0; return *p; } We already check that binds to reference regions don't create null references. This patch checks that we don't create null references by returning, either. <rdar://problem/13364378> llvm-svn: 176601
-
Jordan Rose authored
No functionality change. llvm-svn: 176600
-
- Mar 06, 2013
-
-
Adrian Prantl authored
that adds ivars to an interface. Fixes rdar://13175234 This is an update to r176116 that performs a smart caching of interfaces. llvm-svn: 176584
-
Anna Zaks authored
This allows us to trigger the IDC visitor in the added test case. llvm-svn: 176577
-
Anna Zaks authored
[analyzer] IDC: Add config option; perform the idc check on first “null node” rather than last “non-null”. The second modification does not lead to any visible result, but, theoretically, is what we should have been looking at to begin with since we are checking if the node was assumed to be null in an inlined function. llvm-svn: 176576
-
Argyrios Kyrtzidis authored
Stat'ing all the headers from the PCH to make sure they are up-to-date takes significant time. In a particular source file (whose PCH file included Cocoa.h) from total -fsyntax-only time 12% was just stat calls. Change pre-validation to only check non-system headers. There are some notable disadvantages: -If a system header, that is not include-guarded, changes after the PCH was created, we will not find it in the header info table and we will #import it, effectively #importing it twice, thus we will emit some error due to a multiple definition and after that the "header was modified" error will likely be emitted, for example something like: NSDictionary.h:12:1: error: duplicate interface definition for class 'NSDictionary' @interface NSDictionary : NSObject <NSCopying, NSMutableCopying, NSSecureCoding, NSFastEnumeration> ^ NSDictionary.h:12:12: note: previous definition is here @interface NSDictionary : NSObject <NSCopying, NSMutableCopying, NSSecureCoding, NSFastEnumeration> ^ fatal error: file 'NSDictionary.h' has been modified since the precompiled header was built Though we get the "header was modified" error, this is a bit confusing. -Theoretically it is possible that such a system header will cause no errors but it will just cause an unfortunate semantic change, though I find this rather unlikely. The advantages: -Reduces compilation time when using a huge PCH like the Cocoa ones -System headers change very infrequent and when they do, users/build systems should be able to know that re-building from scratch is needed. Addresses rdar://13056262 llvm-svn: 176567
-
Argyrios Kyrtzidis authored
Previously the hash would be the filename portion of the path, which could be different for a filename with different case or a symbolic link with a different name completely. This did not actually create any issue so far because by validating all headers in the PCH we created uniqued FileEntries based on inodes, so an #include of a symbolic link (refering to a file from the PCH) would end up with a FileEntry with filename same as the one recorded in the PCH. llvm-svn: 176566
-
Argyrios Kyrtzidis authored
We can just re-use the one from HeaderFileInfoLookupTable. llvm-svn: 176565
-
Argyrios Kyrtzidis authored
[PCH] Remove a couple of fields from serialization::reader::HeaderFileInfoTrait that are not used for anything. llvm-svn: 176564
-
Fariborz Jahanian authored
several diagnostics into one. // rdar://13094352 llvm-svn: 176560
-
Dmitri Gribenko authored
Patch by Sanne Wouda. llvm-svn: 176557
-
Alexey Samsonov authored
[Sanitize] Don't emit function attribute sanitize_address/thread/memory if the function is blacklisted. llvm-svn: 176550
-
Weiming Zhao authored
llvm-svn: 176544
-
Richard Smith authored
can't have default arguments even though it's a parameter-declaration-clause in a function declaration. llvm-svn: 176542
-
Richard Smith authored
continue parsing the directive rather than silently discarding it. Allowing undef or redef of __TIME__ and __DATE__ is important to folks who want stable, reproducible builds. llvm-svn: 176540
-
Fariborz Jahanian authored
using object subscripting without declaring objectForKeyedSubscript: // rdar://13333205 llvm-svn: 176539
-
Douglas Gregor authored
llvm-svn: 176535
-
Jordan Rose authored
This patch is designed for minimal intrusion into normal preprocessing and compilation; under -E -traditional-cpp, the lexer will still generate tok::comment nodes since it is preserving all whitespace, but the output printer will then throw it away. <rdar://problem/13338680> llvm-svn: 176534
-
Weiming Zhao authored
When both Triple and -mabi are used, it may result into conflicting ABI value. llvm-svn: 176531
-
Fariborz Jahanian authored
// rdar://13094352 llvm-svn: 176529
-
- Mar 05, 2013
-
-
Jordan Rose authored
It's beneficial when compiling to treat // as the start of a line comment even in -std=c89 mode, since it's not valid C code (with a few rare exceptions) and is usually intended as such. We emit a pedantic warning and then continue on as if line comments were enabled. This has been our behavior for quite some time. However, people use the preprocessor for things besides C source files. In today's prompting example, the input contains (unquoted) URLs, which contain // but should still be preserved. This change instructs the lexer to treat // as a plain token if Clang is in C90 mode and generating preprocessed output rather than actually compiling. <rdar://problem/13338743> llvm-svn: 176526
-
Fariborz Jahanian authored
// rdar://13094352. llvm-svn: 176525
-
Lang Hames authored
field to be memcpy'd, rather instead of ASTContext::getTypeAlign(<Field Type>). For packed structs the alignment of a field may be less than the alignment of the field's type. <rdar://problem/13338585> llvm-svn: 176512
-
Argyrios Kyrtzidis authored
llvm-svn: 176511
-
Fariborz Jahanian authored
llvm-svn: 176510
-
Fariborz Jahanian authored
checkings and few other refactoring/cleanup. // rdar://13094352. llvm-svn: 176509
-
Jack Carter authored
'R' An address that can be sued in a non-macro load or store. Including missing positive test case and fixed typo for r176453. Thanks to Richard Smith for catching this! Jack llvm-svn: 176506
-
Richard Smith authored
[[noreturn]] function are not required to also be [[noreturn]]. We still emit calls to virtual __attribute__((noreturn)) functions as noreturn; unlike GCC, we do require overriders to also be noreturn for that attribute. llvm-svn: 176476
-
David Blaikie authored
llvm-svn: 176474
-
Jordan Rose authored
No functionality change. llvm-svn: 176469
-
Fariborz Jahanian authored
an @function comment is not followed by a function decl. // rdar://13094352 llvm-svn: 176468
-
Jordan Rose authored
We weren't treating a cf_audited_transfer CFRetain as returning +1 because its name doesn't contain "Create" or "Copy". Oops! Fortunately, the standard definitions of these functions are not marked audited. <rdar://problem/13339601> llvm-svn: 176463
-
Dmitri Gribenko authored
* Use the term 'command marker', because the semantics of 'backslash' and 'at' commands are the same. (Talking about 'at commands' makes them look like a special entity.) * Sink the flag down into bitfields, reducing the size of AST nodes. * Change the flag into an enum for clarity. Boolean function parameters are not very clear. * Add unittests for new tok::at_command tokens. llvm-svn: 176461
-
- Mar 04, 2013
-
-
Bob Wilson authored
<rdar://problem/11314476> llvm-svn: 176458
-
Bob Wilson authored
Also fix a missing entry for cortex-r5 in one copy of getLLVMArchSuffixForARM. llvm-svn: 176457
-