]> granicus.if.org Git - clang/log
clang
10 years agoSimplify test/CodeGenCXX/microsoft-abi-vtables-virtual-inheritance.cpp by forcing...
Timur Iskhodzhanov [Sun, 23 Mar 2014 19:09:08 +0000 (19:09 +0000)]
Simplify test/CodeGenCXX/microsoft-abi-vtables-virtual-inheritance.cpp by forcing VFTableBuilder invocation with virtual function calls or constructors codegen

Previously the vftables were built at the end of the TU in a reverse-to-random order

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

10 years agoCodeGen: Make string tests exercise the MS ABI
David Majnemer [Sun, 23 Mar 2014 18:22:10 +0000 (18:22 +0000)]
CodeGen: Make string tests exercise the MS ABI

r204562 unwittingly failed tests for some bots.  Make those tests work
with both the Itanium and MS ABIs.

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

10 years agoDriver: Map /Gy to -ffunction-sections
David Majnemer [Sun, 23 Mar 2014 17:47:22 +0000 (17:47 +0000)]
Driver: Map /Gy to -ffunction-sections

/Gy is equivalent to -ffunction-sections.
/Gy- is equivalent to -fno-function-sections.

Currently, LLVM doesn't do anything interesting with -ffunction-sections
under WinCOFF.

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

10 years agoDriver: cleanup /vd2 test
David Majnemer [Sun, 23 Mar 2014 17:47:18 +0000 (17:47 +0000)]
Driver: cleanup /vd2 test

/vd2 is not ignored anymore, remove it from the ignored list.

Add a test to ensure that it does the right thing.

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

10 years agoMS ABI: Eliminate Duplicate Strings
David Majnemer [Sun, 23 Mar 2014 17:47:16 +0000 (17:47 +0000)]
MS ABI: Eliminate Duplicate Strings

COFF doesn't have mergeable sections so LLVM/clang's normal tactics for
string deduplication will not have any effect.

To remedy this we place each string inside it's own section and mark
the section as IMAGE_COMDAT_SELECT_ANY.  However, we can only do this if the
string has an external name that we can generate from it's contents.

To be compatible with MSVC, we must use their scheme.  Otherwise identical
strings in translation units from clang may not be deduplicated with
translation units in MSVC.

This fixes PR18248.

N.B. We will not attempt to do anything with a string literal which is not of
type 'char' or 'wchar_t' because their compiler does not support unicode
string literals as of this date.

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

10 years agoremove a bunch of unused private methods
Nuno Lopes [Sun, 23 Mar 2014 17:12:37 +0000 (17:12 +0000)]
remove a bunch of unused private methods
found with a smarter version of -Wunused-member-function that I'm playwing with.
Appologies in advance if I removed someone's WIP code.

 ARCMigrate/TransProperties.cpp                  |    8 -----
 AST/MicrosoftMangle.cpp                         |    1
 Analysis/AnalysisDeclContext.cpp                |    5 ---
 Analysis/LiveVariables.cpp                      |   14 ----------
 Index/USRGeneration.cpp                         |   10 -------
 Sema/Sema.cpp                                   |   33 +++++++++++++++++++++---
 Sema/SemaChecking.cpp                           |    3 --
 Sema/SemaDecl.cpp                               |   20 ++------------
 StaticAnalyzer/Checkers/GenericTaintChecker.cpp |    1
 9 files changed, 34 insertions(+), 61 deletions(-)

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

10 years agoIf a template instantation introduces a name into a namespace, we need to write
Richard Smith [Sun, 23 Mar 2014 02:30:01 +0000 (02:30 +0000)]
If a template instantation introduces a name into a namespace, we need to write
out a visible update record for that namespace even if it was never declared in
this module.

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

10 years agoIf an update record makes a declaration interesting, pass it to the consumer.
Richard Smith [Sun, 23 Mar 2014 00:27:18 +0000 (00:27 +0000)]
If an update record makes a declaration interesting, pass it to the consumer.

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

