Home
last modified time | relevance | path

Searched refs:CSInc (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp14988 SDValue CSInc = Cmp->getOperand(0); in IsCMPZCSINC() local
14993 while (CSInc.getOpcode() == ISD::AND && in IsCMPZCSINC()
14994 isa<ConstantSDNode>(CSInc.getOperand(1)) && in IsCMPZCSINC()
14995 CSInc.getConstantOperandVal(1) == 1 && CSInc->hasOneUse()) in IsCMPZCSINC()
14996 CSInc = CSInc.getOperand(0); in IsCMPZCSINC()
14998 if (CSInc.getOpcode() == ARMISD::CSINC && in IsCMPZCSINC()
14999 isNullConstant(CSInc.getOperand(0)) && in IsCMPZCSINC()
15000 isNullConstant(CSInc.getOperand(1)) && CSInc->hasOneUse()) { in IsCMPZCSINC()
15001 CC = (ARMCC::CondCodes)CSInc.getConstantOperandVal(2); in IsCMPZCSINC()
15002 return CSInc.getOperand(3); in IsCMPZCSINC()
[all …]