Roman Lebedev 0aef747b84
[NFC][X86][Codegen] Megacommit: mass-regenerate all check lines that were already autogenerated
The motivation is that the update script has at least two deviations
(`<...>@GOT`/`<...>@PLT`/ and not hiding pointer arithmetics) from
what pretty much all the checklines were generated with,
and most of the tests are still not updated, so each time one of the
non-up-to-date tests is updated to see the effect of the code change,
there is a lot of noise. Instead of having to deal with that each
time, let's just deal with everything at once.

This has been done via:
```
cd llvm-project/llvm/test/CodeGen/X86
grep -rl "; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py" | xargs -L1 <...>/llvm-project/llvm/utils/update_llc_test_checks.py --llc-binary <...>/llvm-project/build/bin/llc
```

Not all tests were regenerated, however.
2021-06-11 23:57:02 +03:00

51 lines
1.9 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-- -mattr=avx512bw | FileCheck %s
; This would infinite loop by trying to truncate to i16 and then promote back to i32.
define i16 @PR40793(<8 x i16> %t1) {
; CHECK-LABEL: PR40793:
; CHECK: # %bb.0:
; CHECK-NEXT: vpextrw $5, %xmm0, %ecx
; CHECK-NEXT: andb $15, %cl
; CHECK-NEXT: movl $32733, %eax # imm = 0x7FDD
; CHECK-NEXT: # kill: def $cl killed $cl killed $ecx
; CHECK-NEXT: shrl %cl, %eax
; CHECK-NEXT: # kill: def $ax killed $ax killed $eax
; CHECK-NEXT: retq
%t2 = and <8 x i16> %t1, <i16 15, i16 15, i16 15, i16 15, i16 15, i16 15, i16 15, i16 15>
%t3 = lshr <8 x i16> <i16 25156, i16 -14844, i16 -26779, i16 -16956, i16 -13978, i16 32733, i16 -24894, i16 18530>, %t2
%t4 = bitcast <8 x i16> %t3 to <2 x double>
%t5 = call <2 x double> @llvm.fabs.v2f64(<2 x double> %t4)
%t6 = bitcast <2 x double> %t5 to <8 x i16>
%t7 = extractelement <8 x i16> %t6, i64 5
ret i16 %t7
}
declare <2 x double> @llvm.fabs.v2f64(<2 x double>)
; This would infinite loop by trying to truncate and any_extend.
%struct.anon = type { [9 x i8], [3 x i8] }
@b = common dso_local local_unnamed_addr global %struct.anon zeroinitializer, align 4
define dso_local i32 @d() {
; CHECK-LABEL: d:
; CHECK: # %bb.0:
; CHECK-NEXT: movzbl b+8(%rip), %ecx
; CHECK-NEXT: andl $7, %ecx
; CHECK-NEXT: movl $d, %eax
; CHECK-NEXT: addl %ecx, %eax
; CHECK-NEXT: # kill: def $eax killed $eax killed $rax
; CHECK-NEXT: retq
%bf.load = load i72, i72* bitcast (%struct.anon* @b to i72*), align 4
%bf.lshr = lshr i72 %bf.load, 64
%t0 = trunc i72 %bf.lshr to i64
%bf.cast = and i64 %t0, 7
%add.ptr = getelementptr i8, i8* bitcast (i32 ()* @d to i8*), i64 %bf.cast
%t1 = ptrtoint i8* %add.ptr to i64
%t2 = trunc i64 %t1 to i32
ret i32 %t2
}