Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/tools/llvm-profgen/
H A DPerfReader.h260 uint32_t LBRIndex = 0; member
275 uint64_t LBRLeaf = LBRStack[LBRIndex].Target; in validateInitialState()
298 bool hasNextLBR() const { return LBRIndex < LBRStack.size(); } in hasNextLBR()
299 uint64_t getCurrentLBRSource() const { return LBRStack[LBRIndex].Source; } in getCurrentLBRSource()
300 uint64_t getCurrentLBRTarget() const { return LBRStack[LBRIndex].Target; } in getCurrentLBRTarget()
301 const LBREntry &getCurrentLBR() const { return LBRStack[LBRIndex]; } in getCurrentLBR()
302 bool IsLastLBR() const { return LBRIndex == 0; } in IsLastLBR()
304 void advanceLBR() { LBRIndex++; } in advanceLBR()