]> granicus.if.org Git - clang/log
clang
13 years agoAdd typo correction for the type name in C++ "new" statements
Kaelyn Uhrain [Tue, 27 Sep 2011 00:33:13 +0000 (00:33 +0000)]
Add typo correction for the type name in C++ "new" statements

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140589 91177308-0d34-0410-b5e6-96231b3b80d8

13 years ago[libclang] Refactor the important stuff in clang_getCursor into a cxcursor::getCursor...
Argyrios Kyrtzidis [Tue, 27 Sep 2011 00:30:33 +0000 (00:30 +0000)]
[libclang] Refactor the important stuff in clang_getCursor into a cxcursor::getCursor(CXTranslationUnit, SourceLocation) function.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140588 91177308-0d34-0410-b5e6-96231b3b80d8

13 years ago[libclang] Introduce clang_Cursor_isNull and clang_Cursor_getTranslationUnit functions.
Argyrios Kyrtzidis [Tue, 27 Sep 2011 00:30:30 +0000 (00:30 +0000)]
[libclang] Introduce clang_Cursor_isNull and clang_Cursor_getTranslationUnit functions.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140587 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoobjc - don't complain about unimplemented property when conforming
Fariborz Jahanian [Tue, 27 Sep 2011 00:23:52 +0000 (00:23 +0000)]
objc - don't complain about unimplemented property when conforming
protocol declares the property, as well as one of its superclasses.
Property will be implemented in the super class. // rdar://10120691

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140586 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix regression of -Warray-bounds involving varargs functions [PR 11007].
Ted Kremenek [Mon, 26 Sep 2011 23:36:13 +0000 (23:36 +0000)]
Fix regression of -Warray-bounds involving varargs functions [PR 11007].

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140584 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a comment in ASTReader::ReadPragmaDiagnosticMappings that the user bit
Argyrios Kyrtzidis [Mon, 26 Sep 2011 23:06:41 +0000 (23:06 +0000)]
Add a comment in ASTReader::ReadPragmaDiagnosticMappings that the user bit
is set by the setDiagnosticMapping call.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140578 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoobjc - compare setter/property types using
Fariborz Jahanian [Mon, 26 Sep 2011 22:59:09 +0000 (22:59 +0000)]
objc - compare setter/property types using
hasSameUnqualifiedType in //rdar://10156674

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140576 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove string literal to bool conversion into its own warning flag -Wstring-conversion.
Richard Trieu [Mon, 26 Sep 2011 22:38:21 +0000 (22:38 +0000)]
Move string literal to bool conversion into its own warning flag -Wstring-conversion.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140574 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoobjc - in matching setter argument type to its property type,
Fariborz Jahanian [Mon, 26 Sep 2011 22:12:27 +0000 (22:12 +0000)]
objc - in matching setter argument type to its property type,
ingore the type qualifiers. // rdar://10156674

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140571 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoobjc-arc: mark functions which return types which can't be dealt with
Fariborz Jahanian [Mon, 26 Sep 2011 21:23:35 +0000 (21:23 +0000)]
objc-arc: mark functions which return types which can't be dealt with
in arc mode and are in system headers as unavailable.
// rdar://10186625

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140565 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMake necessary changes in AddMIPSTargetArgs for targeting Mips64. Enable use of
Akira Hatanaka [Mon, 26 Sep 2011 21:07:52 +0000 (21:07 +0000)]
Make necessary changes in AddMIPSTargetArgs for targeting Mips64. Enable use of
-mcpu.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140562 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoCheckStringInit has side effects; make sure we don't run it in VerifyOnly mode, at...
Eli Friedman [Mon, 26 Sep 2011 19:09:09 +0000 (19:09 +0000)]
CheckStringInit has side effects; make sure we don't run it in VerifyOnly mode, at least for the moment.  <rdar://problem/10185490>.

Sebastian, please take a look at this; I'm not entirely sure it is the right thing to do.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140552 91177308-0d34-0410-b5e6-96231b3b80d8

13 years ago[libclang] Report implicit objc methods for properties when indexing.
Argyrios Kyrtzidis [Mon, 26 Sep 2011 19:05:37 +0000 (19:05 +0000)]
[libclang] Report implicit objc methods for properties when indexing.

