]> granicus.if.org Git - clang/log
clang
11 years agoUse LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.
Dmitri Gribenko [Sat, 15 Sep 2012 20:20:27 +0000 (20:20 +0000)]
Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.

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

11 years agoMake PTHManager properly noncopyable.
Dmitri Gribenko [Sat, 15 Sep 2012 20:16:46 +0000 (20:16 +0000)]
Make PTHManager properly noncopyable.

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

11 years agoAddress a long-standing FIXME: remove an unused copy constructor and make
Dmitri Gribenko [Sat, 15 Sep 2012 19:23:53 +0000 (19:23 +0000)]
Address a long-standing FIXME: remove an unused copy constructor and make
UnqualifiedId() properly noncopyable.

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

11 years agoFix includes of llvm and clang files that used angle brackets.
Craig Topper [Sat, 15 Sep 2012 18:47:51 +0000 (18:47 +0000)]
Fix includes of llvm and clang files that used angle brackets.

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

11 years agoAdd bindings for clang_getCompletionBriefComment to cindex.py.
Dmitri Gribenko [Sat, 15 Sep 2012 11:56:32 +0000 (11:56 +0000)]
Add bindings for clang_getCompletionBriefComment to cindex.py.

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

11 years agoconst _Atomic(T) is not an atomic type, so do not allow it as the type 'A' in
Richard Smith [Sat, 15 Sep 2012 06:09:58 +0000 (06:09 +0000)]
const _Atomic(T) is not an atomic type, so do not allow it as the type 'A' in
C11 7.17's atomic operations. GNU's __atomic_* builtins do allow const-qualified
atomics, though (!!) so don't restrict those.

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

11 years agoRevert "Utilize new build system support in Xcode 4.5 for easier interposition"
Ted Kremenek [Sat, 15 Sep 2012 05:51:10 +0000 (05:51 +0000)]
Revert "Utilize new build system support in Xcode 4.5 for easier interposition"

It's not clear if this is working yet on the buildbot.  Reverting until we have
time to investigate.

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

11 years ago-Warc-retain-cycles: warn at variable initialization as well as assignment.
Jordan Rose [Sat, 15 Sep 2012 02:48:31 +0000 (02:48 +0000)]
-Warc-retain-cycles: warn at variable initialization as well as assignment.

Specifically, this should warn:

  __block block_t a = ^{ a(); };

Furthermore, this case which previously warned now does not, since the value
of 'b' is captured before the assignment occurs:

  block_t b; // not __block
  b = ^{ b(); };

(This will of course warn under -Wuninitialized, as before.)

<rdar://problem/11015883>

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

11 years agoAllow disabling PCH validation when loading an AST file by checking
Argyrios Kyrtzidis [Sat, 15 Sep 2012 01:10:20 +0000 (01:10 +0000)]
Allow disabling PCH validation when loading an AST file by checking
an environment variable for debugging purposes.

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

11 years agocompiler-rt/darwin: Install asan_osx_dynamic with the other runtime libraries.
Daniel Dunbar [Fri, 14 Sep 2012 21:30:17 +0000 (21:30 +0000)]
compiler-rt/darwin: Install asan_osx_dynamic with the other runtime libraries.

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

11 years agoIn StringLiteral::setString make sure that we copy the number of
Argyrios Kyrtzidis [Fri, 14 Sep 2012 21:17:41 +0000 (21:17 +0000)]
In StringLiteral::setString make sure that we copy the number of
bytes of the buffer and not the size of the string, otherwise we
may overwrite the buffer if there is a mismatch between the size
of the string and the CharByteWidth, and assertions are disabled.

The bug where this could occur was fixed in r163931.
Related to rdar://12069503

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

11 years ago[libclang] When loading an AST file, make sure to apply the language options
Argyrios Kyrtzidis [Fri, 14 Sep 2012 20:24:53 +0000 (20:24 +0000)]
[libclang] When loading an AST file, make sure to apply the language options
to the target info.

