1 ; RUN: opt < %s -cost-model -analyze -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck --check-prefix=AVX1 %s 2 ; RUN: opt < %s -cost-model -analyze -mtriple=x86_64-apple-macosx10.8.0 -mcpu=core-avx2 | FileCheck --check-prefix=AVX2 %s 3 4 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" 5 target triple = "x86_64-apple-macosx10.8.0" 6 7 define i32 @cmp(i32 %arg) { 8 ; -- floats -- 9 ;AVX1: cost of 1 {{.*}} fcmp 10 ;AVX2: cost of 1 {{.*}} fcmp 11 %A = fcmp olt <2 x float> undef, undef 12 ;AVX1: cost of 1 {{.*}} fcmp 13 ;AVX2: cost of 1 {{.*}} fcmp 14 %B = fcmp olt <4 x float> undef, undef 15 ;AVX1: cost of 1 {{.*}} fcmp 16 ;AVX2: cost of 1 {{.*}} fcmp 17 %C = fcmp olt <8 x float> undef, undef 18 ;AVX1: cost of 1 {{.*}} fcmp 19 ;AVX2: cost of 1 {{.*}} fcmp 20 %D = fcmp olt <2 x double> undef, undef 21 ;AVX1: cost of 1 {{.*}} fcmp 22 ;AVX2: cost of 1 {{.*}} fcmp 23 %E = fcmp olt <4 x double> undef, undef 24 25 ; -- integers -- 26 27 ;AVX1: cost of 1 {{.*}} icmp 28 ;AVX2: cost of 1 {{.*}} icmp 29 %F = icmp eq <16 x i8> undef, undef 30 ;AVX1: cost of 1 {{.*}} icmp 31 ;AVX2: cost of 1 {{.*}} icmp 32 %G = icmp eq <8 x i16> undef, undef 33 ;AVX1: cost of 1 {{.*}} icmp 34 ;AVX2: cost of 1 {{.*}} icmp 35 %H = icmp eq <4 x i32> undef, undef 36 ;AVX1: cost of 1 {{.*}} icmp 37 ;AVX2: cost of 1 {{.*}} icmp 38 %I = icmp eq <2 x i64> undef, undef 39 ;AVX1: cost of 4 {{.*}} icmp 40 ;AVX2: cost of 1 {{.*}} icmp 41 %J = icmp eq <4 x i64> undef, undef 42 ;AVX1: cost of 4 {{.*}} icmp 43 ;AVX2: cost of 1 {{.*}} icmp 44 %K = icmp eq <8 x i32> undef, undef 45 ;AVX1: cost of 4 {{.*}} icmp 46 ;AVX2: cost of 1 {{.*}} icmp 47 %L = icmp eq <16 x i16> undef, undef 48 ;AVX1: cost of 4 {{.*}} icmp 49 ;AVX2: cost of 1 {{.*}} icmp 50 %M = icmp eq <32 x i8> undef, undef 51 52 ;CHECK: cost of 0 {{.*}} ret 53 ret i32 undef 54 } 55 56 57