Lines Matching refs:Cond
154 SmallVectorImpl<MachineOperand> &Cond) { in parseCondBranch() argument
155 Cond.push_back(MachineOperand::CreateImm(LastInst->getOperand(1).getImm())); in parseCondBranch()
162 SmallVectorImpl<MachineOperand> &Cond, in analyzeBranch() argument
183 parseCondBranch(LastInst, TBB, Cond); in analyzeBranch()
217 parseCondBranch(SecondLastInst, TBB, Cond); in analyzeBranch()
245 ArrayRef<MachineOperand> Cond, in insertBranch() argument
249 assert((Cond.size() == 1 || Cond.size() == 0) && in insertBranch()
253 if (Cond.empty()) { in insertBranch()
260 unsigned CC = Cond[0].getImm(); in insertBranch()
298 SmallVectorImpl<MachineOperand> &Cond) const { in reverseBranchCondition()
299 assert(Cond.size() == 1); in reverseBranchCondition()
300 SPCC::CondCodes CC = static_cast<SPCC::CondCodes>(Cond[0].getImm()); in reverseBranchCondition()
301 Cond[0].setImm(GetOppositeBranchCondition(CC)); in reverseBranchCondition()