]> granicus.if.org Git - clang/log
clang
10 years agoFix a typo in r204164 that made *all* keywords available in OpenCL mode.
Richard Smith [Tue, 18 Mar 2014 22:43:19 +0000 (22:43 +0000)]
Fix a typo in r204164 that made *all* keywords available in OpenCL mode.

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

10 years agoCodeGen: Include a function hash in instrumentation based profiling
Justin Bogner [Tue, 18 Mar 2014 21:58:06 +0000 (21:58 +0000)]
CodeGen: Include a function hash in instrumentation based profiling

The hash itself is still the number of counters, which isn't all that
useful, but this separates the API changes from the actual
implementation of the hash and will make it easier to transition to
the ProfileData library once it's implemented.

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

10 years agoSimplify and add FIXME. No functionality change.
Richard Smith [Tue, 18 Mar 2014 21:02:14 +0000 (21:02 +0000)]
Simplify and add FIXME. No functionality change.

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

10 years agoIn the presence of modules, we can have multiple implicit instantiations of the same...
Richard Smith [Tue, 18 Mar 2014 20:31:31 +0000 (20:31 +0000)]
In the presence of modules, we can have multiple implicit instantiations of the same template. Teach RecursiveASTVisitor to visit all of those, not just one of them. This is difficult to test by itself, but will be covered by an upcoming change.

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

10 years agoCreating a printing policy for "half":
Yunzhong Gao [Tue, 18 Mar 2014 17:55:18 +0000 (17:55 +0000)]
Creating a printing policy for "half":
Since "half" is an OpenCL keyword and clang accepts __fp16 as an extension for
other languages, error messages and metadata (and hence debug info) should refer
to the half-precision floating point as "__fp16" instead of "half" when
compiling for non-OpenCL languages. This patch creates a new printing policy for
half in a similar manner to what is done for bool and wchar_t.

Differential Revision: http://llvm-reviews.chandlerc.com/D2952

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

10 years agoObjective-C. Better fix for my previous patch
Fariborz Jahanian [Tue, 18 Mar 2014 16:25:22 +0000 (16:25 +0000)]
Objective-C. Better fix for my previous patch
"No need to issue deprecated warning if deprecated method
in class extension is being implemented in primary class implementation
(no overriding is involved).
// rdar://16249335". No functionality change.

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

10 years agoclang-format: Detect function-like macros only when upper case is used.
Alexander Kornienko [Tue, 18 Mar 2014 14:35:20 +0000 (14:35 +0000)]
clang-format: Detect function-like macros only when upper case is used.

Reviewers: djasper

Reviewed By: djasper

CC: cfe-commits, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D3110

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

10 years agoAdded a __has_feature() for 'is_constructible'
Marshall Clow [Tue, 18 Mar 2014 14:13:10 +0000 (14:13 +0000)]
Added a __has_feature() for 'is_constructible'

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

10 years agomodify declare-use.S to work when full toolchain not present
Matthew Curtis [Tue, 18 Mar 2014 12:25:27 +0000 (12:25 +0000)]
modify declare-use.S to work when full toolchain not present

Test doesn't actually require production of an object file and for
some targets (e.g. hexagon) an assembler is not always available when
lit tests are run.

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

10 years ago[OPENMP] DSA fix
Alexey Bataev [Tue, 18 Mar 2014 12:19:12 +0000 (12:19 +0000)]
[OPENMP] DSA fix

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

10 years agoFix crasher bug.
Manuel Klimek [Tue, 18 Mar 2014 11:22:45 +0000 (11:22 +0000)]
Fix crasher bug.

Due to not resetting the fake rparen data on the token when iterating
over annotated lines, we would pop the last element of the paren stack.

This patch fixes the underlying root cause, and makes the code more
robust against similar problems in the future:
- reset the first token when iterating on the same annotated lines due
  to preprocessor branches
- never pop the last element from the paren stack, so we do not crash,
  but rather incorrectly format
- add assert()s so we can figure out if our assumptions are violated

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

10 years agoclang/test/Driver/sanitizer-ld.c: Tweak to accept dos path.
NAKAMURA Takumi [Tue, 18 Mar 2014 10:47:10 +0000 (10:47 +0000)]
clang/test/Driver/sanitizer-ld.c: Tweak to accept dos path.

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

