brintos

brintos / llvm-project-archived public Read only

0
0
Text · 4.3 KiB · 7ad9cb1 Raw
106 lines · plain
1; RUN: llc < %s -regalloc=fast -optimize-regalloc=0 -verify-machineinstrs2target triple = "arm-pc-linux-gnu"3 4; This test case would accidentally use the same physreg for two virtregs5; because allocVirtReg forgot to check if registers were already used in the6; instruction.7; This caused the RegScavenger to complain, but -verify-machineinstrs also8; catches it.9 10%struct.CHESS_POSITION = type { i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i64, i32, i32, i8, i8, [64 x i8], i8, i8, i8, i8, i8 }11 12@search = external global %struct.CHESS_POSITION  ; <ptr> [#uses=1]13@bishop_mobility_rr45 = external global [64 x [256 x i32]] ; <ptr> [#uses=1]14 15declare fastcc i32 @FirstOne()16 17define fastcc void @Evaluate() {18entry:19  br i1 false, label %cond_false186, label %cond_true20 21cond_true:                                        ; preds = %entry22  ret void23 24cond_false186:                                    ; preds = %entry25  br i1 false, label %cond_true293, label %bb20326 27bb203:                                            ; preds = %cond_false18628  ret void29 30cond_true293:                                     ; preds = %cond_false18631  br i1 false, label %cond_true298, label %cond_next31732 33cond_true298:                                     ; preds = %cond_true29334  br i1 false, label %cond_next518, label %cond_true397.preheader35 36cond_next317:                                     ; preds = %cond_true29337  ret void38 39cond_true397.preheader:                           ; preds = %cond_true29840  ret void41 42cond_next518:                                     ; preds = %cond_true29843  br i1 false, label %bb1069, label %cond_true52244 45cond_true522:                                     ; preds = %cond_next51846  ret void47 48bb1069:                                           ; preds = %cond_next51849  br i1 false, label %cond_next1131, label %bb109650 51bb1096:                                           ; preds = %bb106952  ret void53 54cond_next1131:                                    ; preds = %bb106955  br i1 false, label %cond_next1207, label %cond_true115056 57cond_true1150:                                    ; preds = %cond_next113158  ret void59 60cond_next1207:                                    ; preds = %cond_next113161  br i1 false, label %cond_next1219, label %cond_true121162 63cond_true1211:                                    ; preds = %cond_next120764  ret void65 66cond_next1219:                                    ; preds = %cond_next120767  br i1 false, label %cond_true1223, label %cond_next128368 69cond_true1223:                                    ; preds = %cond_next121970  br i1 false, label %cond_true1254, label %cond_true126471 72cond_true1254:                                    ; preds = %cond_true122373  br i1 false, label %bb1567, label %cond_true1369.preheader74 75cond_true1264:                                    ; preds = %cond_true122376  ret void77 78cond_next1283:                                    ; preds = %cond_next121979  ret void80 81cond_true1369.preheader:                          ; preds = %cond_true125482  ret void83 84bb1567:                                           ; preds = %cond_true125485  %tmp1591 = load i64, ptr getelementptr inbounds (%struct.CHESS_POSITION, ptr @search, i32 0, i32 4) ; <i64> [#uses=1]86  %tmp1572 = tail call fastcc i32 @FirstOne()     ; <i32> [#uses=1]87  %tmp1594 = load i32, ptr undef                      ; <i32> [#uses=1]88  %tmp1594.upgrd.5 = trunc i32 %tmp1594 to i8     ; <i8> [#uses=1]89  %shift.upgrd.6 = zext i8 %tmp1594.upgrd.5 to i64 ; <i64> [#uses=1]90  %tmp1595 = lshr i64 %tmp1591, %shift.upgrd.6    ; <i64> [#uses=1]91  %tmp1595.upgrd.7 = trunc i64 %tmp1595 to i32    ; <i32> [#uses=1]92  %tmp1596 = and i32 %tmp1595.upgrd.7, 255        ; <i32> [#uses=1]93  %gep.upgrd.8 = zext i32 %tmp1596 to i64         ; <i64> [#uses=1]94  %tmp1598 = getelementptr [64 x [256 x i32]], ptr @bishop_mobility_rr45, i32 0, i32 %tmp1572, i64 %gep.upgrd.8 ; <ptr> [#uses=1]95  %tmp1599 = load i32, ptr %tmp1598                   ; <i32> [#uses=1]96  %tmp1602 = sub i32 0, %tmp1599                  ; <i32> [#uses=1]97  br i1 undef, label %cond_next1637, label %cond_true160798 99cond_true1607:                                    ; preds = %bb1567100  ret void101 102cond_next1637:                                    ; preds = %bb1567103  %tmp1662 = sub i32 %tmp1602, 0                  ; <i32> [#uses=0]104  ret void105}106