Related to rdar://12069503.

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

11 years agoUtilize new build system support in Xcode 4.5 for easier interposition
Ted Kremenek [Fri, 14 Sep 2012 19:06:33 +0000 (19:06 +0000)]
Utilize new build system support in Xcode 4.5 for easier interposition
of a build without needing to use ccc-analyzer.

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

11 years agoscan-build: Determine the location of the clang binary before printing help.
Jordan Rose [Fri, 14 Sep 2012 18:59:03 +0000 (18:59 +0000)]
scan-build: Determine the location of the clang binary before printing help.

We need the clang executable to print the list of available checkers.

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

11 years agoFix some dead stores which the static analyzer warned about. No functionality
Richard Smith [Fri, 14 Sep 2012 18:27:01 +0000 (18:27 +0000)]
Fix some dead stores which the static analyzer warned about. No functionality
change (the problematic cases in ParseDecl.cpp are currently impossible).

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

11 years agoWhen diagnosing multiple mem-initializers in a delegating ctor, point to the delegati...
Richard Smith [Fri, 14 Sep 2012 18:21:10 +0000 (18:21 +0000)]
When diagnosing multiple mem-initializers in a delegating ctor, point to the delegating initializer, not to the first initializer. For good measure, also highlight the other initializer.

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

11 years agoTest removed.
Fariborz Jahanian [Fri, 14 Sep 2012 17:51:34 +0000 (17:51 +0000)]
Test removed.

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

11 years agoobjective-C arc: remove -Warc-abi in its entirety.
Fariborz Jahanian [Fri, 14 Sep 2012 17:48:35 +0000 (17:48 +0000)]
objective-C arc: remove -Warc-abi in its entirety.
// rdar://10554025

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

11 years agoFix copy-paste error in manpage. Should be -stdlib=library.
Ted Kremenek [Fri, 14 Sep 2012 17:20:56 +0000 (17:20 +0000)]
Fix copy-paste error in manpage.  Should be -stdlib=library.

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

11 years agoAdd missing test from r163874.
Douglas Gregor [Fri, 14 Sep 2012 16:38:59 +0000 (16:38 +0000)]
Add missing test from r163874.

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

11 years agoComment parsing: don't parse comment marker followed by a digit as a command
Dmitri Gribenko [Fri, 14 Sep 2012 16:35:35 +0000 (16:35 +0000)]
Comment parsing: don't parse comment marker followed by a digit as a command
since no Doxygen command starts with a digit.

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

11 years agoComment parsing: support the "\invariant" command.
Dmitri Gribenko [Fri, 14 Sep 2012 15:37:29 +0000 (15:37 +0000)]
Comment parsing: support the "\invariant" command.

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

11 years agoDo not use "lib32" directory to create a library/object files
Simon Atanasyan [Fri, 14 Sep 2012 11:27:24 +0000 (11:27 +0000)]
Do not use "lib32" directory to create a library/object files
paths when target is MIPS 32-bit.

The patch reviewed by Chandler Carruth.

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

11 years agoFix warning on qualified typedef with 'unused' attribute, from Jason Haslam!
Douglas Gregor [Fri, 14 Sep 2012 05:10:40 +0000 (05:10 +0000)]
Fix warning on qualified typedef with 'unused' attribute, from Jason Haslam!

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

11 years agoIn debugger mode, allow comparisons between pointers and integers
Douglas Gregor [Fri, 14 Sep 2012 04:35:37 +0000 (04:35 +0000)]
In debugger mode, allow comparisons between pointers and integers
without a cast. Fixes <rdar://problem/11830912>.

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

11 years agoAs we do with base and member initializers in a dependent class, delay
Douglas Gregor [Fri, 14 Sep 2012 04:20:37 +0000 (04:20 +0000)]
As we do with base and member initializers in a dependent class, delay
type checking for non-static data member initializers in a dependent
class, because our ASTs lose too much information to when
type-checking an initializer. Fixes <rdar://problem/11974632>,
although the result is still rather unsatisfactory.

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

