Home
last modified time | relevance | path

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

/external/llvm-project/llvm/tools/llvm-profgen/
DPerfReader.h116 struct UnwindState { struct
127 UnwindState(const HybridSample &Sample) in UnwindState() argument
237 bool isCallState(UnwindState &State) const { in isCallState()
243 bool isReturnState(UnwindState &State) const { in isReturnState()
249 void unwindCall(UnwindState &State);
250 void unwindLinear(UnwindState &State, uint64_t Repeat);
251 void unwindReturn(UnwindState &State);
252 void unwindBranchWithinFrame(UnwindState &State);
254 void recordRangeCount(uint64_t Start, uint64_t End, UnwindState &State,
256 void recordBranchCount(const LBREntry &Branch, UnwindState &State,
DPerfReader.cpp22 void VirtualUnwinder::unwindCall(UnwindState &State) { in unwindCall()
39 void VirtualUnwinder::unwindLinear(UnwindState &State, uint64_t Repeat) { in unwindLinear()
58 void VirtualUnwinder::unwindReturn(UnwindState &State) { in unwindReturn()
67 void VirtualUnwinder::unwindBranchWithinFrame(UnwindState &State) { in unwindBranchWithinFrame()
76 UnwindState &State, uint64_t Repeat) { in recordRangeCount()
84 UnwindState &State, uint64_t Repeat) { in recordBranchCount()
96 UnwindState State(Sample); in unwind()