2016-02-15 14:09:35 +00: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 14:59:13 +00:00
|
|
|
|
2011-04-14 01:46:37 +00:00
|
|
|
; Use movzbl to avoid partial-register updates.
|
2009-08-26 14:59:13 +00:00
|
|
|
|
|
|
|
define i32 @foo(i32 %p, i8 zeroext %x) nounwind {
|
2016-02-15 14:09:35 +00:00
|
|
|
; X32-LABEL: foo:
|
2017-12-04 17:18:51 +00:00
|
|
|
; X32: # %bb.0:
|
2016-02-15 14:09:35 +00:00
|
|
|
; X32-NEXT: movzbl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: divb {{[0-9]+}}(%esp)
|
|
|
|
; X32-NEXT: movzbl %al, %eax
|
|
|
|
; X32-NEXT: andl $1, %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: foo:
|
2017-12-04 17:18:51 +00:00
|
|
|
; X64: # %bb.0:
|
2016-02-15 14:09:35 +00:00
|
|
|
; X64-NEXT: movzbl %dil, %eax
|
|
|
|
; X64-NEXT: divb %sil
|
|
|
|
; X64-NEXT: movzbl %al, %eax
|
|
|
|
; X64-NEXT: andl $1, %eax
|
|
|
|
; X64-NEXT: retq
|
2009-08-26 14:59:13 +00: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 14:09:35 +00:00
|
|
|
|
2009-08-26 14:59:13 +00:00
|
|
|
define i32 @bar(i32 %p, i16 zeroext %x) nounwind {
|
2016-02-15 14:09:35 +00:00
|
|
|
; X32-LABEL: bar:
|
2017-12-04 17:18:51 +00:00
|
|
|
; X32: # %bb.0:
|
2016-04-08 18:58:29 +00:00
|
|
|
; X32-NEXT: movzwl {{[0-9]+}}(%esp), %eax
|
2016-02-15 14:09:35 +00:00
|
|
|
; X32-NEXT: xorl %edx, %edx
|
|
|
|
; X32-NEXT: divw {{[0-9]+}}(%esp)
|
2018-01-31 22:04:26 +00:00
|
|
|
; X32-NEXT: # kill: def $ax killed $ax def $eax
|
2016-02-15 14:09:35 +00:00
|
|
|
; X32-NEXT: andl $1, %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: bar:
|
2017-12-04 17:18:51 +00:00
|
|
|
; X64: # %bb.0:
|
2016-05-07 01:11:17 +00:00
|
|
|
; X64-NEXT: movl %edi, %eax
|
2018-09-19 18:59:08 +00:00
|
|
|
; X64-NEXT: # kill: def $ax killed $ax killed $eax
|
Bias physical register immediate assignments
The machine scheduler currently biases register copies to/from
physical registers to be closer to their point of use / def to
minimize their live ranges. This change extends this to also physical
register assignments from immediate values.
This causes a reduction in reduction in overall register pressure and
minor reduction in spills and indirectly fixes an out-of-registers
assertion (PR39391).
Most test changes are from minor instruction reorderings and register
name selection changes and direct consequences of that.
Reviewers: MatzeB, qcolombet, myatsina, pcc
Subscribers: nemanjai, jvesely, nhaehnle, eraman, hiraditya,
javed.absar, arphaman, jfb, jsji, llvm-commits
Differential Revision: https://reviews.llvm.org/D54218
llvm-svn: 346894
2018-11-14 21:11:53 +00:00
|
|
|
; X64-NEXT: xorl %edx, %edx
|
2016-02-15 14:09:35 +00:00
|
|
|
; X64-NEXT: divw %si
|
2018-01-31 22:04:26 +00:00
|
|
|
; X64-NEXT: # kill: def $ax killed $ax def $eax
|
2016-02-15 14:09:35 +00:00
|
|
|
; X64-NEXT: andl $1, %eax
|
|
|
|
; X64-NEXT: retq
|
2009-08-26 14:59:13 +00: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
|
|
|
|
}
|