1; RUN: opt < %s -basicaa -slp-vectorizer -dce -S -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck %s 2 3target 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" 4target triple = "x86_64-apple-macosx10.8.0" 5 6; SLP vectorization example from http://cs.stanford.edu/people/eschkufz/research/asplos291-schkufza.pdf 7;CHECK: SAXPY 8;CHECK: mul nsw <4 x i32> 9;CHECK: ret 10 11define void @SAXPY(i32* noalias nocapture %x, i32* noalias nocapture %y, i32 %a, i64 %i) { 12 %1 = getelementptr inbounds i32, i32* %x, i64 %i 13 %2 = load i32, i32* %1, align 4 14 %3 = mul nsw i32 %2, %a 15 %4 = getelementptr inbounds i32, i32* %y, i64 %i 16 %5 = load i32, i32* %4, align 4 17 %6 = add nsw i32 %3, %5 18 store i32 %6, i32* %1, align 4 19 %7 = add i64 %i, 1 20 %8 = getelementptr inbounds i32, i32* %x, i64 %7 21 %9 = load i32, i32* %8, align 4 22 %10 = mul nsw i32 %9, %a 23 %11 = getelementptr inbounds i32, i32* %y, i64 %7 24 %12 = load i32, i32* %11, align 4 25 %13 = add nsw i32 %10, %12 26 store i32 %13, i32* %8, align 4 27 %14 = add i64 %i, 2 28 %15 = getelementptr inbounds i32, i32* %x, i64 %14 29 %16 = load i32, i32* %15, align 4 30 %17 = mul nsw i32 %16, %a 31 %18 = getelementptr inbounds i32, i32* %y, i64 %14 32 %19 = load i32, i32* %18, align 4 33 %20 = add nsw i32 %17, %19 34 store i32 %20, i32* %15, align 4 35 %21 = add i64 %i, 3 36 %22 = getelementptr inbounds i32, i32* %x, i64 %21 37 %23 = load i32, i32* %22, align 4 38 %24 = mul nsw i32 %23, %a 39 %25 = getelementptr inbounds i32, i32* %y, i64 %21 40 %26 = load i32, i32* %25, align 4 41 %27 = add nsw i32 %24, %26 42 store i32 %27, i32* %22, align 4 43 ret void 44} 45 46; Make sure we don't crash on this one. 47define void @SAXPY_crash(i32* noalias nocapture %x, i32* noalias nocapture %y, i64 %i) { 48 %1 = add i64 %i, 1 49 %2 = getelementptr inbounds i32, i32* %x, i64 %1 50 %3 = getelementptr inbounds i32, i32* %y, i64 %1 51 %4 = load i32, i32* %3, align 4 52 %5 = add nsw i32 undef, %4 53 store i32 %5, i32* %2, align 4 54 %6 = add i64 %i, 2 55 %7 = getelementptr inbounds i32, i32* %x, i64 %6 56 %8 = getelementptr inbounds i32, i32* %y, i64 %6 57 %9 = load i32, i32* %8, align 4 58 %10 = add nsw i32 undef, %9 59 store i32 %10, i32* %7, align 4 60 ret void 61} 62