10 years agoEmit an update record if we instantiate the definition of a function template
Richard Smith [Sat, 22 Mar 2014 23:33:22 +0000 (23:33 +0000)]
Emit an update record if we instantiate the definition of a function template
specialization from a module. (This can also happen for function template
specializations in PCHs if they're instantiated eagerly, because they're
constexpr or have a deduced return type.)

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

10 years agoRevert r204493, "Make clang/test/lit.cfg pre-scan the RUN line looking for tool names,"
NAKAMURA Takumi [Sat, 22 Mar 2014 04:46:59 +0000 (04:46 +0000)]
Revert r204493, "Make clang/test/lit.cfg pre-scan the RUN line looking for tool names,"

It was incompatible to standlalone clang build.

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

10 years agoRefactor: move loading pending instantiations from chained PCHs to a more appropriate...
Richard Smith [Sat, 22 Mar 2014 01:43:32 +0000 (01:43 +0000)]
Refactor: move loading pending instantiations from chained PCHs to a more appropriate place, so that we only ask the external source once.

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

10 years agorelax testcase to unbreak windows buildbots.
Adrian Prantl [Fri, 21 Mar 2014 22:58:28 +0000 (22:58 +0000)]
relax testcase to unbreak windows buildbots.

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

10 years agoWhen generating the Attribute dumper code, do not dead-initialize MoreChildren
Arnaud A. de Grandmaison [Fri, 21 Mar 2014 22:35:34 +0000 (22:35 +0000)]
When generating the Attribute dumper code, do not dead-initialize MoreChildren

No functional change. This will cleanup a bunch of scan-build warnings.

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

10 years agoBe a bit smarter about what nested name qualifiers to allow when
Kaelyn Uhrain [Fri, 21 Mar 2014 21:54:25 +0000 (21:54 +0000)]
Be a bit smarter about what nested name qualifiers to allow when
performing typo correction on very short (1 or 2 char) identifiers.

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

10 years ago[C++11] Simplify some loops in Sema::CorrectTypo as range-based for loops.
Kaelyn Uhrain [Fri, 21 Mar 2014 21:54:22 +0000 (21:54 +0000)]
[C++11] Simplify some loops in Sema::CorrectTypo as range-based for loops.

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

10 years agoTest commit
Alexander Musman [Fri, 21 Mar 2014 21:25:24 +0000 (21:25 +0000)]
Test commit

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

10 years agoCGDebugInfo: At the end of EmitFunctionStart, Initialize PrevLoc to the
Adrian Prantl [Fri, 21 Mar 2014 21:01:58 +0000 (21:01 +0000)]
CGDebugInfo: At the end of EmitFunctionStart, Initialize PrevLoc to the
location that the next call emitLocation() would default to. Otherwise
setLocation() may wrongly believe that the current source file didn't
change, when in fact it did.

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

10 years agoMake clang/test/lit.cfg pre-scan the RUN line looking for tool names,
Paul Robinson [Fri, 21 Mar 2014 18:13:35 +0000 (18:13 +0000)]
Make clang/test/lit.cfg pre-scan the RUN line looking for tool names,
and substitute fully qualified path names pointing to the build
directory.  This ensures we're testing the just-built tools.

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

10 years agoPlacate -Wunreachable-code by removing unnecessary logic to handle NUM_OPENMP_DEFAULT...
Ted Kremenek [Fri, 21 Mar 2014 17:34:28 +0000 (17:34 +0000)]
Placate -Wunreachable-code by removing unnecessary logic to handle NUM_OPENMP_DEFAULT_KINDS <= 1.

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

10 years agoFixing code that doesn't compile in MSVC 2012 (but does in MSVC 2013) from r204417...
Aaron Ballman [Fri, 21 Mar 2014 15:22:56 +0000 (15:22 +0000)]
Fixing code that doesn't compile in MSVC 2012 (but does in MSVC 2013) from r204417 and related commits.

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

10 years agoThe release_capability, release_shared_capability and release_generic_capability...
Aaron Ballman [Fri, 21 Mar 2014 14:48:48 +0000 (14:48 +0000)]
The release_capability, release_shared_capability and release_generic_capability functions are now functionally distinct for capability analysis. The unlock_function attribute maps directly to release_generic_capability.

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

