Lines Matching refs:SetCCInfo
19725 union SetCCInfo { union
19734 SetCCInfo Info;
19744 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) { in isSetCC() argument
19747 SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0); in isSetCC()
19748 SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1); in isSetCC()
19749 SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); in isSetCC()
19750 SetCCInfo.IsAArch64 = false; in isSetCC()
19761 SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3); in isSetCC()
19762 SetCCInfo.IsAArch64 = true; in isSetCC()
19763 SetCCInfo.Info.AArch64.CC = in isSetCC()
19780 SetCCInfo.Info.AArch64.CC = in isSetCC()
19781 AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC); in isSetCC()