platform/upstream/llvm.git
10 years agoGlobal merge for global symbols.
Jiangning Liu [Wed, 11 Jun 2014 06:44:53 +0000 (06:44 +0000)]
Global merge for global symbols.

This commit is to improve global merge pass and support global symbol merge.
The global symbol merge is not enabled by default. For aarch64, we need some
more back-end fix to make it really benifit ADRP CSE.

llvm-svn: 210640

10 years agoRename global-merge to enable-global-merge.
Jiangning Liu [Wed, 11 Jun 2014 06:35:26 +0000 (06:35 +0000)]
Rename global-merge to enable-global-merge.

llvm-svn: 210639

10 years agoConvert StringMapEntry::Create to use StringRef instead of start/end pointers. Simpli...
Craig Topper [Wed, 11 Jun 2014 05:35:56 +0000 (05:35 +0000)]
Convert StringMapEntry::Create to use StringRef instead of start/end pointers. Simpliies all in tree call sites. No functional change.

llvm-svn: 210638

10 years agoMS ABI: Mangle null pointer-to-member-functions compatibly
David Majnemer [Wed, 11 Jun 2014 04:55:08 +0000 (04:55 +0000)]
MS ABI: Mangle null pointer-to-member-functions compatibly

Summary:
Previously, we would mangle nullptr pointer-to-member-functions in class
templates with a mangling we invented because contemporary versions of
MSVC would crash when trying to compile such code.

However, VS "14" can successfully compile these sorts of template
instantiations.  This commit updates our mangling to be compatible with
theirs.

Reviewers: rnk

Reviewed By: rnk

Subscribers: cfe-commits

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

llvm-svn: 210637

10 years agoTry to fix the msvc build.
Rafael Espindola [Wed, 11 Jun 2014 04:41:37 +0000 (04:41 +0000)]
Try to fix the msvc build.

llvm-svn: 210636

10 years agoUses generic_category instead of system_category.
Rafael Espindola [Wed, 11 Jun 2014 04:34:41 +0000 (04:34 +0000)]
Uses generic_category instead of system_category.

Some c++ libraries (libstdc++ at least) don't seem to map to the generic
category in in the system_category's default_error_condition.

llvm-svn: 210635

10 years agoMC: add enumeration of WinEH data encoding
Saleem Abdulrasool [Wed, 11 Jun 2014 04:19:25 +0000 (04:19 +0000)]
MC: add enumeration of WinEH data encoding

Most Windows platforms use auxiliary data for unwinding.  This information is
stored in the .pdata section.  The encoding format for the data differs between
architectures and Windows variants.  Windows MIPS and Alpha use identical
formats; Alpha64 is the same with different widths.  Windows x86_64 and Itanium
share the representation.  All Windows CE entries are identical irrespective of
the architecture.  ARMv7 (Windows [NT] on ARM) has its own format.

This enumeration will become the differentiator once the windows EH emission
infrastructure is generalised, allowing us to emit the necessary unwinding
information for Windows on ARM.

llvm-svn: 210634

10 years agoMC: clang-format MCAsmInfo
Saleem Abdulrasool [Wed, 11 Jun 2014 04:19:19 +0000 (04:19 +0000)]
MC: clang-format MCAsmInfo

Apply clang-format over the header.  Reformat the docs to current LLVM style.
NFC.

llvm-svn: 210633

10 years agoCodeGen: Correct linkage of thread_local for OS X
David Majnemer [Wed, 11 Jun 2014 04:08:55 +0000 (04:08 +0000)]
CodeGen: Correct linkage of thread_local for OS X

The backing store of thread local variables is internal for OS X and all
accesses must go through the thread wrapper.

However, individual TUs may have inlined through the thread wrapper.
To fix this, give the thread wrapper functions WeakAnyLinkage.  This
prevents them from getting inlined into call-sites.

This fixes PR19989.

llvm-svn: 210632

10 years agoRemove windows_error.
Rafael Espindola [Wed, 11 Jun 2014 03:58:34 +0000 (03:58 +0000)]
Remove windows_error.

MSVC doesn't seem to provide any is_error_code_enum enumeration for the
windows errors.

Fortunately very few places in llvm have to handle raw windows errors, so
we can just construct the corresponding error_code directly.

llvm-svn: 210631

10 years agoThere is no posix_category in std, use generic_category.
Rafael Espindola [Wed, 11 Jun 2014 03:49:13 +0000 (03:49 +0000)]
There is no posix_category in std, use generic_category.

