Home
last modified time | relevance | path

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

/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp436 DWARFDebugInfoEntryInlinedChain InlinedChain; in getInlinedChainForAddress() local
437 InlinedChain.U = U; in getInlinedChainForAddress()
439 return InlinedChain; in getInlinedChainForAddress()
444 InlinedChain.DIEs.push_back(*DIE); in getInlinedChainForAddress()
458 std::reverse(InlinedChain.DIEs.begin(), InlinedChain.DIEs.end()); in getInlinedChainForAddress()
459 return InlinedChain; in getInlinedChainForAddress()
DDWARFContext.cpp444 const DWARFDebugInfoEntryInlinedChain &InlinedChain = in getFunctionNameForAddress() local
446 if (InlinedChain.DIEs.size() == 0) in getFunctionNameForAddress()
448 const DWARFDebugInfoEntryMinimal &TopFunctionDIE = InlinedChain.DIEs[0]; in getFunctionNameForAddress()
450 TopFunctionDIE.getSubroutineName(InlinedChain.U, Kind)) { in getFunctionNameForAddress()
525 const DWARFDebugInfoEntryInlinedChain &InlinedChain = in getInliningInfoForAddress() local
527 if (InlinedChain.DIEs.size() == 0) { in getInliningInfoForAddress()
542 for (uint32_t i = 0, n = InlinedChain.DIEs.size(); i != n; i++) { in getInliningInfoForAddress()
543 const DWARFDebugInfoEntryMinimal &FunctionDIE = InlinedChain.DIEs[i]; in getInliningInfoForAddress()
547 FunctionDIE.getSubroutineName(InlinedChain.U, Spec.FNKind)) in getInliningInfoForAddress()
569 FunctionDIE.getCallerFrame(InlinedChain.U, CallFile, CallLine, in getInliningInfoForAddress()