Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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 {
89 InstrProfIterator begin() { return InstrProfIterator(this); } in begin()
90 InstrProfIterator end() { return InstrProfIterator(); } in end()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp133 void InstrProfIterator::Increment() { in Increment()
137 *this = InstrProfIterator(); in Increment()