Searched refs:CondI (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 1405 auto *CondI = dyn_cast<Instruction>(Assume->getArgOperand(0)); in processNode() local 1406 if (CondI && SimpleValue::canHandle(CondI)) { in processNode() 1409 AvailableValues.insert(CondI, ConstantInt::getTrue(BB->getContext())); in processNode() 1461 if (auto *CondI = in processNode() local 1463 if (SimpleValue::canHandle(CondI)) { in processNode() 1465 if (auto *KnownCond = AvailableValues.lookup(CondI)) { in processNode() 1482 AvailableValues.insert(CondI, ConstantInt::getTrue(BB->getContext())); in processNode()
|
| H A D | LoopInterchange.cpp | 1347 Instruction *CondI = dyn_cast<Instruction>( in transform() local 1350 if (CondI) in transform() 1351 WorkList.insert(CondI); in transform()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonHardwareLoops.cpp | 655 MachineInstr *CondI = MRI->getVRegDef(PredReg); in getLoopTripCount() local 656 unsigned CondOpc = CondI->getOpcode(); in getLoopTripCount() 661 TII->analyzeCompare(*CondI, CmpReg1, CmpReg2, Mask, ImmValue); in getLoopTripCount() 667 OldInsts.push_back(CondI); in getLoopTripCount() 677 const MachineOperand &Op1 = CondI->getOperand(1); in getLoopTripCount() 678 const MachineOperand &Op2 = CondI->getOperand(2); in getLoopTripCount()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1861 auto *CondI = dyn_cast<CmpInst>(TI->getCondition()); in hasPartialIVCondition() local 1864 if (!CondI || !L.contains(CondI)) in hasPartialIVCondition() 1868 InstToDuplicate.push_back(CondI); in hasPartialIVCondition() 1871 WorkList.append(CondI->op_begin(), CondI->op_end()); in hasPartialIVCondition()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | IRTranslator.cpp | 619 const Instruction *CondI = dyn_cast<Instruction>(CondVal); in translateBr() local 620 if (!TLI.isJumpExpensive() && CondI && CondI->hasOneUse() && in translateBr() 625 if (match(CondI, m_LogicalAnd(m_Value(BOp0), m_Value(BOp1)))) in translateBr() 627 else if (match(CondI, m_LogicalOr(m_Value(BOp0), m_Value(BOp1)))) in translateBr() 632 findMergedConditions(CondI, Succ0MBB, Succ1MBB, &CurMBB, &CurMBB, Opcode, in translateBr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 2490 if (IntInit *CondI = dyn_cast_or_null<IntInit>( in Fold() local 2492 if (CondI->getValue()) in Fold()
|