platform/upstream/llvm.git
9 years ago[mips][microMIPS] Fix opcodes of MFHC1 and MTHC1 instructions.
Jozef Kolek [Wed, 19 Nov 2014 13:37:51 +0000 (13:37 +0000)]
[mips][microMIPS] Fix opcodes of MFHC1 and MTHC1 instructions.

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

llvm-svn: 222355

9 years agoFix tail recursion elimination
Arnaud A. de Grandmaison [Wed, 19 Nov 2014 13:32:51 +0000 (13:32 +0000)]
Fix tail recursion elimination

When the BasicBlock containing the return instrution has a PHI with 2
incoming values, FoldReturnIntoUncondBranch will remove the no longer
used incoming value and remove the no longer needed phi as well. This
leaves us with a BB that no longer has a PHI, but the subsequent call
to FoldReturnIntoUncondBranch from FoldReturnAndProcessPred will not
remove the return instruction (which still uses the result of the call
instruction). This prevents EliminateRecursiveTailCall to remove
the value, as it is still being used in a basicblock which has no
predecessors.

The basicblock can not be erased on the spot, because its iterator is
still being used in runTRE.

This issue was exposed when removing the threshold on size for lifetime
marker insertion for named temporaries in clang. The testcase is a much
reduced version of peelOffOuterExpr(const Expr*, const ExplodedNode *)
from clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp.

llvm-svn: 222354

9 years ago[mips][microMIPS] Implement CodeGen support for 16-bit instruction ADDIUR2.
Jozef Kolek [Wed, 19 Nov 2014 13:23:58 +0000 (13:23 +0000)]
[mips][microMIPS] Implement CodeGen support for 16-bit instruction ADDIUR2.

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

llvm-svn: 222352

9 years ago[mips][microMIPS] Implement CodeGen support for ADDIUS5 instruction.
Jozef Kolek [Wed, 19 Nov 2014 13:11:09 +0000 (13:11 +0000)]
[mips][microMIPS] Implement CodeGen support for ADDIUS5 instruction.

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

llvm-svn: 222351

9 years ago[mips][microMIPS] Add disassembler tests for new microMIPS 32-bit
Jozef Kolek [Wed, 19 Nov 2014 11:49:57 +0000 (11:49 +0000)]
[mips][microMIPS] Add disassembler tests for new microMIPS 32-bit
instructions: LWXS, BGEZALS, BLTZALS, BEQZC, BNEZC, JALS and JALRS.

http://reviews.llvm.org/D5413

llvm-svn: 222349

9 years ago[mips][microMIPS] Implement LWXS instruction.
Jozef Kolek [Wed, 19 Nov 2014 11:39:12 +0000 (11:39 +0000)]
[mips][microMIPS] Implement LWXS instruction.

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

llvm-svn: 222348

9 years ago[mips][microMIPS] Implement SDBBP and RDHWR instructions.
Jozef Kolek [Wed, 19 Nov 2014 11:25:50 +0000 (11:25 +0000)]
[mips][microMIPS] Implement SDBBP and RDHWR instructions.

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

llvm-svn: 222347

9 years agotsan: fix binary names in tests
Dmitry Vyukov [Wed, 19 Nov 2014 10:47:06 +0000 (10:47 +0000)]
tsan: fix binary names in tests
test_output.sh produces source.cc.exe binaries

llvm-svn: 222345

9 years agotsan: exclude unsupported test from test_output.sh script
Dmitry Vyukov [Wed, 19 Nov 2014 10:46:23 +0000 (10:46 +0000)]
tsan: exclude unsupported test from test_output.sh script

llvm-svn: 222344

9 years agotsan: don't add -pie when compiling tests
Dmitry Vyukov [Wed, 19 Nov 2014 10:45:53 +0000 (10:45 +0000)]
tsan: don't add -pie when compiling tests
driver should add it as necessary

llvm-svn: 222343

9 years agotsan: fix Go build
Dmitry Vyukov [Wed, 19 Nov 2014 10:43:11 +0000 (10:43 +0000)]
tsan: fix Go build

llvm-svn: 222342

9 years agoUse ninja pools to limit the number of concurrent compile/link jobs.
Evgeniy Stepanov [Wed, 19 Nov 2014 10:30:02 +0000 (10:30 +0000)]
Use ninja pools to limit the number of concurrent compile/link jobs.

This change makes use of the new "job pool" capability in cmake 3.0
with ninja generator to allow limiting the number of concurrent jobs
of a certain type.

llvm-svn: 222341

9 years ago[X86][SSE] pslldq/psrldq byte shifts/rotation for SSE2
Simon Pilgrim [Wed, 19 Nov 2014 10:06:49 +0000 (10:06 +0000)]
[X86][SSE] pslldq/psrldq byte shifts/rotation for SSE2

This patch builds on http://reviews.llvm.org/D5598 to perform byte rotation shuffles (lowerVectorShuffleAsByteRotate) on pre-SSSE3 (palignr) targets - pre-SSSE3 is only enabled on i8 and i16 vector targets where it is a more definite performance gain.

I've also added a separate byte shift shuffle (lowerVectorShuffleAsByteShift) that makes use of the ability of the SLLDQ/SRLDQ instructions to implicitly shift in zero bytes to avoid the need to create a zero register if we had used palignr.

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

llvm-svn: 222340

9 years agoAllow EmitVAArg() to promote types and use this to fix some N32/N64 vararg issues...
Daniel Sanders [Wed, 19 Nov 2014 10:01:35 +0000 (10:01 +0000)]
Allow EmitVAArg() to promote types and use this to fix some N32/N64 vararg issues for Mips.