llvm-svn: 210630

10 years agoMissed these from the previous commit.
Rafael Espindola [Wed, 11 Jun 2014 03:35:50 +0000 (03:35 +0000)]
Missed these from the previous commit.

llvm-svn: 210629

10 years agoUse cast instead of assert + dyn_cast
Matt Arsenault [Wed, 11 Jun 2014 03:30:06 +0000 (03:30 +0000)]
Use cast instead of assert + dyn_cast

llvm-svn: 210628

10 years agoR600: Add helper functions.
Matt Arsenault [Wed, 11 Jun 2014 03:29:54 +0000 (03:29 +0000)]
R600: Add helper functions.

Extract these from some of my other patches, since this
is the only thing really making them dependent on each other.

llvm-svn: 210627

10 years agoInherit from error_category instead of _do_message.
Rafael Espindola [Wed, 11 Jun 2014 03:28:13 +0000 (03:28 +0000)]
Inherit from error_category instead of _do_message.

There is no std::_do_message and these classes override message anyway.

llvm-svn: 210626

10 years ago[AArch64] Add default features for CPUs on AArch64 target.
Kevin Qin [Wed, 11 Jun 2014 01:42:16 +0000 (01:42 +0000)]
[AArch64] Add default features for CPUs on AArch64 target.

For ARM target, we can use CRYPTO and CRC features if we select
cortex-a57 by '-mcpu', but for AArch64 target, it doesn't work
unless adding with '-mfpu=crypto-neon-fp-armv8'. To keep consistency
between front-end and back-end and get end-users more easier to use,
we'd better add default feature for CPUs on AArch64 target as well.

llvm-svn: 210625

10 years ago[mach-o] fix use of resolver functions to not cause duplicate sections.
Nick Kledzik [Wed, 11 Jun 2014 01:30:55 +0000 (01:30 +0000)]
[mach-o] fix use of resolver functions to not cause duplicate sections.

The previous commit uncovered a bug in the mach-o writer whereby two __text
sections were created.  But the test case did not catch that.  So I updated
the test case to run the linker a second time, reading the output of the
first pass.

llvm-svn: 210624

10 years agoUse an enum class.
Rafael Espindola [Wed, 11 Jun 2014 01:22:20 +0000 (01:22 +0000)]
Use an enum class.

llvm-svn: 210623

10 years agoCodeGen: refactor DwarfException
Saleem Abdulrasool [Wed, 11 Jun 2014 01:19:03 +0000 (01:19 +0000)]
CodeGen: refactor DwarfException

DwarfException served as a base class for exception handling directive emission.
However, this is also used by other exception models (e.g. Win64EH).  Rename
this class to EHStreamer and split it out of DwarfException.h.  NFC.

Use the opportunity to fix up some of the documentation comments to match
current LLVM style.  Also rename some functions to conform better with current
LLVM coding style.

llvm-svn: 210622

10 years agoFix pecoff/export.test on Windows.
Rui Ueyama [Wed, 11 Jun 2014 01:18:05 +0000 (01:18 +0000)]
Fix pecoff/export.test on Windows.

llvm-svn: 210621

10 years agoUse an enum class.
Rafael Espindola [Wed, 11 Jun 2014 01:09:09 +0000 (01:09 +0000)]
Use an enum class.

llvm-svn: 210620

10 years agoRemove duplicate copy of InstrItineraryData from the TargetMachine,
Eric Christopher [Wed, 11 Jun 2014 00:53:17 +0000 (00:53 +0000)]
Remove duplicate copy of InstrItineraryData from the TargetMachine,
it's already on the subtarget.

llvm-svn: 210619

10 years agoEnsure test/Misc/win32-macho.c doesn't try to write to the source tree
David Blaikie [Wed, 11 Jun 2014 00:50:07 +0000 (00:50 +0000)]
Ensure test/Misc/win32-macho.c doesn't try to write to the source tree

llvm-svn: 210618

10 years agoPR19993: don't assert/crash if a static data member is initialized by '= delete;'.
Richard Smith [Wed, 11 Jun 2014 00:49:52 +0000 (00:49 +0000)]
PR19993: don't assert/crash if a static data member is initialized by '= delete;'.

llvm-svn: 210617

