platform/upstream/llvm.git
10 years ago[ASan Win] DLL thunk: make each INTERFACE_FUNCTION unique to prevent ICF linker optim...
Timur Iskhodzhanov [Fri, 30 May 2014 09:01:17 +0000 (09:01 +0000)]
[ASan Win] DLL thunk: make each INTERFACE_FUNCTION unique to prevent ICF linker optimizations

llvm-svn: 209881

10 years agoAArch64 & ARM: remove undefined behaviour from some tests.
Tim Northover [Fri, 30 May 2014 08:59:55 +0000 (08:59 +0000)]
AArch64 & ARM: remove undefined behaviour from some tests.

llvm-svn: 209880

10 years ago[asan] Enable ASan on PowerPC.
Evgeniy Stepanov [Fri, 30 May 2014 08:52:03 +0000 (08:52 +0000)]
[asan] Enable ASan on PowerPC.

Patch by Peter Bergner.

llvm-svn: 209879

10 years agoclang/test/Frontend/Weverything-and-remarks.cpp: Add explicit -target.
NAKAMURA Takumi [Fri, 30 May 2014 07:03:16 +0000 (07:03 +0000)]
clang/test/Frontend/Weverything-and-remarks.cpp: Add explicit -target.

You could see unexpected result (*.tmp.err) with "-target x86_64-win32".

  Weverything-and-remarks.cpp:11:9: warning: 'char32_t' type specifier is incompatible with C++98 [-Wc++98-compat]
  typedef __char32_t char32_t;
          ^
  Weverything-and-remarks.cpp:12:27: error: typedef redefinition with different types ('unsigned long' vs 'unsigned long long')
  typedef long unsigned int size_t;
                            ^
  Weverything-and-remarks.cpp:19:62: warning: dynamic exception specifications are deprecated [-Wdeprecated]
    static void assign(char_type& __c1, const char_type& __c2) throw() {
                                                               ^~~~~~~
  Weverything-and-remarks.cpp:19:62: note: use 'noexcept' instead
    static void assign(char_type& __c1, const char_type& __c2) throw() {
                                                               ^~~~~~~
                                                               noexcept
  Weverything-and-remarks.cpp:25:46: warning: unused parameter '__n' [-Wunused-parameter]
                                        size_t __n) {
                                               ^
  3 warnings and 1 error generated.

llvm-svn: 209878

10 years agoTest cases named with dates is a legacy rule not used now. Rename several test cases.
Hao Liu [Fri, 30 May 2014 05:58:19 +0000 (05:58 +0000)]
Test cases named with dates is a legacy rule not used now. Rename several test cases.

llvm-svn: 209877

10 years ago[OPENMP] Improve debug location codegen for OpenMP runtime library.
Alexey Bataev [Fri, 30 May 2014 05:48:40 +0000 (05:48 +0000)]
[OPENMP] Improve debug location codegen for OpenMP runtime library.

llvm-svn: 209876

10 years ago[ELF] Fix incorrect sorting of .init_array / .fini_array sections.
Simon Atanasyan [Fri, 30 May 2014 05:29:46 +0000 (05:29 +0000)]
[ELF] Fix incorrect sorting of .init_array / .fini_array sections.

The main problem is in the predicate passed to the `std::stable_sort()`.
This predicate always returns false if **both** section's names do not
start with `.init_array` or `.fini_array` prefixes. In short, it does not
define a strict weak orderng. Suppose we have the following sections:

  .A .init_array.1 .init_array.2

The predicate states that:

  not .init_array.1 < .A
  not .A < .init_array.2
  but .init_array.1 < .init_array.2 !!!

The second problem is that `.init_array` section without number should
go last in the list. Not it has the lowest priority '0' and goes first.

The patch fixes both of the problems.

llvm-svn: 209875

10 years agoFix 'this' capturing Generic lambdas used within default initializers (PR19876)
Faisal Vali [Fri, 30 May 2014 04:39:37 +0000 (04:39 +0000)]
Fix 'this' capturing Generic lambdas used within default initializers (PR19876)

http://llvm.org/bugs/show_bug.cgi?id=19876

The following C++1y code results in a crash:

struct X {
  int m = 10;
  int n = [this](auto) { return m; }(20);
};

When implicitly instantiating the generic lambda's call operator specialization body, Sema is unable to determine the current 'this' type when transforming the MemberExpr 'm' - since it looks for the nearest enclosing FunctionDeclDC - which is obviously null.

I considered two ways to fix this:

    1) In InstantiateFunctionDefinition, when the context is saved after the lambda scope info is created, retain the 'this' pointer.
    2) Teach getCurrentThisType() to recognize it is within a generic lambda within an NSDMI/default-initializer and return the appropriate this type.

I chose to implement #2 (though I confess I do not have a compelling reason for choosing it over #1).

Richard Smith accepted the patch:
http://reviews.llvm.org/D3935

Thank you!

llvm-svn: 209874

10 years agoAllow vectorization of intrinsics such as powi,cttz and ctlz in Loop and SLP Vectorizer.
Karthik Bhat [Fri, 30 May 2014 04:31:24 +0000 (04:31 +0000)]
Allow vectorization of intrinsics such as powi,cttz and ctlz in Loop and SLP Vectorizer.