Summary:
With this patch, passing a va_list to another function and reading 10 int's from
it works correctly on a big-endian target.

Based on a pair of patches by David Chisnall, one of which I've reworked
for the current trunk.

Reviewers: theraven, atanasyan

Reviewed By: theraven, atanasyan

Subscribers: cfe-commits

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

llvm-svn: 222339

9 years agoAliasSetTracker: UnknownInsts should contribute to the refcount
David Majnemer [Wed, 19 Nov 2014 09:41:05 +0000 (09:41 +0000)]
AliasSetTracker: UnknownInsts should contribute to the refcount

AliasSetTracker::addUnknown may create an AliasSet devoid of pointers
just to contain an instruction if no suitable AliasSet already exists.
It will then AliasSet::addUnknownInst and we will be done.

However, it's possible for addUnknown to choose an existing AliasSet to
addUnknownInst.
If this were to occur, we are in a bit of a pickle: removing pointers
from the AliasSet can cause the entire AliasSet to become destroyed,
taking our unknown instructions out with them.

Instead, keep track whether or not our AliasSet has any unknown
instructions.

This fixes PR21582.

llvm-svn: 222338

9 years agoAdd missing header
David Blaikie [Wed, 19 Nov 2014 08:12:55 +0000 (08:12 +0000)]
Add missing header

llvm-svn: 222337

9 years agoUpdate for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool...
David Blaikie [Wed, 19 Nov 2014 07:49:54 +0000 (07:49 +0000)]
Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept.

llvm-svn: 222336

9 years agoUpdate for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool...
David Blaikie [Wed, 19 Nov 2014 07:49:47 +0000 (07:49 +0000)]
Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator, bool> as per the C++ standard's associative container concept.

llvm-svn: 222335

9 years agoUpdate SetVector to rely on the underlying set's insert to return a pair<iterator...
David Blaikie [Wed, 19 Nov 2014 07:49:26 +0000 (07:49 +0000)]
Update SetVector to rely on the underlying set's insert to return a pair<iterator, bool>

This is to be consistent with StringSet and ultimately with the standard
library's associative container insert function.

This lead to updating SmallSet::insert to return pair<iterator, bool>,
and then to update SmallPtrSet::insert to return pair<iterator, bool>,
and then to update all the existing users of those functions...

llvm-svn: 222334

9 years ago[AArch64] Disable useAA for Cortex-A57.
Hao Liu [Wed, 19 Nov 2014 06:48:56 +0000 (06:48 +0000)]
[AArch64] Disable useAA for Cortex-A57.
Using AA during CodeGen is very useful for in-order cores. It is less useful for ooo cores. Also I find
enabling useAA for Cortex-A57 may generate worse code for some test cases. If useAA in codegen is improved
and benefical for ooo cores, we can enable it again.

llvm-svn: 222333

9 years agoRevert "[ELF] Sectionkey should also contain path."
Shankar Easwaran [Wed, 19 Nov 2014 06:47:29 +0000 (06:47 +0000)]
Revert "[ELF] Sectionkey should also contain path."

This reverts commit r222309.

Reverting because of failures on darwin bot.

llvm-svn: 222332

9 years ago[AArch64] Enable SeparateConstOffsetFromGEP, EarlyCSE and LICM passes on AArch64...
Hao Liu [Wed, 19 Nov 2014 06:39:53 +0000 (06:39 +0000)]
[AArch64] Enable SeparateConstOffsetFromGEP, EarlyCSE and LICM passes on AArch64 backend.
SeparateConstOffsetFromGEP can gives more optimizaiton opportunities related to GEPs, which benefits EarlyCSE
and LICM. By enabling these passes we can have better address calculations and generate a better addressing
mode. Some SPEC 2006 benchmarks (astar, gobmk, namd) have obvious improvements on Cortex-A57.

Reviewed in http://reviews.llvm.org/D5864.

llvm-svn: 222331

9 years agoRevert "[ELF] Rename MergedSection to OutputSection."
Shankar Easwaran [Wed, 19 Nov 2014 06:24:53 +0000 (06:24 +0000)]
Revert "[ELF] Rename MergedSection to OutputSection."

This reverts commit r222310.

Not sure which commit is the cause of the failure on the darwin bot. Will need
to revert my changes and commit one change at a time.

llvm-svn: 222330

9 years agoRevert "[ELF] Create input and output section names"
Shankar Easwaran [Wed, 19 Nov 2014 06:24:51 +0000 (06:24 +0000)]
Revert "[ELF] Create input and output section names"

This reverts commit r222311.

Reverting because of failure in the darwin bot.

llvm-svn: 222329

9 years ago[SeparateConstOffsetFromGEP] Allow SeparateConstOffsetFromGEP pass to lower GEPs.
Hao Liu [Wed, 19 Nov 2014 06:24:44 +0000 (06:24 +0000)]
[SeparateConstOffsetFromGEP] Allow SeparateConstOffsetFromGEP pass to lower GEPs.
If LowerGEP is enabled, it can lower a GEP with multiple indices into GEPs with a single index
or arithmetic operations. Lowering GEPs can always extract structure indices. Lowering GEPs can
also give use more optimization opportunities. It can benefit passes like CSE, LICM and CGP.

Reviewed in http://reviews.llvm.org/D5864

llvm-svn: 222328

9 years agoAdd the exception for strings in logical and expressions to -Wstring-conversion
Richard Trieu [Wed, 19 Nov 2014 06:08:18 +0000 (06:08 +0000)]
Add the exception for strings in logical and expressions to -Wstring-conversion
for C code.

llvm-svn: 222327

9 years agoRevert "[ELF] Fix creation of segments."
Shankar Easwaran [Wed, 19 Nov 2014 05:53:13 +0000 (05:53 +0000)]
Revert "[ELF] Fix creation of segments."

This reverts commit r222312.

There looks to be an intermittent failure in the darwin buildbot.

llvm-svn: 222326

9 years ago[Mips] Remove unnecessary debug logging code
Simon Atanasyan [Wed, 19 Nov 2014 05:51:16 +0000 (05:51 +0000)]
[Mips] Remove unnecessary debug logging code

No functional changes

llvm-svn: 222325

9 years ago[Mips] Configure PLT and LA25 entries in the corresponding constructors
Simon Atanasyan [Wed, 19 Nov 2014 05:51:10 +0000 (05:51 +0000)]
[Mips] Configure PLT and LA25 entries in the corresponding constructors

No functional changes.

llvm-svn: 222324

9 years ago[Mips] Inline the configurePLTReference method
Simon Atanasyan [Wed, 19 Nov 2014 05:51:05 +0000 (05:51 +0000)]
[Mips] Inline the configurePLTReference method

No functional changes.

llvm-svn: 222323

9 years ago[Mips] Remove redundant const_cast
Simon Atanasyan [Wed, 19 Nov 2014 05:50:59 +0000 (05:50 +0000)]
[Mips] Remove redundant const_cast

No functional changes.

llvm-svn: 222322

9 years ago[Mips] Make the function return type constant pointer
Simon Atanasyan [Wed, 19 Nov 2014 05:50:53 +0000 (05:50 +0000)]
[Mips] Make the function return type constant pointer

No functional changes.

llvm-svn: 222321

9 years ago[Mips] Move setup of LLD_R_MIPS_STO_PLT relocation to the getPLTEntry() routine
Simon Atanasyan [Wed, 19 Nov 2014 05:50:47 +0000 (05:50 +0000)]
[Mips] Move setup of LLD_R_MIPS_STO_PLT relocation to the getPLTEntry() routine

No functional changes.

llvm-svn: 222320

9 years agoRemove StringMap::GetOrCreateValue in favor of StringMap::insert
David Blaikie [Wed, 19 Nov 2014 05:49:42 +0000 (05:49 +0000)]
Remove StringMap::GetOrCreateValue in favor of StringMap::insert

Having two ways to do this doesn't seem terribly helpful and
consistently using the insert version (which we already has) seems like
it'll make the code easier to understand to anyone working with standard
data structures. (I also updated many references to the Entry's
key and value to use first() and second instead of getKey{Data,Length,}
and get/setValue - for similar consistency)

Also removes the GetOrCreateValue functions so there's less surface area
to StringMap to fix/improve/change/accommodate move semantics, etc.

llvm-svn: 222319

9 years agoOverhaul and separate nullptr_t tests to pass with C++03.
Eric Fiselier [Wed, 19 Nov 2014 05:49:03 +0000 (05:49 +0000)]
Overhaul and separate nullptr_t tests to pass with C++03.

The standard requires that nullptr_t can be reinterpret_cast to an integral type
at least the size of nullptr_t. There is no way to emulate this conversion in
the C++03 nullptr_t implementation. The test for this conversion has been moved
to a new test and marked XFAIL with c++03.

This recommits what was originally r222296.

llvm-svn: 222318

9 years agoclang-format a recent commit I made
David Blaikie [Wed, 19 Nov 2014 05:48:40 +0000 (05:48 +0000)]
clang-format a recent commit I made

llvm-svn: 222317

9 years agoRevert r222296 to fix bad commit message
Eric Fiselier [Wed, 19 Nov 2014 05:41:29 +0000 (05:41 +0000)]
Revert r222296 to fix bad commit message

llvm-svn: 222316

9 years agoWrap to 80 columns, no behavior change.
Nico Weber [Wed, 19 Nov 2014 05:21:39 +0000 (05:21 +0000)]
Wrap to 80 columns, no behavior change.

llvm-svn: 222315

9 years agoRemove accidentally commited line in commit. Sorry
Eric Fiselier [Wed, 19 Nov 2014 05:00:57 +0000 (05:00 +0000)]
Remove accidentally commited line in commit. Sorry

llvm-svn: 222314

9 years ago[ELF] Handle ctors/dtors sections
Shankar Easwaran [Wed, 19 Nov 2014 03:51:50 +0000 (03:51 +0000)]
[ELF] Handle ctors/dtors sections

Move functionality from MIPS target to DefaultLayout.

No change in functionality.

llvm-svn: 222313

9 years ago[ELF] Fix creation of segments.
Shankar Easwaran [Wed, 19 Nov 2014 03:51:48 +0000 (03:51 +0000)]
[ELF] Fix creation of segments.

Linker was creating a separate output segment in some cases if input sections
had huge alignments. This patch fixes the issue.

llvm-svn: 222312

9 years ago[ELF] Create input and output section names
Shankar Easwaran [Wed, 19 Nov 2014 03:51:45 +0000 (03:51 +0000)]
[ELF] Create input and output section names

No change in functionality.

llvm-svn: 222311

9 years ago[ELF] Rename MergedSection to OutputSection.
Shankar Easwaran [Wed, 19 Nov 2014 03:51:43 +0000 (03:51 +0000)]
[ELF] Rename MergedSection to OutputSection.