10 years agoMove to a private function to initialize the subtarget dependencies
Eric Christopher [Wed, 11 Jun 2014 00:46:34 +0000 (00:46 +0000)]
Move to a private function to initialize the subtarget dependencies
so that we can use initializer lists for the AArch64 Subtarget.

llvm-svn: 210616

10 years agoPR19996: don't crash if -Wuninitialized sees a c++1y lambda init-capture.
Richard Smith [Wed, 11 Jun 2014 00:31:00 +0000 (00:31 +0000)]
PR19996: don't crash if -Wuninitialized sees a c++1y lambda init-capture.

llvm-svn: 210615

10 years agoMove to a private function to initialize the subtarget dependencies
Eric Christopher [Wed, 11 Jun 2014 00:25:19 +0000 (00:25 +0000)]
Move to a private function to initialize the subtarget dependencies
so that we can use initializer lists for the X86Subtarget.

llvm-svn: 210614

10 years agoSort includes.
Eric Christopher [Wed, 11 Jun 2014 00:25:16 +0000 (00:25 +0000)]
Sort includes.

llvm-svn: 210613

10 years ago[mach-o] add support for parsing resolver functions
Nick Kledzik [Wed, 11 Jun 2014 00:24:16 +0000 (00:24 +0000)]
[mach-o] add support for parsing resolver functions

llvm-svn: 210612

10 years agoAllow lookup into dependent bases in more places under -fms-compatibility
Reid Kleckner [Wed, 11 Jun 2014 00:01:28 +0000 (00:01 +0000)]
Allow lookup into dependent bases in more places under -fms-compatibility

We currently allow unqualified lookup for instance methods but not
static methods because we can't recover with a semantic 'this->'
insertion.

ATL headers have static methods that do unqualified lookup into
dependent base classes.  The pattern looks like:

  template <typename T> struct Foo : T {
    static int *getBarFromT() { return Bar; }
  };

Now we recover as if the user had written:

  template <typename T> struct Foo : T {
    static int *getBarFromT() { return Foo::Bar; }
  };

... which will eventually look up Bar in T at instantiation time.

Now we emit a diagnostic in both cases, and delay lookup in other
contexts where 'this' is available and refers to a class with dependent
bases.

Reviewed by: rsmith

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

llvm-svn: 210611

10 years ago[FastISel][X86] Extend support for {s|u}{add|sub|mul}.with.overflow intrinsics.
Juergen Ributzka [Tue, 10 Jun 2014 23:52:44 +0000 (23:52 +0000)]
[FastISel][X86] Extend support for {s|u}{add|sub|mul}.with.overflow intrinsics.

llvm-svn: 210610

10 years agoTeach __alignof__ to look through arrays before performing the
Richard Smith [Tue, 10 Jun 2014 23:43:44 +0000 (23:43 +0000)]
Teach __alignof__ to look through arrays before performing the
preferred-alignment transformations. Corrects alignof(T[]) to return
alignof(T) in all cases, as required by relevant standards.

llvm-svn: 210609

10 years agoRelated to PR19992: when the GNU alignof-expression extension is applied to an
Richard Smith [Tue, 10 Jun 2014 23:34:28 +0000 (23:34 +0000)]
Related to PR19992: when the GNU alignof-expression extension is applied to an
expression of array-of-unknown-bound type, don't try to complete the array
bound, and return the alignment of the element type rather than 1.

llvm-svn: 210608

10 years agoRecover from missing typenames on template args for MSVC compatibility
Reid Kleckner [Tue, 10 Jun 2014 23:29:48 +0000 (23:29 +0000)]
Recover from missing typenames on template args for MSVC compatibility

While matching a non-type template argument against a known template
type parameter we now modify the AST's TemplateArgumentLoc to assume the
user wrote typename.  Under -fms-compatibility, we downgrade our
diagnostic from an error to an extwarn.

Reviewed by: rsmith

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

llvm-svn: 210607

10 years agoUse unique_ptr for X86Subtarget pointer members.
Eric Christopher [Tue, 10 Jun 2014 23:26:47 +0000 (23:26 +0000)]
Use unique_ptr for X86Subtarget pointer members.

llvm-svn: 210606

10 years agoMove AArch64TargetLowering to AArch64Subtarget.
Eric Christopher [Tue, 10 Jun 2014 23:26:45 +0000 (23:26 +0000)]
Move AArch64TargetLowering to AArch64Subtarget.
This currently necessitates a TargetMachine for the TargetLowering
constructor and TLOF.

