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-05-07 09:11:17 +08:00
|
|
|
; X64-NEXT: movl %edi, %eax
|
2018-09-20 02:59:08 +08: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-15 05:11:53 +08:00
|
|
|
; X64-NEXT: xorl %edx, %edx
|
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
|
|
|
|
}
|