Setting the right SDLoc on a newly-created zextload fixes a line table bug which resulted in non-linear stepping behavior. Several backend tests contained CHECK lines which relied on the IROrder inherited from the wrong SDLoc. This patch breaks that dependence where feasbile and regenerates test cases where not. In some cases, changing a node's IROrder may alter register allocation and spill behavior. This can affect performance. I have chosen not to prevent this by applying a "known good" IROrder to SDLocs, as this may hide a more general bug in the scheduler, or cause regressions on other test inputs. rdar://33755881, Part of: llvm.org/PR37262 Differential Revision: https://reviews.llvm.org/D45995 llvm-svn: 331300
30 lines
844 B
LLVM
30 lines
844 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=i686-unknown -mattr=+bmi2 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=i686-unknown -mcpu=core-avx2 | FileCheck %s
|
|
|
|
define i64 @f1(i32 %a, i32 %b) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx
|
|
; CHECK-NEXT: mulxl {{[0-9]+}}(%esp), %eax, %edx
|
|
; CHECK-NEXT: retl
|
|
%x = zext i32 %a to i64
|
|
%y = zext i32 %b to i64
|
|
%r = mul i64 %x, %y
|
|
ret i64 %r
|
|
}
|
|
|
|
define i64 @f2(i32 %a, i32* %p) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: movl {{[0-9]+}}(%esp), %edx
|
|
; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
; CHECK-NEXT: mulxl (%eax), %eax, %edx
|
|
; CHECK-NEXT: retl
|
|
%b = load i32, i32* %p
|
|
%x = zext i32 %a to i64
|
|
%y = zext i32 %b to i64
|
|
%r = mul i64 %x, %y
|
|
ret i64 %r
|
|
}
|