This patch adds support to vectorize intrinsics such as powi, cttz and ctlz in Vectorizer. These intrinsics are different from other
intrinsics as second argument to these function must be same in order to vectorize them and it should be represented as a scalar.
Review: http://reviews.llvm.org/D3851#inline-32769 and http://reviews.llvm.org/D3937#inline-32857

llvm-svn: 209873

10 years agoAdd a trivial ArrayRef helper overload to the SelectionDAG interface.
Chandler Carruth [Fri, 30 May 2014 03:50:06 +0000 (03:50 +0000)]
Add a trivial ArrayRef helper overload to the SelectionDAG interface.
I'm using this pretty frequently in a patch I'm working on and it seems
generally useful.

llvm-svn: 209872

10 years agoRemove use of comma operator.
Richard Trieu [Fri, 30 May 2014 03:15:17 +0000 (03:15 +0000)]
Remove use of comma operator.

llvm-svn: 209871

10 years agoWhen analyzing params/args for readnone/readonly, don't forget to consider that a...
Nick Lewycky [Fri, 30 May 2014 02:31:27 +0000 (02:31 +0000)]
When analyzing params/args for readnone/readonly, don't forget to consider that a pointer argument may be passed through a callsite to the return, and that we may need to analyze it. Fixes a bug reported on llvm-dev: lists.cs.uiuc.edu/pipermail/llvmdev/2014-May/073098.html

llvm-svn: 209870

10 years agoPR11410 - Confusing diagnostic when trailing array element tries to call deleted...
Nikola Smiljanic [Fri, 30 May 2014 01:28:28 +0000 (01:28 +0000)]
PR11410 - Confusing diagnostic when trailing array element tries to call deleted default constructor

llvm-svn: 209869

10 years ago[mach-o] Wire up mach-o binary reader to reader registry
Nick Kledzik [Fri, 30 May 2014 01:13:49 +0000 (01:13 +0000)]
[mach-o] Wire up mach-o binary reader to reader registry

llvm-svn: 209868

10 years agoPR12214 - Warn on suspicious self-compound-assignments.
Nikola Smiljanic [Fri, 30 May 2014 00:15:04 +0000 (00:15 +0000)]
PR12214 - Warn on suspicious self-compound-assignments.

llvm-svn: 209867

10 years ago[X86] Move test from r209863 to CodeGen/X86
Adam Nemet [Thu, 29 May 2014 23:52:53 +0000 (23:52 +0000)]
[X86] Move test from r209863 to CodeGen/X86

We should only run this if X86 is in the targets.

llvm-svn: 209866

10 years ago[mach-0] Add support for parsing compact unwind info section
Nick Kledzik [Thu, 29 May 2014 23:50:48 +0000 (23:50 +0000)]
[mach-0] Add support for parsing compact unwind info section

llvm-svn: 209865

10 years ago[X86] Remove AVX1 vbroadcast intrinsics
Adam Nemet [Thu, 29 May 2014 23:35:36 +0000 (23:35 +0000)]
[X86] Remove AVX1 vbroadcast intrinsics

The corresponding CFE patch replaces these intrinsics with vector initializers
in avxintrin.h.  This patch removes the LLVM intrinsics from the backend.

We now stop lowering at X86ISD::VBROADCAST custom node rather than lowering
that further to the intrinsics.

The patch only changes VBROADCASTS* and leaves VBROADCAST[FI]128 to continue
to use intrinsics.  As explained in the CFE patch, the reason is that we
currently don't generate as good code for them without the intrinsics.

CodeGen/X86/avx-vbroadcast.ll already provides coverage for this change.  It
checks that for a series of insertelements we generate the appropriate
vbroadcast instruction.

Also verified that there was no assembly change in the test-suite before and
after this patch.

llvm-svn: 209864

10 years ago[X86] Auto-upgrade AVX1 vbroadcast intrinsics
Adam Nemet [Thu, 29 May 2014 23:35:33 +0000 (23:35 +0000)]
[X86] Auto-upgrade AVX1 vbroadcast intrinsics

They are replaced with the same IR that is generated for the
vector-initializers in avxintrin.h.

The test verifies that we get back the original instruction.  I haven't seen
this approach to be used in other auto-upgrade tests (i.e. llc + FileCheck)
but I think it's the most direct way to test this case.  I believe this should
work because llc upgrades calls during parsing.  (Other tests mostly check
that assembling and disassembling yields the upgraded IR.)

llvm-svn: 209863

10 years agoMark currently failing ARM tests with XFAIL.
Greg Fitzgerald [Thu, 29 May 2014 23:34:47 +0000 (23:34 +0000)]
Mark currently failing ARM tests with XFAIL.

Differential Revision: http://reviews.llvm.org/D3857

llvm-svn: 209862

10 years agoMark unstable tests as Unsupported on ARM
Greg Fitzgerald [Thu, 29 May 2014 23:34:39 +0000 (23:34 +0000)]
Mark unstable tests as Unsupported on ARM

This is half the patch from: http://reviews.llvm.org/D3857

It lets us get deterministic results from the rest of the test suite.

llvm-svn: 209861