llvm-svn: 210605

10 years agoRevert "Clang changes to support LLVM removal of runtime multithreading"
Zachary Turner [Tue, 10 Jun 2014 23:17:11 +0000 (23:17 +0000)]
Revert "Clang changes to support LLVM removal of runtime multithreading"

This reverts r210601.

llvm-svn: 210604

10 years agoRevert "Remove support for runtime multi-threading."
Zachary Turner [Tue, 10 Jun 2014 23:15:43 +0000 (23:15 +0000)]
Revert "Remove support for runtime multi-threading."

This reverts revision r210600.

llvm-svn: 210603

10 years agoFixed gdb-remote M test length parameter, added overwrite to test.
Todd Fiala [Tue, 10 Jun 2014 23:12:28 +0000 (23:12 +0000)]
Fixed gdb-remote M test length parameter, added overwrite to test.

Initial check-in provided a nibble count instead of byte count for
the memory to write.  Fixed that.

Enhanced test to check for overwrite past the expected range of
writing to verify the correct amount is written.

llvm-svn: 210602

10 years agoClang changes to support LLVM removal of runtime multithreading
Zachary Turner [Tue, 10 Jun 2014 23:02:10 +0000 (23:02 +0000)]
Clang changes to support LLVM removal of runtime multithreading
support (llvm revision r210600).

Reviewers: rnk

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

llvm-svn: 210601

10 years agoRemove support for runtime multi-threading.
Zachary Turner [Tue, 10 Jun 2014 23:01:20 +0000 (23:01 +0000)]
Remove support for runtime multi-threading.

This patch removes the functions llvm_start_multithreaded() and
llvm_stop_multithreaded(), and changes llvm_is_multithreaded()
to return a constant value based on the value of the compile-time
definition LLVM_ENABLE_THREADS.

Previously, it was possible to have compile-time support for
threads on, and runtime support for threads off, in which case
certain mutexes were not allocated or ever acquired.  Now, if the
build is created with threads enabled, mutexes are always acquired.

A test before/after patch of compiling a very large TU showed no
noticeable performance impact of this change.

Reviewers: rnk

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

llvm-svn: 210600

10 years agoMove AArch64InstrInfo to AArch64Subtarget.
Eric Christopher [Tue, 10 Jun 2014 22:57:25 +0000 (22:57 +0000)]
Move AArch64InstrInfo to AArch64Subtarget.

llvm-svn: 210599

10 years agoRemove a method that was just replacing direct access to a member.
Eric Christopher [Tue, 10 Jun 2014 22:57:21 +0000 (22:57 +0000)]
Remove a method that was just replacing direct access to a member.

llvm-svn: 210598

10 years agolit: warn when passed invalid pathname
Hans Wennborg [Tue, 10 Jun 2014 22:51:58 +0000 (22:51 +0000)]
lit: warn when passed invalid pathname

It would previously say things like

  warning: input 'test/Frontend/foo.c' contained no tests

and have the user pull their hair trying to figure out what's wrong with that
file. This patch changes the message to the much clearer:

  warning: no such file or directory: 'test/Frontend/foo.c'

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

llvm-svn: 210597

10 years agoRemove the use of TargetMachine from X86InstrInfo.
Eric Christopher [Tue, 10 Jun 2014 22:34:31 +0000 (22:34 +0000)]
Remove the use of TargetMachine from X86InstrInfo.

llvm-svn: 210596

10 years agoMove X86RegisterInfo away from using the TargetMachine and only
Eric Christopher [Tue, 10 Jun 2014 22:34:28 +0000 (22:34 +0000)]
Move X86RegisterInfo away from using the TargetMachine and only
using the subtarget.

llvm-svn: 210595

10 years agoAdded gdb-remote test to verify M memory write.
Todd Fiala [Tue, 10 Jun 2014 22:15:56 +0000 (22:15 +0000)]
Added gdb-remote test to verify M memory write.

llvm-svn: 210594

10 years ago*Really* fix DOS newlines introduced in r210330
Reid Kleckner [Tue, 10 Jun 2014 21:35:24 +0000 (21:35 +0000)]
*Really* fix DOS newlines introduced in r210330

r210369 didn't quite catch all of them.

llvm-svn: 210593

10 years agoRemove duplicated code
Ed Maste [Tue, 10 Jun 2014 21:33:43 +0000 (21:33 +0000)]
Remove duplicated code

