| OLD | NEW | 
|---|
| 1 ; Simple test of the select instruction.  The CHECK lines are only | 1 ; Simple test of the select instruction.  The CHECK lines are only | 
| 2 ; checking for basic instruction patterns that should be present | 2 ; checking for basic instruction patterns that should be present | 
| 3 ; regardless of the optimization level, so there are no special OPTM1 | 3 ; regardless of the optimization level, so there are no special OPTM1 | 
| 4 ; match lines. | 4 ; match lines. | 
| 5 | 5 | 
| 6 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ | 6 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ | 
| 7 ; RUN:   --target x8632 -i %s --args -O2 -allow-externally-defined-symbols \ | 7 ; RUN:   --target x8632 -i %s --args -O2 -allow-externally-defined-symbols \ | 
| 8 ; RUN:   | %if --need=target_X8632 --command FileCheck %s | 8 ; RUN:   | %if --need=target_X8632 --command FileCheck %s | 
| 9 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ | 9 ; RUN: %if --need=target_X8632 --command %p2i --filetype=obj --disassemble \ | 
| 10 ; RUN:   --target x8632 -i %s --args -Om1 -allow-externally-defined-symbols \ | 10 ; RUN:   --target x8632 -i %s --args -Om1 -allow-externally-defined-symbols \ | 
| 11 ; RUN:   | %if --need=target_X8632 --command FileCheck %s | 11 ; RUN:   | %if --need=target_X8632 --command FileCheck %s | 
| 12 | 12 | 
| 13 ; RUN: %if --need=target_ARM32 --need=allow_dump \ | 13 ; RUN: %if --need=target_ARM32 --need=allow_dump \ | 
| 14 ; RUN:   --command %p2i --filetype=asm --assemble \ | 14 ; RUN:   --command %p2i --filetype=asm --assemble \ | 
| 15 ; RUN:   --disassemble --target arm32 -i %s --args -O2 \ | 15 ; RUN:   --disassemble --target arm32 -i %s --args -O2 \ | 
| 16 ; RUN:   -allow-externally-defined-symbols \ | 16 ; RUN:   -allow-externally-defined-symbols \ | 
| 17 ; RUN:   | %if --need=target_ARM32 --need=allow_dump \ | 17 ; RUN:   | %if --need=target_ARM32 --need=allow_dump \ | 
| 18 ; RUN:   --command FileCheck --check-prefix ARM32 --check-prefix ARM32-O2 %s | 18 ; RUN:   --command FileCheck --check-prefix ARM32 --check-prefix ARM32-O2 %s | 
| 19 ; RUN: %if --need=target_ARM32 --need=allow_dump \ | 19 ; RUN: %if --need=target_ARM32 --need=allow_dump \ | 
| 20 ; RUN:   --command %p2i --filetype=asm --assemble \ | 20 ; RUN:   --command %p2i --filetype=asm --assemble \ | 
| 21 ; RUN:   --disassemble --target arm32 -i %s --args -Om1 \ | 21 ; RUN:   --disassemble --target arm32 -i %s --args -Om1 \ | 
| 22 ; RUN:   -allow-externally-defined-symbols \ | 22 ; RUN:   -allow-externally-defined-symbols \ | 
| 23 ; RUN:   | %if --need=target_ARM32 --need=allow_dump \ | 23 ; RUN:   | %if --need=target_ARM32 --need=allow_dump \ | 
| 24 ; RUN:   --command FileCheck --check-prefix ARM32 --check-prefix ARM32-OM1 %s | 24 ; RUN:   --command FileCheck --check-prefix ARM32 --check-prefix ARM32-OM1 %s | 
| 25 | 25 | 
|  | 26 ; RUN: %if --need=target_MIPS32 --need=allow_dump \ | 
|  | 27 ; RUN:   --command %p2i --filetype=asm --assemble \ | 
|  | 28 ; RUN:   --disassemble --target mips32 -i %s --args -Om1 \ | 
|  | 29 ; RUN:   -allow-externally-defined-symbols -skip-unimplemented \ | 
|  | 30 ; RUN:   | %if --need=target_MIPS32 --need=allow_dump \ | 
|  | 31 ; RUN:   --command FileCheck --check-prefix MIPS32 %s | 
|  | 32 | 
| 26 define internal void @testSelect(i32 %a, i32 %b) { | 33 define internal void @testSelect(i32 %a, i32 %b) { | 
| 27 entry: | 34 entry: | 
| 28   %cmp = icmp slt i32 %a, %b | 35   %cmp = icmp slt i32 %a, %b | 
| 29   %cond = select i1 %cmp, i32 %a, i32 %b | 36   %cond = select i1 %cmp, i32 %a, i32 %b | 
| 30   tail call void @useInt(i32 %cond) | 37   tail call void @useInt(i32 %cond) | 
| 31   %cmp1 = icmp sgt i32 %a, %b | 38   %cmp1 = icmp sgt i32 %a, %b | 
| 32   %cond2 = select i1 %cmp1, i32 10, i32 20 | 39   %cond2 = select i1 %cmp1, i32 10, i32 20 | 
| 33   tail call void @useInt(i32 %cond2) | 40   tail call void @useInt(i32 %cond2) | 
| 34   ; Create "fake" uses of %cmp and %cmp1 to prevent O2 bool folding. | 41   ; Create "fake" uses of %cmp and %cmp1 to prevent O2 bool folding. | 
| 35   %d1 = zext i1 %cmp to i32 | 42   %d1 = zext i1 %cmp to i32 | 
| (...skipping 18 matching lines...) Expand all  Loading... | 
| 54 ; ARM32: bl {{.*}} useInt | 61 ; ARM32: bl {{.*}} useInt | 
| 55 ; ARM32-Om1: mov {{.*}}, #20 | 62 ; ARM32-Om1: mov {{.*}}, #20 | 
| 56 ; ARM32-O2: mov [[REG:r[0-9]+]], #20 | 63 ; ARM32-O2: mov [[REG:r[0-9]+]], #20 | 
| 57 ; ARM32: tst | 64 ; ARM32: tst | 
| 58 ; ARM32-Om1: movne {{.*}}, #10 | 65 ; ARM32-Om1: movne {{.*}}, #10 | 
| 59 ; ARM32-O2: movne [[REG]], #10 | 66 ; ARM32-O2: movne [[REG]], #10 | 
| 60 ; ARM32: bl {{.*}} useInt | 67 ; ARM32: bl {{.*}} useInt | 
| 61 ; ARM32: bl {{.*}} useInt | 68 ; ARM32: bl {{.*}} useInt | 
| 62 ; ARM32: bl {{.*}} useInt | 69 ; ARM32: bl {{.*}} useInt | 
| 63 ; ARM32: bx lr | 70 ; ARM32: bx lr | 
|  | 71 ; MIPS32-LABEL: testSelect | 
|  | 72 ; MIPS32: slt {{.*}} | 
|  | 73 ; MIPS32: movn {{.*}} | 
|  | 74 ; MIPS32: addiu {{.*}} | 
| 64 | 75 | 
| 65 ; Check for valid addressing mode in the cmp instruction when the | 76 ; Check for valid addressing mode in the cmp instruction when the | 
| 66 ; operand is an immediate. | 77 ; operand is an immediate. | 
| 67 define internal i32 @testSelectImm32(i32 %a, i32 %b) { | 78 define internal i32 @testSelectImm32(i32 %a, i32 %b) { | 
| 68 entry: | 79 entry: | 
| 69   %cond = select i1 false, i32 %a, i32 %b | 80   %cond = select i1 false, i32 %a, i32 %b | 
| 70   ret i32 %cond | 81   ret i32 %cond | 
| 71 } | 82 } | 
| 72 ; CHECK-LABEL: testSelectImm32 | 83 ; CHECK-LABEL: testSelectImm32 | 
| 73 ; CHECK-NOT: cmp 0x{{[0-9a-f]+}}, | 84 ; CHECK-NOT: cmp 0x{{[0-9a-f]+}}, | 
| 74 ; ARM32-LABEL: testSelectImm32 | 85 ; ARM32-LABEL: testSelectImm32 | 
| 75 ; ARM32-NOT: cmp #{{.*}}, | 86 ; ARM32-NOT: cmp #{{.*}}, | 
|  | 87 ; MIPS32-LABEL: testSelectImm32 | 
|  | 88 ; MIPS32: movn {{.*}} | 
|  | 89 ; MIPS32: addiu {{.*}} | 
| 76 | 90 | 
| 77 ; Check for valid addressing mode in the cmp instruction when the | 91 ; Check for valid addressing mode in the cmp instruction when the | 
| 78 ; operand is an immediate.  There is a different x86-32 lowering | 92 ; operand is an immediate.  There is a different x86-32 lowering | 
| 79 ; sequence for 64-bit operands. | 93 ; sequence for 64-bit operands. | 
| 80 define internal i64 @testSelectImm64(i64 %a, i64 %b) { | 94 define internal i64 @testSelectImm64(i64 %a, i64 %b) { | 
| 81 entry: | 95 entry: | 
| 82   %cond = select i1 true, i64 %a, i64 %b | 96   %cond = select i1 true, i64 %a, i64 %b | 
| 83   ret i64 %cond | 97   ret i64 %cond | 
| 84 } | 98 } | 
| 85 ; CHECK-LABEL: testSelectImm64 | 99 ; CHECK-LABEL: testSelectImm64 | 
| 86 ; CHECK-NOT: cmp 0x{{[0-9a-f]+}}, | 100 ; CHECK-NOT: cmp 0x{{[0-9a-f]+}}, | 
| 87 ; ARM32-LABEL: testSelectImm64 | 101 ; ARM32-LABEL: testSelectImm64 | 
| 88 ; ARM32-NOT: cmp #{{.*}}, | 102 ; ARM32-NOT: cmp #{{.*}}, | 
|  | 103 ; MIPS32-LABEL: testSelectImm64 | 
| OLD | NEW | 
|---|