Files
clang-p2996/llvm/test/CodeGen/X86/pr35982.ll
James Y Knight b7e4fba6e5 Cleanup x86_mmx after removing IR type (#100646)
After #98505, the textual IR keyword `x86_mmx` was temporarily made to
parse as `<1 x i64>`, so as not to require a lot of test update noise.

This completes the removal of the type, by removing the`x86_mmx` keyword
from the IR parser, and making the (now no-op) test updates via `sed -i
's/\bx86_mmx\b/<1 x i64>/g' $(git grep -l x86_mmx llvm/test/)`.
Resulting bitcasts from <1 x i64> to itself were then manually deleted.

Changes to llvm/test/Bitcode/compatibility-$VERSION.ll were reverted, as
they're intended to be equivalent to the .bc file, if parsed by old
LLVM, so shouldn't be updated.

A few tests were removed, as they're no longer testing anything, in the
following files:
- llvm/test/Transforms/GlobalOpt/x86_mmx_load.ll
- llvm/test/Transforms/InstCombine/cast.ll
- llvm/test/Transforms/InstSimplify/ConstProp/gep-zeroinit-vector.ll

Works towards issue #98272.
2024-07-28 18:12:47 -04:00

51 lines
2.0 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+mmx,+3dnowa -post-RA-scheduler=false | FileCheck %s --check-prefix=NO-POSTRA
; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+mmx,+3dnowa -post-RA-scheduler=true | FileCheck %s --check-prefix=POSTRA
define float @PR35982_emms(<1 x i64>) nounwind {
; NO-POSTRA-LABEL: PR35982_emms:
; NO-POSTRA: # %bb.0:
; NO-POSTRA-NEXT: subl $8, %esp
; NO-POSTRA-NEXT: movl {{[0-9]+}}(%esp), %eax
; NO-POSTRA-NEXT: movq {{[0-9]+}}(%esp), %mm0
; NO-POSTRA-NEXT: punpckhdq %mm0, %mm0 # mm0 = mm0[1,1]
; NO-POSTRA-NEXT: movd %mm0, %ecx
; NO-POSTRA-NEXT: emms
; NO-POSTRA-NEXT: movl %eax, (%esp)
; NO-POSTRA-NEXT: fildl (%esp)
; NO-POSTRA-NEXT: movl %ecx, {{[0-9]+}}(%esp)
; NO-POSTRA-NEXT: fiaddl {{[0-9]+}}(%esp)
; NO-POSTRA-NEXT: addl $8, %esp
; NO-POSTRA-NEXT: retl
;
; POSTRA-LABEL: PR35982_emms:
; POSTRA: # %bb.0:
; POSTRA-NEXT: subl $8, %esp
; POSTRA-NEXT: movq {{[0-9]+}}(%esp), %mm0
; POSTRA-NEXT: movl {{[0-9]+}}(%esp), %eax
; POSTRA-NEXT: punpckhdq %mm0, %mm0 # mm0 = mm0[1,1]
; POSTRA-NEXT: movd %mm0, %ecx
; POSTRA-NEXT: emms
; POSTRA-NEXT: movl %eax, (%esp)
; POSTRA-NEXT: fildl (%esp)
; POSTRA-NEXT: movl %ecx, {{[0-9]+}}(%esp)
; POSTRA-NEXT: fiaddl {{[0-9]+}}(%esp)
; POSTRA-NEXT: addl $8, %esp
; POSTRA-NEXT: retl
%2 = bitcast <1 x i64> %0 to <2 x i32>
%3 = extractelement <2 x i32> %2, i32 0
%4 = extractelement <1 x i64> %0, i32 0
%5 = bitcast i64 %4 to <1 x i64>
%6 = tail call <1 x i64> @llvm.x86.mmx.punpckhdq(<1 x i64> %5, <1 x i64> %5)
%7 = bitcast <1 x i64> %6 to <2 x i32>
%8 = extractelement <2 x i32> %7, i32 0
tail call void @llvm.x86.mmx.emms()
%9 = sitofp i32 %3 to float
%10 = sitofp i32 %8 to float
%11 = fadd float %9, %10
ret float %11
}
declare <1 x i64> @llvm.x86.mmx.punpckhdq(<1 x i64>, <1 x i64>)
declare void @llvm.x86.mmx.emms()