We preivously had two copies of ::BytesAvailable with only trivial
differences between them, and fixes have been applied to only one of
them.

Instead of duplicating the whole function, hide the FD_SET differences
behind a macro.  This leaves only one small __APPLE__-specific #if
block, and fixes ^C on non-__APPLE__ platforms.

llvm-svn: 210592

10 years agoMark a few functions noexcept.
Rafael Espindola [Tue, 10 Jun 2014 21:26:47 +0000 (21:26 +0000)]
Mark a few functions noexcept.

This reduces the difference between std::error_code and llvm::error_code.

llvm-svn: 210591

10 years agoMark a few functions noexcept.
Rafael Espindola [Tue, 10 Jun 2014 21:26:18 +0000 (21:26 +0000)]
Mark a few functions noexcept.

llvm-svn: 210590

10 years agoUse the TargetMachine on the DAG or the MachineFunction instead
Eric Christopher [Tue, 10 Jun 2014 21:25:13 +0000 (21:25 +0000)]
Use the TargetMachine on the DAG or the MachineFunction instead
of using the cached TargetMachine.

llvm-svn: 210589

10 years agoR600/SI: Emit an error when attempting to spill VGPRs v4
Tom Stellard [Tue, 10 Jun 2014 21:20:41 +0000 (21:20 +0000)]
R600/SI: Emit an error when attempting to spill VGPRs v4

I can't get VGPR spilling to work reliable, so for now just emit
an error when the register allocator tries to spill VGPRs.

v2:
  - Fix build
v3:
  - Added crash fix when spilling SPGRs
v4:
  - Use V_MOV_B32 as a dummy instruction instead of S_NOP

Patch by: Darren Powell

https://bugs.freedesktop.org/show_bug.cgi?id=75276

llvm-svn: 210588

10 years agoR600/SI: Fix a crash when spilling SGPRs
Tom Stellard [Tue, 10 Jun 2014 21:20:38 +0000 (21:20 +0000)]
R600/SI: Fix a crash when spilling SGPRs

We need to make sure only one new instruction is added when spilling
otherwise the register allocator may crash.

This fixes a crash in the game Antichamber.

https://bugs.freedesktop.org/show_bug.cgi?id=75276

llvm-svn: 210587

10 years agoTry to fix clang-hexagon-elf failure by requiring x86 support for this test.
Bob Wilson [Tue, 10 Jun 2014 21:15:17 +0000 (21:15 +0000)]
Try to fix clang-hexagon-elf failure by requiring x86 support for this test.

llvm-svn: 210586

10 years agoPR19992: alignof is permitted on an array of unknown bound.
Richard Smith [Tue, 10 Jun 2014 21:11:26 +0000 (21:11 +0000)]
PR19992: alignof is permitted on an array of unknown bound.

llvm-svn: 210585

10 years agoFix crash with x86_64-pc-win32-macho target. <rdar://problem/17235840>
Bob Wilson [Tue, 10 Jun 2014 21:07:12 +0000 (21:07 +0000)]
Fix crash with x86_64-pc-win32-macho target. <rdar://problem/17235840>

The changes in r204978 broke win32-macho targets. There were checks added for
MSVC and Itanium environments as special cases, and win32-macho needs to be
treated the same way.

llvm-svn: 210584

10 years agoRemove a redundant conditional when caching typo failures.
Kaelyn Takata [Tue, 10 Jun 2014 21:03:49 +0000 (21:03 +0000)]
Remove a redundant conditional when caching typo failures.

No functionality change.

llvm-svn: 210583

10 years agoDo not predefine __EXCEPTIONS in clang-cl (PR19977)
Hans Wennborg [Tue, 10 Jun 2014 20:46:38 +0000 (20:46 +0000)]
Do not predefine __EXCEPTIONS in clang-cl (PR19977)

Patch by Ehsan Akhgari! (Test tweak by me.)

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

llvm-svn: 210582

10 years agoAdd a LLVM_NOEXCEPT to Compiler.h.
Rafael Espindola [Tue, 10 Jun 2014 20:45:52 +0000 (20:45 +0000)]
Add a LLVM_NOEXCEPT to Compiler.h.

This will be needed for the switch to std::error_code.

llvm-svn: 210581

10 years agoWe already have a reference to the TargetMachine, use that.
Eric Christopher [Tue, 10 Jun 2014 20:39:39 +0000 (20:39 +0000)]
We already have a reference to the TargetMachine, use that.

llvm-svn: 210580

10 years agoHave isInTailCallPosition take the DAG so that we can use the
Eric Christopher [Tue, 10 Jun 2014 20:39:38 +0000 (20:39 +0000)]
Have isInTailCallPosition take the DAG so that we can use the
version of TargetLowering/Machine from there on the way to avoiding
TargetMachine in TargetLowering.

llvm-svn: 210579

10 years agoReorder includes to be sorted.
Eric Christopher [Tue, 10 Jun 2014 20:39:35 +0000 (20:39 +0000)]
Reorder includes to be sorted.

llvm-svn: 210578

10 years agofixes duplicate header installation
David Fang [Tue, 10 Jun 2014 20:26:54 +0000 (20:26 +0000)]
fixes duplicate header installation
http://llvm.org/bugs/show_bug.cgi?id=18681
Patch by Ryuta Suzuki <oroppas gmail com>

llvm-svn: 210577

10 years agowww: Fix grammar.
Tobias Grosser [Tue, 10 Jun 2014 20:18:16 +0000 (20:18 +0000)]
www: Fix grammar.

Reported-by: Jules Gagnon-Marchand <jules_gagnonm@hotmail.com>
llvm-svn: 210576

10 years agoRearrange the CHECK lines in this test to make failure more obvious.
Reid Kleckner [Tue, 10 Jun 2014 20:16:47 +0000 (20:16 +0000)]
Rearrange the CHECK lines in this test to make failure more obvious.

llvm-svn: 210575

10 years agoRevert "Patch by Ray Donnelly to print register names instead of numbers."
Reid Kleckner [Tue, 10 Jun 2014 20:16:36 +0000 (20:16 +0000)]
Revert "Patch by Ray Donnelly to print register names instead of numbers."

This reverts commit r206683.

The code was confusing SEH register numbers with DWARF register numbers.
The test case it was committed with was obviously incorrect.  The
disassembler was roundtripping '.seh_pushreg %rsi' as '.seh_pushreg
%rbp', and other exciting things.

Noticed by Vadim Chugunov.

llvm-svn: 210574

10 years agoAdded gdb-remote tests around $qSupported.
Todd Fiala [Tue, 10 Jun 2014 20:16:31 +0000 (20:16 +0000)]
Added gdb-remote tests around $qSupported.

Right now it just checks that qSupported returns at least
one recognized gdb stub feature.

llvm-svn: 210573

10 years agoFix error in tablegen when either operand of !if is an empty list.
Matt Arsenault [Tue, 10 Jun 2014 20:10:08 +0000 (20:10 +0000)]
Fix error in tablegen when either operand of !if is an empty list.

!if([Something], []) would error with "No type for list".

llvm-svn: 210572

10 years agoFix typos.
Eric Christopher [Tue, 10 Jun 2014 20:07:29 +0000 (20:07 +0000)]
Fix typos.

llvm-svn: 210571

10 years agoFix mangling of __uuidof after two levels of template instantiation
Reid Kleckner [Tue, 10 Jun 2014 20:06:25 +0000 (20:06 +0000)]
Fix mangling of __uuidof after two levels of template instantiation

llvm-svn: 210570

10 years agoR600: Use BCNT_INT for evergreen
Matt Arsenault [Tue, 10 Jun 2014 19:18:28 +0000 (19:18 +0000)]
R600: Use BCNT_INT for evergreen

llvm-svn: 210569

10 years agoR600/SI: Implement i64 ctpop
Matt Arsenault [Tue, 10 Jun 2014 19:18:24 +0000 (19:18 +0000)]
R600/SI: Implement i64 ctpop

llvm-svn: 210568

10 years agoR600/SI: Use bcnt instruction for ctpop
Matt Arsenault [Tue, 10 Jun 2014 19:18:21 +0000 (19:18 +0000)]
R600/SI: Use bcnt instruction for ctpop

llvm-svn: 210567

10 years agoUse an enum class now that they are available.
Rafael Espindola [Tue, 10 Jun 2014 19:08:21 +0000 (19:08 +0000)]
Use an enum class now that they are available.

llvm-svn: 210566

10 years agoObjective-C. Don't ignore availability attribute when
Fariborz Jahanian [Tue, 10 Jun 2014 19:02:48 +0000 (19:02 +0000)]
Objective-C. Don't ignore availability attribute when
doing Objective-C subscript access. // rdar://16842487
PR19682.

