mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-23 11:38:38 +00:00
Fix a DAGCombiner abort on an invalid shift count constant. This fixes PR3250.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61613 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1eb9268080
commit
cc91d63ab7
@ -3277,6 +3277,8 @@ SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
|
|||||||
if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
|
if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
|
||||||
// See if we can recursively simplify the LHS.
|
// See if we can recursively simplify the LHS.
|
||||||
unsigned Amt = RHSC->getZExtValue();
|
unsigned Amt = RHSC->getZExtValue();
|
||||||
|
// Watch out for shift count overflow though.
|
||||||
|
if (Amt >= Mask.getBitWidth()) break;
|
||||||
APInt NewMask = Mask << Amt;
|
APInt NewMask = Mask << Amt;
|
||||||
SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
|
SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
|
||||||
if (SimplifyLHS.getNode()) {
|
if (SimplifyLHS.getNode()) {
|
||||||
|
17
test/CodeGen/X86/pr3250.ll
Normal file
17
test/CodeGen/X86/pr3250.ll
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
; RUN: llvm-as < %s | llc -march=x86
|
||||||
|
; PR3250
|
||||||
|
|
||||||
|
declare i32 @safe_sub_func_short_u_u(i16 signext, i16 signext) nounwind
|
||||||
|
|
||||||
|
define i32 @func_106(i32 %p_107) nounwind {
|
||||||
|
entry:
|
||||||
|
%0 = tail call i32 (...)* @safe_div_(i32 %p_107, i32 1) nounwind
|
||||||
|
; <i32> [#uses=1]
|
||||||
|
%1 = lshr i32 %0, -9 ; <i32> [#uses=1]
|
||||||
|
%2 = trunc i32 %1 to i16 ; <i16> [#uses=1]
|
||||||
|
%3 = tail call i32 @safe_sub_func_short_u_u(i16 signext 1, i16 signext
|
||||||
|
%2) nounwind ; <i32> [#uses=0]
|
||||||
|
ret i32 undef
|
||||||
|
}
|
||||||
|
|
||||||
|
declare i32 @safe_div_(...)
|
Loading…
x
Reference in New Issue
Block a user