Home | History | Annotate | Download | only in AArch64

Lines Matching defs:CC

187     AArch64CC::CondCode CC = (AArch64CC::CondCode)(int)Cond[0].getImm();
188 Cond[0].setImm(AArch64CC::getInvertedCondCode(CC));
415 AArch64CC::CondCode CC;
419 case 1: // b.cc
420 CC = AArch64CC::CondCode(Cond[0].getImm());
430 CC = AArch64CC::EQ;
434 CC = AArch64CC::EQ;
438 CC = AArch64CC::NE;
442 CC = AArch64CC::NE;
469 CC = AArch64CC::EQ;
473 CC = AArch64CC::NE;
518 CC = AArch64CC::getInvertedCondCode(CC);
538 CC);
842 /// Note: If From and To are from different blocks it's assumed CC are accessed
1013 static UsedNZCV getUsedNZCV(AArch64CC::CondCode CC) {
1014 assert(CC != AArch64CC::Invalid);
1016 switch (CC) {
1101 AArch64CC::CondCode CC = findCondCodeUsedByInstr(Instr);
1102 if (CC == AArch64CC::Invalid) // Unsupported conditional instruction
1104 NZCVUsedAfterCmp |= getUsedNZCV(CC);
3947 AArch64CC::CondCode CC = (AArch64CC::CondCode)DefMI->getOperand(3).getImm();
3949 // the CSINC and the branch. The CC may be used by other
3957 CC = AArch64CC::getInvertedCondCode(CC);
3958 BuildMI(RefToMBB, MI, DL, get(AArch64::Bcc)).addImm(CC).addMBB(TBB);