llvm-svn: 210565

10 years agoR600: Handle fcopysign
Matt Arsenault [Tue, 10 Jun 2014 19:00:20 +0000 (19:00 +0000)]
R600: Handle fcopysign

llvm-svn: 210564

10 years agoR600/SI: Handle sign_extend and zero_extend to i64 with patterns.
Matt Arsenault [Tue, 10 Jun 2014 18:54:59 +0000 (18:54 +0000)]
R600/SI: Handle sign_extend and zero_extend to i64 with patterns.

llvm-svn: 210563

10 years agoMark assign to be constepr only in c++14; can't have constexpr fns that return void...
Marshall Clow [Tue, 10 Jun 2014 18:52:57 +0000 (18:52 +0000)]
Mark assign to be constepr only in c++14; can't have constexpr fns that return void in C++11

llvm-svn: 210562

10 years agoMake the helper routines in string really be constexpr. This required a bit of refaco...
Marshall Clow [Tue, 10 Jun 2014 18:51:55 +0000 (18:51 +0000)]
Make the helper routines in string really be constexpr. This required a bit of refacoring in algorithm as well. Give them better names while we're at it. All of these are internal rotines; no visible functionality change.

llvm-svn: 210561

10 years agoA bunch of the char.traits tests were using unicode literals. #ifdef those bits out...
Marshall Clow [Tue, 10 Jun 2014 18:46:59 +0000 (18:46 +0000)]
A bunch of the char.traits tests were using unicode literals. #ifdef those bits out on c++03, since it doesn't support u"" and U "" style strings.

llvm-svn: 210560

10 years agoAdd a FIXME.
Eric Christopher [Tue, 10 Jun 2014 18:31:18 +0000 (18:31 +0000)]
Add a FIXME.

llvm-svn: 210559

10 years agoUpdate Arcanist config to point to reviews.llvm.org
David Blaikie [Tue, 10 Jun 2014 18:29:36 +0000 (18:29 +0000)]
Update Arcanist config to point to reviews.llvm.org

llvm-svn: 210558

10 years agoMove AArch64SelectionDAGInfo down to the subtarget.
Eric Christopher [Tue, 10 Jun 2014 18:21:53 +0000 (18:21 +0000)]
Move AArch64SelectionDAGInfo down to the subtarget.

llvm-svn: 210557

10 years ago[FastISel] Collect statistics about failing intrinsic calls.
Juergen Ributzka [Tue, 10 Jun 2014 18:17:00 +0000 (18:17 +0000)]
[FastISel] Collect statistics about failing intrinsic calls.

Add more instruction-specific statistics about failing intrinsic calls during
FastISel.

llvm-svn: 210556

10 years agoRemove the cached little endian variable. We can get it easily off
Eric Christopher [Tue, 10 Jun 2014 18:11:20 +0000 (18:11 +0000)]
Remove the cached little endian variable. We can get it easily off
of the DataLayout.

llvm-svn: 210555

10 years agoHave AArch64SelectionDAGInfo take a DataLayout parameter rather
Eric Christopher [Tue, 10 Jun 2014 18:06:28 +0000 (18:06 +0000)]
Have AArch64SelectionDAGInfo take a DataLayout parameter rather
than a TargetMachine.

llvm-svn: 210554

10 years agoRemove caching of the subtarget for AArch64SelectionDAGInfo.
Eric Christopher [Tue, 10 Jun 2014 18:06:25 +0000 (18:06 +0000)]
Remove caching of the subtarget for AArch64SelectionDAGInfo.

llvm-svn: 210553

10 years agoMove DataLayout onto the AArch64 subtarget.
Eric Christopher [Tue, 10 Jun 2014 18:06:23 +0000 (18:06 +0000)]
Move DataLayout onto the AArch64 subtarget.

llvm-svn: 210552

10 years agoTest commit, wraps some lines to fit in 80 columns.
Zachary Turner [Tue, 10 Jun 2014 18:03:04 +0000 (18:03 +0000)]
Test commit, wraps some lines to fit in 80 columns.

llvm-svn: 210551

10 years agoDon't inherit dll attributes to deleted methods (PR19988)
Hans Wennborg [Tue, 10 Jun 2014 17:53:23 +0000 (17:53 +0000)]
Don't inherit dll attributes to deleted methods (PR19988)

