- Aug 20, 2011
-
-
Eric Christopher authored
2007-01-06-PtrMethodInit.cpp 2007-04-05-PackedBitFields-1.cpp 2007-04-05-PackedBitFieldsOverlap-2.cpp 2007-04-05-PackedBitFieldsOverlap.cpp 2007-04-05-PackedBitFieldsSmall.cpp 2007-04-05-StructPackedFieldUnpacked.cpp 2007-04-10-PackedUnion.cpp 2007-04-14-FNoBuiltin.cpp 2007-05-03-VectorInit.cpp 2007-07-29-RestrictPtrArg.cpp 2007-07-29-RestrictRefArg.cpp 2007-09-10-RecursiveTypeResolution.cpp from llvm/test/FrontendC++ and FileCheckize where appropriate. llvm-svn: 138134
-
Argyrios Kyrtzidis authored
for tokens that are lexed consecutively from the same FileID, instead of creating a SLocEntry for each token. e.g for assert(foo == bar); there will be a single SLocEntry for the "foo == bar" chunk and locations for the 'foo', '==', 'bar' tokens will point inside that chunk. For parsing SemaExpr.cpp, this reduced the number of SLocEntries by 25%. llvm-svn: 138129
-
Argyrios Kyrtzidis authored
Rename TokenLexer::getMacroExpansionLocation -> getExpansionLocForMacroDefLoc, no functionality change. llvm-svn: 138128
-
Argyrios Kyrtzidis authored
llvm-svn: 138127
-
Anna Zaks authored
Static Analyzer Diagnostics: Kill the addVisitorCreator(callbackTy, void*) API in favor of addVisitor(BugReporterVisitor*). 1) Create a header file to expose the predefined visitors. And move the parent(BugReporterVisitor) there as well. 2) Remove the registerXXXVisitor functions - the Visitor constructors/getters can be used now to create the object. One exception is registerVarDeclsLastStore(), which registers more then one visitor, so make it static member of FindLastStoreBRVisitor. 3) Modify all the checkers to use the new API. llvm-svn: 138126
-
Eric Christopher authored
platforms. llvm-svn: 138118
-
Eric Christopher authored
llvm-svn: 138117
-
Eric Christopher authored
llvm-svn: 138114
-
Eric Christopher authored
llvm-svn: 138113
-
Eric Christopher authored
llvm-svn: 138112
-
Eric Christopher authored
llvm-svn: 138111
-
Eric Christopher authored
llvm-svn: 138110
-
Eric Christopher authored
llvm-svn: 138106
-
- Aug 19, 2011
-
-
Eric Christopher authored
llvm-svn: 138099
-
Eric Christopher authored
llvm-svn: 138098
-
Eric Christopher authored
llvm-svn: 138097
-
Eric Christopher authored
llvm-svn: 138096
-
Eric Christopher authored
llvm-svn: 138095
-
Eric Christopher authored
llvm-svn: 138090
-
Eric Christopher authored
llvm-svn: 138089
-
Eric Christopher authored
for sext -> and difference. llvm-svn: 138088
-
Douglas Gregor authored
llvm-svn: 138081
-
Douglas Gregor authored
llvm-svn: 138079
-
Nick Lewycky authored
the relevant section of libcxx. As an aside, I am not at all confident that this test is still testing that it's supposed to. llvm-svn: 138075
-
Matt Beaumont-Gay authored
llvm-svn: 138074
-
Fariborz Jahanian authored
specified. // rdar://9971982 llvm-svn: 138062
-
Fariborz Jahanian authored
llvm-svn: 138049
-
Fariborz Jahanian authored
to modernity. Instead of passing down individual context objects from parser to sema, establish decl context in parser and have sema access current context as needed. I still need to take of Doug's comment for minor cleanups. llvm-svn: 138040
-
Ted Kremenek authored
Rename -Wstrl-incorrect-size to -Wstrlcpy-strlcat-size. This warning really is just specific to strlcpy and strlcat. llvm-svn: 138038
-
Benjamin Kramer authored
llvm-svn: 138032
-
Craig Topper authored
llvm-svn: 138031
-
Douglas Gregor authored
has already been loaded before allocating a new Module structure. If the module has already been loaded (uniquing based on file name), then just return the existing module rather than trying to load it again. This allows us to load a DAG of modules. Introduce a simple test case that forms a diamond-shaped module graph, and illustrates that a source file importing the bottom of the diamond can see declarations in all four of the modules that make up the diamond. Note that this version moves the file-opening logic into the module manager, rather than splitting it between the module manager and the AST reader. More importantly, it properly handles the weird-but-possibly-useful case of loading an AST file from "-". llvm-svn: 138030
-
Anna Zaks authored
Fix a memory leak in the analyzer - BugReports didn't get freed. Plus, remove invalid assert from the destructor which wasn't called previously due to the leak. llvm-svn: 138027
-
Chandler Carruth authored
llvm-svn: 138024
-
Chandler Carruth authored
llvm-svn: 138023
-
Eric Christopher authored
when falling back to cc1plus for our compile. rdar://9963920 llvm-svn: 138017
-
Ted Kremenek authored
Enhance -Wstrl-incorrect-size to not report a FIXIT for destinations that are flexible arrays or have size 1. llvm-svn: 138004
-
Anna Zaks authored
One API change: I added BugReporter as an additional parameter to the BugReporterVisitor::VisitNode() method to allow visitors register other visitors with the report on the fly (while processing a node). This functionality is used by NilReceiverVisitor, which registers TrackNullOrUndefValue when the receiver is null. llvm-svn: 138001
-
Ted Kremenek authored
llvm-svn: 137999
-
- Aug 18, 2011
-
-
Kaelyn Uhrain authored
uncorrected identifier. Fixes a problem pointed out by Eli. llvm-svn: 137987
-