10 years agoclang-format: Add flag for removing empty lines at the start of blocks.
Daniel Jasper [Fri, 21 Mar 2014 13:43:14 +0000 (13:43 +0000)]
clang-format: Add flag for removing empty lines at the start of blocks.

This unbreaks polly-formatting-tests and we can make a decision for
LLVM style independently.

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

10 years agoSimplify test/CodeGenCXX/microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp...
Timur Iskhodzhanov [Fri, 21 Mar 2014 13:27:08 +0000 (13:27 +0000)]
Simplify test/CodeGenCXX/microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp by forcing VFTableBuilder invocation with virtual function calls

Previously the vftables were built at the end of the TU in a reverse-to-random order

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

10 years agoSimplify test/CodeGenCXX/microsoft-abi-vtables-multiple-nonvirtual-inheritance.cpp...
Timur Iskhodzhanov [Fri, 21 Mar 2014 13:11:09 +0000 (13:11 +0000)]
Simplify test/CodeGenCXX/microsoft-abi-vtables-multiple-nonvirtual-inheritance.cpp by forcing VFTableBuilder invocation with virtual function calls

Previously the vftables were built at the end of the TU in a reverse-to-random order

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

10 years ago[CMake] Propagate top-level targets for compiler-rt runtimes and test-suites
Alexey Samsonov [Fri, 21 Mar 2014 13:09:25 +0000 (13:09 +0000)]
[CMake] Propagate top-level targets for compiler-rt runtimes and test-suites
from (external) compiler-rt build tree into LLVM/Clang build tree in
LLVM_BUILD_EXTERNAL_COMPILER_RT mode.

For instance, running
  make asan -j12
in LLVM/Clang build tree will now build Clang, use it to configure
compiler-rt build tree, and invoke "make asan -j12" there. ASan runtime will
be built in the proper location, where Clang driver expects to find it.

Running
  make check-asan
will build Clang, use it to configure compiler-rt build tree, build everything
there, and then run "make check-asan" in compiler-rt build tree using just-built
Clang and ASan runtime.

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

10 years agoclang-format: Don't remove empty lines at the start of namespaces.
Daniel Jasper [Fri, 21 Mar 2014 13:03:33 +0000 (13:03 +0000)]
clang-format: Don't remove empty lines at the start of namespaces.

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

10 years agoclang-format: Remove empty lines at the beginning of blocks.
Daniel Jasper [Fri, 21 Mar 2014 12:58:53 +0000 (12:58 +0000)]
clang-format: Remove empty lines at the beginning of blocks.

They very rarely aid readability.

Formatting:
  void f() {

    if (a) {

      f();

    }

  }

Now leads to:
  void f() {
    if (a) {
      f();
    }
  }

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

10 years agoclang-format: Let a trailing comma in braced lists enforce linebreaks.
Daniel Jasper [Fri, 21 Mar 2014 12:38:57 +0000 (12:38 +0000)]
clang-format: Let a trailing comma in braced lists enforce linebreaks.

Before:
  vector<int> x{1, 2, 3, 4, };

After:
  vector<int> x{
      1, 2, 3, 4,
  };

This fixes llvm.org/PR18519.

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

10 years agoclang-format: Fix for r204456.
Daniel Jasper [Fri, 21 Mar 2014 12:15:40 +0000 (12:15 +0000)]
clang-format: Fix for r204456.

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

10 years agoclang-format: Preserve meaning of trailing comments on parameters.
Daniel Jasper [Fri, 21 Mar 2014 11:58:45 +0000 (11:58 +0000)]
clang-format: Preserve meaning of trailing comments on parameters.

Formatting:
  SomeFunction(a,
            b, // comment
            c);

Before:
  SomeFunction(a, b, // comment
               c);

After:
  SomeFunction(a,
               b, // comment
               c);

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

