Lines Matching refs:Condition
563 SmallVectorImpl<MachineOperand> &Condition, in analyzeBranch() argument
597 Condition.clear(); in analyzeBranch()
620 if (Condition.empty()) { in analyzeBranch()
627 Condition.push_back(MachineOperand::CreateImm(BranchCond)); in analyzeBranch()
643 SmallVectorImpl<llvm::MachineOperand> &Condition) const { in reverseBranchCondition()
644 assert((Condition.size() == 1) && in reverseBranchCondition()
648 static_cast<LPCC::CondCode>(Condition[0].getImm()); in reverseBranchCondition()
649 Condition[0].setImm(getOppositeCondition(BranchCond)); in reverseBranchCondition()
659 ArrayRef<MachineOperand> Condition, in insertBranch() argument
667 if (Condition.empty()) { in insertBranch()
674 assert((Condition.size() == 1) && in insertBranch()
676 unsigned ConditionalCode = Condition[0].getImm(); in insertBranch()