11 years agoImprove the driver title as shown in the --help message. <rdar://12297538>
Bob Wilson [Fri, 14 Sep 2012 03:35:42 +0000 (03:35 +0000)]
Improve the driver title as shown in the --help message. <rdar://12297538>

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

11 years agoFix thunk emission for covariant virtual functions in cases which require
Eli Friedman [Fri, 14 Sep 2012 01:45:09 +0000 (01:45 +0000)]
Fix thunk emission for covariant virtual functions in cases which require
both a virtual and a non-virtual offset. PR13832.

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

11 years agoFix line endings.
Eli Friedman [Fri, 14 Sep 2012 01:19:01 +0000 (01:19 +0000)]
Fix line endings.

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

11 years agoFix abbreviation for CharacterLiteral in AST serialization. PR13806.
Eli Friedman [Fri, 14 Sep 2012 00:51:36 +0000 (00:51 +0000)]
Fix abbreviation for CharacterLiteral in AST serialization.  PR13806.

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

11 years agoWhen computing the decltype of an expression, consider Objective-C
Douglas Gregor [Thu, 13 Sep 2012 23:40:46 +0000 (23:40 +0000)]
When computing the decltype of an expression, consider Objective-C
ivar and property references as member accesses and produce the actual
type of the declaration. Fixes <rdar://problem/12031582>.

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

11 years agoFix incorrect comment.
Richard Smith [Thu, 13 Sep 2012 22:10:19 +0000 (22:10 +0000)]
Fix incorrect comment.

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

11 years agoFix up after r163846. Sorry!
Richard Smith [Thu, 13 Sep 2012 22:03:58 +0000 (22:03 +0000)]
Fix up after r163846. Sorry!

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

11 years agoActually rebuild function types properly when adjusting the function
Douglas Gregor [Thu, 13 Sep 2012 22:01:49 +0000 (22:01 +0000)]
Actually rebuild function types properly when adjusting the function
type of an instantiation.

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

11 years agoRevert r163829. The world (or libstdc++, at least) is not ready.
Richard Smith [Thu, 13 Sep 2012 22:00:12 +0000 (22:00 +0000)]
Revert r163829. The world (or libstdc++, at least) is not ready.

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

11 years agoWhen we substitute into the type of a function based on the
Douglas Gregor [Thu, 13 Sep 2012 21:56:43 +0000 (21:56 +0000)]
When we substitute into the type of a function based on the
TypeSourceInfo, we may have lost some adjustments made to the type of
that function due to declaration merging. Adjust the resulting type
correspondingly. Fixes PR12948 / <rdar://problem/11552434>.

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

11 years agoComment to XML conversion: we try not to emit empty <Discussion> elements, but
Dmitri Gribenko [Thu, 13 Sep 2012 21:32:58 +0000 (21:32 +0000)]
Comment to XML conversion: we try not to emit empty <Discussion> elements, but
it is not possible to guarantee that without duplicating logic or buffering
<Discussion> element contents.  So, allow empty <Discussion> elements in schema.

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

11 years agoImplement C++11 [conv.prom]p4: an enumeration with a fixed underlying type has
Richard Smith [Thu, 13 Sep 2012 21:18:54 +0000 (21:18 +0000)]
Implement C++11 [conv.prom]p4: an enumeration with a fixed underlying type has
integral promotions to both its underlying type and to its underlying type's
promoted type. This matters now that boolean conversions aren't permitted in
converted constant expressions (a la DR1407): an enumerator with a fixed
underlying type of bool still can be.

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

11 years agoDon't perform template argument deduction against invalid templates;
Douglas Gregor [Thu, 13 Sep 2012 21:01:57 +0000 (21:01 +0000)]
Don't perform template argument deduction against invalid templates;
it's likely to lead to a crash later on. Fixes PR12933 /
<rdar://problem/11525335>.

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