10 years agoSimplify test/CodeGenCXX/microsoft-abi-vtables-single-inheritance.cpp by forcing...
Timur Iskhodzhanov [Fri, 21 Mar 2014 11:39:24 +0000 (11:39 +0000)]
Simplify test/CodeGenCXX/microsoft-abi-vtables-single-inheritance.cpp by forcing VFTableBuilder invocation with virtual function calls

Previously the vftables were built at the end of the TU in a reverse-to-random order

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

10 years agoAdd one more test for PR19172
Timur Iskhodzhanov [Fri, 21 Mar 2014 11:07:24 +0000 (11:07 +0000)]
Add one more test for PR19172

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

10 years agoDocument removed flags in release notes
Alexey Samsonov [Fri, 21 Mar 2014 07:25:01 +0000 (07:25 +0000)]
Document removed flags in release notes

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

10 years agoKill deprecated -fbounds-checking flag
Alexey Samsonov [Fri, 21 Mar 2014 07:15:47 +0000 (07:15 +0000)]
Kill deprecated -fbounds-checking flag

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

10 years ago[-Wunreachable-code] add a specialized diagnostic for unreachable increment expressio...
Ted Kremenek [Fri, 21 Mar 2014 06:02:36 +0000 (06:02 +0000)]
[-Wunreachable-code] add a specialized diagnostic for unreachable increment expressions of loops.

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

10 years ago[OPENMP] parsing of clause 'safelen' (for directive 'omp simd')
Alexey Bataev [Fri, 21 Mar 2014 04:51:18 +0000 (04:51 +0000)]
[OPENMP] parsing of clause 'safelen' (for directive 'omp simd')

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

10 years agoSerialize and deserialize mangling numbers.
Richard Smith [Fri, 21 Mar 2014 01:48:23 +0000 (01:48 +0000)]
Serialize and deserialize mangling numbers.

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

10 years agoPR19215: When writing/reading a PCH that imported a module, store the location
Richard Smith [Fri, 21 Mar 2014 00:33:59 +0000 (00:33 +0000)]
PR19215: When writing/reading a PCH that imported a module, store the location
at which that PCH imported each visible submodule of the module. Such locations
are needed when synthesizing macro directives resulting from the import.

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

10 years agoFixed newlines.
Alexander Kornienko [Fri, 21 Mar 2014 00:07:27 +0000 (00:07 +0000)]
Fixed newlines.

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

10 years agoPGO: Don't define instrumentation data available_externally
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 22:50:08 +0000 (22:50 +0000)]
PGO: Don't define instrumentation data available_externally

Variables with available_externally linkage can be dropped at will.
This causes link errors, since there are still references to the
instrumentation!  linkonce_odr is almost equivalent, so use that
instead.

As a drive-by fix (I don't have an Elf system, so I'm not sure how to
write a testcase), use linkonce linkage for the instrumentation of
extern_weak functions.

<rdar://problem/15943240>

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

10 years agoPGO: Rename FuncLinkage to VarLinkage; no functionality change
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 22:49:50 +0000 (22:49 +0000)]
PGO: Rename FuncLinkage to VarLinkage; no functionality change

The variable is used to set the linkage for variables, and will become
different from function linkage in a follow-up commit.

<rdar://problem/15943240>

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

10 years agoWhen the exception specification for a function in an imported PCH or module is
Richard Smith [Thu, 20 Mar 2014 21:47:22 +0000 (21:47 +0000)]
When the exception specification for a function in an imported PCH or module is
resolved, emit an update record.

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

10 years agoRefactor and simplify DeclUpdates serialization.
Richard Smith [Thu, 20 Mar 2014 21:02:00 +0000 (21:02 +0000)]
Refactor and simplify DeclUpdates serialization.

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

10 years agoConsumed Analysis: IgnoreParens bugfix.
DeLesley Hutchins [Thu, 20 Mar 2014 20:39:20 +0000 (20:39 +0000)]
Consumed Analysis: IgnoreParens bugfix.

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

