Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-account.cpp171 if (RecursiveCallsOnly && !ThreadStack.RecursionDepth) in accountRecord()
172 ThreadStack.RecursionDepth.emplace(); in accountRecord()
181 if (ThreadStack.RecursionDepth) in accountRecord()
182 ++(*ThreadStack.RecursionDepth)[Record.FuncId]; in accountRecord()
192 if (!ThreadStack.RecursionDepth || in accountRecord()
193 (*ThreadStack.RecursionDepth)[Top.first].isRecursive()) in accountRecord()
195 if (ThreadStack.RecursionDepth) in accountRecord()
196 --(*ThreadStack.RecursionDepth)[Top.first]; in accountRecord()
243 if (!ThreadStack.RecursionDepth || in accountRecord()
244 (*ThreadStack.RecursionDepth)[E.first].isRecursive()) in accountRecord()
[all …]
H A Dxray-account.h48 std::optional<llvm::DenseMap<int32_t, RecursionStatus>> RecursionDepth; member