11 years agoComment parsing: handle \deprecated command. It is a block command, but it
Dmitri Gribenko [Thu, 13 Sep 2012 20:36:01 +0000 (20:36 +0000)]
Comment parsing: handle \deprecated command.  It is a block command, but it
should be fine to use it without further explanations in the attached
paragraph, so the warning about empty paragraph was turned off for it.

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

11 years agoremove duplicate code.
Fariborz Jahanian [Thu, 13 Sep 2012 20:26:40 +0000 (20:26 +0000)]
remove duplicate code.

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

12 years agoPromote the warning about extra qualification on a declaration from a
Douglas Gregor [Thu, 13 Sep 2012 20:16:20 +0000 (20:16 +0000)]
Promote the warning about extra qualification on a declaration from a
warning to an error. C++ bans it, and both GCC and EDG diagnose it as
an error. Microsoft allows it, so we still warn in Microsoft
mode. Fixes <rdar://problem/11135644>.

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

12 years agoRemove speculative fix for C++ core issue 1407, since it was resolved as NAD.
Richard Smith [Thu, 13 Sep 2012 19:55:13 +0000 (19:55 +0000)]
Remove speculative fix for C++ core issue 1407, since it was resolved as NAD.

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

12 years agoFix grammar.
Ted Kremenek [Thu, 13 Sep 2012 19:48:51 +0000 (19:48 +0000)]
Fix grammar.

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

12 years agoRecover properly after a parse error in a static_assert declaration.
Richard Smith [Thu, 13 Sep 2012 19:12:50 +0000 (19:12 +0000)]
Recover properly after a parse error in a static_assert declaration.

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

12 years agoUse a "better" unicode character, to avoid buildbot breakage on bots which can print...
Richard Smith [Thu, 13 Sep 2012 19:10:51 +0000 (19:10 +0000)]
Use a "better" unicode character, to avoid buildbot breakage on bots which can print some unicode characters.

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

12 years agoMove back the stuff about missing ownership attribute warning
Fariborz Jahanian [Thu, 13 Sep 2012 18:53:14 +0000 (18:53 +0000)]
Move back the stuff about missing ownership attribute warning
to SemaDeclObjC and apply some simplification per John's
comment. // rdar://12280826

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

12 years agoMake TextDiagnostic more robust against SourceLocations which point into the
Richard Smith [Thu, 13 Sep 2012 18:37:50 +0000 (18:37 +0000)]
Make TextDiagnostic more robust against SourceLocations which point into the
middle of UTF-8 characters, and avoid walking to such positions when adjusting
column ranges for display. Fixes a couple of hangs when rendering diagnostics.

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

12 years agoWhen warning about unsafe uses of dispatch_once, specially handle the
Ted Kremenek [Thu, 13 Sep 2012 18:18:37 +0000 (18:18 +0000)]
When warning about unsafe uses of dispatch_once, specially handle the
crazy case where dispatch_once gets redefined as a macro that calls
_dispatch_once (which calls the real dispatch_once).  Users want to
see the warning in their own code.

Fixes <rdar://problem/11617767>

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

12 years agoMove no explicit ownership warning to SemaType.cpp.
Fariborz Jahanian [Thu, 13 Sep 2012 17:29:07 +0000 (17:29 +0000)]
Move no explicit ownership warning to SemaType.cpp.
// rdar://12280826

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

12 years agoAdd tests for r163778.
Ted Kremenek [Thu, 13 Sep 2012 17:25:51 +0000 (17:25 +0000)]
Add tests for r163778.

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

12 years agoThis patch introduces A15 as a target in Clang.
Silviu Baranga [Thu, 13 Sep 2012 15:06:00 +0000 (15:06 +0000)]
This patch introduces A15 as a target in Clang.

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

12 years agoASTMatchersMacros.h: Appease msvc.
NAKAMURA Takumi [Thu, 13 Sep 2012 14:28:23 +0000 (14:28 +0000)]
ASTMatchersMacros.h: Appease msvc.

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