10 years agoFix PR19172 - wrong this adjustment calculated for virtual destructor in a class...
Timur Iskhodzhanov [Thu, 20 Mar 2014 20:38:34 +0000 (20:38 +0000)]
Fix PR19172 - wrong this adjustment calculated for virtual destructor in a class with complex inheritance

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

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

10 years agoRefactor to move decl update emission into the decl emission loop.
Richard Smith [Thu, 20 Mar 2014 20:07:19 +0000 (20:07 +0000)]
Refactor to move decl update emission into the decl emission loop.

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

10 years agoPGO: Change runtime prefix from pgo to profile
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 20:00:41 +0000 (20:00 +0000)]
PGO: Change runtime prefix from pgo to profile

These functions are in the profile runtime.  PGO comes later.

Unfortunately, there's only room for 16 characters in a Darwin section,
so use __llvm_prf_ instead of __llvm_profile_ for section names.

<rdar://problem/15943240>

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

10 years agoRearrange serialization block order to put decl update emission into the same
Richard Smith [Thu, 20 Mar 2014 19:44:17 +0000 (19:44 +0000)]
Rearrange serialization block order to put decl update emission into the same
block as decl and type emission. This allows decl updates include statements
and expressions. No functionality change (but the generated PCM files are
incompatible with earlier versions of Clang).

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

10 years agoPGO: Remove explicit static initialization
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 19:23:46 +0000 (19:23 +0000)]
PGO: Remove explicit static initialization

Remove the remaining explicit static initialization from translation
units, at least on Darwin.  Instead, create a use of __llvm_pgo_runtime,
which will pull in required code from compiler-rt.

After this commit (and its pair in compiler-rt), a user can define their
own __llvm_pgo_runtime to satisfy this undefined symbol and call the
functions in compiler-rt directly.

<rdar://problem/15943240>

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

10 years ago[-Wunreachable-code] Tweak isTrivialDoWhile() to handle implicit casts.
Ted Kremenek [Thu, 20 Mar 2014 18:47:53 +0000 (18:47 +0000)]
[-Wunreachable-code] Tweak isTrivialDoWhile() to handle implicit casts.

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

10 years agoRemove dead assignment dominated by a call to llvm_unreachable().
Ted Kremenek [Thu, 20 Mar 2014 18:47:50 +0000 (18:47 +0000)]
Remove dead assignment dominated by a call to llvm_unreachable().

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

10 years ago[analyzer] Fix a bad bug in reversePropagateInterstingSymbols() where only one subexp...
Ted Kremenek [Thu, 20 Mar 2014 18:47:47 +0000 (18:47 +0000)]
[analyzer] Fix a bad bug in reversePropagateInterstingSymbols() where only one subexpression of BinaryOperator would be explored.

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

10 years agoUse nullptr; no functionality change
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 18:40:55 +0000 (18:40 +0000)]
Use nullptr; no functionality change

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

10 years agoCoding style fixup; no functionality change
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 18:40:53 +0000 (18:40 +0000)]
Coding style fixup; no functionality change

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

10 years agoPrevent lookup of subframework modules by name without parent framework
Ben Langmuir [Thu, 20 Mar 2014 18:27:26 +0000 (18:27 +0000)]
Prevent lookup of subframework modules by name without parent framework

We were 'allowing' the following import
@import Sub;

where Sub is a subframework of Foo and we had a -F path inside
Foo.framework/Frameworks and no module map file for Sub. This would
later hit assertion failures in debug builds.

Now we should correctly diagnose this as a module not found error.

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

10 years ago[analyzer] scan-build: allow quotes around "-cc1" when looking at -### output.
Jordan Rose [Thu, 20 Mar 2014 17:43:54 +0000 (17:43 +0000)]
[analyzer] scan-build: allow quotes around "-cc1" when looking at -### output.

Third time's the charm. Patch by Brennan Shacklett!

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

10 years ago[analyzer] scan-build: match whitespace instead of word boundaries around flags.
Jordan Rose [Thu, 20 Mar 2014 16:37:54 +0000 (16:37 +0000)]
[analyzer] scan-build: match whitespace instead of word boundaries around flags.