10 years agoAnd fix my fix to sink down through the type at the right time. My
Chandler Carruth [Thu, 29 May 2014 23:21:12 +0000 (23:21 +0000)]
And fix my fix to sink down through the type at the right time. My
original fix would actually trigger the *exact* same crasher as the
original bug for a different reason. Awesomesauce.

Working on test cases now, but wanted to get bots healthier.

llvm-svn: 209860

10 years agoPermit the "if" literal suffix with Microsoft extensions enabled.
Peter Collingbourne [Thu, 29 May 2014 23:10:15 +0000 (23:10 +0000)]
Permit the "if" literal suffix with Microsoft extensions enabled.

Differential Revision: http://reviews.llvm.org/D3963

llvm-svn: 209859

10 years ago[mach-o] Add support for parsing __eh_frame section. Generalize support for whether...
Nick Kledzik [Thu, 29 May 2014 23:07:20 +0000 (23:07 +0000)]
[mach-o] Add support for parsing __eh_frame section. Generalize support for whether symbols in a section are ignored or illegal

llvm-svn: 209858

10 years agoFix one bug in the latest incarnation of r209843 -- combining GEPs
Chandler Carruth [Thu, 29 May 2014 23:05:52 +0000 (23:05 +0000)]
Fix one bug in the latest incarnation of r209843 -- combining GEPs
across PHI nodes. The code was computing the Idxs from the 'GEP'
variable's indices when what it wanted was Op1's indices. This caused an
ASan heap-overflow for me that pin pointed the issue when Op1 had more
indices than GEP did. =] I'll let Louis add a specific test case for
this if he wants.

llvm-svn: 209857

10 years agolight up sanitizers for ARM, take 2
Greg Fitzgerald [Thu, 29 May 2014 22:38:13 +0000 (22:38 +0000)]
light up sanitizers for ARM, take 2

Differential Revision: http://reviews.llvm.org/D3794

llvm-svn: 209856

10 years agoSync list of targets with configure's reality
Jeroen Ketema [Thu, 29 May 2014 22:23:22 +0000 (22:23 +0000)]
Sync list of targets with configure's reality

llvm-svn: 209855

10 years agoLoopVectorizer: Add a check that the backedge taken count + 1 does not overflow
Arnold Schwaighofer [Thu, 29 May 2014 22:10:01 +0000 (22:10 +0000)]
LoopVectorizer: Add a check that the backedge taken count + 1 does not overflow

The loop vectorizer instantiates be-taken-count + 1 as the loop iteration count.
If this expression overflows the generated code was invalid.

In case of overflow the code now jumps to the scalar loop.

Fixes PR17288.

llvm-svn: 209854

10 years agoAdded tests for shufflevector lowering to blend instrs.
Filipe Cabecinhas [Thu, 29 May 2014 22:04:42 +0000 (22:04 +0000)]
Added tests for shufflevector lowering to blend instrs.

These tests ensure that a change I will propose in clang works as
expected.

Summary:
Added tests for the generation of blend+immediate instructions from a
shufflevector.
These tests were proposed along with a patch that was dropped. I'm
committing the tests anyway to protect against possible regressions in
codegen.

Reviewers: nadav, bkramer

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D3600

llvm-svn: 209853

10 years agoiOS simulator cleanup to make sure we use "*-apple-ios" for iOS simulator apps and...
Greg Clayton [Thu, 29 May 2014 21:33:45 +0000 (21:33 +0000)]
iOS simulator cleanup to make sure we use "*-apple-ios" for iOS simulator apps and binaries.

Changes include:
- ObjectFileMachO can now determine if a binary is "*-apple-ios" or "*-apple-macosx" by checking the min OS and SDK load commands
- ArchSpec now says "<arch>-apple-macosx" is equivalent to "<arch>-apple-ios" since the simulator mixes and matches binaries (some from the system and most from the iOS SDK).
- Getting process inforamtion on MacOSX now correctly classifies iOS simulator processes so they have "*-apple-ios" architectures in the ProcessInstanceInfo
- PlatformiOSSimulator can now list iOS simulator processes correctly instead of showing nothing by using:
    (lldb) platform select ios-simulator
    (lldb) platform process list
- debugserver can now properly return "*-apple-ios" for the triple in the process info packets for iOS simulator executables
- GDBRemoteCommunicationClient now correctly passes along the triples it gets for process info by setting the OS in the llvm::Triple correctly

<rdar://problem/17060217>

llvm-svn: 209852

10 years agoRevert "light up sanitizers for ARM"
Greg Fitzgerald [Thu, 29 May 2014 21:33:36 +0000 (21:33 +0000)]
Revert "light up sanitizers for ARM"

This commit broke the Windows build, where CMAKE_C_COMPILER can
compile and link with -march=armv7-a but the just-built-clang
cannot.

llvm-svn: 209851

10 years agoAdd more log related float constants
Jeroen Ketema [Thu, 29 May 2014 21:30:28 +0000 (21:30 +0000)]
Add more log related float constants

llvm-svn: 209850

10 years agoFix _F definitions
Jeroen Ketema [Thu, 29 May 2014 21:29:34 +0000 (21:29 +0000)]
Fix _F definitions

The 'f' was missing and, hence, the values were
considered to be doubles instead of floats.

Reviewed by: Tom Stellard

llvm-svn: 209849

