; RUN: llc -march=r600 -mcpu=cypress < %s | FileCheck -check-prefix=EG %s ; ; kernel void combine_vloads(global char8* src, global char8* result) { ; for (int i = 0; i < 1024; ++i) ; result[i] = src[0] + src[1] + src[2] + src[3]; ; } ; ; 128-bit loads instead of many 8-bit ; EG-LABEL: {{^}}combine_vloads: ; EG: VTX_READ_128 ; EG: VTX_READ_128 define void @combine_vloads(<8 x i8> addrspace(1)* nocapture %src, <8 x i8> addrspace(1)* nocapture %result) nounwind { entry: br label %for.body for.exit: ; preds = %for.body ret void for.body: ; preds = %for.body, %entry %i.01 = phi i32 [ 0, %entry ], [ %tmp19, %for.body ] %arrayidx_v4 = bitcast <8 x i8> addrspace(1)* %src to <32 x i8> addrspace(1)* %0 = bitcast <32 x i8> addrspace(1)* %arrayidx_v4 to <8 x i32> addrspace(1)* %vecload2 = load <8 x i32>, <8 x i32> addrspace(1)* %0, align 32 %1 = bitcast <8 x i32> %vecload2 to <32 x i8> %tmp5 = shufflevector <32 x i8> %1, <32 x i8> undef, <8 x i32> %tmp8 = shufflevector <32 x i8> %1, <32 x i8> undef, <8 x i32> %tmp9 = add nsw <8 x i8> %tmp5, %tmp8 %tmp12 = shufflevector <32 x i8> %1, <32 x i8> undef, <8 x i32> %tmp13 = add nsw <8 x i8> %tmp9, %tmp12 %tmp16 = shufflevector <32 x i8> %1, <32 x i8> undef, <8 x i32> %tmp17 = add nsw <8 x i8> %tmp13, %tmp16 %scevgep = getelementptr <8 x i8>, <8 x i8> addrspace(1)* %result, i32 %i.01 %2 = bitcast <8 x i8> %tmp17 to <2 x i32> %3 = bitcast <8 x i8> addrspace(1)* %scevgep to <2 x i32> addrspace(1)* store <2 x i32> %2, <2 x i32> addrspace(1)* %3, align 8 %tmp19 = add nsw i32 %i.01, 1 %exitcond = icmp eq i32 %tmp19, 1024 br i1 %exitcond, label %for.exit, label %for.body }