1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mcpu=cortex-a8 | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker; Tests preRAsched support for VRegCycle interference. 3*9880d681SAndroid Build Coastguard Worker 4*9880d681SAndroid Build Coastguard Workertarget datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:32:64-v128:32:128-a0:0:32-n32" 5*9880d681SAndroid Build Coastguard Workertarget triple = "thumbv7-apple-darwin10" 6*9880d681SAndroid Build Coastguard Worker 7*9880d681SAndroid Build Coastguard Workerdefine void @t(i32 %src_width, float* nocapture %src_copy_start, float* nocapture %dst_copy_start, i32 %src_copy_start_index) nounwind optsize { 8*9880d681SAndroid Build Coastguard Workerentry: 9*9880d681SAndroid Build Coastguard Worker %src_copy_start6 = bitcast float* %src_copy_start to i8* 10*9880d681SAndroid Build Coastguard Worker %0 = icmp eq i32 %src_width, 0 11*9880d681SAndroid Build Coastguard Worker br i1 %0, label %return, label %bb 12*9880d681SAndroid Build Coastguard Worker 13*9880d681SAndroid Build Coastguard Worker; Make sure the scheduler schedules all uses of the preincrement 14*9880d681SAndroid Build Coastguard Worker; induction variable before defining the postincrement value. 15*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: t: 16*9880d681SAndroid Build Coastguard Worker; CHECK: %bb 17*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: mov 18*9880d681SAndroid Build Coastguard Workerbb: ; preds = %entry, %bb 19*9880d681SAndroid Build Coastguard Worker %j.05 = phi i32 [ %2, %bb ], [ 0, %entry ] 20*9880d681SAndroid Build Coastguard Worker %tmp = mul i32 %j.05, %src_copy_start_index 21*9880d681SAndroid Build Coastguard Worker %uglygep = getelementptr i8, i8* %src_copy_start6, i32 %tmp 22*9880d681SAndroid Build Coastguard Worker %src_copy_start_addr.04 = bitcast i8* %uglygep to float* 23*9880d681SAndroid Build Coastguard Worker %dst_copy_start_addr.03 = getelementptr float, float* %dst_copy_start, i32 %j.05 24*9880d681SAndroid Build Coastguard Worker %1 = load float, float* %src_copy_start_addr.04, align 4 25*9880d681SAndroid Build Coastguard Worker store float %1, float* %dst_copy_start_addr.03, align 4 26*9880d681SAndroid Build Coastguard Worker %2 = add i32 %j.05, 1 27*9880d681SAndroid Build Coastguard Worker %exitcond = icmp eq i32 %2, %src_width 28*9880d681SAndroid Build Coastguard Worker br i1 %exitcond, label %return, label %bb 29*9880d681SAndroid Build Coastguard Worker 30*9880d681SAndroid Build Coastguard Workerreturn: ; preds = %bb, %entry 31*9880d681SAndroid Build Coastguard Worker ret void 32*9880d681SAndroid Build Coastguard Worker} 33