Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-account.cpp169 if (RecursiveCallsOnly && !ThreadStack.RecursionDepth) in accountRecord()
170 ThreadStack.RecursionDepth.emplace(); in accountRecord()
179 if (ThreadStack.RecursionDepth) in accountRecord()
180 ++(*ThreadStack.RecursionDepth)[Record.FuncId]; in accountRecord()
190 if (!ThreadStack.RecursionDepth || in accountRecord()
191 (*ThreadStack.RecursionDepth)[Top.first].isRecursive()) in accountRecord()
193 if (ThreadStack.RecursionDepth) in accountRecord()
194 --(*ThreadStack.RecursionDepth)[Top.first]; in accountRecord()
241 if (!ThreadStack.RecursionDepth || in accountRecord()
242 (*ThreadStack.RecursionDepth)[E.first].isRecursive()) in accountRecord()
[all …]
H A Dxray-account.h48 Optional<llvm::DenseMap<int32_t, RecursionStatus>> RecursionDepth; member