mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
18451cc4a4
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.
44 lines
1.7 KiB
LLVM
44 lines
1.7 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-linux -mcpu=x86-64 | FileCheck %s
|
|
|
|
define x86_fp80 @rem_pio2l_min(x86_fp80 %z) {
|
|
; CHECK-LABEL: rem_pio2l_min:
|
|
; CHECK: # %bb.0: # %entry
|
|
; CHECK-NEXT: fldt {{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fnstcw -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: movzwl -{{[0-9]+}}(%rsp), %eax
|
|
; CHECK-NEXT: orl $3072, %eax # imm = 0xC00
|
|
; CHECK-NEXT: movw %ax, -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fldcw -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fistl -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fldcw -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: movl -{{[0-9]+}}(%rsp), %eax
|
|
; CHECK-NEXT: movl %eax, -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fisubl -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: flds {{\.?LCPI[0-9]+_[0-9]+}}(%rip)
|
|
; CHECK-NEXT: fmul %st, %st(1)
|
|
; CHECK-NEXT: fnstcw -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: movzwl -{{[0-9]+}}(%rsp), %eax
|
|
; CHECK-NEXT: orl $3072, %eax # imm = 0xC00
|
|
; CHECK-NEXT: movw %ax, -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fldcw -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fxch %st(1)
|
|
; CHECK-NEXT: fistl -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fldcw -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: movl -{{[0-9]+}}(%rsp), %eax
|
|
; CHECK-NEXT: movl %eax, -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fisubl -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fmulp %st, %st(1)
|
|
; CHECK-NEXT: retq
|
|
entry:
|
|
%conv = fptosi x86_fp80 %z to i32
|
|
%conv1 = sitofp i32 %conv to x86_fp80
|
|
%sub = fsub x86_fp80 %z, %conv1
|
|
%mul = fmul x86_fp80 %sub, 0xK40178000000000000000
|
|
%conv2 = fptosi x86_fp80 %mul to i32
|
|
%conv3 = sitofp i32 %conv2 to x86_fp80
|
|
%sub4 = fsub x86_fp80 %mul, %conv3
|
|
%mul5 = fmul x86_fp80 %sub4, 0xK40178000000000000000
|
|
ret x86_fp80 %mul5
|
|
}
|