We would previously end up with an error when instantiating the
following template:

  template <typename> struct __declspec(dllimport) S {
    void foo() = delete;
  };
  S<int> s;

error: attribute 'dllimport' cannot be applied to a deleted function
llvm-svn: 210550

10 years agoMove AArch64FrameLowering into the subtarget.
Eric Christopher [Tue, 10 Jun 2014 17:44:12 +0000 (17:44 +0000)]
Move AArch64FrameLowering into the subtarget.

llvm-svn: 210549

10 years agoRemove the uses of AArch64TargetMachine and AArch64Subtarget from
Eric Christopher [Tue, 10 Jun 2014 17:33:39 +0000 (17:33 +0000)]
Remove the uses of AArch64TargetMachine and AArch64Subtarget from
AArch64FrameLowering.

llvm-svn: 210548

10 years agoObjective-C IRGen. Patch to generate a weak symbol reference when
Fariborz Jahanian [Tue, 10 Jun 2014 17:08:04 +0000 (17:08 +0000)]
Objective-C IRGen. Patch to generate a weak symbol reference when
'super' dispatches a class method in category for OBJC_METACLASS.
This is when class is a weak_import class.
// rdar://16529125

llvm-svn: 210547

10 years agoDo Materialize Floating Point in Mips Fast-Isel
Reed Kotler [Tue, 10 Jun 2014 16:45:44 +0000 (16:45 +0000)]
Do Materialize Floating Point in Mips Fast-Isel

Summary:
Implement materialize of floating point literals in Mips Fast-Isel

Reopened version of D3659

Test Plan: simplestorefp1.ll

Reviewers: dsanders

Reviewed By: dsanders

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

llvm-svn: 210546

10 years ago[X86] Improved target combine rules for selecting horizontal add/sub.
Andrea Di Biagio [Tue, 10 Jun 2014 16:42:57 +0000 (16:42 +0000)]
[X86] Improved target combine rules for selecting horizontal add/sub.

This patch slightly changes the algorithm introduced at revision 210477
to fix a problem where the algorithm was producing incorrect code for
the VEX.256 encoded versions of horizontal add/sub.

For these cases, we now try to split the two 256-bit vectors into
128-bit chunks before emitting horizontal add/sub dag nodes.

Added a new test case into haddsub-2.ll.

llvm-svn: 210545

10 years agoHexagon: Expand i1 SELECT_CC
Tom Stellard [Tue, 10 Jun 2014 16:42:41 +0000 (16:42 +0000)]
Hexagon: Expand i1 SELECT_CC

il is legal for Hexagon, so I should have marked this as Expand for
SELECT_CC when I removed setOperationAction(ISD::SELECT_CC, MVT::Other,
Expand); in r210541.

llvm-svn: 210544

10 years ago[X86] AVX512: Add vmovntdqa
Adam Nemet [Tue, 10 Jun 2014 16:39:53 +0000 (16:39 +0000)]
[X86] AVX512: Add vmovntdqa

Along with the corresponding intrinsic and tests.

llvm-svn: 210543

10 years agoFix a bug in the Thumb1 ARM Load/Store optimizer
Renato Golin [Tue, 10 Jun 2014 16:39:21 +0000 (16:39 +0000)]
Fix a bug in the Thumb1 ARM Load/Store optimizer

Previously, the basic block was searched for future uses of the base register,
and if necessary any writeback to the base register was reset using a SUB
instruction (e.g. before calling a function) just before such a use. However,
this step happened *before* the merged LDM/STM instruction was built. So if
there was (e.g.) a function call directly after the not-yet-formed LDM/STM,
the pass would first insert a SUB instruction to reset the base register,
and then (at the same location, incorrectly) insert the LDM/STM itself.

This patch fixes PR19972. Patch by Moritz Roth.

llvm-svn: 210542

10 years agoSelectionDAG: Don't use MVT::Other to determine legality of ISD::SELECT_CC
Tom Stellard [Tue, 10 Jun 2014 16:01:29 +0000 (16:01 +0000)]
SelectionDAG: Don't use MVT::Other to determine legality of ISD::SELECT_CC

The SelectionDAG bad a special case for ISD::SELECT_CC, where it would
allow targets to specify:

setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);

to indicate that they wanted to expand ISD::SELECT_CC for all types.
This wasn't applied correctly everywhere, and it makes writing new
DAG patterns with ISD::SELECT_CC difficult.

llvm-svn: 210541