12 years agoCreate initial support for matching and binding NestedNameSpecifier(Loc)s.
Daniel Jasper [Thu, 13 Sep 2012 13:11:25 +0000 (13:11 +0000)]
Create initial support for matching and binding NestedNameSpecifier(Loc)s.

Review: http://llvm-reviews.chandlerc.com/D39

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

12 years agoFix Doxygen misuse: refer to parameter names in paragraphs correctly (\arg is
Dmitri Gribenko [Thu, 13 Sep 2012 13:11:20 +0000 (13:11 +0000)]
Fix Doxygen misuse: refer to parameter names in paragraphs correctly (\arg is
not what most people want -- it starts a new paragraph).

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

12 years agoAdd missing accessor.
Manuel Klimek [Thu, 13 Sep 2012 12:44:47 +0000 (12:44 +0000)]
Add missing accessor.

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

12 years agoConditionally parse documentation comments in system headers by
Ted Kremenek [Thu, 13 Sep 2012 06:41:18 +0000 (06:41 +0000)]
Conditionally parse documentation comments in system headers by
passing -fretain-comments-from-system-headers.  By default, the
compiler no longer parses such documentation comments, as they
can result in a noticeable compile time/PCH slowdown.

Fixes <rdar://problem/11860820>.

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

12 years agoProperly link libpthread_p when using profiling on OpenBSD.
Eric Christopher [Thu, 13 Sep 2012 06:32:34 +0000 (06:32 +0000)]
Properly link libpthread_p when using profiling on OpenBSD.

Patch by Brad Smith.

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

12 years agoInitHeaderSearch.cpp: [mingw] Handle DOSish paths only on Win32 hosts.
NAKAMURA Takumi [Thu, 13 Sep 2012 05:53:23 +0000 (05:53 +0000)]
InitHeaderSearch.cpp: [mingw] Handle DOSish paths only on Win32 hosts.

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

12 years agoclang/lib/Analysis/ObjCNoReturn.cpp: Fix [-Wnewline-eof]
NAKAMURA Takumi [Thu, 13 Sep 2012 05:53:17 +0000 (05:53 +0000)]
clang/lib/Analysis/ObjCNoReturn.cpp: Fix [-Wnewline-eof]

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

12 years agoFormat strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o.
Jordan Rose [Thu, 13 Sep 2012 02:11:15 +0000 (02:11 +0000)]
Format strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o.

<rdar://problem/12061922>

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

12 years agoFormat strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o).
Jordan Rose [Thu, 13 Sep 2012 02:11:03 +0000 (02:11 +0000)]
Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o).

These will warn under -Wformat-non-iso, and will still be rejected
outright on other platforms.

<rdar://problem/12061922>

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

12 years ago[analyzer] Don't reimplement an existing function.
Anna Zaks [Thu, 13 Sep 2012 00:37:12 +0000 (00:37 +0000)]
[analyzer] Don't reimplement an existing function.

Thanks Jordan.

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

12 years agoTeach -Wuninitialized to recognize common "noreturn" idioms in
Ted Kremenek [Thu, 13 Sep 2012 00:21:35 +0000 (00:21 +0000)]
Teach -Wuninitialized to recognize common "noreturn" idioms in
Objective-C related to NSException.

Fixes <rdar://problem/12287498>

I debated whether or not this logic should be sunk into the CFG
itself.  It's not clear if we should, as different analyses may
wish to have different policies.  We can re-evaluate this in the
future.

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

12 years agoRefactor logic in ExprEngine for detecting 'noreturn' methods
Ted Kremenek [Thu, 13 Sep 2012 00:21:31 +0000 (00:21 +0000)]
Refactor logic in ExprEngine for detecting 'noreturn' methods
in NSException to a helper object in libAnalysis that can also
be used by Sema.  Not sure if the predicate name 'isImplicitNoReturn'
is the best one, but we can massage that later.

