Alexey Samsonov
05747f3734
Fix use-after-free in PPCallbacksTest detected by ASan bootstrap bot
...
llvm-svn: 192572
2013-10-14 07:13:59 +00:00
Carlo Kok
7438912fb8
Set the architecture from the remote executable when it's not set so the register info can be loaded properly (and thus the callstacks work)
...
llvm-svn: 192571
2013-10-14 07:09:13 +00:00
Andy Gibbs
d9ba47271d
Fixed "ArgSize may be used uninitialised" error when compiling with gcc.
...
llvm-svn: 192570
2013-10-14 07:02:04 +00:00
Dmitry Vyukov
abc416f326
tsan: allow to override OnFinalize() in front-ends that does not support weak functions (Go)
...
llvm-svn: 192569
2013-10-14 06:31:03 +00:00
Craig Topper
d7abdb6f12
Create classes to reduce the size of the tablegen entries for the CRC32 instructions.
...
llvm-svn: 192568
2013-10-14 05:19:58 +00:00
Craig Topper
a422b09ae3
Allow pinsrw/pinsrb/pextrb/pextrw/movmskps/movmskpd/pmovmskb/extractps instructions to parse either GR32 or GR64 without resorting to duplicating instructions.
...
llvm-svn: 192567
2013-10-14 04:55:01 +00:00
Craig Topper
4432208884
Add disassembler support for SSE4.1 register/register form of PEXTRW. There is a shorter encoding that was part of SSE2, but a memory form was added in SSE4.1. This is the register form of that encoding.
...
llvm-svn: 192566
2013-10-14 01:42:32 +00:00
Craig Topper
7158745e55
Mark MOVMSKPS/MOVMSKPD/VPINSRWrr64i as AsmParserOnly to remove them from the disassembler tables. Add PINSRWrr64i to complement the AVX version.
...
llvm-svn: 192565
2013-10-14 01:21:22 +00:00
David Majnemer
93fdc3fabf
Windows: Fix a typo in an assert
...
llvm-svn: 192564
2013-10-14 01:17:32 +00:00
Alexander Kornienko
e2e0387f3e
Keep track of indentation levels in static initializers for correct indentation with tabs.
...
Summary:
Store IndentationLevel in ParentState and use it instead of the
Line::Level when indening.
Also fixed incorrect indentation level calculation in formatFirstToken.
Reviewers: djasper
Reviewed By: djasper
CC: cfe-commits, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D1797
llvm-svn: 192563
2013-10-14 00:46:35 +00:00
Craig Topper
c4a5a3f65d
Don't use 64-bit versions of MOVMSKPD in CodeGen. The instructions only produce a 1-bit result so we can just use SUBREG_TO_REG to extend the 32-bit versions.
...
llvm-svn: 192562
2013-10-14 00:24:33 +00:00
David Majnemer
7af18578f8
Windows: Don't bother with pinning Kernel32.dll
...
We don't delay load it so it shouldn't be going anywhere.
llvm-svn: 192561
2013-10-14 00:06:58 +00:00
Richard Smith
d46d6dea68
Merge common pointers for redeclarations of the same template across modules.
...
llvm-svn: 192560
2013-10-13 23:50:45 +00:00
Richard Smith
f39720b26e
Don't get confused by a virt-specifier after a trailing-return-type - it's not
...
an accidentally-included name for the declarator.
llvm-svn: 192559
2013-10-13 22:12:28 +00:00
Will Dietz
5357df6290
MC: Don't assume incoming StringRef's are null terminated.
...
This can happen when processing command line arguments, which
are often stored as std::string's and later turned into
StringRef's via std::string::data(). Unfortunately this
is not guaranteed to return a null-terminated string
until C++11, causing breakage on platforms that don't do this.
llvm-svn: 192558
2013-10-13 22:09:26 +00:00
Vincent Lejeune
d6cbede9c5
R600: improve dump of S_WAITCNT
...
llvm-svn: 192557
2013-10-13 17:56:28 +00:00
Vincent Lejeune
4ee6dd6136
R600/SI: Add SinkingPass before ISel
...
llvm-svn: 192556
2013-10-13 17:56:21 +00:00
Vincent Lejeune
d623644d17
R600/SI: Support byval arguments
...
llvm-svn: 192555
2013-10-13 17:56:16 +00:00
Vincent Lejeune
fa58a5fb60
R600: Use masked read sel for texture instructions
...
llvm-svn: 192554
2013-10-13 17:56:10 +00:00
Vincent Lejeune
301beb80d4
R600: fix swizzle export
...
llvm-svn: 192553
2013-10-13 17:56:04 +00:00
Vincent Lejeune
533352f696
R600: Clear the VPM bit of export instructions.
...
It makes apparently no change it to set this bit or not but the
docs recommand to left it cleared.
llvm-svn: 192552
2013-10-13 17:55:57 +00:00
Benjamin Kramer
e28815758e
Fix typo: inccrementally
...
llvm-svn: 192551
2013-10-13 12:02:16 +00:00
David Majnemer
a5732844a6
Windows: Use GetModuleHandleEx instead of LoadLibrary
...
We were using an anti-pattern of:
- LoadLibrary
- GetProcAddress
- FreeLibrary
This is problematic because of several reasons:
- We are holding on to pointers into a library we just unloaded.
- Calling LoadLibrary results in an increase in the reference count of
the library in question and any libraries that it depends on and
so-on and so-forth. This is none too quick.
Instead, use GetModuleHandleEx with GET_MODULE_HANDLE_EX_FLAG_PIN. This
is done because because we didn't bring the reference for the library
into existence and therefor shouldn't count on it being around later.
llvm-svn: 192550
2013-10-13 10:34:21 +00:00
Will Dietz
ae726a93e3
TargetLowering: Don't index into empty string.
...
(This is triggered by current lit tests)
llvm-svn: 192549
2013-10-13 03:08:49 +00:00
Marshall Clow
9f21325ac7
Patch from GM to make more implicit bools explicit since we can't stop MSVC warning about this in headers and to warn is the MSVC default. No functionality change.
...
llvm-svn: 192548
2013-10-13 01:02:45 +00:00
Ismail Pazarbasi
8d0f2f3ae3
Relax header guard mismatch warning with edit distance heuristic.
...
If the edit distance between the two macros is more than 50%, DefinedMacro may not be header guard or can be header guard of another header file or it might be defining something completely different set by the build environment.
llvm-svn: 192547
2013-10-12 23:17:37 +00:00
Marshall Clow
96bb15f464
Updated status of issues and features
...
llvm-svn: 192546
2013-10-12 22:57:58 +00:00
Marshall Clow
c3776b1ce0
LWG Issue 2087: iostream_category() and noexcept
...
llvm-svn: 192545
2013-10-12 22:49:56 +00:00
Marshall Clow
d58daf9433
LWG Issue 2097: packaged_task constructors should be constrained
...
llvm-svn: 192544
2013-10-12 22:49:17 +00:00
Manuel Klimek
b212f3baa1
Automatically munch semicolons after blocks.
...
While it is mostly a user error to have the extra semicolon,
formatting it graciously will correctly format in the cases
where we do not fully understand the code (macros).
llvm-svn: 192543
2013-10-12 22:46:56 +00:00
Will Dietz
0b48c738e6
yaml2coff/elf: Touchup for compatibility.
...
* std::string::append(int, int) can be ambiguous.
* std::vector<>::data() is a C++11 feature, use ArrayRef abstraction.
llvm-svn: 192542
2013-10-12 21:29:16 +00:00
Ismail Pazarbasi
ebcc0a004b
Reverted Test commit; added new line to the end of README.txt
...
llvm-svn: 192541
2013-10-12 20:43:36 +00:00
Ismail Pazarbasi
cdc244bcd8
Test commit; added new line to the end of README.txt
...
llvm-svn: 192540
2013-10-12 20:42:31 +00:00
Marshall Clow
f28fd284f8
LWG issue 2143: ios_base::xalloc should be thread-safe
...
llvm-svn: 192539
2013-10-12 19:13:52 +00:00
Marshall Clow
8de32cb3dc
Implement national body comment GB9: remove std::gets
...
llvm-svn: 192538
2013-10-12 19:09:47 +00:00
Arnold Schwaighofer
58864d2d5f
SLPVectorizer: Sort PHINodes based on their opcode
...
Before this patch we relied on the order of phi nodes when we looked for phi
nodes of the same type. This could prevent vectorization of cases where there
was a phi node of a second type in between phi nodes of some type.
This is important for vectorization of an internal graphics kernel. On the test
suite + external on x86_64 (and on a run on armv7s) it showed no impact on
either performance or compile time.
radar://15024459
llvm-svn: 192537
2013-10-12 18:56:27 +00:00
Tobias Grosser
5cff1e2d78
LoopVectorize: Add missing INITIALIZE_PASS_DEPENDENCY macros
...
Contributed-by: Peter Zotov <whitequark@whitequark.org>
llvm-svn: 192536
2013-10-12 18:29:15 +00:00
Daniel Jasper
53bd167c60
clang-format: Fix assertion on unterminated #ifs.
...
llvm-svn: 192535
2013-10-12 13:32:56 +00:00
Alexey Samsonov
7f5823844a
[Sanitizer] Remove StackTrace::max_depth field
...
llvm-svn: 192534
2013-10-12 12:40:47 +00:00
Alexey Samsonov
c129e65661
[Sanitizer] Turn GetStackTrace() into StackTrace::Unwind()
...
llvm-svn: 192533
2013-10-12 12:23:00 +00:00
Benjamin Kramer
f016258068
Force a CPU on test so it doesn't depend on microarchitectural scheduling decisions.
...
llvm-svn: 192532
2013-10-12 11:17:12 +00:00
Pekka Jaaskelainen
1db1da25bf
Callback support for OpenCL extension pragmas.
...
Patch from Rami Ylimäki and Mikael Lepistö!
llvm-svn: 192531
2013-10-12 09:29:48 +00:00
Tobias Grosser
4f8c0877e8
This test case requires assertions
...
llvm-svn: 192530
2013-10-12 09:15:56 +00:00
Bill Wendling
58463e4e83
Update so that it uses the `-V' command line option and supports Python 3.x.
...
llvm-svn: 192527
2013-10-12 08:42:59 +00:00
Craig Topper
88adf2a49c
Remove more filters from the disassembler. Mark some AVX512 instructions as CodeGenOnly.
...
llvm-svn: 192525
2013-10-12 05:41:08 +00:00
Daniel Jasper
fba84ff00d
clang-format: No space in "<::" in C++11 mode.
...
llvm-svn: 192524
2013-10-12 05:16:06 +00:00
Tom Stellard
ed69925998
R600: Store disassembly in a special ELF section when feature +DumpCode is enabled.
...
Patch by: Jay Cornwall
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
llvm-svn: 192523
2013-10-12 05:02:51 +00:00
Craig Topper
aab53e7785
Mark some more instructions as CodeGenOnly. Remove filters from the disassembler.
...
llvm-svn: 192522
2013-10-12 04:46:18 +00:00
Nick Lewycky
9f70940476
Add missing flags -fexpensive-optimizations and -minline-all-stringops as noops.
...
llvm-svn: 192521
2013-10-12 04:24:31 +00:00
Reed Kotler
de64774b4d
For Mips16, start to consolidate all forms of 32 bit literal loading so that
...
they can be better handled and optimized in the Mips16 constant island code.
llvm-svn: 192520
2013-10-12 02:19:08 +00:00