Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [X86] Remove masking from avx512 rotate intrinsics. Use select in IR instead. | Craig Topper | 2018-06-30 | 1 | -24/+24 |
| | | | | llvm-svn: 336035 | ||||
* | [CodeGen] Unify MBB reference format in both MIR and debug output | Francis Visoiu Mistrih | 2017-12-04 | 1 | -20/+20 |
| | | | | | | | | | | | | | | | | As part of the unification of the debug format and the MIR format, print MBB references as '%bb.5'. The MIR printer prints the IR name of a MBB only for block definitions. * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)->getNumber\(\)/" << printMBBReference(*\1)/g' * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)\.getNumber\(\)/" << printMBBReference(\1)/g' * find . \( -name "*.txt" -o -name "*.s" -o -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#([0-9]+)/%bb.\1/g' * grep -nr 'BB#' and fix Differential Revision: https://reviews.llvm.org/D40422 llvm-svn: 319665 | ||||
* | [X86][AVX512] Improve vector rotation constant folding tests | Simon Pilgrim | 2017-07-20 | 1 | -3/+32 |
| | | | | | | Test constant folding both on node creation (which already works) and once the input nodes have been folded themselves (not working yet). llvm-svn: 308611 | ||||
* | [X86][AVX512] Add ISD::ROTL/ISD::ROTR constant folding tests | Simon Pilgrim | 2017-07-18 | 1 | -0/+20 |
| | | | | llvm-svn: 308295 | ||||
* | [X86][AVX512] Add lowering of vXi32/vXi64 ISD::ROTL/ISD::ROTR | Simon Pilgrim | 2017-07-17 | 1 | -74/+58 |
| | | | | | | | | Add support for lowering to ISD::ROTL/ISD::ROTR, including rotate by immediate Differential Revision: https://reviews.llvm.org/D35463 llvm-svn: 308177 | ||||
* | [X86][AVX512] Add constant splat vector rotate tests for D35463 | Simon Pilgrim | 2017-07-17 | 1 | -0/+252 |
llvm-svn: 308169 |