2016-02-15 22:09:35 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
|
|
; RUN: llc < %s -mtriple=i686-unknown | FileCheck %s --check-prefix=X32
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s --check-prefix=X64
|
2009-08-26 22:59:13 +08:00
|
|
|
|
2011-04-14 09:46:37 +08:00
|
|
|
; Use movzbl to avoid partial-register updates.
|
2009-08-26 22:59:13 +08:00
|
|
|
|
|
|
|
define i32 @foo(i32 %p, i8 zeroext %x) nounwind {
|
2016-02-15 22:09:35 +08:00
|
|
|
; X32-LABEL: foo:
|
2017-12-05 01:18:51 +08:00
|
|
|
; X32: # %bb.0:
|
2016-02-15 22:09:35 +08:00
|
|
|
; X32-NEXT: movzbl {{[0-9]+}}(%esp), %eax
|
2018-02-01 06:04:26 +08:00
|
|
|
; X32-NEXT: # kill: def $eax killed $eax def $ax
|
2016-02-15 22:09:35 +08:00
|
|
|
; X32-NEXT: divb {{[0-9]+}}(%esp)
|
|
|
|
; X32-NEXT: movzbl %al, %eax
|
|
|
|
; X32-NEXT: andl $1, %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: foo:
|
2017-12-05 01:18:51 +08:00
|
|
|
; X64: # %bb.0:
|
2016-02-15 22:09:35 +08:00
|
|
|
; X64-NEXT: movzbl %dil, %eax
|
2018-02-01 06:04:26 +08:00
|
|
|
; X64-NEXT: # kill: def $eax killed $eax def $ax
|
2016-02-15 22:09:35 +08:00
|
|
|
; X64-NEXT: divb %sil
|
|
|
|
; X64-NEXT: movzbl %al, %eax
|
|
|
|
; X64-NEXT: andl $1, %eax
|
|
|
|
; X64-NEXT: retq
|
2009-08-26 22:59:13 +08:00
|
|
|
%q = trunc i32 %p to i8
|
|
|
|
%r = udiv i8 %q, %x
|
|
|
|
%s = zext i8 %r to i32
|
|
|
|
%t = and i32 %s, 1
|
|
|
|
ret i32 %t
|
|
|
|
}
|
2016-02-15 22:09:35 +08:00
|
|
|
|
2009-08-26 22:59:13 +08:00
|
|
|
define i32 @bar(i32 %p, i16 zeroext %x) nounwind {
|
2016-02-15 22:09:35 +08:00
|
|
|
; X32-LABEL: bar:
|
2017-12-05 01:18:51 +08:00
|
|
|
; X32: # %bb.0:
|
2016-04-09 02:58:29 +08:00
|
|
|
; X32-NEXT: movzwl {{[0-9]+}}(%esp), %eax
|
2016-02-15 22:09:35 +08:00
|
|
|
; X32-NEXT: xorl %edx, %edx
|
|
|
|
; X32-NEXT: divw {{[0-9]+}}(%esp)
|
2018-02-01 06:04:26 +08:00
|
|
|
; X32-NEXT: # kill: def $ax killed $ax def $eax
|
2016-02-15 22:09:35 +08:00
|
|
|
; X32-NEXT: andl $1, %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: bar:
|
2017-12-05 01:18:51 +08:00
|
|
|
; X64: # %bb.0:
|
2016-02-15 22:09:35 +08:00
|
|
|
; X64-NEXT: xorl %edx, %edx
|
2016-05-07 09:11:17 +08:00
|
|
|
; X64-NEXT: movl %edi, %eax
|
2016-02-15 22:09:35 +08:00
|
|
|
; X64-NEXT: divw %si
|
2018-02-01 06:04:26 +08:00
|
|
|
; X64-NEXT: # kill: def $ax killed $ax def $eax
|
2016-02-15 22:09:35 +08:00
|
|
|
; X64-NEXT: andl $1, %eax
|
|
|
|
; X64-NEXT: retq
|
2009-08-26 22:59:13 +08:00
|
|
|
%q = trunc i32 %p to i16
|
|
|
|
%r = udiv i16 %q, %x
|
|
|
|
%s = zext i16 %r to i32
|
|
|
|
%t = and i32 %s, 1
|
|
|
|
ret i32 %t
|
|
|
|
}
|