- Jan 30, 2017
-
-
Krzysztof Parzyszek authored
llvm-svn: 293491
-
Haicheng Wu authored
TotalAltCost => TotalSecondaryCost Differential Revision: https://reviews.llvm.org/D29231 llvm-svn: 293490
-
Sanjay Patel authored
llvm-svn: 293489
-
Sanjay Patel authored
llvm-svn: 293487
-
Rafael Espindola authored
Original message: Fix the values of two xcore ELF flags. The values in llvm grew from a pre-MC day when they would not show up in .o files and are outside of the SHF_MASKPROC. Fortunately the MC output is not currently used as xcore has its own assemble and that assembler uses valid values. This updates llvm to use the same values as the xmos assembler. llvm-svn: 293486
-
Rafael Espindola authored
Different architectures can have different meaning for flags in the SHF_MASKPROC mask, so we should always check what the architecture use before checking the flag. NFC for now, but will allow fixing the value of an xmos flag. llvm-svn: 293484
-
Tom Stellard authored
Summary: AMDGPU has two register classes with the same set of registers, and this was causing this tablegen backend would get stuck in infinite recursion. Reviewers: dsanders Reviewed By: dsanders Subscribers: tpr, wdng, llvm-commits Differential Revision: https://reviews.llvm.org/D29049 llvm-svn: 293483
-
Benjamin Kramer authored
llvm-svn: 293482
-
Rafael Espindola authored
This reverts commit r293480. The patch is correct, but found bugs in other areas that need to be fixed. llvm-svn: 293481
-
Rafael Espindola authored
The values in llvm grew from a pre-MC day when they would not show up in .o files and are outside of the SHF_MASKPROC. Fortunately the MC output is not currently used as xcore has its own assemble and that assembler uses valid values. This updates llvm to use the same values as the xmos assembler. llvm-svn: 293480
-
Asaf Badouh authored
llvm-svn: 293478
-
Marek Olsak authored
Summary: already covered by complex patterns Reviewers: arsenm, nhaehnle, tstellarAMD Subscribers: kzhuravl, wdng, yaxunl, tony-tye Differential Revision: https://reviews.llvm.org/D28995 llvm-svn: 293477
-
Marek Olsak authored
Reviewers: arsenm, tstellarAMD Subscribers: kzhuravl, wdng, nhaehnle, yaxunl, tony-tye Differential Revision: https://reviews.llvm.org/D28992 llvm-svn: 293476
-
Daniel Berlin authored
This reverts commit r293471, reapplying r293361 and r293363 with a fix for an out-of-bounds read. llvm-svn: 293474
-
Sam McCall authored
llvm-svn: 293471
-
Kristof Beyls authored
Differential Revision: https://reviews.llvm.org/D28079 llvm-svn: 293470
-
Asaf Badouh authored
Differential Revision: https://reviews.llvm.org/D28354 llvm-svn: 293469
-
Alexey Bader authored
Summary: Change B type from double to pointer to double. Reviewers: delena, sanjoy Reviewed By: sanjoy Subscribers: sanjoy, llvm-commits Differential Revision: https://reviews.llvm.org/D29009 llvm-svn: 293467
-
Craig Topper authored
[AVX-512] Remove duplicate CodeGenOnly patterns for scalar register broadcast. We can use COPY_TO_REGCLASS like AVX does. This causes stack spill slots be oversized sometimes, but the same should already be happening with AVX. llvm-svn: 293464
-
Sam McCall authored
This part of the C API is still used in language bindings. llvm-svn: 293460
-
Jonas Paulsson authored
By calling getScalarizationOverhead with the CallInst instead of the types of its arguments, we make sure that only unique call arguments are added to the scalarization cost. getScalarizationOverhead() is extended to handle calls by only passing on the actual call arguments (which is not all the operands). This also eliminates a wrapper function with the same name. review: Hal Finkel llvm-svn: 293459
-
Craig Topper authored
llvm-svn: 293458
-
Davide Italiano authored
llvm-svn: 293453
-
Will Dietz authored
Largely based on LLD test for dtrace. llvm-svn: 293451
-
Craig Topper authored
[AVX-512] Don't reuse VSHLI/VSRLI for mask register shifts. VSHLI/VSHRI shift within elements while KSHIFT moves whole elements. llvm-svn: 293448
-
Chris Ray authored
Reviewers: joe.abbey, craig.topper Reviewed By: craig.topper Subscribers: majnemer, llvm-commits Differential Revision: https://reviews.llvm.org/D29201 llvm-svn: 293447
-
- Jan 29, 2017
-
-
Craig Topper authored
Previously this test case fired an assertion in getNode because we tried to create an insert_subvector with both input types the same size and the index pointing to half the vector width. llvm-svn: 293446
-
Chris Ray authored
Summary: The RCL and RCR instructions use the carry flag. Reviewers: craig.topper Reviewed By: craig.topper Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29237 llvm-svn: 293441
-
Matthias Braun authored
The primary use of the dump() functions in LLVM is for use in a debugger. Unfortunately lldb does not seem to handle default arguments so using `p SomeMI.dump()` fails and you have to type the longer `p SomeMI.dump(nullptr)`. Remove the paramter to make the most common use easy. (You can always construct something like `p SomeMI.print(dbgs(),MyTII)` if you need more features). Differential Revision: https://reviews.llvm.org/D29241 llvm-svn: 293440
-
Simon Pilgrim authored
Replaces an xor+movd/movq with an xorps which will be shorter in codesize, avoid an int-fpu transfer, allow modern cores to fast path the result during decode and helps other combines recognise an all-zero vector. The only reason I can think of that we'd want to keep scalar_to_vector in this case is to help recognise the upper elts are undef but this doesn't seem to be a problem. Differential Revision: https://reviews.llvm.org/D29097 llvm-svn: 293438
-
Zvi Rackover authored
llvm-svn: 293437
-
Matthias Braun authored
While this probably should be considered a dump debugger utility, the C API currently has no other ways to print a module to stderr for error reporting purposes, so keep it even in release builds. llvm-svn: 293436
-
Sanjay Patel authored
llvm-svn: 293435
-
Sanjay Patel authored
llvm-svn: 293434
-
Saleem Abdulrasool authored
Support lowering AEABI TLS access (__aeabi_read_tp) with long calls. This requires adjusting the call sequence to use an indirect call to get full addressability. Resolves PR31769! llvm-svn: 293433
-
Sanjay Patel authored
1. Use auto with dyn_cast. 2. Don't use else after return. 3. Convert chain of 'else if' to switch. 4. Improve variable names. llvm-svn: 293432
-
Elena Demikhovsky authored
PACKUSWB converts Signed word to Unsigned byte, (the same about DW) and it can't be used for umin+truncate pattern. AVX-512 VPMOVUS* instructions fit the pattern since they convert Unsigned to Unsigned. See https://llvm.org/bugs/show_bug.cgi?id=31773 Differential Revision: https://reviews.llvm.org/D29196 llvm-svn: 293431
-
NAKAMURA Takumi authored
Unsupported target might be induced if default target is neither macho nor elf. (e.g. *-win32) llvm-svn: 293430
-
Daniel Berlin authored
llvm-svn: 293428
-
Igor Breger authored
Summary: Add limited (i8/i16/i32/i64) argument lowering support to the IRTranslator. Inspired by commit 289940. Reviewers: t.p.northover, qcolombet, ab, zvi, rovka Reviewed By: rovka Subscribers: dberris, rovka, kristof.beyls, llvm-commits Differential Revision: https://reviews.llvm.org/D28987 llvm-svn: 293427
-