- Oct 26, 2016
-
-
Craig Topper authored
Summary: Clang's intrinsic header currently tries to negate the third operand of a vfmadd mask3 in order to create vfmsub, but this fails isel. This patch adds scalar vfmsub and vfnmsub mask3 that we can use instead to avoid the negate. This is consistent with the packed instructions. Reviewers: igorb, delena Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D25933 llvm-svn: 285173
-
Jason Molenda authored
generation macosx/ios/tvos/watchos. llvm-svn: 285172
-
Dean Michael Berris authored
llvm-svn: 285171
-
Dean Michael Berris authored
llvm-svn: 285170
-
Rui Ueyama authored
llvm-svn: 285169
-
Dean Michael Berris authored
llvm-svn: 285168
-
Dean Michael Berris authored
llvm-svn: 285167
-
Dean Michael Berris authored
llvm-svn: 285166
-
Dean Michael Berris authored
Usage: llvm-xray extract <object file> [-o <filename or '-'>] The tool gets the XRay instrumentation map from an object file and turns it into YAML. We first support ELF64 sleds on x86_64 binaries, with provision for supporting other supported platforms and formats later. This is the first of a many-part change to fully implement the `llvm-xray` tool. We also define a subcommand registration and dispatch mechanism to be used by other further subcommand implementations for llvm-xray. Diffusion Revision: https://reviews.llvm.org/D21987 llvm-svn: 285165
-
Rui Ueyama authored
llvm-svn: 285164
-
Rui Ueyama authored
This is in sync with what clang does. llvm-svn: 285163
-
Rui Ueyama authored
Not all echo commands support "-e". llvm-svn: 285162
-
Peter Collingbourne authored
llvm-svn: 285161
-
Richard Smith authored
class template specialization and that specialization has attributes. llvm-svn: 285160
-
Vitaly Buka authored
Summary: rsmith Differential Revision: https://reviews.llvm.org/D25665 llvm-svn: 285159
-
Vitaly Buka authored
Summary: D24693 will need access to it from other places Reviewers: eugenis Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D24695 llvm-svn: 285158
-
Kostya Serebryany authored
llvm-svn: 285157
-
Dean Michael Berris authored
Reverts r285155 -- misconfigured tests. llvm-svn: 285156
-
Dean Michael Berris authored
Usage: llvm-xray extract <object file> [-o <filename or '-'>] The tool gets the XRay instrumentation map from an object file and turns it into YAML. We first support ELF64 sleds on x86_64 binaries, with provision for supporting other supported platforms and formats later. This is the first of a many-part change to fully implement the `llvm-xray` tool. We also define a subcommand registration and dispatch mechanism to be used by other further subcommand implementations for llvm-xray. llvm-svn: 285155
-
Richard Smith authored
llvm-svn: 285154
-
Jim Ingham authored
Next to fix it! llvm-svn: 285153
-
Richard Smith authored
headers. We previously got this check backwards and treated the wrapper header as being textual. This is important because our wrapper headers sometimes inject macros into the system headers that they #include_next, and sometimes replace them entirely. llvm-svn: 285152
-
Rui Ueyama authored
Not all echo commands support "-e". On the other hand, printf command is in POSIX, so it's more portable than "echo -e". llvm-svn: 285151
-
Richard Smith authored
This has the following ABI impact: 1) Functions whose parameter or return types are non-throwing function pointer types have different manglings in c++1z mode from prior modes. This is necessary because c++1z permits overloading on the noexceptness of function pointer parameter types. A warning is issued for cases that will change manglings in c++1z mode. 2) Functions whose parameter or return types contain instantiation-dependent exception specifications change manglings in all modes. This is necessary to support overloading on / SFINAE in these exception specifications, which a careful reading of the standard indicates has essentially always been permitted. Note that, in order to be affected by these changes, the code in question must specify an exception specification on a function pointer/reference type that is written syntactically within the declaration of another function. Such declarations are very rare, and I have so far been unable to find any code that would be affected by this. (Note that such things will probably become more common in C++17, since it's a lot easier to get a noexcept function type as a function parameter / return type there.) This change does not affect the set of symbols produced by a build of clang, libc++, or libc++abi. llvm-svn: 285150
-
Rafael Espindola authored
llvm-svn: 285149
-
Rafael Espindola authored
Instead of storing a pointer, store the members we need. The reason for doing this is that it makes it far easier to create synthetic sections. It also avoids reading data from files multiple times., which might help with cross endian linking and host architectures with slow unaligned access. There are obvious compacting opportunities, but this already has mixed results even on native x86_64 linking. There is also the possibility of better refactoring the code for handling common symbols, but this already shows that a custom class is not necessary. llvm-svn: 285148
-
Kostya Serebryany authored
llvm-svn: 285147
-
Kostya Serebryany authored
llvm-svn: 285145
-
Douglas Katzman authored
llvm-svn: 285144
-
Evgeniy Stepanov authored
llvm-svn: 285143
-
Kostya Serebryany authored
llvm-svn: 285142
-
Lang Hames authored
llvm-svn: 285141
-
Douglas Katzman authored
llvm-svn: 285140
-
Lang Hames authored
llvm-svn: 285138
-
Lang Hames authored
llvm-svn: 285137
-
Lang Hames authored
Thanks to Pete Cooper for the review. llvm-svn: 285136
-
Kostya Serebryany authored
llvm-svn: 285135
-
Lang Hames authored
llvm-svn: 285134
-
Lang Hames authored
llvm-svn: 285133
-
Bob Haarman authored
Summary: Fixes PR28281. MSVC lists indirect virtual base classes in the field list of a class. This change makes Clang emit the information necessary for LLVM to emit such records. Reviewers: rnk, ruiu, zturner Differential Revision: https://reviews.llvm.org/D25579 llvm-svn: 285132
-