Related to rdar://10087069.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140551 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix a typo in the new VerifyOnly handling in SemaInit. No visible difference at...
Eli Friedman [Mon, 26 Sep 2011 18:53:43 +0000 (18:53 +0000)]
Fix a typo in the new VerifyOnly handling in SemaInit.  No visible difference at the moment, as far as I can tell.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140546 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a small note to BaseSubobject about where it is actually used.
Eli Friedman [Mon, 26 Sep 2011 18:36:39 +0000 (18:36 +0000)]
Add a small note to BaseSubobject about where it is actually used.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140543 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix assertion hit when @encoding C++ classes. rdar://10172840 & http://llvm.org/PR10990
Argyrios Kyrtzidis [Mon, 26 Sep 2011 18:14:24 +0000 (18:14 +0000)]
Fix assertion hit when @encoding C++ classes. rdar://10172840 & http://llvm.org/PR10990

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140542 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd back support for a manually formatted section of the diagnostic
Chandler Carruth [Mon, 26 Sep 2011 16:43:25 +0000 (16:43 +0000)]
Add back support for a manually formatted section of the diagnostic
message. Specifically, we now only line-wrap the first line of te
diagnostic message and assume the remainder is manually formatted. While
adding it back, simplify the logic for doing this.

Finally, add a test that ensures we actually preserve this feature. =D
*Now* its not dead code. Thanks to Doug for the test case.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140538 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUpdate comments.
Eric Christopher [Mon, 26 Sep 2011 15:03:22 +0000 (15:03 +0000)]
Update comments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140531 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix comment to reflect reality.
Eric Christopher [Mon, 26 Sep 2011 15:03:19 +0000 (15:03 +0000)]
Fix comment to reflect reality.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140530 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRe-arrange and bitfieldify data members of CXXConstructExpr to save a
Douglas Gregor [Mon, 26 Sep 2011 14:47:03 +0000 (14:47 +0000)]
Re-arrange and bitfieldify data members of CXXConstructExpr to save a
little storage.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140529 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDiagnose attempts to use 'using typename' with a non-identifier name,
Douglas Gregor [Mon, 26 Sep 2011 14:30:28 +0000 (14:30 +0000)]
Diagnose attempts to use 'using typename' with a non-identifier name,
from Stepan Dyatkovskiy. Fixes PR10925.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140528 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoHoist and beef up the asserts about the level of infrastructure expected
Chandler Carruth [Mon, 26 Sep 2011 11:38:46 +0000 (11:38 +0000)]
Hoist and beef up the asserts about the level of infrastructure expected
when working with a diagnostic attached to a source location. Also
comment more thoroughly why its important to handle non-location
diagnostic messages separately.

Finally, hoist the creation of the TextDiagnostic object up to the
beginning of the location-based diagnostics. This paves the way for
sinking more and more of the logic into this class. When everything
below this constructor is sunk into the TextDiagnostic class it should
be sufficiently "feature complete" to accomplish my two goals:
1) Have the printing of a macro expansion note use the exact same code
   as any other note.
2) Be able to implement clang_formatDiagnostic in terms of this class.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140526 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSwitch the emission of diagnostics without a source location to
Chandler Carruth [Mon, 26 Sep 2011 11:25:30 +0000 (11:25 +0000)]
Switch the emission of diagnostics without a source location to
a dedicated path. The logic for such diagnostics is much simpler than
for others.

This begins to make an important separation in this routine. We expect
most (and most interesting) textual diagnostics to be made in the
presence of at least *some* source locations and a source manager.
However the DiagnosticConsumer must be prepared to diagnose errors even
when the source manager doesn't (yet) exist or when there is no location
information at all. In order to sink more and more logic into the
TextDiagnostic class while minimizing its complexity, my plan is to
force the DiagnosticConsumer to special case diagnosing any locationless
messages and then hand the rest to the TextDiagnostic class. I'd
appreciate any comments on this design. It requires a bit of code
duplication in order to keep interfaces simple. Alternatively, if we
really need TextDiagnostic to be capable of handling diagnostics even in
the absence of a viable SourceManager, then this split isn't necessary.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140525 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoExtract the actual printing of the message string into a helper
Chandler Carruth [Mon, 26 Sep 2011 11:19:35 +0000 (11:19 +0000)]
Extract the actual printing of the message string into a helper
function. Doing this conveniently requires moving the word wrapping to
use a StringRef which seems generally an improvement. There is a lot
that could be simplified in the word wrapping by using StringRef that
I haven't looked at yet...

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140524 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoGroup the helpers for word wrapping with the primary routine. No
Chandler Carruth [Mon, 26 Sep 2011 10:58:00 +0000 (10:58 +0000)]
Group the helpers for word wrapping with the primary routine. No
functionality changed.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140523 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a test for the display of diagnostic options and categories. This
Chandler Carruth [Mon, 26 Sep 2011 10:42:40 +0000 (10:42 +0000)]
Add a test for the display of diagnostic options and categories. This
would have caught a bug I introduced during refactoring. Silly me
thinking this was all well tested already...