10 years agoAdd definition for M_PI
Jeroen Ketema [Thu, 29 May 2014 21:24:57 +0000 (21:24 +0000)]
Add definition for M_PI

Reviewed by: Tom Stellard

llvm-svn: 209848

10 years agoThread Safety Analysis: implement review suggestions from Aaron Ballman.
DeLesley Hutchins [Thu, 29 May 2014 21:24:16 +0000 (21:24 +0000)]
Thread Safety Analysis: implement review suggestions from Aaron Ballman.

llvm-svn: 209847

10 years agoImplement AVX1 vbroadcast intrinsics with vector initializers
Adam Nemet [Thu, 29 May 2014 20:47:29 +0000 (20:47 +0000)]
Implement AVX1 vbroadcast intrinsics with vector initializers

These intrinsics are special because they directly take a memory operand (AVX2
adds the register counterparts).  Typically, other non-memop intrinsics take
registers and then it's left to isel to fold memory operands.

In order to LICM intrinsics directly reading memory, we require that no stores
are in the loop (LICM) or that the folded load accesses constant memory
(MachineLICM).  When neither is the case we fail to hoist a loop-invariant
broadcast.

We can work around this limitation if we expose the load as a regular load and
then just implement the broadcast using the vector initializer syntax.  This
exposes the load to LICM and other optimizations.

At the IR level this is translated into a series of insertelements.  The
sequence is already recognized as a broadcast so there is no impact on the
quality of codegen.

_mm256_broadcast_pd and _mm256_broadcast_ps are not updated by this patch
because right now we lack the DAG-combiner smartness to recover the broadcast
instructions.  This will be tackled in a follow-on.

There will be completing changes on the LLVM side to remove the LLVM
intrinsics and to auto-upgrade bitcode files.

Fixes <rdar://problem/16494520>

llvm-svn: 209846

10 years agogdb-remote testing: new test, cleaned up socket reading.
Todd Fiala [Thu, 29 May 2014 20:44:45 +0000 (20:44 +0000)]
gdb-remote testing: new test, cleaned up socket reading.

Added new SocketPacketPump class to decouple gdb remote packet
reading from packet expectations code.  This allowed for cleaner
implementation of the separate $O output streams (non-deterministic
packaging of inferior stdout/stderr) from all the rest of the packets.

Added a packet expectation matcher that can match expected accumulated
output with a timeout.  Use a dictionary with "type":"output_match".
See lldbgdbserverutils.MatchRemoteOutputEntry for details.

Added a gdb remote test to verify that $Hc (continue thread selection)
plus signal delivery ($C{signo}) works.  Having trouble getting this
to pass with debugserver on MacOSX 10.9.  Tried different variants,
including $vCont;C{signo}:{thread-id};c.  In some cases, I get the
test exe's signal handler to run ($vCont variant first time), in others I don't
($vCont second and further times).  $C{signo} doesn't hit the signal
handler code at all in the test exe but delivers a stop.  Further
$Hc and $C{signo} deliver the stop marking the wrong thread.  For now I'm
marking the test as XFAIL on dsym/debugserver.  Will revisit this on
lldb-dev.

Updated the text exe for these tests to support thread:print-ids (each
thread announces its thread id) and provide a SIGUSR1 thread handler
that prints out the thread id on which it was signaled.

llvm-svn: 209845

10 years ago[mach-o] Add support for parsing CFString sections
Nick Kledzik [Thu, 29 May 2014 20:44:21 +0000 (20:44 +0000)]
[mach-o] Add support for parsing CFString sections

llvm-svn: 209844

10 years agoAdd support for combining GEPs across PHI nodes
Louis Gerbarg [Thu, 29 May 2014 20:29:47 +0000 (20:29 +0000)]
Add support for combining GEPs across PHI nodes

Currently LLVM will generally merge GEPs. This allows backends to use more
complex addressing modes. In some cases this is not happening because there
is PHI inbetween the two GEPs:

  GEP1--\
        |-->PHI1-->GEP3
  GEP2--/

This patch checks to see if GEP1 and GEP2 are similiar enough that they can be
cloned (GEP12) in GEP3's BB, allowing GEP->GEP merging (GEP123):

  GEP1--\                     --\                           --\
        |-->PHI1-->GEP3  ==>    |-->PHI2->GEP12->GEP3 == >    |-->PHI2->GEP123
  GEP2--/                     --/                           --/

This also breaks certain use chains that are preventing GEP->GEP merges that the
the existing instcombine would merge otherwise.

Tests included.

llvm-svn: 209843

10 years agoThread Safety Analysis: minor changes to TIL pretty-printing.
DeLesley Hutchins [Thu, 29 May 2014 20:28:53 +0000 (20:28 +0000)]
Thread Safety Analysis: minor changes to TIL pretty-printing.

llvm-svn: 209842

10 years agoAdd documentation for -Rpass*
Diego Novillo [Thu, 29 May 2014 20:13:27 +0000 (20:13 +0000)]
Add documentation for -Rpass*

Summary:
This adds documentation for -Rpass, -Rpass-missed and -Rpass-analysis.
It also adds release notes for 3.5.

Reviewers: rsmith

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D3730

llvm-svn: 209841

10 years agoUpdate Credits.
Chad Rosier [Thu, 29 May 2014 19:59:58 +0000 (19:59 +0000)]
Update Credits.

