Home | History | Annotate | Download | only in Sparc

Lines Matching defs:CC

77 static bool IsIntegerCC(unsigned CC)
79 return (CC <= SPCC::ICC_VC);
82 static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC)
84 switch(CC) {
259 unsigned CC = Cond[0].getImm();
261 if (IsIntegerCC(CC))
262 BuildMI(&MBB, DL, get(SP::BCOND)).addMBB(TBB).addImm(CC);
264 BuildMI(&MBB, DL, get(SP::FBCOND)).addMBB(TBB).addImm(CC);
297 SPCC::CondCodes CC = static_cast<SPCC::CondCodes>(Cond[0].getImm());
298 Cond[0].setImm(GetOppositeBranchCondition(CC));