If any of this is already covered by other tests, let me know. I looked
around and didn't see any.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140522 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAssociate the macro arguments location map with a FileID instead
Argyrios Kyrtzidis [Mon, 26 Sep 2011 08:01:50 +0000 (08:01 +0000)]
Associate the macro arguments location map with a FileID instead
of a ContentCache, since multiple FileIDs can have the same ContentCache
but the expanded macro arguments locations will be different.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140521 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove SourceManager::getLocation().
Argyrios Kyrtzidis [Mon, 26 Sep 2011 08:01:45 +0000 (08:01 +0000)]
Remove SourceManager::getLocation().

It's not descriptive enough and it's just a call of translateFileLineCol()
followed by a call to getMacroArgExpandedLocation(), which is better to be
called explicitly since it has a certain cost and is not always required.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140520 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDon't map a file:line:col triplet that is inside the preamble range to
Argyrios Kyrtzidis [Mon, 26 Sep 2011 08:01:41 +0000 (08:01 +0000)]
Don't map a file:line:col triplet that is inside the preamble range to
a "loaded" location of the precompiled preamble.

Instead, handle specially locations of preprocessed entities:
-When looking up for preprocessed entities, map main file locations inside the
 preamble range to a preamble loaded location.
-When getting the source range of a preprocessing cursor, map preamble loaded
 locations back to main file locations.

Fixes rdar://10175093 & http://llvm.org/PR10999

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140519 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoProperly initialize Preprocessor::CurLexerKind to avoid use of uninitialized variable.
Zhongxing Xu [Mon, 26 Sep 2011 03:37:43 +0000 (03:37 +0000)]
Properly initialize Preprocessor::CurLexerKind to avoid use of uninitialized variable.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140514 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoTurns out we tested for this typo.
Benjamin Kramer [Mon, 26 Sep 2011 02:32:23 +0000 (02:32 +0000)]
Turns out we tested for this typo.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140513 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd missing spaces in diagnostic messages.
Benjamin Kramer [Mon, 26 Sep 2011 02:14:16 +0000 (02:14 +0000)]
Add missing spaces in diagnostic messages.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140512 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDon't print a stray ] at the end of diagnostics.
Benjamin Kramer [Mon, 26 Sep 2011 02:14:13 +0000 (02:14 +0000)]
Don't print a stray ] at the end of diagnostics.