Because neither ' ' nor '-' is alphanumeric, \b won't match between them!
Since in this case we know our output is coming from a -### invocation,
we should always have spaces on both sides of the flag we're trying to match,
"-cc1".

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

10 years agoReplacing the exclusive_lock_function, shared_lock_function and unlock_function attri...
Aaron Ballman [Thu, 20 Mar 2014 16:02:49 +0000 (16:02 +0000)]
Replacing the exclusive_lock_function, shared_lock_function and unlock_function attributes with the acquire_capability and release_capability attributes. The old spellings will continue to work, but the underlying semantic attributes have been replaced.

Downgraded the capability diagnostics from error to warning to match the desired behavior, and updated the existing test cases.

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

10 years agoRemove wchar_t* buffer from scanf format fix-it test.
Jordan Rose [Thu, 20 Mar 2014 15:54:16 +0000 (15:54 +0000)]
Remove wchar_t* buffer from scanf format fix-it test.

Amends r204300 to not try to test fixing a wchar_t* to "%ls", which we don't
do correctly anyway. In C mode, wchar_t is just a typedef for a normal
primitive integer type, not a distinct type like it is in C++. To make this
work correctly, we'll need to look for the wchar_t typedef, not just the
builtin type.

Should fix the buildbots.

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

10 years ago[msan] -fsanitize-memory-track-origins=[level] flag and docs.
Evgeniy Stepanov [Thu, 20 Mar 2014 14:58:36 +0000 (14:58 +0000)]
[msan] -fsanitize-memory-track-origins=[level] flag and docs.

This change turns -fsanitize-memory-track-origins into
-fsanitize-memory-track-origins=[level] flag (keeping the old one for
compatibility). Possible levels are 0 (off), 1 (default) and 2 (incredibly
detailed). See docs (part of this patch) for more info.

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

10 years agoSilencing an MSVC warning about not all control paths returning a value. No functiona...
Aaron Ballman [Thu, 20 Mar 2014 14:22:33 +0000 (14:22 +0000)]
Silencing an MSVC warning about not all control paths returning a value. No functional change intended.

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

10 years agoFlust stdout after each vftable dumped to simplify debugging
Timur Iskhodzhanov [Thu, 20 Mar 2014 13:42:14 +0000 (13:42 +0000)]
Flust stdout after each vftable dumped to simplify debugging

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

10 years agoTooling: Move heavyweight vectors around instead of copying.
Benjamin Kramer [Thu, 20 Mar 2014 12:48:36 +0000 (12:48 +0000)]
Tooling: Move heavyweight vectors around instead of copying.

While there convert to range-based for loops. No functionality change.

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

10 years agoMake format-strings-fixit.c aware of "%hu" uint16_t on wchar_t for targeting win32.
NAKAMURA Takumi [Thu, 20 Mar 2014 10:54:53 +0000 (10:54 +0000)]
Make format-strings-fixit.c aware of "%hu" uint16_t on wchar_t for targeting win32.

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

10 years agoKill -faddress-sanitizer, -fthread-sanitizer and -fcatch-undefined-behavior flags.
Alexey Samsonov [Thu, 20 Mar 2014 10:48:29 +0000 (10:48 +0000)]
Kill -faddress-sanitizer, -fthread-sanitizer and -fcatch-undefined-behavior flags.

These flags are deprecated since at least Clang 3.3. Users should instead
use -fsanitize= with appropriate values.

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

10 years ago[-Wunreachable-code] Look through member accesses for 'static const bool' configurati...
Ted Kremenek [Thu, 20 Mar 2014 06:44:35 +0000 (06:44 +0000)]
[-Wunreachable-code] Look through member accesses for 'static const bool' configuration values.

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

10 years ago[-Wunreachable-code] constexpr functions can be used as configuration values.
Ted Kremenek [Thu, 20 Mar 2014 06:07:35 +0000 (06:07 +0000)]
[-Wunreachable-code] constexpr functions can be used as configuration values.

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