No functionality change.

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

12 years agoAdd a few FIXMEs.
Chad Rosier [Thu, 13 Sep 2012 00:20:37 +0000 (00:20 +0000)]
Add a few FIXMEs.

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

12 years ago[ms-inline asm] Handle the enumeration of input and output expressions in a
Chad Rosier [Thu, 13 Sep 2012 00:06:55 +0000 (00:06 +0000)]
[ms-inline asm]  Handle the enumeration of input and output expressions in a
more robust way to address a few FIXMEs.

The initial implementation, r163342, built the IR asm string and then tried to
patch things on the fly without enough context.  Specifically, it didn't skip
mnemonics nor did it track with assembly instruction an expression was related
to.  The new implementation patches the operands and then builds the final
IR string.

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

12 years agoReapply:
Eric Christopher [Wed, 12 Sep 2012 23:36:49 +0000 (23:36 +0000)]
Reapply:

    Make clang emit a flag for DW_AT_object_pointer for the artificial
    args where it should (implicit first arguments). FileCheck-ize a
    test as well and update tests to take into account the object
    pointer flag.

    rdar://9797999

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

12 years agoAdd two new functions to Qualifiers.
Richard Trieu [Wed, 12 Sep 2012 23:13:31 +0000 (23:13 +0000)]
Add two new functions to Qualifiers.

static Qualifiers removeCommonQualifiers(Qualifiers &L, Qualifiers &R)
Removes the common qualifiers from L and R and returns them in a new Qualifier.
This will be used in template diffing.

void removeQualifiers(Qualifiers Q)
Removes the qualifiers in Q from the current qualifier.
This replaces the current underlying implementation of operator- and
operator -= which only performed bit masking.

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

12 years agoWhitespace.
Chad Rosier [Wed, 12 Sep 2012 23:03:48 +0000 (23:03 +0000)]
Whitespace.

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

12 years ago[analyzer] Do not report use of undef on "return foo();" when the return type is...
Anna Zaks [Wed, 12 Sep 2012 22:57:40 +0000 (22:57 +0000)]
[analyzer] Do not report use of undef on "return foo();" when the return type is void.

Fixes a false positive found by analyzing LLVM code base.

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

12 years ago[analyzer] Fix another false positive in malloc realloc logic.
Anna Zaks [Wed, 12 Sep 2012 22:57:34 +0000 (22:57 +0000)]
[analyzer] Fix another false positive in malloc realloc logic.

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

12 years ago[analyzer] Teach UndefOrNullArgVisitor to track parent regions.
Anna Zaks [Wed, 12 Sep 2012 22:57:30 +0000 (22:57 +0000)]
[analyzer] Teach UndefOrNullArgVisitor to track parent regions.

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

12 years ago[analyzer] Fix another use of the address of a temporary, like r163402.
Jordan Rose [Wed, 12 Sep 2012 22:48:08 +0000 (22:48 +0000)]
[analyzer] Fix another use of the address of a temporary, like r163402.

Again, GCC is more aggressive about reusing temporary space than we are,
leading to Release build crashes for this undefined behavior.

PR13710 (though it may not be the only problem there)

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

12 years ago[analyzer] Re-add reinterpret_cast virtual call test case from r163644.
Jordan Rose [Wed, 12 Sep 2012 21:50:56 +0000 (21:50 +0000)]
[analyzer] Re-add reinterpret_cast virtual call test case from r163644.

We mostly just don't want to crash analyzing this test case; it's likely
the code found here will actually crash if compiled and run.

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

12 years ago[analyzer] Handle when the dynamic type is worse than the static type.
Jordan Rose [Wed, 12 Sep 2012 21:48:17 +0000 (21:48 +0000)]
[analyzer] Handle when the dynamic type is worse than the static type.

Currently we don't update the dynamic type of a C++ object when it is
cast. This can cause the situation above, where the static type of the
region is now known to be a subclass of the dynamic type.