No change in functionality.

llvm-svn: 222310

9 years ago[ELF] Sectionkey should also contain path.
Shankar Easwaran [Wed, 19 Nov 2014 03:51:41 +0000 (03:51 +0000)]
[ELF] Sectionkey should also contain path.

No change in functionality.

llvm-svn: 222309

9 years agoTeach llvm-build to avoid touching LibraryDependencies.inc unless the contents
Peter Collingbourne [Wed, 19 Nov 2014 03:34:20 +0000 (03:34 +0000)]
Teach llvm-build to avoid touching LibraryDependencies.inc unless the contents
change. This saves us from rebuilding llvm-config each time we reconfigure.

llvm-svn: 222308

9 years agoExpose LLVM version string via macro in llvm-config.h, and modify Go bindings
Peter Collingbourne [Wed, 19 Nov 2014 03:34:17 +0000 (03:34 +0000)]
Expose LLVM version string via macro in llvm-config.h, and modify Go bindings
to make use of it.

llvm-svn: 222307

9 years agoStandardize on StringMap::insert, removing uses of StringMap::GetOrCreateValue.
David Blaikie [Wed, 19 Nov 2014 03:06:06 +0000 (03:06 +0000)]
Standardize on StringMap::insert, removing uses of StringMap::GetOrCreateValue.

llvm-svn: 222306

9 years agoRemove uses of StringMap::GetOrCreateValue in favor of stl-compatible API usage
David Blaikie [Wed, 19 Nov 2014 03:05:07 +0000 (03:05 +0000)]
Remove uses of StringMap::GetOrCreateValue in favor of stl-compatible API usage

llvm-svn: 222305

9 years agoUpdate for LLVM API change
David Blaikie [Wed, 19 Nov 2014 03:04:29 +0000 (03:04 +0000)]
Update for LLVM API change

llvm-svn: 222304

9 years agoUpdate for LLVM API change
David Blaikie [Wed, 19 Nov 2014 02:56:13 +0000 (02:56 +0000)]
Update for LLVM API change

llvm-svn: 222303

9 years agoMake StringSet::insert return pair<iterator, bool> like other self-associative containers
David Blaikie [Wed, 19 Nov 2014 02:56:00 +0000 (02:56 +0000)]
Make StringSet::insert return pair<iterator, bool> like other self-associative containers

StringSet is still a bit dodgy in that it exposes the raw iterator of
the StringMap parent, which exposes the weird detail that StringSet
actually has a 'value'... but anyway, this is useful for a handful of
clients that want to reference the newly inserted/persistent string data
in the StringSet/Map/Entry/thing.

llvm-svn: 222302

9 years agoAdd additional checks to the SavedLocationForRegister method
Jason Molenda [Wed, 19 Nov 2014 02:29:52 +0000 (02:29 +0000)]
Add additional checks to the SavedLocationForRegister method
where it is retrieving the Return Address register contents
on a target where that's a thing.  If we fail to get a valid
RA, we force a switch to the fallback unwind plan.  This patch
adds a sanity check for that fallback unwind plan -- it must
get a valid CFA for this frame in addition to being able to
retrieve the caller's PC -- and it correctly marks the unwind
rules as failing if the fallback unwind plan fails.

<rdar://problem/19010211>

llvm-svn: 222301

9 years ago[mach-o] propagate dylib version numbers
Nick Kledzik [Wed, 19 Nov 2014 02:21:53 +0000 (02:21 +0000)]
[mach-o] propagate dylib version numbers

Mach-o does not use a simple SO_NEEDED to track dependent dylibs.  Instead,
the linker copies four things from each dylib to each client: the runtime path
(aka "install name"), the build time, current version (dylib build number), and
compatibility version  The build time is no longer used (it cause every rebuild
of a dylib to be different).  The compatibility version is usually just 1.0
and never changes, or the dylib becomes incompatible.

This patch copies that information into the NormalizedMachO format and
propagates it to clients.

llvm-svn: 222300

9 years agollvm-readobj: fix off-by-one error in COFFDumper
Rui Ueyama [Wed, 19 Nov 2014 02:07:10 +0000 (02:07 +0000)]
llvm-readobj: fix off-by-one error in COFFDumper

It printed out base relocation table header as table entry.
This patch also makes llvm-readobj to not skip ABSOLUTE entries
becuase it was confusing.

llvm-svn: 222299

9 years agoCleanup quick_exit tests and get them passing in C++03.
Eric Fiselier [Wed, 19 Nov 2014 01:45:12 +0000 (01:45 +0000)]
Cleanup quick_exit tests and get them passing in C++03.

Wrap the original test in _LIBCPP_HAS_QUICK_EXIT so it only runs when we have
quick_exit and add two new tests that check that when _LIBCPP_HAS_QUICK_EXIT
is not defined then no definition of std::at_quick_exit or std::quick_exit are
available.

llvm-svn: 222298

9 years agoMake the ASan OS X DYLD_INSERT_LIBRARIES detection path-independent
Kuba Brecka [Wed, 19 Nov 2014 01:31:59 +0000 (01:31 +0000)]
Make the ASan OS X DYLD_INSERT_LIBRARIES detection path-independent

Reviewed at http://reviews.llvm.org/D6238

ASan on Darwin during launch reads DYLD_INSERT_LIBRARIES env. variable and if it's not set or if the ASan dylib is not present in there, it relaunches the process. The check whether the dylib is present in the variable is now trying to find a full path in there. This fails in the scenarios where we want to copy the dylib to the executable's directory or somewhere else and set the DYLD_INSERT_LIBRARIES manually, see http://reviews.llvm.org/D6018.