10 years ago[OPENMP] Simplified data-sharing attributes analysis.
Alexey Bataev [Tue, 18 Mar 2014 10:23:46 +0000 (10:23 +0000)]
[OPENMP] Simplified data-sharing attributes analysis.

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

10 years agoAdd support for sanitizers arguments on FreeBSD
Viktor Kutuzov [Tue, 18 Mar 2014 09:36:50 +0000 (09:36 +0000)]
Add support for sanitizers arguments on FreeBSD

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

10 years agoclang/test/Modules/cxx-templates.cpp: Tweak for dos path.
NAKAMURA Takumi [Tue, 18 Mar 2014 05:58:02 +0000 (05:58 +0000)]
clang/test/Modules/cxx-templates.cpp: Tweak for dos path.

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

10 years agoFix const correctness issue in CXXConstructExpr::getArgs().
Peter Collingbourne [Tue, 18 Mar 2014 04:42:01 +0000 (04:42 +0000)]
Fix const correctness issue in CXXConstructExpr::getArgs().

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

10 years agoMore working around a GCC range-based for scope bug.
Richard Smith [Tue, 18 Mar 2014 02:37:59 +0000 (02:37 +0000)]
More working around a GCC range-based for scope bug.

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

10 years agoDebug info: Update testcases to new DIBuilder behaviour. Variables now
Adrian Prantl [Tue, 18 Mar 2014 02:34:54 +0000 (02:34 +0000)]
Debug info: Update testcases to new DIBuilder behaviour. Variables now
store DIRefs to their types for improved type uniquing.

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

10 years agoAST dumper: if we have multiple implicit instantiations of the same class
Richard Smith [Tue, 18 Mar 2014 02:07:28 +0000 (02:07 +0000)]
AST dumper: if we have multiple implicit instantiations of the same class
template specialization (from different modules), dump them all, so that every
declaration is dumped somewhere.

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

10 years agoPGO: Switch to isOSBinFormatMachO()
Duncan P. N. Exon Smith [Tue, 18 Mar 2014 00:39:26 +0000 (00:39 +0000)]
PGO: Switch to isOSBinFormatMachO()

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

10 years agoFix variable shadowing. Due to a bug in GCC's implementation of range-based for
Richard Smith [Tue, 18 Mar 2014 00:35:12 +0000 (00:35 +0000)]
Fix variable shadowing. Due to a bug in GCC's implementation of range-based for
loops, it was making this an error, resulting in buildbot failures.

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

10 years agoRemove 'REQUIRES: LP64' from these tests and use a more targeted fix.
Richard Smith [Tue, 18 Mar 2014 00:30:09 +0000 (00:30 +0000)]
Remove 'REQUIRES: LP64' from these tests and use a more targeted fix.

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

10 years agoObjective-C. No need to issue deprecated warning if deprecated method
Fariborz Jahanian [Tue, 18 Mar 2014 00:10:37 +0000 (00:10 +0000)]
Objective-C. No need to issue deprecated warning if deprecated method
in class extension is being implemented in primary class implementation
(no overriding is involved).
// rdar://16249335

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

10 years agoFactor out repeated code in dumping template declarations.
Richard Smith [Mon, 17 Mar 2014 23:34:53 +0000 (23:34 +0000)]
Factor out repeated code in dumping template declarations.

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

10 years agoRange-ify and simplify some of the AST dumping code by factoring out the lastChild...
Richard Smith [Mon, 17 Mar 2014 23:00:06 +0000 (23:00 +0000)]
Range-ify and simplify some of the AST dumping code by factoring out the lastChild check.

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

10 years agoDon't fold together the name lookup entries for two declarations if they are
Richard Smith [Mon, 17 Mar 2014 21:46:03 +0000 (21:46 +0000)]
Don't fold together the name lookup entries for two declarations if they are
declared in different namespaces in the same inline namespace set.

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

10 years agoObjective-C. Consider blocks for designated initializer
Fariborz Jahanian [Mon, 17 Mar 2014 21:41:40 +0000 (21:41 +0000)]
Objective-C. Consider blocks for designated initializer
warnings (warning or lack there of) as well since
blocks are another pattern for envoking other
designated initializers. // rdar://16323233

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

