Searched refs:LoopDec (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | MVETPAndVPTOptimisationsPass.cpp | 112 MachineInstr *&LoopDec, MachineInstr *&LoopEnd) { in findLoopComponents() argument 149 LoopDec = LoopEnd; in findLoopComponents() 151 LoopDec = in findLoopComponents() 153 if (!LoopDec || LoopDec->getOpcode() != ARM::t2LoopDec) { in findLoopComponents() 158 LLVM_DEBUG(dbgs() << " found loop dec: " << *LoopDec); in findLoopComponents() 161 LookThroughCOPY(MRI->getVRegDef(LoopDec->getOperand(1).getReg()), MRI); in findLoopComponents() 231 MachineInstr *LoopEnd, *LoopPhi, *LoopStart, *LoopDec; in LowerWhileLoopStart() local 232 if (!findLoopComponents(ML, MRI, LoopStart, LoopPhi, LoopDec, LoopEnd)) in LowerWhileLoopStart() 325 MachineInstr *LoopEnd, *LoopPhi, *LoopStart, *LoopDec; in MergeLoopEnd() local 326 if (!findLoopComponents(ML, MRI, LoopStart, LoopPhi, LoopDec, LoopEnd)) in MergeLoopEnd() [all …]
|
| H A D | ARMBaseInstrInfo.cpp | 6597 MachineInstr *LoopDec = nullptr; in createTripCountGreaterCondition() local 6600 LoopDec = &I; in createTripCountGreaterCondition() 6601 assert(LoopDec && "Unable to find copied LoopDec"); in createTripCountGreaterCondition() 6603 BuildMI(&MBB, LoopDec->getDebugLoc(), TII->get(ARM::t2CMPri)) in createTripCountGreaterCondition() 6604 .addReg(LoopDec->getOperand(0).getReg()) in createTripCountGreaterCondition() 6804 MachineInstr *LoopDec = MRI.getUniqueVRegDef(LoopDecResult); in analyzeLoopForPipelining() local 6805 if (!LoopDec || LoopDec->getOpcode() != ARM::t2LoopDec) in analyzeLoopForPipelining() 6813 return std::make_unique<ARMPipelinerLoopInfo>(&*I, LoopDec); in analyzeLoopForPipelining()
|
| H A D | ARMISelDAGToDAG.cpp | 4141 SDNode *LoopDec = in Select() local 4145 ReplaceUses(Int.getNode(), LoopDec); in Select() 4147 SDValue EndArgs[] = { SDValue(LoopDec, 0), N1, Chain }; in Select()
|
| H A D | ARMISelLowering.cpp | 18403 SDValue LoopDec = DAG.getNode(ARMISD::LOOP_DEC, dl, in PerformHWLoopCombine() local 18405 DAG.ReplaceAllUsesWith(Int.getNode(), LoopDec.getNode()); in PerformHWLoopCombine() 18416 SDValue(LoopDec.getNode(), 1), Chain); in PerformHWLoopCombine() 18418 SDValue EndArgs[] = { Chain, SDValue(LoopDec.getNode(), 0), Target }; in PerformHWLoopCombine()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | HardwareLoops.cpp | 387 Instruction *LoopDec = InsertLoopRegDec(LoopCountInit); in Create() local 388 Value *EltsRem = InsertPHICounter(Setup, LoopDec); in Create() 389 LoopDec->setOperand(0, EltsRem); in Create() 390 UpdateBranch(LoopDec); in Create()
|