Home
last modified time | relevance | path

Searched refs:Intervals (Results 1 – 16 of 16) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h56 : Alloc(&Alloc), Intervals(Alloc) {} in CoalescingBitVector()
62 : Alloc(Other.Alloc), Intervals(*Other.Alloc) { in CoalescingBitVector()
78 void clear() { Intervals.clear(); } in clear()
81 bool empty() const { return Intervals.empty(); } in empty()
86 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count()
107 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set()
120 const auto It = Intervals.find(Index); in test()
121 if (It == Intervals.end()) in test()
135 auto It = Intervals.find(Index); in reset()
136 if (It == Intervals.end()) in reset()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DGCNNSAReassign.cpp83 bool tryAssignRegisters(SmallVectorImpl<LiveInterval *> &Intervals,
88 bool scavengeRegs(SmallVectorImpl<LiveInterval *> &Intervals) const;
107 GCNNSAReassign::tryAssignRegisters(SmallVectorImpl<LiveInterval *> &Intervals, in tryAssignRegisters() argument
109 unsigned NumRegs = Intervals.size(); in tryAssignRegisters()
112 if (VRM->hasPhys(Intervals[N]->reg())) in tryAssignRegisters()
113 LRM->unassign(*Intervals[N]); in tryAssignRegisters()
116 if (LRM->checkInterference(*Intervals[N], MCRegister::from(StartReg + N))) in tryAssignRegisters()
120 LRM->assign(*Intervals[N], MCRegister::from(StartReg + N)); in tryAssignRegisters()
141 GCNNSAReassign::scavengeRegs(SmallVectorImpl<LiveInterval *> &Intervals) const { in scavengeRegs()
142 unsigned NumRegs = Intervals.size(); in scavengeRegs()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DIntervalPartition.cpp39 for (unsigned i = 0, e = Intervals.size(); i != e; ++i) in releaseMemory()
40 delete Intervals[i]; in releaseMemory()
42 Intervals.clear(); in releaseMemory()
47 for(unsigned i = 0, e = Intervals.size(); i != e; ++i) in print()
48 Intervals[i]->print(O); in print()
55 Intervals.push_back(I); in addIntervalToPartition()
90 for (unsigned i = 0, e = Intervals.size(); i != e; ++i) in runOnFunction()
91 updatePredecessors(Intervals[i]); in runOnFunction()
116 for (unsigned i = 0, e = Intervals.size(); i != e; ++i) in IntervalPartition()
117 updatePredecessors(Intervals[i]); in IntervalPartition()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRenameIndependentSubregs.cpp91 const SmallVectorImpl<LiveInterval*> &Intervals) const;
96 const SmallVectorImpl<LiveInterval*> &Intervals) const;
101 const SmallVectorImpl<LiveInterval*> &Intervals) const;
135 SmallVector<LiveInterval*, 4> Intervals; in INITIALIZE_PASS_DEPENDENCY() local
136 Intervals.push_back(&LI); in INITIALIZE_PASS_DEPENDENCY()
144 Intervals.push_back(&NewLI); in INITIALIZE_PASS_DEPENDENCY()
149 rewriteOperands(Classes, SubRangeInfos, Intervals); in INITIALIZE_PASS_DEPENDENCY()
150 distribute(Classes, SubRangeInfos, Intervals); in INITIALIZE_PASS_DEPENDENCY()
151 computeMainRangesFixFlags(Classes, SubRangeInfos, Intervals); in INITIALIZE_PASS_DEPENDENCY()
213 const SmallVectorImpl<LiveInterval*> &Intervals) const { in rewriteOperands()
[all …]
H A DStackColoring.cpp444 SmallVector<std::unique_ptr<LiveInterval>, 16> Intervals; member in __anon1be926320111::StackColoring
593 for (unsigned I = 0, E = Intervals.size(); I != E; ++I) { in dumpIntervals()
595 Intervals[I]->dump(); in dumpIntervals()
897 VNInfo *VNI = Intervals[Slot]->getValNumInfo(0); in calculateLiveIntervals()
898 Intervals[Slot]->addSegment( in calculateLiveIntervals()
913 VNInfo *VNI = Intervals[i]->getValNumInfo(0); in calculateLiveIntervals()
914 Intervals[i]->addSegment(LiveInterval::Segment(Starts[i], EndIdx, VNI)); in calculateLiveIntervals()
1063 const LiveInterval *Interval = &*Intervals[FromSlot]; in remapInstructions()
1174 if (Intervals[Slot]->empty()) in removeInvalidSlotRanges()
1179 LiveInterval *Interval = &*Intervals[Slot]; in removeInvalidSlotRanges()
[all …]
H A DStackSlotColoring.cpp209 SmallVector<Pair *, 16> Intervals; in InitializeSlots() local
211 Intervals.reserve(LS->getNumIntervals()); in InitializeSlots()
213 Intervals.push_back(&I); in InitializeSlots()
214 llvm::sort(Intervals, in InitializeSlots()
219 for (auto *I : Intervals) { in InitializeSlots()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DIntervalPartition.h48 std::vector<Interval *> Intervals; variable
72 bool isDegeneratePartition() { return Intervals.size() == 1; } in isDegeneratePartition()
88 const std::vector<Interval*> &getIntervals() const { return Intervals; } in getIntervals()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerCorpus.h279 Intervals.resize(N + 1); in UpdateCorpusDistribution()
281 std::iota(Intervals.begin(), Intervals.end(), 0); in UpdateCorpusDistribution()
295 Intervals.begin(), Intervals.end(), Weights.begin()); in UpdateCorpusDistribution()
299 Vector<double> Intervals; variable
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Dpackage.d33 $(TD Intervals and Ranges of Time)
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/uni/
H A Dpackage.d2167 return Intervals!(typeof(data.array))(data.array);
2183 return Intervals!(typeof(data[]))(data[]).array;
2783 static struct Intervals(Range)
2859 return Intervals(slice, s*2+start, e*2+start);
2883 auto ivals = Intervals!(typeof(data[]))(data[]);
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Duni.d2200 return Intervals!(typeof(data))(data); in byInterval()
2796 static struct Intervals(Range) in Intervals() function
2867 return Intervals(slice, s*2+start, e*2+start); in Intervals()
2891 auto ivals = Intervals!(typeof(data[]))(data[]); in sanitize()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCodeGenerator.rst1160 Live Intervals
1163 Live Intervals are the ranges (intervals) where a variable is *live*. They are
1207 Live Intervals Analysis argument
/netbsd-src/external/mpl/bind/dist/doc/dnssec-guide/
H A Dadvanced-discussions.rst19 Signature Validity Periods and Zone Re-Signing Intervals
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp23014 IMap Intervals(A); in parallelizeChainedStores() local
23035 Intervals.insert(0, (St->getMemoryVT().getSizeInBits() + 7) / 8, Unit); in parallelizeChainedStores()
23057 auto I = Intervals.find(Offset); in parallelizeChainedStores()
23059 if (I != Intervals.end() && I.start() < (Offset + Length)) in parallelizeChainedStores()
23062 if (I != Intervals.begin() && (--I).stop() <= Offset) in parallelizeChainedStores()
23064 Intervals.insert(Offset, Offset + Length, Unit); in parallelizeChainedStores()
/netbsd-src/external/mpl/bind/dist/doc/arm/
H A Dreference.rst4072 Periodic Task Intervals
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dmm-viet.comp.po25332 msgid "Intervals shown in Day and Work Week views, in minutes."