Let's change the search in DYLD_INSERT_LIBRARIES to only look for the filename of the dylib and not the full path.

llvm-svn: 222297

9 years agodiff --git a/test/language.support/support.types/nullptr_t.pass.cpp b/test/language...
Eric Fiselier [Wed, 19 Nov 2014 01:31:56 +0000 (01:31 +0000)]
diff --git a/test/language.support/support.types/nullptr_t.pass.cpp b/test/language.support/support.types/nullptr_t.pass.cpp
index 6c15fef..4d7c8b0 100644
--- a/test/language.support/support.types/nullptr_t.pass.cpp
+++ b/test/language.support/support.types/nullptr_t.pass.cpp
@@ -18,42 +18,62 @@ struct A
     A(std::nullptr_t) {}
 };

+template <class T>
+void test_conversions()
+{
+    {
+        T p = 0;
+        assert(p == nullptr);
+    }
+    {
+        T p = nullptr;
+        assert(p == nullptr);
+        assert(nullptr == p);
+        assert(!(p != nullptr));
+        assert(!(nullptr != p));
+    }
+}
+
+template <class T>
+void test_comparisons()
+{
+    T p = nullptr;
+    assert(p == nullptr);
+    assert(p <= nullptr);
+    assert(p >= nullptr);
+    assert(!(p != nullptr));
+    assert(!(p < nullptr));
+    assert(!(p > nullptr));
+    assert(nullptr == p);
+    assert(nullptr <= p);
+    assert(nullptr >= p);
+    assert(!(nullptr != p));
+    assert(!(nullptr < p));
+    assert(!(nullptr > p));
+}
+
+
 int main()
 {
     static_assert(sizeof(std::nullptr_t) == sizeof(void*),
                   "sizeof(std::nullptr_t) == sizeof(void*)");
-    A* p = 0;
-    assert(p == nullptr);
-    void (A::*pmf)() = 0;
-#ifdef __clang__
-    // GCC 4.2 can't handle this
-    assert(pmf == nullptr);
-#endif
-    int A::*pmd = 0;
-    assert(pmd == nullptr);
-    A a1(nullptr);
-    A a2(0);
-    bool b = nullptr;
-    assert(!b);
-    assert(nullptr == nullptr);
-    assert(nullptr <= nullptr);
-    assert(nullptr >= nullptr);
-    assert(!(nullptr != nullptr));
-    assert(!(nullptr < nullptr));
-    assert(!(nullptr > nullptr));
-    A* a = nullptr;
-    assert(a == nullptr);
-    assert(a <= nullptr);
-    assert(a >= nullptr);
-    assert(!(a != nullptr));
-    assert(!(a < nullptr));
-    assert(!(a > nullptr));
-    assert(nullptr == a);
-    assert(nullptr <= a);
-    assert(nullptr >= a);
-    assert(!(nullptr != a));
-    assert(!(nullptr < a));
-    assert(!(nullptr > a));
-    std::ptrdiff_t i = reinterpret_cast<std::ptrdiff_t>(nullptr);
-    assert(i == 0);
+
+    {
+        test_conversions<std::nullptr_t>();
+        test_conversions<void*>();
+        test_conversions<A*>();
+        test_conversions<void(*)()>();
+        test_conversions<void(A::*)()>();
+        test_conversions<int A::*>();
+    }
+    {
+        test_comparisons<std::nullptr_t>();
+        test_comparisons<void*>();
+        test_comparisons<A*>();
+        test_comparisons<void(*)()>();
+    }
+    {
+        bool b = nullptr;
+        assert(!b);
+    }
 }
diff --git a/test/language.support/support.types/nullptr_t_integral_cast.fail.cpp b/test/language.support/support.types/nullptr_t_integral_cast.fail.cpp
new file mode 100644
index 0000000..92bd879
--- /dev/null
+++ b/test/language.support/support.types/nullptr_t_integral_cast.fail.cpp
@@ -0,0 +1,17 @@
+//===----------------------------------------------------------------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+// typedef decltype(nullptr) nullptr_t;
+
+#include <cstddef>
+
+int main()
+{
+    std::ptrdiff_t i = static_cast<std::ptrdiff_t>(nullptr);
+}
diff --git a/test/language.support/support.types/nullptr_t_integral_cast.pass.cpp b/test/language.support/support.types/nullptr_t_integral_cast.pass.cpp
new file mode 100644
index 0000000..34c7a93
--- /dev/null
+++ b/test/language.support/support.types/nullptr_t_integral_cast.pass.cpp
@@ -0,0 +1,24 @@
+//===----------------------------------------------------------------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+// NOTE: nullptr_t emulation cannot handle a reinterpret_cast to an
+// integral type
+// XFAIL: c++98, c++03
+
+// typedef decltype(nullptr) nullptr_t;
+
+
+#include <cstddef>
+#include <cassert>
+
+int main()
+{
+    std::ptrdiff_t i = reinterpret_cast<std::ptrdiff_t>(nullptr);
+    assert(i == 0);
+}

llvm-svn: 222296

9 years agoAdd "-k" and "-K" options to the driver, that allow you to register
Jim Ingham [Wed, 19 Nov 2014 01:28:13 +0000 (01:28 +0000)]
Add "-k" and "-K" options to the driver, that allow you to register
some commands that will get run if the target crashes.

Also fix the bug where the local .lldbinit file was not getting
sourced before not after the target was created from the file options on the
driver command line.