10 years ago[-Wunreachable-code] Simplify and broad -Wunreachable-code-return, including nontrivi...
Ted Kremenek [Thu, 20 Mar 2014 06:07:30 +0000 (06:07 +0000)]
[-Wunreachable-code] Simplify and broad -Wunreachable-code-return, including nontrivial returns.

The exception is return statements that include control-flow,
which are clearly doing something "interesting".

99% of the cases I examined for -Wunreachable-code that fired
on return statements were not interesting enough to warrant
being in -Wunreachable-code by default.  Thus the move to
include them in -Wunreachable-code-return.

This simplifies a bunch of logic, including removing the ad hoc
logic to look for std::string literals.

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

10 years ago[libclang] Introduce clang_VirtualFileOverlay_setCaseSensitivity that exposes the...
Argyrios Kyrtzidis [Thu, 20 Mar 2014 04:51:48 +0000 (04:51 +0000)]
[libclang] Introduce clang_VirtualFileOverlay_setCaseSensitivity that exposes the VFS option
to set the case-sensitivity for lookups.

rdar://16374696

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

10 years agoPGO: use linker magic to find instrumentation data on Darwin
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 03:57:11 +0000 (03:57 +0000)]
PGO: use linker magic to find instrumentation data on Darwin

<rdar://problem/15943240>

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

10 years agoscanf format checking: include the buffer length in the fix-it for %s.
Jordan Rose [Thu, 20 Mar 2014 03:32:39 +0000 (03:32 +0000)]
scanf format checking: include the buffer length in the fix-it for %s.

Patch by Zach Davis!

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

10 years agoPGO: Separate out common isMachO logic; no functionality change
Duncan P. N. Exon Smith [Thu, 20 Mar 2014 03:17:15 +0000 (03:17 +0000)]
PGO: Separate out common isMachO logic; no functionality change

<rdar://problem/15943240>

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

10 years agoObjective-C. Make getObjCEncodingForMethodParameter public.
Fariborz Jahanian [Wed, 19 Mar 2014 20:52:13 +0000 (20:52 +0000)]
Objective-C. Make getObjCEncodingForMethodParameter public.

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

10 years agoAdd a new spelling for module map files 'module.modulemap'
Ben Langmuir [Wed, 19 Mar 2014 20:23:34 +0000 (20:23 +0000)]
Add a new spelling for module map files 'module.modulemap'

This name, while more verbose, plays more nicely with tools that use
file extensions to determine file types. The existing spelling
'module.map' will continue to work, but the new spelling will take
precedence.

In frameworks, this new filename will only go in a new 'Modules'
sub-directory.

Similarly, add a module.private.modulemap corresponding to
module_private.map.

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

10 years ago[analyzer] scan-build: when matching flags, make sure the - is the first letter.
Jordan Rose [Wed, 19 Mar 2014 17:42:26 +0000 (17:42 +0000)]
[analyzer] scan-build: when matching flags, make sure the - is the first letter.

PR19191

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

10 years agoComment parsing: fix a crash when dumping comment ast for a function template
Dmitri Gribenko [Wed, 19 Mar 2014 14:03:47 +0000 (14:03 +0000)]
Comment parsing: fix a crash when dumping comment ast for a function template
with variadic parameters

Patch by Joe Ranieri.

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

10 years agoComment parsing: recognize \param ... on function templates with variadic
Dmitri Gribenko [Wed, 19 Mar 2014 13:59:36 +0000 (13:59 +0000)]
Comment parsing: recognize \param ... on function templates with variadic
parameters

Patch by Joe Ranieri.

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

10 years agoUse the expansion location of the file name when finding the module.
Manuel Klimek [Wed, 19 Mar 2014 10:22:36 +0000 (10:22 +0000)]
Use the expansion location of the file name when finding the module.

The spelling location of stringified strings is not a file location.
Optimally, we'll want to solve the problem (as the FIXME states) by
handing in the right FileEntry of the #include location.

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

10 years agoTests for DR450-475.
Richard Smith [Wed, 19 Mar 2014 08:04:12 +0000 (08:04 +0000)]
Tests for DR450-475.

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

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