Home
last modified time | relevance | path

Searched refs:LoopCount (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp642 uint64_t LoopCount = PGO.getRegionCount(S); in VisitDoStmt() local
646 uint64_t BodyCount = setCount(LoopCount + CurrentCount); in VisitDoStmt()
657 setCount(BC.BreakCount + CondCount - LoopCount); in VisitDoStmt()
1362 uint64_t LoopCount) const { in createProfileWeightsForLoop()
1368 return createProfileWeights(LoopCount, in createProfileWeightsForLoop()
1369 std::max(*CondCount, LoopCount) - LoopCount); in createProfileWeightsForLoop()
H A DCoverageMappingGen.cpp1644 Counter LoopCount = in VisitCXXForRangeStmt() local
1647 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); in VisitCXXForRangeStmt()
1657 subtractCounters(LoopCount, BodyCount)); in VisitCXXForRangeStmt()
1677 Counter LoopCount = in VisitObjCForCollectionStmt() local
1680 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); in VisitObjCForCollectionStmt()
H A DCodeGenFunction.h1535 uint64_t LoopCount) const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp5360 MachineInstr *Loop, *EndLoop, *LoopCount; member in __anon1500692a0a11::PPCPipelinerLoopInfo
5367 MachineInstr *LoopCount) in PPCPipelinerLoopInfo() argument
5368 : Loop(Loop), EndLoop(EndLoop), LoopCount(LoopCount), in PPCPipelinerLoopInfo()
5373 if (LoopCount->getOpcode() == PPC::LI8 || LoopCount->getOpcode() == PPC::LI) in PPCPipelinerLoopInfo()
5374 TripCount = LoopCount->getOperand(1).getImm(); in PPCPipelinerLoopInfo()
5408 if (LoopCount->getOpcode() == PPC::LI8 || in adjustTripCount()
5409 LoopCount->getOpcode() == PPC::LI) { in adjustTripCount()
5410 int64_t TripCount = LoopCount->getOperand(1).getImm() + TripCountAdjust; in adjustTripCount()
5411 LoopCount->getOperand(1).setImm(TripCount); in adjustTripCount()
5422 LoopCount->eraseFromParent(); in disposed()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp733 Register LoopCount; member in __anone26644db0111::HexagonPipelinerLoopInfo
747 LoopCount = Loop->getOperand(1).getReg(); in HexagonPipelinerLoopInfo()
763 .addReg(LoopCount) in createTripCountGreaterCondition()
791 Register LoopCount = Loop->getOperand(1).getReg(); in adjustTripCount() local
795 .addReg(LoopCount) in adjustTripCount()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp6752 MachineInstr *EndLoop, *LoopCount; member in __anone04f94820a11::ARMPipelinerLoopInfo
6777 ARMPipelinerLoopInfo(MachineInstr *EndLoop, MachineInstr *LoopCount) in ARMPipelinerLoopInfo() argument
6778 : EndLoop(EndLoop), LoopCount(LoopCount), in ARMPipelinerLoopInfo()
6784 return MI == EndLoop || MI == LoopCount; in shouldIgnoreForPipelining()