Once we start updating DynamicTypeInfo in response to the various kinds
of casts in C++, we can re-add this assert to make sure we don't miss
any cases. This work is tracked by <rdar://problem/12287087>.

In -Asserts builds, we will simply not return any runtime definition
when our DynamicTypeInfo is known to be incorrect like this.

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

12 years agoRevert "[analyzer] Use the static type for a virtual call if the dynamic type is...
Jordan Rose [Wed, 12 Sep 2012 21:48:13 +0000 (21:48 +0000)]
Revert "[analyzer] Use the static type for a virtual call if the dynamic type is worse."

Using the static type may be inconsistent with later calls. We should just
report that there is no inlining definition available if the static type is
better than the dynamic type. See next commit.

This reverts r163644 / 19d5886d1704e24282c86217b09d5c6d35ba604d.

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

12 years agoobjective-C++ test for my previous patch.
Fariborz Jahanian [Wed, 12 Sep 2012 21:27:26 +0000 (21:27 +0000)]
objective-C++ test for my previous patch.
// rdar://12280826

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

12 years agoRename isA to isSameOrDerivedFrom.
Daniel Jasper [Wed, 12 Sep 2012 21:14:15 +0000 (21:14 +0000)]
Rename isA to isSameOrDerivedFrom.

There are two evils we can choose from:
- Name overlap between isA-matcher and llvm::isa<>()
- Bad name for what the isA-matcher currently does

After some discussion we have agreed to go with the latter evil.

Review: http://llvm-reviews.chandlerc.com/D40

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

12 years agoobjective-C arc: don't issue no explicit ownership warning when
Fariborz Jahanian [Wed, 12 Sep 2012 20:34:47 +0000 (20:34 +0000)]
objective-C arc: don't issue no explicit ownership warning when
__autoreleasing is explicitely added to param type.
// rdar://12280826

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

12 years agoFix test case for Release builds.
Chad Rosier [Wed, 12 Sep 2012 20:13:11 +0000 (20:13 +0000)]
Fix test case for Release builds.

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

12 years agoRevert "Make clang emit a flag for DW_AT_object_pointer for the artificial"
Eric Christopher [Wed, 12 Sep 2012 18:42:10 +0000 (18:42 +0000)]
Revert "Make clang emit a flag for DW_AT_object_pointer for the artificial"
this should be done on the subprogram, not the variable.

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

12 years ago[ms-inline asm] Add a test case.
Chad Rosier [Wed, 12 Sep 2012 18:34:34 +0000 (18:34 +0000)]
[ms-inline asm] Add a test case.

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

12 years ago[ms-inline asm] Test case for r163729.
Chad Rosier [Wed, 12 Sep 2012 18:25:06 +0000 (18:25 +0000)]
[ms-inline asm] Test case for r163729.

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

12 years ago[ms-inline asm] If we have a single asm operand that maps to multiple
Chad Rosier [Wed, 12 Sep 2012 18:14:25 +0000 (18:14 +0000)]
[ms-inline asm] If we have a single asm operand that maps to multiple
MCOperands then iterate over all of then when computing clobbers, inputs and
outputs.

On x86 the 1-to-many mapping is a memory operand that includes a BaseReg(reg),
MemScale(imm), MemIndexReg(reg), an Expr(MCExpr or imm) and a MemSegReg(reg).
Invalid register (Op.getReg() == 0) are not considered when computing clobber.

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

12 years agoComment parsing: recognize more Doxygen commands
Dmitri Gribenko [Wed, 12 Sep 2012 17:02:40 +0000 (17:02 +0000)]
Comment parsing: recognize more Doxygen commands

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

12 years agoFix a couple of Doxygen issues pointed out by -Wdocumentation.
Dmitri Gribenko [Wed, 12 Sep 2012 17:01:48 +0000 (17:01 +0000)]
Fix a couple of Doxygen issues pointed out by -Wdocumentation.

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