Also remove an obsolete utostr call.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140511 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove VTable builder to AST
Peter Collingbourne [Mon, 26 Sep 2011 01:57:12 +0000 (01:57 +0000)]
Move VTable builder to AST

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140510 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoHave CodeGenVTables::GenerateConstructionVTable use VTableLayout
Peter Collingbourne [Mon, 26 Sep 2011 01:57:04 +0000 (01:57 +0000)]
Have CodeGenVTables::GenerateConstructionVTable use VTableLayout

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140509 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove vtable dumper call to VTableBuilder ctor
Peter Collingbourne [Mon, 26 Sep 2011 01:57:00 +0000 (01:57 +0000)]
Move vtable dumper call to VTableBuilder ctor

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140508 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoImplement VTableContext::createConstructionVTableLayout
Peter Collingbourne [Mon, 26 Sep 2011 01:56:55 +0000 (01:56 +0000)]
Implement VTableContext::createConstructionVTableLayout

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140507 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove all vtable layout data into new VTableLayout class
Peter Collingbourne [Mon, 26 Sep 2011 01:56:50 +0000 (01:56 +0000)]
Move all vtable layout data into new VTableLayout class

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140506 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove VTableComponent to header file
Peter Collingbourne [Mon, 26 Sep 2011 01:56:45 +0000 (01:56 +0000)]
Move VTableComponent to header file

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140505 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove vtable component accessors to VTableContext
Peter Collingbourne [Mon, 26 Sep 2011 01:56:41 +0000 (01:56 +0000)]
Move vtable component accessors to VTableContext

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140504 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove CodeGenVTables::ComputeVTableRelatedInformation dependency on CodeGen
Peter Collingbourne [Mon, 26 Sep 2011 01:56:36 +0000 (01:56 +0000)]
Remove CodeGenVTables::ComputeVTableRelatedInformation dependency on CodeGen

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140503 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoCreate a VTableContext class and start moving CodeGenVTables methods to it
Peter Collingbourne [Mon, 26 Sep 2011 01:56:30 +0000 (01:56 +0000)]
Create a VTableContext class and start moving CodeGenVTables methods to it

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140502 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove VTT builder to AST
Peter Collingbourne [Mon, 26 Sep 2011 01:56:24 +0000 (01:56 +0000)]
Move VTT builder to AST

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140501 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove BaseSubobject class to AST
Peter Collingbourne [Mon, 26 Sep 2011 01:56:16 +0000 (01:56 +0000)]
Move BaseSubobject class to AST

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140500 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove CodeGenModule field from VTTBuilder
Peter Collingbourne [Mon, 26 Sep 2011 01:56:10 +0000 (01:56 +0000)]
Remove CodeGenModule field from VTTBuilder

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140499 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMake the VTTBuilder class independent of LLVM core
Peter Collingbourne [Mon, 26 Sep 2011 01:56:06 +0000 (01:56 +0000)]
Make the VTTBuilder class independent of LLVM core

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140498 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove support for splitting word-wrapped diagnostic messages on newline
Chandler Carruth [Mon, 26 Sep 2011 01:44:29 +0000 (01:44 +0000)]
Remove support for splitting word-wrapped diagnostic messages on newline
characters. I could find no newline character in a diagnostic message,
and adding an assert to this code never fires in the testsuite.

I think this code is essentially dead, and was previously used for
a different purpose. If I just don't understand how it is we can end up
with a newline here please let me know (with a test case?) and I'll
revert.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140497 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove the word wrapped printing routine down to all the other helper
Chandler Carruth [Mon, 26 Sep 2011 01:44:27 +0000 (01:44 +0000)]
Move the word wrapped printing routine down to all the other helper
printing routines, clean up its doxyments and switch it to a camelCase
name as well. No functionality changed here.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140496 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSwitch some of my recently added helper functions to use the proper
Chandler Carruth [Mon, 26 Sep 2011 01:30:09 +0000 (01:30 +0000)]
Switch some of my recently added helper functions to use the proper
style, and add doxyments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140495 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRewrite the printing of diagnostic options, categories, etc to actually
Chandler Carruth [Mon, 26 Sep 2011 01:21:58 +0000 (01:21 +0000)]
Rewrite the printing of diagnostic options, categories, etc to actually
use the ostream interface and avoid lots of temporary strings.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140494 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename DiagnosticInfo to Diagnostic as per issue 5397
David Blaikie [Mon, 26 Sep 2011 01:18:08 +0000 (01:18 +0000)]
Rename DiagnosticInfo to Diagnostic as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140493 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename PathDiagnosticClient to PathDiagnosticConsumer as per issue 5397
David Blaikie [Mon, 26 Sep 2011 00:51:36 +0000 (00:51 +0000)]
Rename PathDiagnosticClient to PathDiagnosticConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140492 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDelete an extraneous line I missed.
Chandler Carruth [Mon, 26 Sep 2011 00:45:02 +0000 (00:45 +0000)]
Delete an extraneous line I missed.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140491 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoA direct extraction of the rest of the option printing into a helper.
Chandler Carruth [Mon, 26 Sep 2011 00:44:09 +0000 (00:44 +0000)]
A direct extraction of the rest of the option printing into a helper.
This needs to be cleaned up to better use the ostream object, WIP.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140490 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename VerifyDiagnosticsClient to VerifyDiagnosticConsumer as per issue 5397
David Blaikie [Mon, 26 Sep 2011 00:38:03 +0000 (00:38 +0000)]
Rename VerifyDiagnosticsClient to VerifyDiagnosticConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140489 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoStart a more correct pattern for factoring out the name printing. Slowly
Chandler Carruth [Mon, 26 Sep 2011 00:37:30 +0000 (00:37 +0000)]
Start a more correct pattern for factoring out the name printing. Slowly
I'm planning to switch a bunch of these over to use a raw_ostream
instead of += on a string object.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140488 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRevert r140484. That was *not* ready to be committed! Only halfway done,
Chandler Carruth [Mon, 26 Sep 2011 00:26:47 +0000 (00:26 +0000)]
Revert r140484. That was *not* ready to be committed! Only halfway done,
and completely broken at that.

