Lines Matching defs:SetCCInfo
20289 union SetCCInfo {
20298 SetCCInfo Info;
20305 /// \p SetCCInfo is filled accordingly.
20306 /// \post SetCCInfo is meanginfull only when this function returns true.
20308 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) {
20311 SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0);
20312 SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1);
20313 SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
20314 SetCCInfo.IsAArch64 = false;
20325 SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3);
20326 SetCCInfo.IsAArch64 = true;
20327 SetCCInfo.Info.AArch64.CC =
20344 SetCCInfo.Info.AArch64.CC =
20345 AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC);