- Apr 04, 2018
-
-
Lei Huang authored
Legalize and emit code for the following quad-precision fma: * xsmaddqp * xsnmaddqp * xsmsubqp * xsnmsubqp Differential Revision: https://reviews.llvm.org/D44843 llvm-svn: 329206
-
Petr Hosek authored
This expands the CMake check to handle both statically and dynamically linked version of libc++abi and libunwind and matches the implemnetation used elsewhere in LLVM. Differential Revision: https://reviews.llvm.org/D45242 llvm-svn: 329205
-
Kostya Kortchinsky authored
Summary: The purpose of this set of changes is to separate stackframe/symbolizer support into their own RT within sanitizer_common. Sanitizers with no use for those could then be built without the extraneous dependencies pulled in by the default visibility interface functions. I am aiming to do small changes for specific platforms. In this one, we split the unwind functions from sanitizer_win.cc into their own sanitizer_unwind_win.cc. Reviewers: alekseyshl, rnk Reviewed By: alekseyshl, rnk Subscribers: delcypher, #sanitizers, kubamracek, mgorny, llvm-commits Differential Revision: https://reviews.llvm.org/D44799 llvm-svn: 329204
-
George Rimar authored
isPicRel is used to check if we want to create the dynamic relocations. Not all of the dynamic relocations we create are passing through this check, but those that are, probably better be whitelisted. Differential revision: https://reviews.llvm.org/D45252 llvm-svn: 329203
-
Pavel Labath authored
Some compilers do not like having an enum type and a variable with the same name (AccelTableKind). I rename the variable to TheAccelTableKind. Suggestions for a better name welcome. llvm-svn: 329202
-
Pavel Labath authored
- MSVC was not OK with a static_assert referencing a non-static member variable, even though it was just in a sizeof(expression). I move the assert into the emit function, where it is probably more useful. - Tests were failing in builds which did not have the X86 target configured. Since this functionality is not target-specific, I have removed the target specifiers from the .ll files. llvm-svn: 329201
-
Clement Courbet authored
These are failing on clang-ppc64le-linux-lnt, though the subdirectory is not even supposed to be built in CMakeLists. Disable the tests until we understand what's going on. llvm-svn: 329200
-
Jan Korous authored
Following Eric's patch. llvm-svn: 329199
-
Roman Lebedev authored
Summary: See [[ https://bugs.llvm.org/show_bug.cgi?id=36950 | PR36950 ]], [[ https://bugs.llvm.org/show_bug.cgi?id=17564 | PR17564 ]], D45065, D45108 Reviewers: spatel, craig.topper Reviewed By: spatel Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D45107 llvm-svn: 329198
-
Dmitry Preobrazhensky authored
See bug 36958: https://bugs.llvm.org/show_bug.cgi?id=36958 Differential Revision: https://reviews.llvm.org/D45099 Reviewers: artem.tamazov, arsenm, timcorringham llvm-svn: 329197
-
Simon Pilgrim authored
llvm-svn: 329196
-
Clement Courbet authored
The tests fail on clang-x86-windows-msvc2015: unknown file: error: SEH exception with code 0x3221225477 thrown in the test body. llvm-svn: 329195
-
Jan Korous authored
llvm-svn: 329194
-
Clement Courbet authored
llvm-svn: 329193
-
Simon Pilgrim authored
llvm-svn: 329192
-
Nico Weber authored
llvm-svn: 329191
-
Nico Weber authored
llvm-svn: 329190
-
Dean Michael Berris authored
Summary: This is D45125; the patch enables the build of XRay on OpenBSD. We also introduce some OpenBSD specific changes to the runtime implementation, involving how we get the TSC rate through the syscall interface specific to OpenBSD. Reviewers: dberris Authored by: devnexen Subscribers: dberris, mgorny, krytarowski, llvm-commits Differential Revision: https://reviews.llvm.org/D45125 llvm-svn: 329189
-
Tim Corringham authored
Summary: This is a first version of the AMDPAL code conventions. Further updates will undoubtably be required to fully document AMDPAL. Subscribers: nhaehnle, llvm-commits Differential Revision: https://reviews.llvm.org/D45246 llvm-svn: 329188
-
Dmitry Preobrazhensky authored
See bug 35999: https://bugs.llvm.org/show_bug.cgi?id=35999 Differential Revision: https://reviews.llvm.org/D45084 Reviewers: artem.tamazov, arsenm, timcorringham llvm-svn: 329187
-
Nico Weber authored
llvm-svn: 329186
-
Clement Courbet authored
llvm-svn: 329185
-
Nico Weber authored
llvm-svn: 329184
-
Dean Michael Berris authored
Summary: This patch was originally reviewed in D45126. It enables clang to add the XRay runtime and the link-time dependencies for XRay instrumentation in OpenBSD. Landing for devnexen. Reviewers: brad, dberris Subscribers: dberris, krytarowski, cfe-commits Author: devnexen Differential Revision: https://reviews.llvm.org/D45126 llvm-svn: 329183
-
Alexander Kornienko authored
The tests will be more discoverable with proper names. llvm-svn: 329182
-
Nico Weber authored
Makes it easier to see mistakes such as the one fixed in r329178 and makes the different target CMakeLists more consistent. Also remove some stale-looking comments from the Nios2 target cmakefile. No intended behavior change. llvm-svn: 329181
-
George Rimar authored
llvm-svn: 329180
-
Pavel Labath authored
Summary: This patch adds a DwarfAccelTableEmitter class, which generates an accelerator table, as specified in DWARF v5 standard. At the moment it only generates a DIE offset column and (if we are indexing more than one compile unit) a CU column. Indexing type units is not currently supported, as we don't even have the ability to generate DWARF v5-compatible compile units. The implementation is not data-source agnostic like the one generating apple tables. This was not necessary as we currently only have one user of this code, and without a second user it was not obvious to me how to best abstract this. (The difference between these tables and the apple ones is that they need a lot more metadata about the debug info they are indexing). The generation is triggered by the --accel-tables argument, which supersedes the --dwarf-accel-tables arg -- the latter was a simple on-off switch, but not we can choose between two kinds of accelerator tables we can generate. This is tested by parsing the generated tables with llvm-dwarfdump and the DWARFVerifier, and I've also checked that GNU readelf is able to make sense of the tables. Differential Revision: https://reviews.llvm.org/D43286 llvm-svn: 329179
-
Nico Weber authored
They were added in r285274, in what looks like a merge mishap. AVRGenMCCodeEmitter.inc is the only non-dupe tablegen invocation added in that revision. Also sort the tablegen lines to make this easier to spot in the future. llvm-svn: 329178
-
Clement Courbet authored
available. llvm-svn: 329177
-
Clement Courbet authored
YAMLTraits does not know how to serialize `size_t` portably. Use `int` instead. llvm-svn: 329176
-
Clement Courbet authored
llvm-svn: 329175
-
Clement Courbet authored
llvm-svn: 329174
-
Andrea Di Biagio authored
This patch moves most of the logic from EmitExtraProcessorInfo to a couple of helper functions. No functional change intended. llvm-svn: 329173
-
Clement Courbet authored
llvm-svn: 329172
-
Clement Courbet authored
default initialization of an object of const type 'const llvm::DebugLoc' requires a user-provided default constructor. llvm-svn: 329171
-
Benjamin Kramer authored
llvm-svn: 329170
-
Clement Courbet authored
Fixed to depend on and initialize the native target instead of X86. llvm-svn: 329169
-
Simon Pilgrim authored
llvm-svn: 329168
-
Simon Dardis authored
When libcxx is built in tree for a host which requires libatomic, LLVM's configuration steps will determine it is required and add it to CMAKE_REQUIRED_LIBRARIES. When libcxx is later configured, it tests if it has C++ atomics without libatomic. The test erroneously passes as libatomic is already part of the set of required libraries. In turn, a number of the atomic tests will fail as they require libatomic but the test suite is configured not to use libatomic. Address this by always dropping libatomic from the set of required libraries before determining if LIBCXX_HAVE_CXX_ATOMICS_WITHOUT_LIB is true, then restoring the set of required libraries. Reviewers: EricWF Differential Revision: https://reviews.llvm.org/D43509 llvm-svn: 329167
-