llvm-svn: 209840

10 years agoAdd flags -Rpass-missed and -Rpass-analysis.
Diego Novillo [Thu, 29 May 2014 19:55:06 +0000 (19:55 +0000)]
Add flags -Rpass-missed and -Rpass-analysis.

Summary:
These two flags are in the same family as -Rpass, but are used in
different situations.

-Rpass-missed is used by optimizers to inform the user when they tried
to apply an optimization but couldn't (or wouldn't).

-Rpass-analysis is used by optimizers to report analysis results back
to the user (e.g., why the transformation could not be applied).

Depends on D3682.

Reviewers: rsmith

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D3683

llvm-svn: 209839

10 years agoimplement missing SCEVDivision case
Sebastian Pop [Thu, 29 May 2014 19:44:09 +0000 (19:44 +0000)]
implement missing SCEVDivision case

without this case we would end on an infinite recursion: the remainder is zero,
so Numerator - Remainder is equal to Numerator and so we would recursively ask
for the division of Numerator by Denominator.

llvm-svn: 209838

10 years agofail to find dimensions when ElementSize is nullptr
Sebastian Pop [Thu, 29 May 2014 19:44:05 +0000 (19:44 +0000)]
fail to find dimensions when ElementSize is nullptr

when ScalarEvolution::getElementSize returns nullptr it is safe to early return
in ScalarEvolution::findArrayDimensions such that we avoid later problems when
we try to divide the terms by ElementSize.

llvm-svn: 209837

10 years agoMake the -mno-global-merge option work for arm64/aarch64. rdar://17024719
Bob Wilson [Thu, 29 May 2014 19:43:02 +0000 (19:43 +0000)]
Make the -mno-global-merge option work for arm64/aarch64. rdar://17024719

llvm-svn: 209836

10 years agolight up sanitizers for ARM
Greg Fitzgerald [Thu, 29 May 2014 19:01:32 +0000 (19:01 +0000)]
light up sanitizers for ARM

You can expect the sanitizers to be built under any of the following conditions:

1) CMAKE_C_COMPILER is GCC built to cross-compile to ARM
2) CMAKE_C_COMPILER is Clang built to cross-compile to ARM (ARM is default target)
3) CMAKE_C_COMPILER is Clang and CMAKE_C_FLAGS contains -target and --sysroot

Differential Revision: http://reviews.llvm.org/D3794

llvm-svn: 209835

10 years agoUse range-based for loops in ASan, TSan and MSan
Alexey Samsonov [Thu, 29 May 2014 18:40:48 +0000 (18:40 +0000)]
Use range-based for loops in ASan, TSan and MSan

llvm-svn: 209834

10 years agoFixed the Module::Module(ModuleSpec) constructor to properly copy the file offset...
Greg Clayton [Thu, 29 May 2014 17:52:46 +0000 (17:52 +0000)]
Fixed the Module::Module(ModuleSpec) constructor to properly copy the file offset and object file mod time from the actual module specifications so we will always be able to directly load the image we care about when calling Module::GetObjectFile().

llvm-svn: 209833

10 years ago[ADT] Delete the Twine assignment operator
Reid Kleckner [Thu, 29 May 2014 17:12:05 +0000 (17:12 +0000)]
[ADT] Delete the Twine assignment operator

This makes it slightly harder to misuse Twines.  It is still possible to
refer to destroyed temporaries with the regular constructors, though.

Patch by Marco Alesiani!

llvm-svn: 209832

10 years agoMake runlines consistent with other dll attribute tests
Nico Rieck [Thu, 29 May 2014 16:57:34 +0000 (16:57 +0000)]
Make runlines consistent with other dll attribute tests

llvm-svn: 209831

10 years agoFix some minor typos in tests
Nico Rieck [Thu, 29 May 2014 16:57:18 +0000 (16:57 +0000)]
Fix some minor typos in tests

llvm-svn: 209830

10 years agoDebug Info: Remove unused code. The MInsn of an _abstract_ variable is
Adrian Prantl [Thu, 29 May 2014 16:56:48 +0000 (16:56 +0000)]
Debug Info: Remove unused code. The MInsn of an _abstract_ variable is
never used again and updating the abstract variable for each inlined
instance of it was questionable in the first place.

llvm-svn: 209829

10 years agoAdd missing -S to avoid invoking assembler unnecessarily.
Diego Novillo [Thu, 29 May 2014 16:52:06 +0000 (16:52 +0000)]
Add missing -S to avoid invoking assembler unnecessarily.

llvm-svn: 209828

10 years agoSema: Functions with dll attributes cannot be deleted
Nico Rieck [Thu, 29 May 2014 16:51:19 +0000 (16:51 +0000)]
Sema: Functions with dll attributes cannot be deleted

llvm-svn: 209827

10 years agoMS ABI: Emit static data members with proper linkage
Nico Rieck [Thu, 29 May 2014 16:50:46 +0000 (16:50 +0000)]
MS ABI: Emit static data members with proper linkage

llvm-svn: 209826

10 years agoSema: Check dll attributes on static data members
Nico Rieck [Thu, 29 May 2014 16:50:20 +0000 (16:50 +0000)]
Sema: Check dll attributes on static data members

