Home
last modified time | relevance | path

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

/llvm-project/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.h46 std::optional<llvm::DenseMap<int32_t, RecursionStatus>> RecursionDepth; member
/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DSyntheticTypeNameBuilder.cpp32 RecursionDepth = 0; in assignName()
298 RecursionDepth++; in addReferencedODRDies()
299 if (RecursionDepth > 1000) in addReferencedODRDies()
307 RecursionDepth--; in addReferencedODRDies()
H A DSyntheticTypeNameBuilder.h122 size_t RecursionDepth = 0; variable