<rdar://problem/19019843>

llvm-svn: 222295

9 years agoUse a memcpy so that type based alias analysis sees the change.
Rafael Espindola [Wed, 19 Nov 2014 01:02:22 +0000 (01:02 +0000)]
Use a memcpy so that type based alias analysis sees the change.

The other option would be to do something like

if (that.isSingleWord())
  VAL = that.VAL;
else
  pVal = that.pVal

This bug was causing 86TTI::getIntImmCost to be miscompiled in a LTO
bootstrap in stage2, causing the build of stage3 to fail.

LLVM is getting quiet good at exploiting this. Not sure if there is anything
a sanitizer could do to help

llvm-svn: 222294

9 years agoFix MSVC warning.
Rui Ueyama [Wed, 19 Nov 2014 00:48:06 +0000 (00:48 +0000)]
Fix MSVC warning.

This patch fixes the following MSVC warning.

  warning C4334: '<<' : result of 32-bit shift implicitly
  converted to 64 bits (was 64-bit shift intended?)

llvm-svn: 222293

9 years ago[Aarch64] Customer lowering of CTPOP to SIMD should check for NEON availability
Weiming Zhao [Wed, 19 Nov 2014 00:29:14 +0000 (00:29 +0000)]
[Aarch64] Customer lowering of CTPOP to SIMD should check for NEON availability

llvm-svn: 222292

9 years ago[asan] initial support for experimental basic-block tracing; also add tests for vario...
Kostya Serebryany [Wed, 19 Nov 2014 00:24:11 +0000 (00:24 +0000)]
[asan] initial support for experimental basic-block tracing; also add tests for various levels of -fsanitize-coverage

llvm-svn: 222291

9 years ago[asan] add experimental basic-block tracing to asan-coverage; also fix -fsanitize...
Kostya Serebryany [Wed, 19 Nov 2014 00:22:58 +0000 (00:22 +0000)]
[asan] add experimental basic-block tracing to asan-coverage; also fix -fsanitize-coverage=3 which was broken by r221718

llvm-svn: 222290

9 years agollvm-readobj: teach it how to dump COFF base relocation table
Rui Ueyama [Wed, 19 Nov 2014 00:18:07 +0000 (00:18 +0000)]
llvm-readobj: teach it how to dump COFF base relocation table

llvm-svn: 222289

9 years agoIntroduce llvm::SplitAllCriticalEdges
Kostya Serebryany [Wed, 19 Nov 2014 00:17:31 +0000 (00:17 +0000)]
Introduce llvm::SplitAllCriticalEdges

Summary:
move the code from BreakCriticalEdges::runOnFunction()
into a separate utility function llvm::SplitAllCriticalEdges()
so that it can be used independently.
No functionality change intended.

Test Plan: check-llvm

Reviewers: nlewycky

Reviewed By: nlewycky

Subscribers: llvm-commits

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

llvm-svn: 222288

9 years agoRevert r222039 because of bot failure.
Manman Ren [Wed, 19 Nov 2014 00:13:26 +0000 (00:13 +0000)]
Revert r222039 because of bot failure.

http://lab.llvm.org:8080/green/job/clang-Rlto_master/298/
Hopefully, bot will be green. If not, we will re-submit the commit.

llvm-svn: 222287

9 years agoR600/SI: Implement areMemAccessesTriviallyDisjoint
Matt Arsenault [Wed, 19 Nov 2014 00:01:31 +0000 (00:01 +0000)]
R600/SI: Implement areMemAccessesTriviallyDisjoint

This partially makes up for not having address spaces
used for alias analysis in some simple cases.

This is not yet enabled by default so shouldn't change anything yet.

llvm-svn: 222286

9 years agoR600/SI: Set hasSideEffects = 0 on load and store instructions.
Matt Arsenault [Tue, 18 Nov 2014 23:57:33 +0000 (23:57 +0000)]
R600/SI: Set hasSideEffects = 0 on load and store instructions.

Assuming unmodeled side effects interferes with some scheduling
opportunities.

Don't put it in the base class of DS instructions since there
are a few weird effecting, non load/store instructions there.

llvm-svn: 222285

9 years agoclang-format: Add option to disable alignment after opening brackets
Daniel Jasper [Tue, 18 Nov 2014 23:55:27 +0000 (23:55 +0000)]
clang-format: Add option to disable alignment after opening brackets

Before:
  SomeFunction(parameter,
               parameter);

After:
  SomeFunction(parameter,
      parameter);

Patch by Harry Terkelsen, thank you!

llvm-svn: 222284

9 years agoclang-format: Fix space between generic type parameter and square
Daniel Jasper [Tue, 18 Nov 2014 23:48:01 +0000 (23:48 +0000)]
clang-format: Fix space between generic type parameter and square
bracket

Before:
  public Foo<X, Y> [] foos;

After:
  public Foo<X, Y>[] foos;

Patch by Harry Terkelsen. Thank you!

llvm-svn: 222283

9 years agoModify tests to check that va_copy is only defined in C++11 and beyond.
Eric Fiselier [Tue, 18 Nov 2014 23:46:18 +0000 (23:46 +0000)]
Modify tests to check that va_copy is only defined in C++11 and beyond.

llvm-svn: 222282

9 years ago[X86][AVX] 256-bit vector stack unaligned load/stores identification
Simon Pilgrim [Tue, 18 Nov 2014 23:38:19 +0000 (23:38 +0000)]
[X86][AVX] 256-bit vector stack unaligned load/stores identification