12 years agoRevert "objective-C: warn under a flag if missing argument"
Ted Kremenek [Wed, 12 Sep 2012 16:50:35 +0000 (16:50 +0000)]
Revert "objective-C: warn under a flag if missing argument"

We plan on discussing this more, but we shouldn't have it in the compiler
in an incomplete state.

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

12 years agoRevert "objective-C: warn if selector has nothing but bare"
Ted Kremenek [Wed, 12 Sep 2012 16:50:30 +0000 (16:50 +0000)]
Revert "objective-C: warn if selector has nothing but bare"

We plan on discussing this more.

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

12 years agoclang/test: [PR13820] Suppress LLP64-incompatible tests for ObjC with +Asserts.
NAKAMURA Takumi [Wed, 12 Sep 2012 14:26:42 +0000 (14:26 +0000)]
clang/test: [PR13820] Suppress LLP64-incompatible tests for ObjC with +Asserts.

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

12 years agoclang/test/CodeGen/2008-01-25-ZeroSizedAggregate.c: [PR8833] Add REQUIRES: LP64....
NAKAMURA Takumi [Wed, 12 Sep 2012 14:26:34 +0000 (14:26 +0000)]
clang/test/CodeGen/2008-01-25-ZeroSizedAggregate.c: [PR8833] Add REQUIRES: LP64. It fails with +Asserts for Win64.

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

12 years agoClaim --param ssp-buffer-size, even if the stack protector is not
Joerg Sonnenberger [Wed, 12 Sep 2012 13:51:14 +0000 (13:51 +0000)]
Claim --param ssp-buffer-size, even if the stack protector is not
active.

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

12 years agoclang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.
NAKAMURA Takumi [Wed, 12 Sep 2012 10:45:52 +0000 (10:45 +0000)]
clang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.

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

12 years agoclang/test/SemaCXX/dcl_ambig_res.cpp: [PR13819] It requires LP64 for now due to __SIZ...
NAKAMURA Takumi [Wed, 12 Sep 2012 10:45:46 +0000 (10:45 +0000)]
clang/test/SemaCXX/dcl_ambig_res.cpp: [PR13819] It requires LP64 for now due to __SIZE_TYPE__.

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

12 years agoclang/test: [PR8833] Introduce the feature "LP64" to suppress LLP64-incompatible...
NAKAMURA Takumi [Wed, 12 Sep 2012 10:45:40 +0000 (10:45 +0000)]
clang/test: [PR8833] Introduce the feature "LP64" to suppress LLP64-incompatible tests.

I think some of them could be rewritten to fit also LLP64.

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

12 years agoclang/test/PCH/missing-file.cpp: Try to suppress accidental false on Windows.
NAKAMURA Takumi [Wed, 12 Sep 2012 10:38:08 +0000 (10:38 +0000)]
clang/test/PCH/missing-file.cpp: Try to suppress accidental false on Windows.

%t.h might be touched by scanners as a hot file on Windows, to fail to remove %.h with single run.

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

12 years agoclang/test/lit.cfg: Fix a typo in comment.
NAKAMURA Takumi [Wed, 12 Sep 2012 10:38:03 +0000 (10:38 +0000)]
clang/test/lit.cfg: Fix a typo in comment.

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

12 years agoFix a test failure.
Evgeniy Stepanov [Wed, 12 Sep 2012 09:39:37 +0000 (09:39 +0000)]
Fix a test failure.

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

12 years agoMake -faddress-sanitizer on Android link to the new-style runtime.
Evgeniy Stepanov [Wed, 12 Sep 2012 09:09:08 +0000 (09:09 +0000)]
Make -faddress-sanitizer on Android link to the new-style runtime.

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

12 years agoConvert a few more getAs cases to castAs where we immediately call a member function.
Ted Kremenek [Wed, 12 Sep 2012 06:50:29 +0000 (06:50 +0000)]
Convert a few more getAs cases to castAs where we immediately call a member function.

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