- Jan 03, 2019
-
-
Nico Weber authored
It was added in r257236 but then the one use was removed in r309517. Since no test should call %host_cc, remove the pattern. Differential Revision: https://reviews.llvm.org/D56200 llvm-svn: 350348
-
Adrian Prantl authored
llvm-svn: 350347
-
Adrian Prantl authored
llvm-svn: 350346
-
Stefan Granitz authored
This reverts commit r350290. llvm-svn: 350345
-
Stefan Granitz authored
This reverts commit r350296. llvm-svn: 350344
-
Jordan Rupprecht authored
llvm-svn: 350343
-
Kristina Brooks authored
Use report_fatal_error in MCStreamer::EmitRawTextImpl instead of using errs() and explain the rationale behind it not being llvm_unreachable() to save confusion for any future maintainers. Differential Revision: https://reviews.llvm.org/D56245 llvm-svn: 350342
-
Armando Montanez authored
Follow up for D53051 This patch introduces the tool associated with the ELF implementation of TextAPI (previously llvm-tapi, renamed for better distinction). This tool will house a number of features related to enalysis and manipulation of shared object's exposed interfaces. The first major feature for this tool is support for producing binary stubs that are useful for compile-time linking of shared objects. This patch introduces beginnings of support for reading binary ELF objects to work towards that goal. Added: - elfabi tool. - support for reading architecture from a binary ELF file into an ELFStub. - Support for writing .tbe files. Differential Revision: https://reviews.llvm.org/D55352 llvm-svn: 350341
-
Nico Weber authored
This makes the target name consistent with how all the other unit tests are named. Differential Revision: https://reviews.llvm.org/D56216 llvm-svn: 350339
-
Sanjay Patel authored
llvm-svn: 350338
-
Jordan Rupprecht authored
llvm-svn: 350337
-
Jordan Rupprecht authored
[llvm-objcopy][ELF] Implement a mutable section visitor that updates size-related fields (Size, EntrySize, Align) before layout. Summary: Fix EntrySize, Size, and Align before doing layout calculation. As a side cleanup, this removes a dependence on sizeof(Elf_Sym) within BinaryReader, so we can untemplatize that. This unblocks a cleaner implementation of handling the -O<format> flag. See D53667 for a previous attempt. Actual implementation of the -O<format> flag will come in an upcoming commit, this is largely a NFC (although not _totally_ one, because alignment on binary input was actually wrong before). Reviewers: jakehehrlich, jhenderson, alexshap, espindola Reviewed By: jhenderson Subscribers: emaste, arichardson, llvm-commits Differential Revision: https://reviews.llvm.org/D56211 llvm-svn: 350336
-
Anna Thomas authored
NFC: This adds the dom tree verification under debug mode at a point just before we start unrolling the loop. This allows us to verify dom tree at a state where it is much smaller and before the unrolling actually happens. This also implies we do not need to run -verify-dom-info everytime to see if the DT is in a valid state when we transform the loop for runtime unrolling. llvm-svn: 350334
-
Evandro Menezes authored
Add new scheduling predicates to identify the ASIMD loads and stores using the post indexed addressing mode. llvm-svn: 350332
-
Serge Guelton authored
Update documentation and shebang. Differential Revision: https://reviews.llvm.org/D56252 llvm-svn: 350327
-
Serge Guelton authored
In Python2 next() is used wile it's __next__ in Python3. Differential Revision: https://reviews.llvm.org/D56250 llvm-svn: 350326
-
Simon Pilgrim authored
We were only testing costs for legal source vector element counts llvm-svn: 350323
-
Andrea Di Biagio authored
llvm-svn: 350322
-
Alex Bradbury authored
This matches GNU assembler behaviour. llvm-svn: 350321
-
Serge Guelton authored
Differential Revision: https://reviews.llvm.org/D56258 llvm-svn: 350320
-
Serge Guelton authored
Rely on numbers.Integral instead of int/long Differential Revision: https://reviews.llvm.org/D56262 llvm-svn: 350316
-
Serge Guelton authored
Differential Revision: https://reviews.llvm.org/D56261 llvm-svn: 350315
-
Serge Guelton authored
Use portable `in` operator instead of `has_key(...)` method. Differential Revision: https://reviews.llvm.org/D56260 llvm-svn: 350314
-
Serge Guelton authored
Differential Revision: https://reviews.llvm.org/D56259 llvm-svn: 350313
-
Serge Guelton authored
Always use `items()` and introduce extra `list(...)` call when needed. Differential Revision: https://reviews.llvm.org/D56257 llvm-svn: 350312
-
Serge Guelton authored
Differential Revision: https://reviews.llvm.org/D56256 llvm-svn: 350311
-
Serge Guelton authored
Differential Revision: https://reviews.llvm.org/D56254 llvm-svn: 350310
-
Serge Guelton authored
Use range instead of xrange whenever possible. The extra list creation in Python2 is generally not a performance bottleneck. Differential Revision: https://reviews.llvm.org/D56253 llvm-svn: 350309
-
Serge Guelton authored
Python3 uses assertRaisesRegex instad of assertRaisesRegexp. Differential Revision: https://reviews.llvm.org/D56251 llvm-svn: 350308
-
Serge Guelton authored
Make sure all print statements are compatible with Python 2 and Python3 using the `from __future__ import print_function` statement. Differential Revision: https://reviews.llvm.org/D56249 llvm-svn: 350307
-
Philip Pfaffe authored
Summary: Keeping msan a function pass requires replacing the module level initialization: That means, don't define a ctor function which calls __msan_init, instead just declare the init function at the first access, and add that to the global ctors list. Changes: - Pull the actual sanitizer and the wrapper pass apart. - Add a newpm msan pass. The function pass inserts calls to runtime library functions, for which it inserts declarations as necessary. - Update tests. Caveats: - There is one test that I dropped, because it specifically tested the definition of the ctor. Reviewers: chandlerc, fedor.sergeev, leonardchan, vitalybuka Subscribers: sdardis, nemanjai, javed.absar, hiraditya, kbarton, bollu, atanasyan, jsji Differential Revision: https://reviews.llvm.org/D55647 llvm-svn: 350305
-
Diogo N. Sampaio authored
This file was missing on the patch llvm-svn: 350302
-
Simon Pilgrim authored
Use X86/X64 check prefixes Use nounwind to reduce cfi noise llvm-svn: 350301
-
Simon Pilgrim authored
Enables SLP vectorization for the SSE2 PADDS/PADDUS/PSUBS/PSUBUS style intrinsics llvm-svn: 350300
-
Diogo N. Sampaio authored
SB (Speculative Barrier) is only mandatory from 8.5 onwards but is optional from Armv8.0-A. This patch adds a command line option to enable SB, as it was previously only possible to enable by selecting -march=armv8.5-a. This patch also renames FeatureSpecRestrict to FeatureSB. Reviewed By: olista01, LukeCheeseman Differential Revision: https://reviews.llvm.org/D55990 llvm-svn: 350299
-
Simon Pilgrim authored
llvm-svn: 350297
-
Lama Saba authored
llvm-svn: 350296
-
Simon Pilgrim authored
Costs for real SSE2 instructions llvm-svn: 350295
-
Simon Pilgrim authored
llvm-svn: 350293
-
Piotr Sobczak authored
Summary: The commit rL348922 introduced a means to set Metadata section kind for a global variable, if its explicit section name was prefixed with ".AMDGPU.metadata.". This patch changes that prefix to ".AMDGPU.comment.", as "metadata" in the section name might lead to ambiguity with metadata used by AMD PAL runtime. Change-Id: Idd4748800d6fe801441d91595fc21e5a4171e668 Reviewers: kzhuravl Reviewed By: kzhuravl Subscribers: arsenm, kzhuravl, jvesely, wdng, nhaehnle, yaxunl, dstuttard, tpr, t-tye, llvm-commits Differential Revision: https://reviews.llvm.org/D56197 llvm-svn: 350292
-