[SelectionDAG] Don't generate libcalls for wide shifts on Windows (PR42711)
Neither libgcc or compiler-rt are usually used on Windows, so these functions can't be called. Differential revision: https://reviews.llvm.org/D66880 llvm-svn: 370204
This commit is contained in:
@@ -12123,6 +12123,14 @@ bool AArch64TargetLowering::
|
||||
return X.getValueType().isScalarInteger() || NewShiftOpcode == ISD::SHL;
|
||||
}
|
||||
|
||||
bool AArch64TargetLowering::shouldExpandShift(SelectionDAG &DAG,
|
||||
SDNode *N) const {
|
||||
if (DAG.getMachineFunction().getFunction().hasMinSize() &&
|
||||
!Subtarget->isTargetWindows())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
void AArch64TargetLowering::initializeSplitCSR(MachineBasicBlock *Entry) const {
|
||||
// Update IsSplitCSR in AArch64unctionInfo.
|
||||
AArch64FunctionInfo *AFI = Entry->getParent()->getInfo<AArch64FunctionInfo>();
|
||||
|
||||
@@ -493,11 +493,7 @@ public:
|
||||
unsigned OldShiftOpcode, unsigned NewShiftOpcode,
|
||||
SelectionDAG &DAG) const override;
|
||||
|
||||
bool shouldExpandShift(SelectionDAG &DAG, SDNode *N) const override {
|
||||
if (DAG.getMachineFunction().getFunction().hasMinSize())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
bool shouldExpandShift(SelectionDAG &DAG, SDNode *N) const override;
|
||||
|
||||
bool shouldTransformSignedTruncationCheck(EVT XVT,
|
||||
unsigned KeptBits) const override {
|
||||
|
||||
@@ -5104,6 +5104,14 @@ bool X86TargetLowering::shouldFoldMaskToVariableShiftPair(SDValue Y) const {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool X86TargetLowering::shouldExpandShift(SelectionDAG &DAG,
|
||||
SDNode *N) const {
|
||||
if (DAG.getMachineFunction().getFunction().hasMinSize() &&
|
||||
!Subtarget.isOSWindows())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool X86TargetLowering::shouldSplatInsEltVarIndex(EVT VT) const {
|
||||
// Any legal vector type can be splatted more efficiently than
|
||||
// loading/spilling from memory.
|
||||
|
||||
@@ -873,11 +873,7 @@ namespace llvm {
|
||||
return VTIsOk(XVT) && VTIsOk(KeptBitsVT);
|
||||
}
|
||||
|
||||
bool shouldExpandShift(SelectionDAG &DAG, SDNode *N) const override {
|
||||
if (DAG.getMachineFunction().getFunction().hasMinSize())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
bool shouldExpandShift(SelectionDAG &DAG, SDNode *N) const override;
|
||||
|
||||
bool shouldSplatInsEltVarIndex(EVT VT) const override;
|
||||
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
; RUN: llc < %s -mtriple=aarch64-unknown-unknown | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=aarch64-windows | FileCheck %s -check-prefix=CHECK-WIN
|
||||
|
||||
; The Windows runtime doesn't have these.
|
||||
; CHECK-WIN-NOT: __ashlti3
|
||||
; CHECK-WIN-NOT: __ashrti3
|
||||
|
||||
define i64 @f0(i64 %val, i64 %amt) minsize optsize {
|
||||
; CHECK-LABEL: f0:
|
||||
@@ -53,6 +58,7 @@ define dso_local { i64, i64 } @shl128(i64 %x.coerce0, i64 %x.coerce1, i8 signext
|
||||
; CHECK-NEXT: bl __ashlti3
|
||||
; CHECK-NEXT: ldr x30, [sp], #16 // 8-byte Folded Reload
|
||||
; CHECK-NEXT: ret
|
||||
|
||||
entry:
|
||||
%x.sroa.2.0.insert.ext = zext i64 %x.coerce1 to i128
|
||||
%x.sroa.2.0.insert.shift = shl nuw i128 %x.sroa.2.0.insert.ext, 64
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=x86_64--windows-msvc | FileCheck %s -check-prefix=CHECK-WIN
|
||||
|
||||
; The Windows runtime doesn't have these.
|
||||
; CHECK-WIN-NOT: __ashlti3
|
||||
; CHECK-WIN-NOT: __ashrti3
|
||||
; CHECK-WIN-NOT: __lshrti3
|
||||
|
||||
define i64 @f0(i64 %val, i64 %amt) minsize optsize {
|
||||
; CHECK-LABEL: f0:
|
||||
|
||||
Reference in New Issue
Block a user