Under many circumstances the stack is not 32-byte aligned, resulting in the use of the vmovups/vmovupd/vmovdqu instructions when inserting ymm reloads/spills.

This minor patch adds these instructions to the isFrameLoadOpcode/isFrameStoreOpcode helpers so that they can be correctly identified and not be treated as folded reloads/spills.

This has also been noticed by http://llvm.org/bugs/show_bug.cgi?id=18846 where it was causing redundant spills - I've added a reduced test case at test/CodeGen/X86/pr18846.ll

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

llvm-svn: 222281

9 years agoShuffle APIs around a little bit, so that if you pass custom summary options, we...
Enrico Granata [Tue, 18 Nov 2014 23:36:25 +0000 (23:36 +0000)]
Shuffle APIs around a little bit, so that if you pass custom summary options, we don't end up caching the summary hence obtained. You may want to obtain an uncapped summary, but this should not be reflected in the summary we cache. The drawback is that we don't cache as aggressively as we could, but at least you get to have different summaries with different options without having to reset formatters or the SBValue at each step

llvm-svn: 222280

9 years agoprofile: Robustify instrprof tests
Justin Bogner [Tue, 18 Nov 2014 23:03:14 +0000 (23:03 +0000)]
profile: Robustify instrprof tests

Change these tests not to rely on the exact metadata numbers the
profile data gets.

llvm-svn: 222279

9 years agoFlush out test cases for tuples constructor SFINAE
Eric Fiselier [Tue, 18 Nov 2014 23:01:57 +0000 (23:01 +0000)]
Flush out test cases for tuples constructor SFINAE

llvm-svn: 222278

9 years agoAdd the ability for the NSString and libc++ std::string formatters to retrieve uncapp...
Enrico Granata [Tue, 18 Nov 2014 22:54:45 +0000 (22:54 +0000)]
Add the ability for the NSString and libc++ std::string formatters to retrieve uncapped data

llvm-svn: 222277

9 years agoAllow dsymutil to exists in a path with spaces in it
Enrico Granata [Tue, 18 Nov 2014 22:47:33 +0000 (22:47 +0000)]
Allow dsymutil to exists in a path with spaces in it

llvm-svn: 222276

9 years agoRevert "git-svn test commit"
Ismail Pazarbasi [Tue, 18 Nov 2014 22:45:59 +0000 (22:45 +0000)]
Revert "git-svn test commit"

This reverts commit aa8d370ee798f75bc05a1ae9a240bc3e5b6870ac.

llvm-svn: 222275

9 years ago[Hexagon] Adding A2_and instruction.
Colin LeMahieu [Tue, 18 Nov 2014 22:45:47 +0000 (22:45 +0000)]
[Hexagon] Adding A2_and instruction.

llvm-svn: 222274

9 years agogit-svn test commit
Ismail Pazarbasi [Tue, 18 Nov 2014 22:44:51 +0000 (22:44 +0000)]
git-svn test commit

llvm-svn: 222273

9 years ago[FastISel][AArch64] Also allow folding of sign-/zero-extend and arithmetic
Chad Rosier [Tue, 18 Nov 2014 22:41:49 +0000 (22:41 +0000)]
[FastISel][AArch64] Also allow folding of sign-/zero-extend and arithmetic
shift-right for booleans (i1).

Arithmetic shift-right immediate with sign-/zero-extensions also works for
boolean values.  Update the assert and the test cases to reflect that fact.

llvm-svn: 222272

9 years agoMore override warning cleanup.
Eric Christopher [Tue, 18 Nov 2014 22:40:27 +0000 (22:40 +0000)]
More override warning cleanup.

llvm-svn: 222271

9 years ago[FastISel][AArch64] Also allow folding of sign-/zero-extend and logical
Chad Rosier [Tue, 18 Nov 2014 22:38:42 +0000 (22:38 +0000)]
[FastISel][AArch64] Also allow folding of sign-/zero-extend and logical
shift-right for booleans (i1).

Logical shift-right immediate with sign-/zero-extensions also works for boolean
values.  Update the assert and the test cases to reflect that fact.

llvm-svn: 222270

9 years agoFix 80-column violations, trailing whitespace, comment text.
Eric Christopher [Tue, 18 Nov 2014 22:36:15 +0000 (22:36 +0000)]
Fix 80-column violations, trailing whitespace, comment text.

llvm-svn: 222269

9 years agoThis test also requires an aarch64 target.
Eric Christopher [Tue, 18 Nov 2014 22:36:11 +0000 (22:36 +0000)]
This test also requires an aarch64 target.

llvm-svn: 222268

9 years agoFix an inaccurate comment
Justin Bogner [Tue, 18 Nov 2014 22:17:30 +0000 (22:17 +0000)]
Fix an inaccurate comment

llvm-svn: 222267

9 years ago[mach-o] for 32-bit arm, in -r mode support B (not BL) to undefined symbol
Nick Kledzik [Tue, 18 Nov 2014 22:08:50 +0000 (22:08 +0000)]
[mach-o] for 32-bit arm, in -r mode support B (not BL) to undefined symbol

When fixing up BL instructions, the linker has to compare the thumbness of the
target to decide if the instruction needs to be converted to BLX.  But with B
instruction there is no BX, so the linker asserts if the target is not the
same thumbness. This assert was firing in -r mode when the target was undefined
which it interpreted as being non-thumb.

Test case change is to add a B (in both thumb and arm code) to an undefined
symbol and round trip through -r mode.

llvm-svn: 222266