10 years agoPGO: Statically generate data structures
Duncan P. N. Exon Smith [Mon, 17 Mar 2014 21:18:30 +0000 (21:18 +0000)]
PGO: Statically generate data structures

In instrumentation-based profiling, we need a set of data structures to
represent the counters.  Previously, these were built up during static
initialization.  Now, they're shoved into a specially-named section so
that they show up as an array.

As a consequence of the reorganizing symbols, instrumentation data
structures for linkonce functions are now correctly coalesced.

This is the first step in a larger project to minimize runtime overhead
and dependencies in instrumentation-based profilng.  The larger picture
includes removing all initialization overhead and making the dependency
on libc optional.

<rdar://problem/15943240>

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

10 years ago[C++11] Replacing CGFunctionInfo arg iterators with iterator_range arguments(). Updat...
Aaron Ballman [Mon, 17 Mar 2014 18:10:01 +0000 (18:10 +0000)]
[C++11] Replacing CGFunctionInfo arg iterators with iterator_range arguments(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoObjective-C. Do not warn when an instance method and
Fariborz Jahanian [Mon, 17 Mar 2014 17:46:10 +0000 (17:46 +0000)]
Objective-C. Do not warn when an instance method and
class method with the same selctor but different argument
types having one of them in class extension.
// rdar://16312105

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

10 years ago[C++11] Replacing CallArgList writeback iterators with iterator_range writebacks...
Aaron Ballman [Mon, 17 Mar 2014 17:22:27 +0000 (17:22 +0000)]
[C++11] Replacing CallArgList writeback iterators with iterator_range writebacks(). Updating all of the usages of the iterators with range-based for loops, and removing the no-longer-needed iterator versions.

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

10 years ago[C++11] Replacing DeclContext iterators using_directives_begin() and using_directives...
Aaron Ballman [Mon, 17 Mar 2014 17:14:12 +0000 (17:14 +0000)]
[C++11] Replacing DeclContext iterators using_directives_begin() and using_directives_end() with iterator_range using_directives(). Updating all of the usages of the iterators with range-based for loops, and removing the no-longer-needed iterator versions. Also used as an opportunity to normalize the name from getUsingDirectives() to using_directives().

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

10 years ago[C++11] Replacing Scope iterators using_directives_begin() and using_directives_end...
Aaron Ballman [Mon, 17 Mar 2014 17:03:37 +0000 (17:03 +0000)]
[C++11] Replacing Scope iterators using_directives_begin() and using_directives_end() with iterator_range using_directives(). Updating all of the usages of the iterators with range-based for loops, and removing the no-longer-needed iterator versions.

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

10 years ago[C++11] Replacing Scope iterators decl_begin() and decl_end() with iterator_range...
Aaron Ballman [Mon, 17 Mar 2014 16:55:25 +0000 (16:55 +0000)]
[C++11] Replacing Scope iterators decl_begin() and decl_end() with iterator_range decls(). Updating all of the usages of the iterators with range-based for loops, and removing the no-longer-needed iterator versions.

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

10 years agoRemove unused variable from test.
Richard Smith [Mon, 17 Mar 2014 16:53:13 +0000 (16:53 +0000)]
Remove unused variable from test.

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

10 years ago[C++11] Replacing ObjCObjectPointerType iterators qual_begin() and qual_end() with...
Aaron Ballman [Mon, 17 Mar 2014 16:14:00 +0000 (16:14 +0000)]
[C++11] Replacing ObjCObjectPointerType iterators qual_begin() and qual_end() with iterator_range quals(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing ObjCObjectType iterators qual_begin() and qual_end() with iterator_...
Aaron Ballman [Mon, 17 Mar 2014 15:55:30 +0000 (15:55 +0000)]
[C++11] Replacing ObjCObjectType iterators qual_begin() and qual_end() with iterator_range quals(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing FunctionProtoType iterators exception_begin() and exception_end...
Aaron Ballman [Mon, 17 Mar 2014 15:38:09 +0000 (15:38 +0000)]
[C++11] Replacing FunctionProtoType iterators exception_begin() and exception_end() with iterator_range exceptions(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing FunctionProtoType iterators param_type_begin() and param_type_end...
Aaron Ballman [Mon, 17 Mar 2014 15:23:01 +0000 (15:23 +0000)]
[C++11] Replacing FunctionProtoType iterators param_type_begin() and param_type_end() with iterator_range param_types(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoclang-format: Indent from dict literal labels.
Daniel Jasper [Mon, 17 Mar 2014 14:32:47 +0000 (14:32 +0000)]
clang-format: Indent from dict literal labels.

Before:
  @{
    NSFontAttributeNameeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee :
    regularFont,
  };

After:
  @{
    NSFontAttributeNameeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee :
        regularFont,
  };

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

10 years ago[C++11] Replacing CompoundStmt iterators body_begin() and body_end() with iterator_ra...
Aaron Ballman [Mon, 17 Mar 2014 14:19:37 +0000 (14:19 +0000)]
[C++11] Replacing CompoundStmt iterators body_begin() and body_end() with iterator_range body(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoclang/test/CXX/drs: Add "REQUIRES:LP64" to a couple of tests in r204033. [PR8833]
NAKAMURA Takumi [Mon, 17 Mar 2014 11:55:46 +0000 (11:55 +0000)]
clang/test/CXX/drs: Add "REQUIRES:LP64" to a couple of tests in r204033. [PR8833]

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

10 years agoTests for DR400-450.
Richard Smith [Mon, 17 Mar 2014 08:20:10 +0000 (08:20 +0000)]
Tests for DR400-450.

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

10 years agoPR19152: If a variable template's type involves 'auto', instantiate the
Richard Smith [Sun, 16 Mar 2014 01:00:40 +0000 (01:00 +0000)]
PR19152: If a variable template's type involves 'auto', instantiate the
initializer with the variable in order to determine the type.

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

10 years agoMake some assertions on constant expressions static.
Benjamin Kramer [Sat, 15 Mar 2014 18:54:13 +0000 (18:54 +0000)]
Make some assertions on constant expressions static.

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

10 years agoThe year is 2014. MSVC is still unable to synthesize move ctors.
Benjamin Kramer [Sat, 15 Mar 2014 17:35:02 +0000 (17:35 +0000)]
The year is 2014. MSVC is still unable to synthesize move ctors.

Work around with a ton of boilerplate.

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

10 years agoPreprocessor: Clarify the ownership of the IncludeMacroStack with unique_ptr.
Benjamin Kramer [Sat, 15 Mar 2014 16:40:40 +0000 (16:40 +0000)]
Preprocessor: Clarify the ownership of the IncludeMacroStack with unique_ptr.

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

10 years agoSerialization: Directly compare objects instead of using a functor duplicating the...
Benjamin Kramer [Sat, 15 Mar 2014 14:21:58 +0000 (14:21 +0000)]
Serialization: Directly compare objects instead of using a functor duplicating the compare operators.

No functionality change.

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

10 years agoFix PR18806: Canonicalize the replacement type when deserializing a SubstTemplateType...
Stephan Tolksdorf [Sat, 15 Mar 2014 10:23:27 +0000 (10:23 +0000)]
Fix PR18806: Canonicalize the replacement type when deserializing a SubstTemplateTypeParmType

What's going on in the test case (without the patch applied) is this:

When the header is parsed, decltype(B()) is canonicalized to decltype(Y()),
because that was the first parsed equivalent decltype expression. Hence, the
TemplateSpecializationType for Id<decltype(B())> ends up with
SubstTemplateTypeParmType(T, decltype(Y())) as the AliasedType member.

When the PCH file is included and the AST reader reads Id<decltype(B())>, it
sees decltype(B()) before decltype(Y()). So, this time decltype(B()) ends up
being the canonical type for both decltypes, which leads to an assert violation
when the reader calls getSubstTemplateTypeParmType with the non-canonical
decltype(Y()) as the replacement type.

Reviewers: rsmith

Reviewed By: rsmith

CC: cfe-commits, aemerson
Differential Revision: http://llvm-reviews.chandlerc.com/D3073

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

10 years agoRemove dead functions from unreachable code analysis.
Benjamin Kramer [Sat, 15 Mar 2014 10:20:49 +0000 (10:20 +0000)]
Remove dead functions from unreachable code analysis.

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

10 years ago[C++11] Add 'override' keyword to virtual methods that override their base class.
Craig Topper [Sat, 15 Mar 2014 07:47:46 +0000 (07:47 +0000)]
[C++11] Add 'override' keyword to virtual methods that override their base class.

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

10 years ago-Wunreachable-code: treat 'const bool' locals as control values.
Ted Kremenek [Sat, 15 Mar 2014 06:47:45 +0000 (06:47 +0000)]
-Wunreachable-code: treat 'const bool' locals as control values.

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

10 years agoFurther refine -Wunreachable-code groups so that -Wno-unreachable-code-break doesn...
Ted Kremenek [Sat, 15 Mar 2014 05:47:06 +0000 (05:47 +0000)]
Further refine -Wunreachable-code groups so that -Wno-unreachable-code-break doesn't turn off all unreachable code warnings.

Also relax unreachable 'break' and 'return' to not check for being
preceded by a call to 'noreturn'.  That turns out to not be so
interesting in practice.

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

10 years ago[C++11] Add 'override' keyword to virtual methods that override their base class.
Craig Topper [Sat, 15 Mar 2014 04:29:04 +0000 (04:29 +0000)]
[C++11] Add 'override' keyword to virtual methods that override their base class.

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

10 years agoStart breaking -Wunreachable-code up into different diagnostic groups.
Ted Kremenek [Sat, 15 Mar 2014 01:26:32 +0000 (01:26 +0000)]
Start breaking -Wunreachable-code up into different diagnostic groups.

Recent work on -Wunreachable-code has focused on suppressing uninteresting
unreachable code that center around "configuration values", but
there are still some set of cases that are sometimes interesting
or uninteresting depending on the codebase.  For example, a dead
"break" statement may not be interesting for a particular codebase,
potentially because it is auto-generated or simply because code
is written defensively.

To address these workflow differences, -Wunreachable-code is now
broken into several diagnostic groups:

-Wunreachable-code: intended to be a reasonable "default" for
most users.

and then other groups that turn on more aggressive checking:

-Wunreachable-code-break: warn about dead break statements

-Wunreachable-code-trivial-return: warn about dead return statements
that return "trivial" values (e.g., return 0).  Other return
statements that return non-trivial values are still reported
under -Wunreachable-code (this is an area subject to more refinement).

-Wunreachable-code-aggressive: supergroup that enables all these
groups.

The goal is to eventually make -Wunreachable-code good enough to
either be in -Wall or on-by-default, thus finessing these warnings
into different groups helps achieve maximum signal for more users.

TODO: the tests need to be updated to reflect this extra control
via diagnostic flags.

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

10 years agoASTTests//EvaluateAsRValueTest.cpp: Appease *-win32 target to add -fno-delayed-templa...
NAKAMURA Takumi [Sat, 15 Mar 2014 00:36:51 +0000 (00:36 +0000)]
ASTTests//EvaluateAsRValueTest.cpp: Appease *-win32 target to add -fno-delayed-template-parsing.

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

10 years agoImplement the MS extension __identifier properly: take a token and strip it of
Richard Smith [Sat, 15 Mar 2014 00:06:08 +0000 (00:06 +0000)]
Implement the MS extension __identifier properly: take a token and strip it of
its keywordliness.

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

10 years agoObjective-C. Redo turning off designated initialization warnings on
Fariborz Jahanian [Fri, 14 Mar 2014 23:30:18 +0000 (23:30 +0000)]
Objective-C. Redo turning off designated initialization warnings on
'init' methods which are unavailable. Subclasses of NSObject
have to implement such methods as a common pattern to prevent
user's own implementation. // rdar://16305460

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

10 years agoCall RequireCompleteType when performing ADL even if the type is already
Richard Smith [Fri, 14 Mar 2014 22:07:27 +0000 (22:07 +0000)]
Call RequireCompleteType when performing ADL even if the type is already
complete. We hook into this check from a couple of other places (modules,
debug info) so it's not OK to elide the check if the type was already
complete.

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

10 years ago[C++11] Removing the found_decls_begin() and found_decls_end() APIs and replacing...
Aaron Ballman [Fri, 14 Mar 2014 21:38:48 +0000 (21:38 +0000)]
[C++11] Removing the found_decls_begin() and found_decls_end() APIs and replacing with a range-only found_decls() API.

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

10 years agoAdd two missing entries to the C++11 support page. Bump one relevant diagnostic
Richard Smith [Fri, 14 Mar 2014 21:21:24 +0000 (21:21 +0000)]
Add two missing entries to the C++11 support page. Bump one relevant diagnostic
(for an integer too large for any signed type) from Warning to ExtWarn -- it's
ill-formed in C++11 and C99 onwards, and UB during translation in C89 and
C++98. Add diagnostic groups for two relevant diagnostics.

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

10 years ago[C++11] Removing the types_begin() and types_end() APIs and replacing with a range...
Aaron Ballman [Fri, 14 Mar 2014 21:11:14 +0000 (21:11 +0000)]
[C++11] Removing the types_begin() and types_end() APIs and replacing with a range-only types() API.

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

10 years ago[C++11] Removing the local_import_begin() and local_import_end() APIs and replacing...
Aaron Ballman [Fri, 14 Mar 2014 20:59:21 +0000 (20:59 +0000)]
[C++11] Removing the local_import_begin() and local_import_end() APIs and replacing with a range-only local_imports() API. Privatizes the iterator class as well.

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

10 years agoObjective-C. Turn off designated initialization warnings on
Fariborz Jahanian [Fri, 14 Mar 2014 20:35:00 +0000 (20:35 +0000)]
Objective-C. Turn off designated initialization warnings on
'init' methods which are unavailable. Subclasses of NSObject
have to implement such methods as a common pattern to prevent
user's own implementation. // rdar://16305460

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

10 years agoRemoving some unused functionality from AttributeList.
Aaron Ballman [Fri, 14 Mar 2014 20:33:18 +0000 (20:33 +0000)]
Removing some unused functionality from AttributeList.

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

10 years agoTry to remove confusion about C++11 feature support:
Richard Smith [Fri, 14 Mar 2014 20:26:09 +0000 (20:26 +0000)]
Try to remove confusion about C++11 feature support:
 * Explicitly say that we conform to the two N/A bullets that required no
   compiler changes.
 * Remove a library feature from our features list.

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

10 years agoChange a raw string literal back to C++98 style to fix freeBSD9.2 builtbot
James Dennett [Fri, 14 Mar 2014 20:08:11 +0000 (20:08 +0000)]
Change a raw string literal back to C++98 style to fix freeBSD9.2 builtbot

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

10 years ago[C++11] Replacing CapturedStmt iterators capture_init_begin() and capture_init_end...
Aaron Ballman [Fri, 14 Mar 2014 19:41:04 +0000 (19:41 +0000)]
[C++11] Replacing CapturedStmt iterators capture_init_begin() and capture_init_end() with iterator_range capture_inits(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing BlockDecl iterators capture_begin() and capture_end() with iterator...
Aaron Ballman [Fri, 14 Mar 2014 18:34:04 +0000 (18:34 +0000)]
[C++11] Replacing BlockDecl iterators capture_begin() and capture_end() with iterator_range captures(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoObjective-C. Allow objc_designated_initializer for private
Fariborz Jahanian [Fri, 14 Mar 2014 18:19:46 +0000 (18:19 +0000)]
Objective-C. Allow objc_designated_initializer for private
initializers; but only those declared in class extensions
(not in implementations). // rdar://16305347

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

10 years ago[C++11] Replacing CapturedStmt iterators capture_begin() and capture_end() with itera...
Aaron Ballman [Fri, 14 Mar 2014 18:08:33 +0000 (18:08 +0000)]
[C++11] Replacing CapturedStmt iterators capture_begin() and capture_end() with iterator_range captures(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoFix VS2012 build after r203881
Hans Wennborg [Fri, 14 Mar 2014 17:45:06 +0000 (17:45 +0000)]
Fix VS2012 build after r203881

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

10 years agoFix a crash (assertion failure) in EvaluateAsRValue.
James Dennett [Fri, 14 Mar 2014 17:44:10 +0000 (17:44 +0000)]
Fix a crash (assertion failure) in EvaluateAsRValue.

Summary:
Gracefully fail to evaluate a constant expression if its type is
unknown, rather than failing an assertion trying to access the type.

Reviewers: klimek

Reviewed By: klimek

CC: chandlerc, cfe-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D3075

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

10 years agoFix PR19104: Incorrect handling of non-virtual calls of virtual methods
Timur Iskhodzhanov [Fri, 14 Mar 2014 17:43:37 +0000 (17:43 +0000)]
Fix PR19104: Incorrect handling of non-virtual calls of virtual methods

Reviewed at http://llvm-reviews.chandlerc.com/D3054

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

10 years agoNFC: remove unused variables from r203938, r203942, and r203947
Duncan P. N. Exon Smith [Fri, 14 Mar 2014 17:19:40 +0000 (17:19 +0000)]
NFC: remove unused variables from r203938, r203942, and r203947

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

10 years ago[C++11] Replacing DeclStmt iterators decl_begin() and decl_end() with iterator_range...
Aaron Ballman [Fri, 14 Mar 2014 17:01:24 +0000 (17:01 +0000)]
[C++11] Replacing DeclStmt iterators decl_begin() and decl_end() with iterator_range decls(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoRemoving some more unused iterator methods for partial specializations.
Aaron Ballman [Fri, 14 Mar 2014 16:32:36 +0000 (16:32 +0000)]
Removing some more unused iterator methods for partial specializations.

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

10 years agoclang/test/CodeGen/aarch64-varargs.c: works now regardless of assertions.
Christian Pirker [Fri, 14 Mar 2014 16:30:06 +0000 (16:30 +0000)]
clang/test/CodeGen/aarch64-varargs.c: works now regardless of assertions.

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

10 years ago[C++11] Replacing VarTemplateDecl iterators spec_begin() and spec_end() with iterator...
Aaron Ballman [Fri, 14 Mar 2014 16:29:14 +0000 (16:29 +0000)]
[C++11] Replacing VarTemplateDecl iterators spec_begin() and spec_end() with iterator_range specializations(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoRemoving some unused iterator methods for partial specializations.
Aaron Ballman [Fri, 14 Mar 2014 16:19:04 +0000 (16:19 +0000)]
Removing some unused iterator methods for partial specializations.

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

10 years ago[C++11] Replacing ClassTemplateDecl iterators spec_begin() and spec_end() with iterat...
Aaron Ballman [Fri, 14 Mar 2014 16:13:33 +0000 (16:13 +0000)]
[C++11] Replacing ClassTemplateDecl iterators spec_begin() and spec_end() with iterator_range specializations(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing FunctionTemplateDecl iterators spec_begin() and spec_end() with...
Aaron Ballman [Fri, 14 Mar 2014 16:05:56 +0000 (16:05 +0000)]
[C++11] Replacing FunctionTemplateDecl iterators spec_begin() and spec_end() with iterator_range specializations(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing OMPThreadPrivateDecl and OMPClause iterators varlist_begin() and...
Aaron Ballman [Fri, 14 Mar 2014 15:55:35 +0000 (15:55 +0000)]
[C++11] Replacing OMPThreadPrivateDecl and OMPClause iterators varlist_begin() and varlist_end() with iterator_range varlists(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoObjective-C++ IRGen. Due to change to AST for initialization of c++11’s
Fariborz Jahanian [Fri, 14 Mar 2014 15:40:54 +0000 (15:40 +0000)]
Objective-C++ IRGen. Due to change to AST for initialization of c++11’s
data members by addition of CXXDefaultInitExpr node to the initializer expression,
it has broken treatment of arc code for such initializations. Reviewed by John McCall.
// rdar://16299964

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

10 years ago[C++11] Replacing DeclContext iterators lookups_begin() and lookups_end() with iterat...
Aaron Ballman [Fri, 14 Mar 2014 15:28:49 +0000 (15:28 +0000)]
[C++11] Replacing DeclContext iterators lookups_begin() and lookups_end() with iterator_range lookups(). Similar for noload_lookups(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing ObjCImplementationDecl iterators ivar_begin() and ivar_end() with...
Aaron Ballman [Fri, 14 Mar 2014 15:16:45 +0000 (15:16 +0000)]
[C++11] Replacing ObjCImplementationDecl iterators ivar_begin() and ivar_end() with iterator_range ivars(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing ObjCCategoryDecl iterators propimpl_begin() and propimpl_end()...
Aaron Ballman [Fri, 14 Mar 2014 15:02:45 +0000 (15:02 +0000)]
[C++11] Replacing ObjCCategoryDecl iterators propimpl_begin() and propimpl_end() with iterator_range property_impls(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoDon't verify module inclusions in assembler files.
Daniel Jasper [Fri, 14 Mar 2014 14:53:17 +0000 (14:53 +0000)]
Don't verify module inclusions in assembler files.

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

10 years ago[C++11] Replacing ObjCCategoryDecl iterators ivar_begin() and ivar_end() with iterato...
Aaron Ballman [Fri, 14 Mar 2014 13:13:27 +0000 (13:13 +0000)]
[C++11] Replacing ObjCCategoryDecl iterators ivar_begin() and ivar_end() with iterator_range ivars(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing ObjCCategoryDecl iterators protocol_loc_begin() and protocol_loc_en...
Aaron Ballman [Fri, 14 Mar 2014 13:03:32 +0000 (13:03 +0000)]
[C++11] Replacing ObjCCategoryDecl iterators protocol_loc_begin() and protocol_loc_end() with iterator_range protocol_locs(). Updating all of the usages of the iterators with range-based for loops.

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

10 years ago[C++11] Replacing ObjCCategoryDecl iterators protocol_begin() and protocol_end()...
Aaron Ballman [Fri, 14 Mar 2014 12:55:57 +0000 (12:55 +0000)]
[C++11] Replacing ObjCCategoryDecl iterators protocol_begin() and protocol_end() with iterator_range protocols(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoclang/test/CodeGen/aarch64-varargs.c: Suppress this for -Asserts, for now.
NAKAMURA Takumi [Fri, 14 Mar 2014 12:42:41 +0000 (12:42 +0000)]
clang/test/CodeGen/aarch64-varargs.c: Suppress this for -Asserts, for now.

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

10 years ago[C++11] Replacing ObjCProtocolDecl iterators protocol_loc_begin() and protocol_loc_en...
Aaron Ballman [Fri, 14 Mar 2014 12:38:50 +0000 (12:38 +0000)]
[C++11] Replacing ObjCProtocolDecl iterators protocol_loc_begin() and protocol_loc_end() with iterator_range protocol_locs(). Updating all of the usages of the iterators with range-based for loops.

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

10 years agoAArch64_be specific clang target settings
Christian Pirker [Fri, 14 Mar 2014 12:15:45 +0000 (12:15 +0000)]
AArch64_be specific clang target settings

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

10 years agoAArch64_be varargs processing for ARM ABI
Christian Pirker [Fri, 14 Mar 2014 11:51:06 +0000 (11:51 +0000)]
AArch64_be varargs processing for ARM ABI

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

10 years agoRemove unused typedef as pointed out by a GCC warning.
Benjamin Kramer [Fri, 14 Mar 2014 10:15:44 +0000 (10:15 +0000)]
Remove unused typedef as pointed out by a GCC warning.

Yay for auto.

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

10 years agoUse the correct symbol for a left bracket.
Bill Wendling [Fri, 14 Mar 2014 08:39:06 +0000 (08:39 +0000)]
Use the correct symbol for a left bracket.

PR19089

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

10 years agoDe-virtualize a method that doesn't override anything and has no overrides itself.
Craig Topper [Fri, 14 Mar 2014 06:06:19 +0000 (06:06 +0000)]
De-virtualize a method that doesn't override anything and has no overrides itself.

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

10 years agoRemove seemingly dead method. It was marked virtual but doesn't override anything...
Craig Topper [Fri, 14 Mar 2014 06:04:02 +0000 (06:04 +0000)]
Remove seemingly dead method. It was marked virtual but doesn't override anything and there don't seem to be any in tree callers.

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

10 years ago[C++11] Add 'override' keyword to virtual methods that override their base class.
Craig Topper [Fri, 14 Mar 2014 06:02:07 +0000 (06:02 +0000)]
[C++11] Add 'override' keyword to virtual methods that override their base class.

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