Lines Matching refs:SetCCInfo
15538 union SetCCInfo { union
15547 SetCCInfo Info;
15557 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) { in isSetCC() argument
15560 SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0); in isSetCC()
15561 SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1); in isSetCC()
15562 SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); in isSetCC()
15563 SetCCInfo.IsAArch64 = false; in isSetCC()
15574 SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3); in isSetCC()
15575 SetCCInfo.IsAArch64 = true; in isSetCC()
15576 SetCCInfo.Info.AArch64.CC = static_cast<AArch64CC::CondCode>( in isSetCC()
15593 SetCCInfo.Info.AArch64.CC = in isSetCC()
15594 AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC); in isSetCC()