Redeclarations cannot add a dll attribute and static data members cannot
be defined.

llvm-svn: 209825

10 years agoNo longer allow the -std options to entirely override the -x language option. This...
Aaron Ballman [Thu, 29 May 2014 16:39:42 +0000 (16:39 +0000)]
No longer allow the -std options to entirely override the -x language option. This allows -x cuda -std=c++11, for instance.

llvm-svn: 209824

10 years agoFix spurious remarks when -Weverything is used.
Diego Novillo [Thu, 29 May 2014 16:19:27 +0000 (16:19 +0000)]
Fix spurious remarks when -Weverything is used.

With -Weverything, the backend remarks are enabled. This was
causing spurious diagnostics for remarks that we don't yet
handle (cf http://reviews.llvm.org/D3683).

This will stop being a problem once http://reviews.llvm.org/D3683
is committed.

llvm-svn: 209823

10 years agoRename alias variables to make it easier to add new tests to the file.
Rafael Espindola [Thu, 29 May 2014 16:16:12 +0000 (16:16 +0000)]
Rename alias variables to make it easier to add new tests to the file.

llvm-svn: 209822

10 years ago[PPC] Use alias symbols in address computation.
Rafael Espindola [Thu, 29 May 2014 15:41:38 +0000 (15:41 +0000)]
[PPC] Use alias symbols in address computation.

This seems to match what gcc does for ppc and what every other llvm
backend does.

This is a fixed version of r209638. The difference is to avoid any change
in behavior for functions. The logic for using constant pools for function
addresseses is spread over a few places and we have to keep them in sync.

llvm-svn: 209821

10 years agoAdd a test showing the ppc code sequence for getting a function pointer.
Rafael Espindola [Thu, 29 May 2014 15:13:23 +0000 (15:13 +0000)]
Add a test showing the ppc code sequence for getting a function pointer.

This would have found the miscompile in r209638.

llvm-svn: 209820

10 years agofix typo
Nico Weber [Thu, 29 May 2014 14:58:38 +0000 (14:58 +0000)]
fix typo

llvm-svn: 209819

10 years ago[sanitizer] Update flags test.
Evgeniy Stepanov [Thu, 29 May 2014 14:55:12 +0000 (14:55 +0000)]
[sanitizer] Update flags test.

llvm-svn: 209818

10 years agoRevert "Revert "Revert "InstCombine: Improvement to check if signed addition overflow...
Rafael Espindola [Thu, 29 May 2014 14:39:16 +0000 (14:39 +0000)]
Revert "Revert "Revert "InstCombine: Improvement to check if signed addition overflows."""

This reverts commit r209776.

It was miscompiling llvm::SelectionDAGISel::MorphNode.

llvm-svn: 209817

10 years agoParsing/Sema for OMPAlignedClause.
Alexander Musman [Thu, 29 May 2014 14:36:25 +0000 (14:36 +0000)]
Parsing/Sema for OMPAlignedClause.

llvm-svn: 209816

10 years ago[sanitizer] Add coverage_dir flag.
Evgeniy Stepanov [Thu, 29 May 2014 14:33:16 +0000 (14:33 +0000)]
[sanitizer] Add coverage_dir flag.

llvm-svn: 209815

10 years ago[sanitizer] Require that options end with '='.
Evgeniy Stepanov [Thu, 29 May 2014 14:32:32 +0000 (14:32 +0000)]
[sanitizer] Require that options end with '='.

llvm-svn: 209814

10 years agotsan: write memory profile in one line (which is much more readable)
Dmitry Vyukov [Thu, 29 May 2014 14:11:38 +0000 (14:11 +0000)]
tsan: write memory profile in one line (which is much more readable)
e.g.:
RSS 420 MB: shadow:35 meta:231 file:2 mmap:129 trace:19 heap:0 other:0 nthr=1/31
RSS 365 MB: shadow:3 meta:231 file:2 mmap:106 trace:19 heap:0 other:0 nthr=1/31
RSS 429 MB: shadow:23 meta:234 file:2 mmap:143 trace:19 heap:6 other:0 nthr=1/31
RSS 509 MB: shadow:78 meta:241 file:2 mmap:147 trace:19 heap:19 other:0 nthr=1/31

llvm-svn: 209813

10 years agoRefactoring. Remove Owned method from Sema.
Nikola Smiljanic [Thu, 29 May 2014 14:05:12 +0000 (14:05 +0000)]
Refactoring. Remove Owned method from Sema.

llvm-svn: 209812

10 years agotsan: allow to write memory profile to stdout/stderr
Dmitry Vyukov [Thu, 29 May 2014 14:02:06 +0000 (14:02 +0000)]
tsan: allow to write memory profile to stdout/stderr

llvm-svn: 209811

10 years agotsan: refactor storage of meta information for heap blocks and sync objects
Dmitry Vyukov [Thu, 29 May 2014 13:50:54 +0000 (13:50 +0000)]
tsan: refactor storage of meta information for heap blocks and sync objects
The new storage (MetaMap) is based on direct shadow (instead of a hashmap + per-block lists).
This solves a number of problems:
 - eliminates quadratic behaviour in SyncTab::GetAndLock (https://code.google.com/p/thread-sanitizer/issues/detail?id=26)
 - eliminates contention in SyncTab
 - eliminates contention in internal allocator during allocation of sync objects
 - removes a bunch of ad-hoc code in java interface
 - reduces java shadow from 2x to 1/2x
 - allows to memorize heap block meta info for Java and Go
 - allows to cleanup sync object meta info for Go
 - which in turn enabled deadlock detector for Go

llvm-svn: 209810

10 years agoFix r209807 which inadvertently removed things
Arnaud A. de Grandmaison [Thu, 29 May 2014 13:42:17 +0000 (13:42 +0000)]
Fix r209807 which inadvertently removed things

llvm-svn: 209809

10 years agoFixing a test case which was failing the MSVC build bots. When -std isn't specified...
Aaron Ballman [Thu, 29 May 2014 12:59:11 +0000 (12:59 +0000)]
Fixing a test case which was failing the MSVC build bots. When -std isn't specified with an MSVC build, it defaults to -std=c++11, which overrides the -x cuda option. In turn, this causes all CUDA language option checks to fail.

This fix is possibly temporary while we determine whether -x cuda should be considered along with -std=c++11 when setting language options.

llvm-svn: 209808

10 years agoFix build. Method was renamed in r209800.
Nikola Smiljanic [Thu, 29 May 2014 12:38:17 +0000 (12:38 +0000)]
Fix build. Method was renamed in r209800.

llvm-svn: 209807

10 years ago[ASan Win tests] Add a couple more memcpy/memset tests
Timur Iskhodzhanov [Thu, 29 May 2014 12:15:17 +0000 (12:15 +0000)]
[ASan Win tests] Add a couple more memcpy/memset tests

llvm-svn: 209806

10 years agoSupport getting executable's name for sanitizers needs on FreeBSD
Viktor Kutuzov [Thu, 29 May 2014 12:12:42 +0000 (12:12 +0000)]
Support getting executable's name for sanitizers needs on FreeBSD

llvm-svn: 209805

10 years agoFix building 32-bit common sanitizer tests on FreeBSD 9.2
Viktor Kutuzov [Thu, 29 May 2014 11:35:05 +0000 (11:35 +0000)]
Fix building 32-bit common sanitizer tests on FreeBSD 9.2

llvm-svn: 209804

10 years agoRestore getInvertedCondCode() from the phased-out backend, fixing disassembly for NV
Artyom Skrobov [Thu, 29 May 2014 11:34:50 +0000 (11:34 +0000)]
Restore getInvertedCondCode() from the phased-out backend, fixing disassembly for NV

llvm-svn: 209803

10 years agoAdd missing check when MatchInstructionImpl() reports failure
Artyom Skrobov [Thu, 29 May 2014 11:26:15 +0000 (11:26 +0000)]
Add missing check when MatchInstructionImpl() reports failure

llvm-svn: 209802

10 years ago[elf2yaml][ELF] Move Info field to the RelocationSection structure. This
Simon Atanasyan [Thu, 29 May 2014 11:05:31 +0000 (11:05 +0000)]
[elf2yaml][ELF] Move Info field to the RelocationSection structure. This
field represents ELF section header sh_info field and does not have any
sense for regular sections. Its interpretation depends on section type.

llvm-svn: 209801

10 years agoRefactoring. Remove release and take methods from ActionResult. Rename takeAs to...
Nikola Smiljanic [Thu, 29 May 2014 10:55:11 +0000 (10:55 +0000)]
Refactoring. Remove release and take methods from ActionResult. Rename takeAs to getAs.

llvm-svn: 209800

10 years agoRename a test case to contain correct date info.
Hao Liu [Thu, 29 May 2014 09:21:23 +0000 (09:21 +0000)]
Rename a test case to contain correct date info.

llvm-svn: 209799

10 years agoFix an assertion failure caused by v1i64 in DAGCombiner Shrink.
Hao Liu [Thu, 29 May 2014 09:19:07 +0000 (09:19 +0000)]
Fix an assertion failure caused by v1i64 in DAGCombiner Shrink.

llvm-svn: 209798

10 years agoLCSSA should be performed on the outermost affected loop while unrolling loop.
Dinesh Dwivedi [Thu, 29 May 2014 06:47:23 +0000 (06:47 +0000)]
LCSSA should be performed on the outermost affected loop while unrolling loop.

During loop-unroll, loop exits from the current loop may end up in in different
outer loop. This requires to re-form LCSSA recursively for one level down from
the outer most loop where loop exits are landed during unroll. This fixes PR18861.

Differential Revision: http://reviews.llvm.org/D2976

llvm-svn: 209796

10 years agoLinux: Correctly identify valid error codes
David Majnemer [Thu, 29 May 2014 05:02:22 +0000 (05:02 +0000)]
Linux: Correctly identify valid error codes

[syserr.errcat.objects]p4 specifies that
system_category().default_error_condition(ev) map to
error_condition(posv, generic_category()) if ev could map to a POSIX
errno.

Linux reserves up to and including 4095 for errno values, use this as a
bound.

This fixes syserr.errcat.objects/system_category.pass.cpp on Linux.

llvm-svn: 209795

10 years agoWhen merging functions across modules (and in particular, instantiations of
Richard Smith [Thu, 29 May 2014 03:15:31 +0000 (03:15 +0000)]
When merging functions across modules (and in particular, instantiations of
member functions), ensure that the redecl chain never transitions from 'inline'
to 'not inline', since that violates an AST invariant.

llvm-svn: 209794

10 years agoImplement a convenience recursive walk method over a cursor and its descendants.
Eli Bendersky [Thu, 29 May 2014 02:35:27 +0000 (02:35 +0000)]
Implement a convenience recursive walk method over a cursor and its descendants.

Before r160106 there was a way to recursively visit all descendants of a cursor
via Cursor_visit, but it was removed. Since then, every user needs to
reimplement the recursive descent into get_children.

Adding a walk_preorder() method to Cursor that conveniently implements recursive
walking in a Pythonic way. This also greatly simplifies get_cursor and
get_cursors in tests/cindex/util.py (walk_preorder is now tested through these
utility functions, since they are used in many tests).

llvm-svn: 209793

10 years ago[LoadCombine] Missed a file.
Michael J. Spencer [Thu, 29 May 2014 02:05:37 +0000 (02:05 +0000)]
[LoadCombine] Missed a file.

llvm-svn: 209792

10 years agoAdd LoadCombine pass.
Michael J. Spencer [Thu, 29 May 2014 01:55:07 +0000 (01:55 +0000)]
Add LoadCombine pass.

This pass is disabled by default. Use -combine-loads to enable in -O[1-3]

Differential revision: http://reviews.llvm.org/D3580

llvm-svn: 209791

10 years ago[ASan] Hoist blacklisting globals from init-order checking to Clang.
Alexey Samsonov [Thu, 29 May 2014 01:44:13 +0000 (01:44 +0000)]
[ASan] Hoist blacklisting globals from init-order checking to Clang.

Clang knows about the sanitizer blacklist and it makes no sense to
add global to the list of llvm.asan.dynamically_initialized_globals if it
will be blacklisted in the instrumentation pass anyway. Instead, we should
do as much blacklisting as possible (if not all) in the frontend.

llvm-svn: 209790

10 years ago[ASan] Hoist blacklisting globals from init-order checking to Clang.
Alexey Samsonov [Thu, 29 May 2014 01:43:53 +0000 (01:43 +0000)]
[ASan] Hoist blacklisting globals from init-order checking to Clang.

Clang knows about the sanitizer blacklist and it makes no sense to
add global to the list of llvm.asan.dynamically_initialized_globals if it
will be blacklisted in the instrumentation pass anyway. Instead, we should
do as much blacklisting as possible (if not all) in the frontend.

llvm-svn: 209789

10 years ago[x86] Fold extract_vector_elt of a load into the Load's address computation.
Michael J. Spencer [Thu, 29 May 2014 01:42:45 +0000 (01:42 +0000)]
[x86] Fold extract_vector_elt of a load into the Load's address computation.

An address only use of an extract element of a load can be simplified to a
load. Without this the result of the extract element is spilled to the
stack so that an address is available.

llvm-svn: 209788

10 years agoR600/SI: Fix pattern variable names.
Matt Arsenault [Thu, 29 May 2014 01:18:01 +0000 (01:18 +0000)]
R600/SI: Fix pattern variable names.

These are confusing enough since the order swaps,
so give them more useful names.

llvm-svn: 209787

10 years agoPR19878: If a pack expansion appears within another pack expansion, correctly
Richard Smith [Thu, 29 May 2014 01:12:14 +0000 (01:12 +0000)]
PR19878: If a pack expansion appears within another pack expansion, correctly
deduce any packs that are expanded by both expansions.

llvm-svn: 209786

10 years agoFix a problem exposed by r208825, which caused bind (and other bits of libc++) to...
Marshall Clow [Thu, 29 May 2014 01:10:28 +0000 (01:10 +0000)]
Fix a problem exposed by r208825, which caused bind (and other bits of libc++) to stop working. And tests

llvm-svn: 209785

10 years agoFix typo in variable name
Alexey Samsonov [Thu, 29 May 2014 01:10:14 +0000 (01:10 +0000)]
Fix typo in variable name

llvm-svn: 209784

10 years agoAdd __extenddftf2 and __extendsftf2 for IEEE quad precision.
Joerg Sonnenberger [Thu, 29 May 2014 01:00:39 +0000 (01:00 +0000)]
Add __extenddftf2 and __extendsftf2 for IEEE quad precision.

Patch by: GuanHong Liu
Differential Revision: http://reviews.llvm.org/D2802

llvm-svn: 209783

10 years agoImplement __trunctfdf2 and __trunctfsf2 for IEEE quad precision.
Joerg Sonnenberger [Thu, 29 May 2014 00:58:27 +0000 (00:58 +0000)]
Implement __trunctfdf2 and __trunctfsf2 for IEEE quad precision.

Patch by: GuanHong Liu
Differential Revision: http://reviews.llvm.org/D2803

llvm-svn: 209782

10 years agoRefactor extendsfdf2.
Joerg Sonnenberger [Thu, 29 May 2014 00:54:26 +0000 (00:54 +0000)]
Refactor extendsfdf2.

Patch by: GuanHong Liu
Differential Revision: http://reviews.llvm.org/D3887

llvm-svn: 209781