summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/aes_intrinsics.ll
Commit message (Collapse)AuthorAgeFilesLines
* [CodeGen] Unify MBB reference format in both MIR and debug outputFrancis Visoiu Mistrih2017-12-041-12/+12
| | | | | | | | | | | | | | | | 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] avoid FileCheck assert duplication with retl/retq regex; NFCSanjay Patel2017-10-201-118/+58
| | | | | | | | | | | This was suggested in PR35003: https://bugs.llvm.org/show_bug.cgi?id=35003 32-bit checks may be identical to 64-bit (if we avoid those pesky scalar params!). I'll check in the script change shortly assuming this doesn't anger any bots. llvm-svn: 316223
* [X86][AES] Test AES intrinsics on 32/64-bit targets with/without VEX encodingSimon Pilgrim2017-10-191-56/+118
| | | | | | Don't just test on 32-bit llvm-svn: 316176
* [X86] Add an AVX command line and regenerate AES intrinsics test using the ↵Craig Topper2017-02-211-7/+57
| | | | | | update_llc_test_checks.py llvm-svn: 295701
* Add non-AVX tests for AES intrinsics.Craig Topper2013-10-241-0/+48
llvm-svn: 193310
OpenPOWER on IntegriCloud