Sorry, must remember to stash rather than commit. =]

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140487 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix a formatting goof.
Chandler Carruth [Mon, 26 Sep 2011 00:21:50 +0000 (00:21 +0000)]
Fix a formatting goof.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140486 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename ChainedDiagnosticClient to ChainedDiagnosticConsumer as per issue 5397
David Blaikie [Mon, 26 Sep 2011 00:21:47 +0000 (00:21 +0000)]
Rename ChainedDiagnosticClient to ChainedDiagnosticConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140485 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoExtract the diagnostic message formatting into a helper routine.
Chandler Carruth [Mon, 26 Sep 2011 00:21:47 +0000 (00:21 +0000)]
Extract the diagnostic message formatting into a helper routine.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140484 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename StoredDiagnosticClient to StoredDiagnosticConsumer as per issue 5397
David Blaikie [Mon, 26 Sep 2011 00:01:39 +0000 (00:01 +0000)]
Rename StoredDiagnosticClient to StoredDiagnosticConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140483 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename CaptureDiagnosticClient to CaptureDiagnosticConsumer as per issue 5397
David Blaikie [Sun, 25 Sep 2011 23:54:33 +0000 (23:54 +0000)]
Rename CaptureDiagnosticClient to CaptureDiagnosticConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140482 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoExtract the logic for printing a colorful level name into a helper
Chandler Carruth [Sun, 25 Sep 2011 23:51:01 +0000 (23:51 +0000)]
Extract the logic for printing a colorful level name into a helper
function.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140481 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename IgnoringDiagClient to IgnoringDiagConsumer as per issue 5397
David Blaikie [Sun, 25 Sep 2011 23:44:35 +0000 (23:44 +0000)]
Rename IgnoringDiagClient to IgnoringDiagConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140480 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename DiagnosticClient to DiagnosticConsumer as per issue 5397
David Blaikie [Sun, 25 Sep 2011 23:39:51 +0000 (23:39 +0000)]
Rename DiagnosticClient to DiagnosticConsumer as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140479 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename Diagnostic to DiagnosticsEngine as per issue 5397
David Blaikie [Sun, 25 Sep 2011 23:23:43 +0000 (23:23 +0000)]
Rename Diagnostic to DiagnosticsEngine as per issue 5397

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140478 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoInline this method now that its completely trivial, and prepare for
Chandler Carruth [Sun, 25 Sep 2011 23:01:05 +0000 (23:01 +0000)]
Inline this method now that its completely trivial, and prepare for
hoisting parts of the text diagnostic.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140477 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoShuffle some names around. 'CaretDiagnostic' is inaccurate as this needs
Chandler Carruth [Sun, 25 Sep 2011 22:54:56 +0000 (22:54 +0000)]
Shuffle some names around. 'CaretDiagnostic' is inaccurate as this needs
to handle non-caret diagnostics as well in order to be fully useful in
libclang etc. Also sketch out some more of my plans on this refactoring.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140476 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoActually remove the members of CaretDiagnostic no longer in use for
Chandler Carruth [Sun, 25 Sep 2011 22:31:58 +0000 (22:31 +0000)]
Actually remove the members of CaretDiagnostic no longer in use for
tracking the start and stop of macro expansion suppression. Also remove
the Columns variable which was just a convenience variable based on
DiagOpts. Instead we materialize it in the one piece of code that cared.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140475 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSink the logic for suppressing some macro expansion notes from the
Chandler Carruth [Sun, 25 Sep 2011 22:27:52 +0000 (22:27 +0000)]
Sink the logic for suppressing some macro expansion notes from the
TextDiagnosticPrinter into the CaretDiagnostic class. Several
interesting results from this:

- This removes a significant per-diagnostic bit of state from the
  CaretDiagnostic class, which should eventually allow us to re-use the
  object.