9 years agoInstCombine: Fix another infinite loop caused by visitFPTrunc
David Majnemer [Tue, 18 Nov 2014 22:06:45 +0000 (22:06 +0000)]
InstCombine: Fix another infinite loop caused by visitFPTrunc

We would attempt to replace an frem's operand with the same operand.
This would cause InstCombine to think real work was done, causing
InstCombine to enter an infinite loop.

This fixes the second part of PR21576.

llvm-svn: 222265

9 years ago[Sema] Patch to issue warning on comparing parameters with
Fariborz Jahanian [Tue, 18 Nov 2014 21:57:54 +0000 (21:57 +0000)]
[Sema] Patch to issue warning on comparing parameters with
nonnull attribute when comparison is always true/false.
Original patch by Steven Wu. I have added extra code to prevent issuing of
warning  when the nonnull parameter is modified prior to the comparison.
This addition prevents false positives in the most obvious cases.
There may still be false positive warnings in some cases (as one of my tests
indicates), but benefit far outweighs such cases. rdar://18712242

llvm-svn: 222264

9 years ago[Hexagon] Adding A2_sub instruction
Colin LeMahieu [Tue, 18 Nov 2014 21:51:51 +0000 (21:51 +0000)]
[Hexagon] Adding A2_sub instruction
Renaming test files.

llvm-svn: 222263

9 years agoFind SWIG with CMake
Ismail Pazarbasi [Tue, 18 Nov 2014 21:46:06 +0000 (21:46 +0000)]
Find SWIG with CMake

SWIG is searched under certain paths within python script. CMake can
detect SWIG with find_package(SWIG). This is used iff user checks
LLDB_ENABLE_PYTHON_SCRIPTS_SWIG_API_GENERATION. If
buildSwigWrapperClasses.py does not receive swigExecutable argument,
then the script will use its current search implementation.

llvm-svn: 222262

9 years agoRevert "Revert r222040 because of bot failure."
David Majnemer [Tue, 18 Nov 2014 21:30:02 +0000 (21:30 +0000)]
Revert "Revert r222040 because of bot failure."

This reverts commit r222203, reverting r222040 didn't end up turning the
bot green.

llvm-svn: 222261

9 years agoAdd support for LLVM_USE_SANITIZER=Thread to test suite
Eric Fiselier [Tue, 18 Nov 2014 21:28:49 +0000 (21:28 +0000)]
Add support for LLVM_USE_SANITIZER=Thread to test suite

llvm-svn: 222260

9 years agoAdd support for LLVM_USE_SANITIZER=Thread
Eric Fiselier [Tue, 18 Nov 2014 21:26:45 +0000 (21:26 +0000)]
Add support for LLVM_USE_SANITIZER=Thread

llvm-svn: 222259

9 years agoAdd support for LLVM_USE_SANITIZER=Thread
Eric Fiselier [Tue, 18 Nov 2014 21:23:38 +0000 (21:23 +0000)]
Add support for LLVM_USE_SANITIZER=Thread

Summary: This will help in testing libc++ and libc++abi with tsan.

Reviewers: samsonov

Reviewed By: samsonov

Subscribers: samsonov, llvm-commits

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

llvm-svn: 222258

9 years ago[FastISel][AArch64] Follow-up fix for "Fix shift-immediate emission for "zero" shifts."
Juergen Ributzka [Tue, 18 Nov 2014 21:20:17 +0000 (21:20 +0000)]
[FastISel][AArch64] Follow-up fix for "Fix shift-immediate emission for "zero" shifts."

Shifts also perform sign-/zero-extends to larger types, which requires us to emit
an integer extend instead of a simple COPY.

Related to PR21594.

llvm-svn: 222257

9 years agoR600/SI: Move SIFixSGPRCopies to inst selector passes
Matt Arsenault [Tue, 18 Nov 2014 21:06:58 +0000 (21:06 +0000)]
R600/SI: Move SIFixSGPRCopies to inst selector passes

This should expose more of the actually used VALU
instructions to the machine optimization passes.

This also should help getting i1 handling into a better state.
For not entirly understood reasons, this fixes the split-scalar-i64-add.ll
test where a 64-bit add would only partially be moved to the VALU
resulting in use of undefined VCC.

llvm-svn: 222256

9 years ago[AArch64] Don't optimize all compare instructions.
Juergen Ributzka [Tue, 18 Nov 2014 21:02:40 +0000 (21:02 +0000)]
[AArch64] Don't optimize all compare instructions.

"optimizeCompareInstr" converts compares (cmp/cmn) into plain sub/add
instructions when the flags are not used anymore. This conversion is valid for
most instructions, but not all. Some instructions that don't set the flags
(e.g. sub with immediate) can set the SP, whereas the flag setting version uses
the same encoding for the "zero" register.

Update the code to also check for the return register before performing the
optimization to make sure that a cmp doesn't suddenly turn into a sub that sets
the stack pointer.

I don't have a test case for this, because it isn't easy to trigger.

llvm-svn: 222255

9 years agoFix an incorrect chain operand when expanding INSERT_VECTOR operations through the...
Owen Anderson [Tue, 18 Nov 2014 20:50:19 +0000 (20:50 +0000)]
Fix an incorrect chain operand when expanding INSERT_VECTOR operations through the stack.

Patch by Daniil Troshkov!

llvm-svn: 222254

9 years agoR600/SI: Make sure resource descriptors are always stored in SGPRs
Tom Stellard [Tue, 18 Nov 2014 20:39:39 +0000 (20:39 +0000)]
R600/SI: Make sure resource descriptors are always stored in SGPRs

llvm-svn: 222253