2016-01-04 03:17:37 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
2016-04-02 03:42:23 +08:00
|
|
|
; RUN: llc < %s -mtriple=i686-apple-darwin9 -mattr=+mmx,+sse4.2 | FileCheck %s --check-prefix=X32
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin9 -mattr=+mmx,+sse4.2 | FileCheck %s --check-prefix=X64
|
2016-01-04 03:17:37 +08:00
|
|
|
|
2017-11-29 01:15:09 +08:00
|
|
|
; MMX insertelement is not available; these are promoted to xmm.
|
2010-10-01 07:57:10 +08:00
|
|
|
; (Without SSE they are split to two ints, and the code is much better.)
|
2008-07-26 03:05:58 +08:00
|
|
|
|
2016-01-04 03:17:37 +08:00
|
|
|
define x86_mmx @mmx_movzl(x86_mmx %x) nounwind {
|
2016-04-02 03:42:23 +08:00
|
|
|
; X32-LABEL: mmx_movzl:
|
2017-12-05 01:18:51 +08:00
|
|
|
; X32: ## %bb.0:
|
2016-04-02 03:42:23 +08:00
|
|
|
; X32-NEXT: subl $20, %esp
|
|
|
|
; X32-NEXT: movl $32, %eax
|
2018-02-18 05:49:40 +08:00
|
|
|
; X32-NEXT: movd %eax, %xmm0
|
|
|
|
; X32-NEXT: movq %xmm0, (%esp)
|
2016-04-02 03:42:23 +08:00
|
|
|
; X32-NEXT: movq (%esp), %mm0
|
|
|
|
; X32-NEXT: addl $20, %esp
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: mmx_movzl:
|
2017-12-05 01:18:51 +08:00
|
|
|
; X64: ## %bb.0:
|
2016-04-02 03:42:23 +08:00
|
|
|
; X64-NEXT: movl $32, %eax
|
2018-03-07 06:32:01 +08:00
|
|
|
; X64-NEXT: movq %rax, %xmm0
|
2016-04-02 03:42:23 +08:00
|
|
|
; X64-NEXT: retq
|
2016-01-04 03:17:37 +08:00
|
|
|
%tmp = bitcast x86_mmx %x to <2 x i32>
|
2016-04-02 03:42:23 +08:00
|
|
|
%tmp3 = insertelement <2 x i32> %tmp, i32 32, i32 0
|
|
|
|
%tmp8 = insertelement <2 x i32> %tmp3, i32 0, i32 1
|
2016-01-04 03:17:37 +08:00
|
|
|
%tmp9 = bitcast <2 x i32> %tmp8 to x86_mmx
|
|
|
|
ret x86_mmx %tmp9
|
2008-07-26 03:05:58 +08:00
|
|
|
}
|