From: Craig Topper Date: Sat, 17 Dec 2016 19:25:55 +0000 (+0000) Subject: [AVX-512] Update scalar logic test to show missed opportunity to use EVEX encoded... X-Git-Tag: llvmorg-4.0.0-rc1~1760 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81b021e7c0ea5693579d6190bd568bdb2798e9e0;p=platform%2Fupstream%2Fllvm.git [AVX-512] Update scalar logic test to show missed opportunity to use EVEX encoded logic instructions to get more registers to use. llvm-svn: 290048 --- diff --git a/llvm/test/CodeGen/X86/fp-logic-replace.ll b/llvm/test/CodeGen/X86/fp-logic-replace.ll index 0a233fd..1afbcbf 100644 --- a/llvm/test/CodeGen/X86/fp-logic-replace.ll +++ b/llvm/test/CodeGen/X86/fp-logic-replace.ll @@ -1,6 +1,7 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse2 | FileCheck %s --check-prefix=SSE -; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck %s --check-prefix=AVX +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -show-mc-encoding -mattr=+sse2 | FileCheck %s --check-prefix=SSE +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -show-mc-encoding -mattr=+avx | FileCheck %s --check-prefix=AVX +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -show-mc-encoding -mattr=+avx512dq | FileCheck %s --check-prefix=AVX512DQ ; Test that we can replace "scalar" FP-bitwise-logic with the optimal instruction. ; Scalar x86 FP-logic instructions only exist in your imagination and/or the bowels @@ -11,13 +12,18 @@ define double @FsANDPSrr(double %x, double %y) { ; SSE-LABEL: FsANDPSrr: ; SSE: # BB#0: -; SSE-NEXT: andps %xmm1, %xmm0 -; SSE-NEXT: retq +; SSE-NEXT: andps %xmm1, %xmm0 # encoding: [0x0f,0x54,0xc1] +; SSE-NEXT: retq # encoding: [0xc3] ; ; AVX-LABEL: FsANDPSrr: ; AVX: # BB#0: -; AVX-NEXT: vandps %xmm1, %xmm0, %xmm0 -; AVX-NEXT: retq +; AVX-NEXT: vandps %xmm1, %xmm0, %xmm0 # encoding: [0xc5,0xf8,0x54,0xc1] +; AVX-NEXT: retq # encoding: [0xc3] +; +; AVX512DQ-LABEL: FsANDPSrr: +; AVX512DQ: # BB#0: +; AVX512DQ-NEXT: vandps %xmm1, %xmm0, %xmm0 # encoding: [0xc5,0xf8,0x54,0xc1] +; AVX512DQ-NEXT: retq # encoding: [0xc3] ; %bc1 = bitcast double %x to i64 %bc2 = bitcast double %y to i64 @@ -29,14 +35,19 @@ define double @FsANDPSrr(double %x, double %y) { define double @FsANDNPSrr(double %x, double %y) { ; SSE-LABEL: FsANDNPSrr: ; SSE: # BB#0: -; SSE-NEXT: andnps %xmm0, %xmm1 -; SSE-NEXT: movaps %xmm1, %xmm0 -; SSE-NEXT: retq +; SSE-NEXT: andnps %xmm0, %xmm1 # encoding: [0x0f,0x55,0xc8] +; SSE-NEXT: movaps %xmm1, %xmm0 # encoding: [0x0f,0x28,0xc1] +; SSE-NEXT: retq # encoding: [0xc3] ; ; AVX-LABEL: FsANDNPSrr: ; AVX: # BB#0: -; AVX-NEXT: vandnps %xmm0, %xmm1, %xmm0 -; AVX-NEXT: retq +; AVX-NEXT: vandnps %xmm0, %xmm1, %xmm0 # encoding: [0xc5,0xf0,0x55,0xc0] +; AVX-NEXT: retq # encoding: [0xc3] +; +; AVX512DQ-LABEL: FsANDNPSrr: +; AVX512DQ: # BB#0: +; AVX512DQ-NEXT: vandnps %xmm0, %xmm1, %xmm0 # encoding: [0xc5,0xf0,0x55,0xc0] +; AVX512DQ-NEXT: retq # encoding: [0xc3] ; %bc1 = bitcast double %x to i64 %bc2 = bitcast double %y to i64 @@ -49,13 +60,18 @@ define double @FsANDNPSrr(double %x, double %y) { define double @FsORPSrr(double %x, double %y) { ; SSE-LABEL: FsORPSrr: ; SSE: # BB#0: -; SSE-NEXT: orps %xmm1, %xmm0 -; SSE-NEXT: retq +; SSE-NEXT: orps %xmm1, %xmm0 # encoding: [0x0f,0x56,0xc1] +; SSE-NEXT: retq # encoding: [0xc3] ; ; AVX-LABEL: FsORPSrr: ; AVX: # BB#0: -; AVX-NEXT: vorps %xmm1, %xmm0, %xmm0 -; AVX-NEXT: retq +; AVX-NEXT: vorps %xmm1, %xmm0, %xmm0 # encoding: [0xc5,0xf8,0x56,0xc1] +; AVX-NEXT: retq # encoding: [0xc3] +; +; AVX512DQ-LABEL: FsORPSrr: +; AVX512DQ: # BB#0: +; AVX512DQ-NEXT: vorps %xmm1, %xmm0, %xmm0 # encoding: [0xc5,0xf8,0x56,0xc1] +; AVX512DQ-NEXT: retq # encoding: [0xc3] ; %bc1 = bitcast double %x to i64 %bc2 = bitcast double %y to i64 @@ -67,13 +83,18 @@ define double @FsORPSrr(double %x, double %y) { define double @FsXORPSrr(double %x, double %y) { ; SSE-LABEL: FsXORPSrr: ; SSE: # BB#0: -; SSE-NEXT: xorps %xmm1, %xmm0 -; SSE-NEXT: retq +; SSE-NEXT: xorps %xmm1, %xmm0 # encoding: [0x0f,0x57,0xc1] +; SSE-NEXT: retq # encoding: [0xc3] ; ; AVX-LABEL: FsXORPSrr: ; AVX: # BB#0: -; AVX-NEXT: vxorps %xmm1, %xmm0, %xmm0 -; AVX-NEXT: retq +; AVX-NEXT: vxorps %xmm1, %xmm0, %xmm0 # encoding: [0xc5,0xf8,0x57,0xc1] +; AVX-NEXT: retq # encoding: [0xc3] +; +; AVX512DQ-LABEL: FsXORPSrr: +; AVX512DQ: # BB#0: +; AVX512DQ-NEXT: vxorps %xmm1, %xmm0, %xmm0 # encoding: [0xc5,0xf8,0x57,0xc1] +; AVX512DQ-NEXT: retq # encoding: [0xc3] ; %bc1 = bitcast double %x to i64 %bc2 = bitcast double %y to i64