Home
last modified time | relevance | path

Searched refs:Interval (Results 1 – 25 of 51) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInterval.h36 class Interval {
88 inline bool operator==(const Interval &I) const {
99 inline Interval::succ_iterator succ_begin(Interval *I) { in succ_begin()
102 inline Interval::succ_iterator succ_end(Interval *I) { in succ_end()
109 inline Interval::pred_iterator pred_begin(Interval *I) { in pred_begin()
112 inline Interval::pred_iterator pred_end(Interval *I) { in pred_end()
116 template <> struct GraphTraits<Interval*> {
117 using NodeRef = Interval *;
118 using ChildIteratorType = Interval::succ_iterator;
127 template <> struct GraphTraits<Inverse<Interval*>> {
[all …]
H A DIntervalPartition.h32 class Interval; variable
43 using IntervalMapTy = std::map<BasicBlock *, Interval *>;
46 using IntervalListTy = std::vector<Interval *>;
47 Interval *RootInterval = nullptr;
48 std::vector<Interval *> Intervals;
68 inline Interval *getRootInterval() { return RootInterval; } in getRootInterval()
77 inline Interval *getBlockInterval(BasicBlock *BB) { in getBlockInterval()
88 const std::vector<Interval*> &getIntervals() const { return Intervals; } in getIntervals()
97 void addIntervalToPartition(Interval *I);
103 void updatePredecessors(Interval *Int);
H A DIntervalIterator.h71 inline void addNodeToInterval(Interval *Int, BasicBlock *BB) { in addNodeToInterval()
81 inline void addNodeToInterval(Interval *Int, Interval *I) { in addNodeToInterval()
89 std::vector<std::pair<Interval *, typename Interval::succ_iterator>> IntStack;
133 const Interval *operator*() const { return IntStack.back().first; }
134 Interval *operator*() { return IntStack.back().first; }
135 const Interval *operator->() const { return operator*(); }
136 Interval *operator->() { return operator*(); }
143 Interval::succ_iterator &SuccIt = IntStack.back().second,
180 Interval *Int = new Interval(Header); in ProcessInterval()
199 void ProcessNode(Interval *Int, NodeTy *Node) { in ProcessNode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIntervalPartition.cpp39 for (Interval *I : Intervals) in releaseMemory()
47 for (const Interval *I : Intervals) in print()
54 void IntervalPartition::addIntervalToPartition(Interval *I) { in addIntervalToPartition()
58 for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end(); in addIntervalToPartition()
67 void IntervalPartition::updatePredecessors(Interval *Int) { in updatePredecessors()
90 for (Interval *I : Intervals) in runOnFunction()
116 for (Interval *I : Intervals) in IntervalPartition()
H A DInterval.cpp24 void Interval::print(raw_ostream &OS) const { in print()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DIntervalPartition.cpp42 BuildResult<Node> Interval; in buildInterval() local
43 Interval.Nodes.push_back(Header); in buildInterval()
79 return llvm::is_contained(Interval.Nodes, P); in buildInterval()
82 Interval.Nodes.push_back(B); in buildInterval()
98 if (!llvm::is_contained(Interval.Nodes, B)) in buildInterval()
99 Interval.Successors.insert(B); in buildInterval()
101 return Interval; in buildInterval()
113 CFGIntervalNode &Interval = Graph.emplace_back(Graph.size()); in fillIntervalNode() local
122 Index[getID(*N)] = &Interval; in fillIntervalNode()
126 Interval.Nodes = std::move(Result.Nodes); in fillIntervalNode()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h137 void setCachePruningInterval(int Interval) { in setCachePruningInterval() argument
138 if(Interval < 0) in setCachePruningInterval()
139 CacheOptions.Policy.Interval.reset(); in setCachePruningInterval()
141 CacheOptions.Policy.Interval = std::chrono::seconds(Interval); in setCachePruningInterval()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp36 using Interval = std::pair<uint64_t, uint64_t>; typedef
38 static Interval intersect(const Interval &I1, const Interval &I2) { in intersect()
110 Interval RequestExtent = std::make_pair(Offset, Offset + Size); in readBytes()
128 Interval CachedExtent = in readBytes()
133 Interval Intersection = intersect(CachedExtent, RequestExtent); in readBytes()
290 Interval WriteInterval = std::make_pair(Offset, Offset + Data.size()); in fixCacheAfterWrite()
291 Interval CachedInterval = in fixCacheAfterWrite()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp90 Policy.Interval = *DurationOrErr; in parseCachePruningPolicy()
184 if (!Policy.Interval) in pruneCache()
186 if (Policy.Interval != seconds(0)) { in pruneCache()
191 if (TimeStampAge <= *Policy.Interval) { in pruneCache()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp1031 const LiveInterval *Interval = &*Intervals[FromSlot]; in remapInstructions() local
1032 assert(Interval->find(Index) != Interval->end() && in remapInstructions()
1150 LiveInterval *Interval = &*Intervals[Slot]; in removeInvalidSlotRanges() local
1152 if (Interval->find(Index) == Interval->end()) { in removeInvalidSlotRanges()
1153 Interval->clear(); in removeInvalidSlotRanges()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h199 const s32 Interval = atomic_load_relaxed(&ReleaseToOsIntervalMs); in store() local
209 if (Interval == 0 && !SCUDO_FUCHSIA) { in store()
221 } else if (Interval == 0) { in store()
267 else if (Interval >= 0) in store()
268 releaseOlderThan(Time - static_cast<u64>(Interval) * 1000000); in store()
362 const s32 Interval = Max( in setOption() local
365 atomic_store_relaxed(&ReleaseToOsIntervalMs, Interval); in setOption()
H A Dflags.inc46 "Interval (in milliseconds) at which to attempt release of unused "
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp757 RegInterval Interval = getRegInterval(MI, MRI, TRI, OpNo); in setExpScore() local
759 for (int RegNo = Interval.first; RegNo < Interval.second; ++RegNo) { in setExpScore()
887 RegInterval Interval = getRegInterval(&Inst, MRI, TRI, OpNo); in updateByEvent()
888 for (int RegNo = Interval.first; RegNo < Interval.second; in updateByEvent()
899 RegInterval Interval = getRegInterval(&Inst, MRI, TRI, I); in updateByEvent() local
901 if (Interval.first >= NUM_ALL_VGPRS) in updateByEvent()
909 for (int RegNo = Interval.first; RegNo < Interval.second; ++RegNo) in updateByEvent()
913 for (int RegNo = Interval.first; RegNo < Interval.second; ++RegNo) { in updateByEvent()
1805 for (int RegNo = Interval.first; RegNo < Interval.second; ++RegNo) { in generateWaitcntInstBefore()
2403 for (int RegNo = Interval.first; RegNo < Interval.second; ++RegNo) { in shouldFlushVmCnt()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCachePruning.h33 std::optional<std::chrono::seconds> Interval = std::chrono::seconds(1200); member
/freebsd/sys/contrib/device-tree/Bindings/power/supply/
H A Dda9150-fg.txt7 - dlg,update-interval: Interval time (milliseconds) between battery level checks.
H A Ddlg,da9150-fuel-gauge.yaml21 description: Interval time (milliseconds) between battery level checks.
/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Djcore,pit.txt1 J-Core Programmable Interval Timer and Clocksource
/freebsd/contrib/llvm-project/llvm/include/llvm/Debuginfod/
H A DDebuginfod.h150 Error updateForever(std::chrono::milliseconds Interval);
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h441 void enableNodeReclamation(unsigned Interval) { in enableNodeReclamation() argument
442 ReclaimCounter = ReclaimNodeInterval = Interval; in enableNodeReclamation()
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dceva,ahci-1v84.yaml84 - description: RIT - Retry Interval Timer.
130 - description: RIT - Retry Interval Timer.
H A Dahci-ceva.txt36 RIT: Retry Interval Timer.
/freebsd/sys/contrib/device-tree/Bindings/soundwire/
H A Dqcom,soundwire.yaml90 Out ports followed by In ports. Used for Sample Interval calculation.
101 Out ports followed by In ports. Used for Sample Interval calculation.
/freebsd/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp386 Error DebuginfodCollection::updateForever(std::chrono::milliseconds Interval) { in updateForever() argument
390 std::this_thread::sleep_for(Interval); in updateForever()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDataFileCache.cpp36 policy.Interval = std::chrono::hours(1); in GetLLDBIndexCachePolicy()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp358 const uint32_t Interval = 1 << OffsetLabelIntervalBits; in defineSection() local
360 for (uint32_t Off = Interval, E = Layout.getSectionAddressSize(&MCSec); in defineSection()
361 Off < E; Off += Interval) { in defineSection()

123