Home
last modified time | relevance | path

Searched refs:InstrProfIterator (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h41 class InstrProfIterator {
56 InstrProfIterator() = default;
57 InstrProfIterator(InstrProfReader *Reader) : Reader(Reader) { Increment(); } in InstrProfIterator() function
59 InstrProfIterator &operator++() { Increment(); return *this; }
60 bool operator==(const InstrProfIterator &RHS) const {
63 bool operator!=(const InstrProfIterator &RHS) const {
86 InstrProfIterator begin() { return InstrProfIterator(this); } in begin()
87 InstrProfIterator end() { return InstrProfIterator(); } in end()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProfReader.cpp133 void InstrProfIterator::Increment() { in Increment()
137 *this = InstrProfIterator(); in Increment()