59 lines · plain
1; RUN: llc < %s -mtriple=i386-pc-win32 -mcpu=corei7 | FileCheck %s2; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=core-avx2 | FileCheck %s --check-prefix=X643 4; ModuleID = 'a.bc'5target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32-S32"6target triple = "i386-pc-win32"7 8%v4_varying_big_struct = type { [4 x <4 x i32>] }9 10declare <4 x i32> @"foo"(%v4_varying_big_struct, <4 x i32>) nounwind11 12define <4 x i32> @"bar"(%v4_varying_big_struct %s, <4 x i32> %__mask) nounwind {13allocas:14 %calltmp = call <4 x i32> @"foo"(%v4_varying_big_struct %s, <4 x i32> %__mask)15 ret <4 x i32> %calltmp16; CHECK: bar17; CHECK: andl18; CHECK: call19; CHECK: ret20}21 22declare <8 x float> @bar64(<8 x float> %i0, <8 x float> %i1,23 <8 x float> %i2, <8 x float> %i3,24 <8 x float> %i4, <8 x float> %i5,25 <8 x float> %i6, <8 x float> %i7,26 <8 x float> %i8, <8 x float> %i9)27 28define <8 x float> @foo64(ptr %p) {29 %1 = load <8 x float>, ptr %p30 %idx1 = getelementptr inbounds <8 x float>, ptr %p, i64 131 %2 = load <8 x float>, ptr %idx132 %idx2 = getelementptr inbounds <8 x float>, ptr %p, i64 233 %3 = load <8 x float>, ptr %idx234 %idx3 = getelementptr inbounds <8 x float>, ptr %p, i64 335 %4 = load <8 x float>, ptr %idx336 %idx4 = getelementptr inbounds <8 x float>, ptr %p, i64 437 %5 = load <8 x float>, ptr %idx438 %idx5 = getelementptr inbounds <8 x float>, ptr %p, i64 539 %6 = load <8 x float>, ptr %idx540 %idx6 = getelementptr inbounds <8 x float>, ptr %p, i64 641 %7 = load <8 x float>, ptr %idx642 %idx7 = getelementptr inbounds <8 x float>, ptr %p, i64 743 %8 = load <8 x float>, ptr %idx744 %idx8 = getelementptr inbounds <8 x float>, ptr %p, i64 845 %9 = load <8 x float>, ptr %idx846 %idx9 = getelementptr inbounds <8 x float>, ptr %p, i64 947 %10 = load <8 x float>, ptr %idx948 %r = tail call <8 x float> @bar64(<8 x float> %1, <8 x float> %2,49 <8 x float> %3, <8 x float> %4,50 <8 x float> %5, <8 x float> %6,51 <8 x float> %7, <8 x float> %8,52 <8 x float> %9, <8 x float> %10)53 ret <8 x float> %r54; X64: foo55; X64: and56; X64: call57; X64: ret58}59