- It removes a redundant recursive walk of the macro expansion stack
  just to compute the depth. We don't need the depth until we're
  unwinding anyways, so we can just mark when we reach it.
- It also paves the way for several simplifications we can do to how we
  implement the suppression.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140474 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSplit the recursive macro expansion walk out from the routine which
Chandler Carruth [Sun, 25 Sep 2011 06:59:38 +0000 (06:59 +0000)]
Split the recursive macro expansion walk out from the routine which
emits a source snippet and caret line.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140467 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a missing increment to avoid infinite looping in the regression test.
Benjamin Kramer [Sun, 25 Sep 2011 02:41:26 +0000 (02:41 +0000)]
Add a missing increment to avoid infinite looping in the regression test.

Also make sure we set the error flag when correcting a typo.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140466 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUpdate CMake build.
Benjamin Kramer [Sat, 24 Sep 2011 18:21:37 +0000 (18:21 +0000)]
Update CMake build.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140462 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a special note for overload resolution when an initializer list argument
Sebastian Redl [Sat, 24 Sep 2011 17:48:32 +0000 (17:48 +0000)]
Add a special note for overload resolution when an initializer list argument
cannot be converted.
This is in preparation for overload resolution of initializer lists.
Currently, you will always get this message when you try to pass an init
list to an overloaded function.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140461 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoCorrectly parse braced member initializers (even in delayed parsing) and correctly...
Sebastian Redl [Sat, 24 Sep 2011 17:48:25 +0000 (17:48 +0000)]
Correctly parse braced member initializers (even in delayed parsing) and correctly pass
the information on to Sema. There's still an incorrectness in the way template instantiation
works now, but that is due to a far larger underlying representational problem.
Also add a test case for various list initialization cases of scalars, which test this
commit as well as the previous one.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140460 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoTreat list-initialization of scalars as a first-class citizen in C++11.
Sebastian Redl [Sat, 24 Sep 2011 17:48:14 +0000 (17:48 +0000)]
Treat list-initialization of scalars as a first-class citizen in C++11.
Allow empty initializer lists for scalars, which mean value-initialization.
Constant evaluation for single-element and empty initializer lists for scalars.
Codegen for empty initializer lists for scalars.
Test case comes in next commit.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140459 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix the expected error for narrowing conversions in generalized-initializers.cpp to
Sebastian Redl [Sat, 24 Sep 2011 17:48:06 +0000 (17:48 +0000)]
Fix the expected error for narrowing conversions in generalized-initializers.cpp to
match what the actual implementation of the error looks like.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140458 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoGive InitListChecker a verification-only mode, where it neither emits diagnostics nor
Sebastian Redl [Sat, 24 Sep 2011 17:48:00 +0000 (17:48 +0000)]
Give InitListChecker a verification-only mode, where it neither emits diagnostics nor
builds a semantic (structured) initializer list, just reports on whether it can match
the given list to the target type.
Use this mode for doing init list checking in the initial step of initialization, which
will eventually allow us to do overload resolution based on the outcome.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140457 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoIn Initialization, add step kind SK_ListConstructorCall (list-initialization
Sebastian Redl [Sat, 24 Sep 2011 17:47:52 +0000 (17:47 +0000)]
In Initialization, add step kind SK_ListConstructorCall (list-initialization
resolves to a constructor call in C++11) and failure kind
FK_ListInitializationFailed (early InitListChecker run failed).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140456 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoInline Sema::CheckInitList into its only user.
Sebastian Redl [Sat, 24 Sep 2011 17:47:46 +0000 (17:47 +0000)]
Inline Sema::CheckInitList into its only user.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140455 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix typos and non-doxygen-ness in a few comments.
Sebastian Redl [Sat, 24 Sep 2011 17:47:39 +0000 (17:47 +0000)]
Fix typos and non-doxygen-ness in a few comments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140454 91177308-0d34-0410-b5e6-96231b3b80d8

13 years ago[microsoft] In Microsoft mode, if we are inside a template class member function...
Francois Pichet [Sat, 24 Sep 2011 10:38:05 +0000 (10:38 +0000)]
[microsoft] In Microsoft mode, if we are inside a template class member function and we can't resolve an identifier then assume the identifier is type dependent. The goal is to postpone name lookup to instantiation time to be able to search into type dependent base classes.

This fixes a few errors when parsing MFC code with clang.
BTW clang trunk is now about 5 patches away to be able the parse the default wizard-generated MFC project.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140452 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix comment typo.
Benjamin Kramer [Sat, 24 Sep 2011 03:04:03 +0000 (03:04 +0000)]
Fix comment typo.

Patch by Rui Paulo!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140448 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoobjc - redeclaration of property in extension class
Fariborz Jahanian [Sat, 24 Sep 2011 00:56:59 +0000 (00:56 +0000)]
objc - redeclaration of property in extension class
must match property type declaration in its
primary class. // rdar://10142679

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140438 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDon't translate CRLF files into LF files. Fixes PR6870, from Aaron Ballman!
Douglas Gregor [Fri, 23 Sep 2011 23:43:36 +0000 (23:43 +0000)]
Don't translate CRLF files into LF files. Fixes PR6870, from Aaron Ballman!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140435 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDriver: Use sys::Process::SetWorkingDirectory, for consistency.
Daniel Dunbar [Fri, 23 Sep 2011 23:32:02 +0000 (23:32 +0000)]
Driver: Use sys::Process::SetWorkingDirectory, for consistency.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140434 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoobjc - fixes a crash when undefined typed property
Fariborz Jahanian [Fri, 23 Sep 2011 23:11:38 +0000 (23:11 +0000)]
objc - fixes a crash when undefined typed property
followed by it implementation crashes when attempt
is made to access the synthesized ivar.
// rdar://10177744

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140432 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix a crash-on-invalid.
Matt Beaumont-Gay [Fri, 23 Sep 2011 22:39:23 +0000 (22:39 +0000)]
Fix a crash-on-invalid.

The token stream was not getting properly reset when leaving
ParseLexedMethodDef in some error cases. In the testcase, that caused later
accesses to the token stream to touch memory which had been freed as we
finished parsing the class definition. Major hat-tip to AddressSanitizer for
helping pinpoint the use-after-free, including the allocation and deallocation
points:

==21510== ERROR: AddressSanitizer heap-use-after-free on address 0x7feb3de87848 at pc 0x249f4e2 bp 0x7fff15a89df0 sp 0x7fff15a89ce0
READ of size 1 at 0x7feb3de87848 thread T0
  #0 0x249f4e2 clang::TokenLexer::Lex()
  #1 0x1c834a0 clang::Parser::ConsumeToken()
  #2 0x1c7dc0f clang::Parser::ParseDeclarationOrFunctionDefinition()
  #3 0x1c7e16b clang::Parser::ParseDeclarationOrFunctionDefinition()
<snip>
0x7feb3de87848 is located 1992 bytes inside of 3816-byte region [0x7feb3de87080,0x7feb3de87f68)
freed by thread T0 here:
  #0 0x3a22c19 free
  #1 0x1d136a1 clang::Parser::LexedMethod::~LexedMethod()
  #2 0x1cef528 clang::Parser::DeallocateParsedClasses()
  #3 0x1cef676 clang::Parser::PopParsingClass()
  #4 0x1cea094 clang::Parser::ParseCXXMemberSpecification()
  #5 0x1ce7ae5 clang::Parser::ParseClassSpecifier()
  #6 0x1cfe588 clang::Parser::ParseDeclarationSpecifiers()
  #7 0x1c7dbe8 clang::Parser::ParseDeclarationOrFunctionDefinition()
  #8 0x1c7e16b clang::Parser::ParseDeclarationOrFunctionDefinition()
<snip>
previously allocated by thread T0 here:
  #0 0x3a2302d realloc
  #1 0x39d7c97 llvm::SmallVectorBase::grow_pod()
  #2 0x1ac588e llvm::SmallVectorImpl<>::push_back()
  #3 0x1d12d8b clang::Parser::ConsumeAndStoreUntil()
  #4 0x1c9c24d clang::Parser::ConsumeAndStoreUntil()
  #5 0x1d12c1e clang::Parser::ConsumeAndStoreUntil()
  #6 0x1c9c24d clang::Parser::ConsumeAndStoreUntil()
  #7 0x1d10042 clang::Parser::ParseCXXInlineMethodDef()
  #8 0x1cec51a clang::Parser::ParseCXXClassMemberDeclaration()
  #9 0x1ce9de5 clang::Parser::ParseCXXMemberSpecification()
  #10 0x1ce7ae5 clang::Parser::ParseClassSpecifier()
  #11 0x1cfe588 clang::Parser::ParseDeclarationSpecifiers()
  #12 0x1c7dbe8 clang::Parser::ParseDeclarationOrFunctionDefinition()
  #13 0x1c7e16b clang::Parser::ParseDeclarationOrFunctionDefinition()
<snip>

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140427 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix up assertion a bit more
Douglas Gregor [Fri, 23 Sep 2011 22:07:41 +0000 (22:07 +0000)]
Fix up assertion a bit more

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140424 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDriver: Explicitly include <unistd.h>, libstdc++'s <map> pulls it in, libc++ doesn't.
Benjamin Kramer [Fri, 23 Sep 2011 21:03:19 +0000 (21:03 +0000)]
Driver: Explicitly include <unistd.h>, libstdc++'s <map> pulls it in, libc++ doesn't.

Also, on windows, chdir seems to live in <direct.h>.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140414 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd DiagGroups to a couple of warnings.
Matt Beaumont-Gay [Fri, 23 Sep 2011 20:56:58 +0000 (20:56 +0000)]
Add DiagGroups to a couple of warnings.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140411 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDriver: Test case that was supposed to go with previous commit.
Daniel Dunbar [Fri, 23 Sep 2011 20:35:31 +0000 (20:35 +0000)]
Driver: Test case that was supposed to go with previous commit.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140410 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDriver: Add a --working-directory option which can be used to cause the compiler
Daniel Dunbar [Fri, 23 Sep 2011 20:33:41 +0000 (20:33 +0000)]
Driver: Add a --working-directory option which can be used to cause the compiler
to operate "as if" in a certain working directory.
 - For now, we just implement this by changing the actual working directory, but
   eventually we would want to handle this transparently. This is useful to
   avoid an extra exec() pair in some situations, and will be something we would
   want to support for more flexibility in using the Clang libraries.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140409 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a test triple. Who knew that all the world wasn't darwin?
Douglas Gregor [Fri, 23 Sep 2011 20:28:32 +0000 (20:28 +0000)]
Add a test triple. Who knew that all the world wasn't darwin?

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140408 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemoving a bunch of dead returns/breaks after llvm_unreachables.
David Blaikie [Fri, 23 Sep 2011 20:26:49 +0000 (20:26 +0000)]
Removing a bunch of dead returns/breaks after llvm_unreachables.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140407 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDon't propagate the 'availability' attribute through declaration
Douglas Gregor [Fri, 23 Sep 2011 20:23:42 +0000 (20:23 +0000)]
Don't propagate the 'availability' attribute through declaration
merging for overrides. One might want to make a method's availability
in a superclass different from that of its subclass. Fixes
<rdar://problem/10166223>.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140406 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd a new warning to -Wliteral-conversion to catch cases where a string literal
Richard Trieu [Fri, 23 Sep 2011 20:10:00 +0000 (20:10 +0000)]
Add a new warning to -Wliteral-conversion to catch cases where a string literal
is cast to a boolean.  An exception has been made for string literals in
logical expressions to allow the common case of use in assert statements.

bool x;
x = "hi";  // Warn here
void foo(bool x);
foo("hi");  // Warn here
assert(0 && "error");
assert("error);  // Warn here

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140405 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoClean up parsing the category names in interfaces slightly, using
Douglas Gregor [Fri, 23 Sep 2011 19:19:41 +0000 (19:19 +0000)]
Clean up parsing the category names in interfaces slightly, using
MatchRHSPunctuation appropriately and giving a useful source location
for the complaint about attributes being added to a category.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140404 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMove immutable map canonization out of the removeDeadBindings loop (via using Immutab...
Anna Zaks [Fri, 23 Sep 2011 19:14:09 +0000 (19:14 +0000)]
Move immutable map canonization out of the removeDeadBindings loop (via using ImmutableMapRef). Gives ~2% speedup.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140403 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoWhen checking for weak vtables, check whether the actual definition of
Douglas Gregor [Fri, 23 Sep 2011 19:04:03 +0000 (19:04 +0000)]
When checking for weak vtables, check whether the actual definition of
the key function is inline, rather than the original
declaration. Perhaps FunctionDecl::isInlined() is poorly named. Fixes
<rdar://problem/9979458>.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140400 91177308-0d34-0410-b5e6-96231b3b80d8