Searched refs:BranchCond (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Target/Lanai/ |
| H A D | LanaiInstrInfo.cpp | 621 LPCC::CondCode BranchCond = in analyzeBranch() local 627 Condition.push_back(MachineOperand::CreateImm(BranchCond)); in analyzeBranch() 647 LPCC::CondCode BranchCond = in reverseBranchCondition() local 649 Condition[0].setImm(getOppositeCondition(BranchCond)); in reverseBranchCondition()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 1898 auto *BranchCond = dyn_cast<CmpInst>(PBranch->Condition); in performSymbolicCmpEvaluation() local 1899 if (!BranchCond) in performSymbolicCmpEvaluation() 1901 auto *BranchOp0 = lookupOperandLeader(BranchCond->getOperand(0)); in performSymbolicCmpEvaluation() 1902 auto *BranchOp1 = lookupOperandLeader(BranchCond->getOperand(1)); in performSymbolicCmpEvaluation() 1903 auto BranchPredicate = BranchCond->getPredicate(); in performSymbolicCmpEvaluation() 1906 BranchPredicate = BranchCond->getSwappedPredicate(); in performSymbolicCmpEvaluation()
|
| H A D | JumpThreading.cpp | 2991 Value *BranchCond = BI->getCondition(); in threadGuard() local 3000 auto Impl = isImpliedCondition(BranchCond, GuardCond, DL); in threadGuard() 3005 Impl = isImpliedCondition(BranchCond, GuardCond, DL, /* LHSIsTrue */ false); in threadGuard()
|
| H A D | GVN.cpp | 2489 Value *BranchCond = BI->getCondition(); in processInstruction() local 2501 Changed |= propagateEquality(BranchCond, TrueVal, TrueE, true); in processInstruction() 2505 Changed |= propagateEquality(BranchCond, FalseVal, FalseE, true); in processInstruction()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InstrInfo.cpp | 2917 SmallVectorImpl<MachineOperand> &BranchCond, in canMakeTailCallConditional() argument 2931 assert(BranchCond.size() == 1); in canMakeTailCallConditional() 2932 if (BranchCond[0].getImm() > X86::LAST_VALID_COND) { in canMakeTailCallConditional() 2948 MachineBasicBlock &MBB, SmallVectorImpl<MachineOperand> &BranchCond, in replaceBranchWithTailCall() argument 2950 assert(canMakeTailCallConditional(BranchCond, TailCall)); in replaceBranchWithTailCall() 2961 assert(BranchCond.size() == 1); in replaceBranchWithTailCall() 2962 if (CC != BranchCond[0].getImm()) in replaceBranchWithTailCall() 2974 MIB->addOperand(BranchCond[0]); // Condition. in replaceBranchWithTailCall()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.td | 2489 def Bcc : BranchCond<0, "b">; 2494 def BCcc : BranchCond<1, "bc">, Requires<[HasHBC]>;
|
| H A D | AArch64InstrFormats.td | 1852 class BranchCond<bit bit4, string mnemonic>
|