Tilmann Scheller
4418dda5ef
[ARM64] Disable regression tests for the old JIT.
...
Since the ARM64 backend doesn't implement support for the old JIT those tests are failing when the regression tests are run on an AArch64 host.
llvm-svn: 207530
2014-04-29 15:02:40 +00:00
Daniel Sanders
6857800b67
[mips][msa] Use CHECK-LABEL in basic_operations*.ll
...
Differential Revision: http://reviews.llvm.org/D3536
llvm-svn: 207529
2014-04-29 14:28:58 +00:00
Diego Novillo
34fc8a7c4c
Add optimization remarks to the loop unroller and vectorizer.
...
Summary:
This calls emitOptimizationRemark from the loop unroller and vectorizer
at the point where they make a positive transformation. For the
vectorizer, it reports vectorization and interleave factors. For the
loop unroller, it reports all the different supported types of
unrolling.
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D3456
llvm-svn: 207528
2014-04-29 14:27:31 +00:00
Daniel Jasper
35995679c6
clang-format: Allow single-line function in WebKit style.
...
Before:
void f() {
return; }
After:
void f() { return; }
llvm-svn: 207527
2014-04-29 14:05:20 +00:00
Joerg Sonnenberger
dd18d5b0f6
Parse and create GOT_PREL relocations.
...
llvm-svn: 207526
2014-04-29 13:42:02 +00:00
Samuel Benzaquen
20e93f39c1
Do not touch get() calls on 'this' object.
...
Summary:
These calls are part of the implementation of the smart pointer itself
and chaning it is likely to be wrong.
Example:
T& operator*() const { return *get(); }
Reviewers: djasper
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D3540
llvm-svn: 207525
2014-04-29 13:41:23 +00:00
Daniel Sanders
b3268e71e2
[mips][msa] Fix element extraction where the index is variable.
...
Summary:
This isn't supported directly so we splat the vector element and extract
the most convenient copy.
Reviewers: matheusalmeida
Reviewed By: matheusalmeida
Differential Revision: http://reviews.llvm.org/D3530
llvm-svn: 207524
2014-04-29 13:31:37 +00:00
Yaron Keren
aa0e88acbf
Updated the link to the correct URL.
...
llvm-svn: 207523
2014-04-29 13:21:05 +00:00
Rafael Espindola
b60c829a2a
Centralize the handling of the thumb bit.
...
This patch centralizes the handling of the thumb bit around
MCStreamer::isThumbFunc and makes isThumbFunc handle aliases.
This fixes a corner case, but the main advantage is having just one
way to check if a MCSymbol is thumb or not. This should still be
refactored to be ARM only, but at least now it is just one predicate
that has to be refactored instead of 3 (isThumbFunc,
ELF_Other_ThumbFunc, and SF_ThumbFunc).
llvm-svn: 207522
2014-04-29 12:46:50 +00:00
Alexey Volkov
6468f5d309
Add comments regarding isPIEDefault usage for r207520
...
Differential Revision: http://reviews.llvm.org/D2668
llvm-svn: 207521
2014-04-29 12:07:34 +00:00
Alexey Volkov
0692103653
Pass -pie to linker when generating executable on Android
...
This fixes problem with LTO on Android.
Differential Revision: http://reviews.llvm.org/D2668
llvm-svn: 207520
2014-04-29 10:25:20 +00:00
Tim Northover
aacce57d61
ARM: fix test after change to indirect symbol emission.
...
llvm-svn: 207519
2014-04-29 10:13:10 +00:00
Tim Northover
9e7782dcf3
X86: emit hidden stubs into a proper non_lazy_symbol_pointer section.
...
rdar://problem/16660411
llvm-svn: 207518
2014-04-29 10:06:10 +00:00
Tim Northover
2372301bcf
ARM: emit hidden stubs into a proper non_lazy_symbol_pointer section.
...
rdar://problem/16660411
llvm-svn: 207517
2014-04-29 10:06:05 +00:00
Zinovy Nis
487268574a
[BUG] Fix -Wunused-variable warning in Release mode. Thnx to Kostya Serebryany for pointing.
...
llvm-svn: 207516
2014-04-29 09:45:08 +00:00
Benjamin Kramer
e1ab3f062e
AArch64: Mark vector long multiplication as expand.
...
There are no patterns for this. This was already fixed for ARM64 but I forgot
to apply it to AArch64 too.
llvm-svn: 207515
2014-04-29 09:37:54 +00:00
Kostya Serebryany
dc8e551d84
fix -Wunused-variable warning in Release mode
...
llvm-svn: 207514
2014-04-29 09:33:02 +00:00
Elena Demikhovsky
299cf511c4
AVX-512: optimized a shuffle pattern to VINSERTI64x4.
...
Added intrinsics for VPERMT2PS/PD/D/Q instructions.
llvm-svn: 207513
2014-04-29 09:09:15 +00:00
Zinovy Nis
d373fec199
[OPENMP][LV][D3423] Respect Hints.Force meta-data for loops in LoopVectorizer
...
llvm-svn: 207512
2014-04-29 08:55:11 +00:00
Craig Topper
9d74a5a5f1
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves.
...
llvm-svn: 207511
2014-04-29 07:58:41 +00:00
Craig Topper
e06fc4f0ca
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. AArch64 edition
...
llvm-svn: 207510
2014-04-29 07:58:34 +00:00
Craig Topper
f85b7fc197
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. ARM64 edition
...
llvm-svn: 207509
2014-04-29 07:58:25 +00:00
Craig Topper
906c2cd2e6
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. Hexagon edition
...
llvm-svn: 207508
2014-04-29 07:58:16 +00:00
Craig Topper
6f9e59ea55
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. MSP430 edition
...
llvm-svn: 207507
2014-04-29 07:58:09 +00:00
Craig Topper
56c590af3b
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. Mips edition
...
llvm-svn: 207506
2014-04-29 07:58:02 +00:00
Craig Topper
2865c986d1
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. NVPTX edition
...
llvm-svn: 207505
2014-04-29 07:57:44 +00:00
Craig Topper
0d3fa92514
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. PowerPC edition
...
llvm-svn: 207504
2014-04-29 07:57:37 +00:00
Craig Topper
5656db4a8b
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. R600 edition
...
llvm-svn: 207503
2014-04-29 07:57:24 +00:00
Craig Topper
b0c941bebd
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. Sparc edition
...
llvm-svn: 207502
2014-04-29 07:57:13 +00:00
Craig Topper
60879a3c76
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and leave 'virtual' on some methods that are marked virtual without overriding anything and have no obvious overrides themselves. XCore edition
...
llvm-svn: 207501
2014-04-29 07:57:00 +00:00
Hao Liu
6db3410071
[ARM64]Fix a bug about incorrect operand order in an EXT instruction, which is introduced by r207485.
...
llvm-svn: 207500
2014-04-29 07:51:19 +00:00
Michael Zolotukhin
a93fec040a
Fix a typo in comment
...
llvm-svn: 207499
2014-04-29 07:35:33 +00:00
David Majnemer
35b02bc7ab
AST: Fix visibility calculation for VarTemplateSpecializationDecl
...
It is possible that a variable template specialization might not have a
VisibilityAttr attached to it while the template that it specializes
does, in fact, have one.
We should consider the template in such cases.
This fixes PR19597.
llvm-svn: 207498
2014-04-29 07:32:26 +00:00
NAKAMURA Takumi
366363dac1
Revert r207477 (and r207479), "Check -Werror options during module validation"
...
It tried to introduce cyclic dependencies. Serialization shouldn't depend on Frontend, since Frontend depends on Serialization.
llvm-svn: 207497
2014-04-29 06:58:59 +00:00
David Majnemer
846c2833ec
CodeGen: Reference temporaries inherit visibility
...
Reference temporaries inherited many properties from the variable that
they correspond to but visibility wasn't one of them.
llvm-svn: 207496
2014-04-29 06:18:53 +00:00
Simon Atanasyan
105d6abe50
[Mips] Re-order include headers.
...
llvm-svn: 207495
2014-04-29 05:46:02 +00:00
Simon Atanasyan
8de2b8fb81
[Mips] Implement emitting of R_MIPS_REL32 relocations:
...
1. Re-implement PLT entries and dynamic relocations emitting to keep PLT
and relocations table in a consistent state.
2. Initialize st_value and st_other fields for dynamic symbols table
entry if this entry corresponds to an external function which address is
taken in a non-PIC executable. In that case the st_value field holds an
address of the function's PLT entry. Also set STO_MIPS_PLT bit in the
st_other field.
llvm-svn: 207494
2014-04-29 05:21:54 +00:00
Simon Atanasyan
f293b3e52c
[Mips] 80 column.
...
llvm-svn: 207493
2014-04-29 05:21:36 +00:00
Todd Fiala
56b25f74ce
Added debugserver/llgs protocol test for output and clean exit.
...
Tests for $vCont;c program start, $O output and $W status code.
@llgs_test variant currently marked as expected fail.
llvm-svn: 207492
2014-04-29 05:01:01 +00:00
Rui Ueyama
7f4162bd06
[PECOFF] /export accepts non-decorated symbols.
...
You usually have to specify the exact name of a symbol to export it,
but for stdcall functions you can omit the @numbers suffix.
llvm-svn: 207491
2014-04-29 02:50:35 +00:00
Alex McCarthy
5bc902e8e1
Fix typo (first commit to test commit access).
...
llvm-svn: 207490
2014-04-29 02:33:58 +00:00
Adrian Prantl
c4405c87c6
Make test independent of label. Thanks to Richard Smith for catching this!
...
llvm-svn: 207489
2014-04-29 02:27:33 +00:00
Richard Smith
dfbe47650e
Run this test through instnamer to stop it failing on non-asserts clang builds.
...
llvm-svn: 207488
2014-04-29 02:18:35 +00:00
Chandler Carruth
3ab40727a7
[ADT] Make the iterator adaptor utility a touch more general by
...
requiring full control over the various parameters to the std::iterator
concept / trait thing. This is a precursor for adjusting these things to
where you can write a bidirectional iterator wrapping a random access
iterator with custom increment and decrement logic.
llvm-svn: 207487
2014-04-29 01:57:35 +00:00
Jordan Rose
bcd889730d
[analyzer] Don't crash when a construction is followed by an uninitialized variable.
...
This could happen due to unfortunate CFG coincidences.
PR19579
llvm-svn: 207486
2014-04-29 01:56:12 +00:00
Hao Liu
cf37110920
[ARM64]Fix a bug when lowering shuffle vector to an EXT instruction.
...
E.g. Mask like <-1, -1, 1, ...> will generate incorrect EXT index.
llvm-svn: 207485
2014-04-29 01:50:36 +00:00
Jordan Rose
90d09146e0
scan-build: Don't use realpath when the user provides an explicit path.
...
PR19583
llvm-svn: 207484
2014-04-29 01:37:19 +00:00
Nico Weber
f077c51a70
Revert r207482; I fail at reading IRC.
...
llvm-svn: 207483
2014-04-29 01:25:49 +00:00
Nico Weber
8af28c1e61
Let stddef.h redefine NULL if __need_NULL is set, as needed by glibc, PR12997.
...
See the bug and the cfe-commits thread "[patch] Let stddef.h redefine NULL if
__need_NULL is set" for discussion.
Fixes PR12997 and is similar to the __need_wint_t bits already in this file.
llvm-svn: 207482
2014-04-29 01:19:21 +00:00
Nick Kledzik
326254f422
Add unwind test case that checks restoring of float registers (such as on AArch64)
...
llvm-svn: 207481
2014-04-29 01:08:23 +00:00