- Nov 27, 2017
-
-
David Blaikie authored
llvm-svn: 319081
-
Marshall Clow authored
llvm-svn: 319080
-
Alexey Bataev authored
Initial codegen for `#pragma omp distribute parallel for simd` directive and its clauses. llvm-svn: 319079
-
Alexey Bataev authored
Added proper codegen for `distribute parallel for simd` directive. llvm-svn: 319078
-
Pirama Arumuga Nainar authored
Summary: Switch CPU names not recognized by GNU assembler to a close CPU that it does recognize. In this patch, kryo, falkor and saphira all get replaced by cortex-a57 when invoking the assembler. In addition, krait was already being replaced by cortex-a15. Reviewers: weimingz Subscribers: srhines, cfe-commits Differential Revision: https://reviews.llvm.org/D40476 llvm-svn: 319077
-
Michal Gorny authored
This breaks one of the unit tests. Need to find a good solution. llvm-svn: 319076
-
Arnold Schwaighofer authored
enum TailCallKind { TCK_None = 0, TCK_Tail = 1, TCK_MustTail = 2, TCK_NoTail = 3 }; TCK_NoTail is greater than TCK_Tail so taking the min does not do the correct thing. rdar://35639547 llvm-svn: 319075
-
Marshall Clow authored
llvm-svn: 319074
-
Adam Nemet authored
Detects whether we have the Python modules (pygments, yaml) required by opt-viewer and hooks this up to REQUIRES. This fixes https://bugs.llvm.org/show_bug.cgi?id=34129 (the lack of opt-viewer testing). It's also related to https://github.com/apple/swift/pull/12938 and the idea is to expose LLVM_HAVE_OPT_VIEWER_MODULES to the Swift cmake. Differential Revision: https://reviews.llvm.org/D40202 llvm-svn: 319073
-
Adam Nemet authored
llvm-svn: 319072
-
Jake Ehrlich authored
GNU's --strip-all doesn't strip as aggressively as it could in general. Currently llvm-objcopy copies the exact behavoir of GNU's --strip-all. eu-strip is used as a drop in replacement for GNU strip/objcopy in many many places without issue. eu-strip removes non-allocated sections and keeps .gnu.warning* sections. Because --strip-all will likely be the most widely used stripping option we should make --strip-all as aggressive as it can safely be. Since we have evidence from eu-strip that this is a safe option we should allow it. For those that might still have an issue afterwards I've added --strip-all-gnu as an exact drop in replacement for GNU's --strip-all as well. llvm-svn: 319071
-
Zachary Turner authored
The existing library assumed that a stream's length would never change. This makes some things simpler, but it's not flexible enough for what we need, especially for writable streams where what you really want is for each call to write to actually append. llvm-svn: 319070
-
Michal Gorny authored
Prevent unloading shared libraries on Linux when dlclose() is called. This is necessary since command-line option parsing API relies on registering the global option instances in the option parser instance which can be loaded in a different shared library. Given that we can't reliably remove those options when a library is unloaded, the parser ends up containing dangling references. Since glibc has relatively complex library unloading rules, some of the LLVM libraries can be unloaded while others (including the Support library) stay loaded causing quite a mayhem. To reliably prevent that, just forbid unloading all libraries -- it's a very bad idea anyway. While the issue arguably happens only with BUILD_SHARED_LIBS, it may affect any library reusing llvm::cl interface. Based on patch provided Ross Hayward on https://bugs.gentoo.org/617154. Previously hit by Fedora back in Feb 2016: https://lists.freedesktop.org/archives/mesa-dev/2016-February/107242.html Differential Revision: https://reviews.llvm.org/D40459 llvm-svn: 319069
-
Craig Topper authored
I don't believe our current lowering/combining would ever produce such a node. We only produce integer typed pshufds. llvm-svn: 319068
-
Sanjay Patel authored
llvm-svn: 319067
-
Craig Topper authored
I don't have a good test case for this at the moment. I was playing around with a change in legalizing and triggered this code to produce a PSHUFD with sse1 only. llvm-svn: 319066
-
Simon Pilgrim authored
[X86][AVX512] Tag AVX512 PACKSS/PACKUS/PMADDWD/PMADDUBSW instructions with SSE_PACK/SSE_PMADD schedule classes llvm-svn: 319065
-
Krzysztof Parzyszek authored
llvm-svn: 319064
-
Craig Topper authored
This shows several places where we fail to use masked move or blendm. llvm-svn: 319063
-
Alexander Kornienko authored
llvm-svn: 319062
-
Jonas Hahnfeld authored
mergeUseLists is implemented iteratively since r243590. Differential Revision: https://reviews.llvm.org/D40491 llvm-svn: 319061
-
Kamil Rytarowski authored
Summary: Enable for NetBSD: - MSan, - TSan, - LSan. Sponsored by <The NetBSD Foundation> Reviewers: joerg, eugenis, dvyukov, vitalybuka Reviewed By: eugenis Subscribers: srhines, mgorny, llvm-commits, #sanitizers Tags: #sanitizers Differential Revision: https://reviews.llvm.org/D40464 llvm-svn: 319060
-
Craig Topper authored
[X86] Make getSetCCResultType return vXi1 for any vXi32/vXi64 vector over 512 bits long when AVX512 is enabled. Similar for vXi16/vXi8 with BWI. Any vector larger than 512 bits will be split to 512 bits during legalization. But without this we will fold sexts with them before that making it difficult to recover leading to scalarization. llvm-svn: 319059
-
Artem Dergachev authored
We didn't support the following syntax: (std::initializer_list<int>){12} which suddenly produces CompoundLiteralExpr that contains CXXStdInitializerListExpr. Lift the assertion and instead pass the value through CompoundLiteralExpr transparently, as it doesn't add much. Differential Revision: https://reviews.llvm.org/D39803 llvm-svn: 319058
-
Ben Hamilton authored
Summary: We want to automatically copy the appropriate mailing list for review requests to the polly repository. For context, see the proposal and discussion here: http://lists.llvm.org/pipermail/cfe-dev/2017-November/056032.html Similar to D40179, I set up a new Diffusion repository with callsign "PLO" for polly: https://reviews.llvm.org/source/polly/ This explicitly updates polly's .arcconfig to point to the new C repository in Diffusion, which will let us use Herald rule H270. llvm-svn: 319056
-
Artem Dergachev authored
We were crashing whenever a C++ pointer-to-member was taken, that was pointing to a member of an anonymous structure field within a class, eg. struct A { struct { int x; }; }; // ... &A::x; Differential Revision: https://reviews.llvm.org/D39800 llvm-svn: 319055
-
Simon Pilgrim authored
llvm-svn: 319054
-
Ben Hamilton authored
Summary: We want to automatically copy cfe-commits@ on review requests to the clang repository. Similar to D40179, I set up a new Diffusion repository with callsign "C" for clang: https://reviews.llvm.org/source/clang/ This explicitly updates clang's .arcconfig to point to the new C repository in Diffusion, which will let us use Herald rule H268. Reviewers: klimek, sammccall Reviewed By: klimek Subscribers: dlj, bkramer Differential Revision: https://reviews.llvm.org/D40494 llvm-svn: 319052
-
Rafael Espindola authored
We were not testing that we correctly handled a .o with a weak symbol after a .so. llvm-svn: 319051
-
Dmitry Preobrazhensky authored
See bug 35433: https://bugs.llvm.org/show_bug.cgi?id=35433 Differential Revision: https://reviews.llvm.org/D40493 Reviewers: artem.tamazov, SamWot, arsenm llvm-svn: 319050
-
Zaara Syeda authored
This patch extends on to rL307174 to not use the power9 vector extract with variable index instructions when extracting word element 1. For such cases, the existing selection of MFVSRWZ provides a better sequence. Differential Revision: https://reviews.llvm.org/D38287 llvm-svn: 319049
-
Pavel Labath authored
This was a temporary thing, until llvm has proper support for formatting time. That time has come, so we can remove the relevant code. There should be no change in the format of the time. llvm-svn: 319048
-
Fangrui Song authored
Reviewers: dberris Differential Revision: https://reviews.llvm.org/D40461 llvm-svn: 319047
-
Alexey Bataev authored
constructs, NFC. Improved handling of cancel|cancellation point directives inside target-based for directives. llvm-svn: 319046
-
Simon Pilgrim authored
llvm-svn: 319045
-
Jonas Devlieghere authored
DWARF4 relative DW_AT_high_pc values are now displayed as absolute addresses. The relative value is only shown when explicitly dumping the forms, i.e. in show-form or verbose mode. ``` DW_AT_low_pc (0x0000000000000049) DW_AT_high_pc (0x00000019) ``` becomes ``` DW_AT_low_pc (0x0000000000000049) DW_AT_high_pc (0x0000000000000062) ``` Differential revision: https://reviews.llvm.org/D40317 rdar://35416943 llvm-svn: 319044
-
Sanjay Patel authored
llvm-svn: 319043
-
Marshall Clow authored
llvm-svn: 319042
-
Sanjay Patel authored
This is a superset of the tests proposed with D40012 to show another potential improvement. llvm-svn: 319041
-
Ben Hamilton authored
Summary: This is mainly a test diff to check the new Herald rule I added in LLVM Phabricator to automatically Cc: cfe-commits on all clang-tools-extra diffs. Reviewers: Wizard, hokein, klimek Reviewed By: Wizard Subscribers: dlj, bkramer, sammccall Differential Revision: https://reviews.llvm.org/D40180 llvm-svn: 319040
-