144d95122SEugene Zelenko //===- SymbolizableObjectFile.cpp -----------------------------------------===//
28df3a07aSAlexey Samsonov //
32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
68df3a07aSAlexey Samsonov //
78df3a07aSAlexey Samsonov //===----------------------------------------------------------------------===//
88df3a07aSAlexey Samsonov //
98df3a07aSAlexey Samsonov // Implementation of SymbolizableObjectFile class.
108df3a07aSAlexey Samsonov //
118df3a07aSAlexey Samsonov //===----------------------------------------------------------------------===//
128df3a07aSAlexey Samsonov 
138df3a07aSAlexey Samsonov #include "SymbolizableObjectFile.h"
1444d95122SEugene Zelenko #include "llvm/ADT/STLExtras.h"
1544d95122SEugene Zelenko #include "llvm/ADT/Triple.h"
16264b5d9eSZachary Turner #include "llvm/BinaryFormat/COFF.h"
17c038e2dbSReid Kleckner #include "llvm/DebugInfo/DWARF/DWARFContext.h"
1844d95122SEugene Zelenko #include "llvm/Object/COFF.h"
19*04a2e126SFangrui Song #include "llvm/Object/ELFObjectFile.h"
2044d95122SEugene Zelenko #include "llvm/Object/ObjectFile.h"
2144d95122SEugene Zelenko #include "llvm/Object/SymbolSize.h"
2244d95122SEugene Zelenko #include "llvm/Support/Casting.h"
2344d95122SEugene Zelenko #include "llvm/Support/DataExtractor.h"
2444d95122SEugene Zelenko #include <algorithm>
258df3a07aSAlexey Samsonov 
2644d95122SEugene Zelenko using namespace llvm;
278df3a07aSAlexey Samsonov using namespace object;
2844d95122SEugene Zelenko using namespace symbolize;
298df3a07aSAlexey Samsonov 
301c03389cSReid Kleckner Expected<std::unique_ptr<SymbolizableObjectFile>>
315de4692cSYuanfang Chen SymbolizableObjectFile::create(const object::ObjectFile *Obj,
32a56d81f4SPeter Collingbourne                                std::unique_ptr<DIContext> DICtx,
33a56d81f4SPeter Collingbourne                                bool UntagAddresses) {
340feb6e52SPeter Collingbourne   assert(DICtx);
358df3a07aSAlexey Samsonov   std::unique_ptr<SymbolizableObjectFile> res(
36a56d81f4SPeter Collingbourne       new SymbolizableObjectFile(Obj, std::move(DICtx), UntagAddresses));
378df3a07aSAlexey Samsonov   std::unique_ptr<DataExtractor> OpdExtractor;
388df3a07aSAlexey Samsonov   uint64_t OpdAddress = 0;
398df3a07aSAlexey Samsonov   // Find the .opd (function descriptor) section if any, for big-endian
408df3a07aSAlexey Samsonov   // PowerPC64 ELF.
418df3a07aSAlexey Samsonov   if (Obj->getArch() == Triple::ppc64) {
428df3a07aSAlexey Samsonov     for (section_iterator Section : Obj->sections()) {
43bcc00e1aSGeorge Rimar       Expected<StringRef> NameOrErr = Section->getName();
44bcc00e1aSGeorge Rimar       if (!NameOrErr)
451c03389cSReid Kleckner         return NameOrErr.takeError();
46bcc00e1aSGeorge Rimar 
47bcc00e1aSGeorge Rimar       if (*NameOrErr == ".opd") {
48e183340cSFangrui Song         Expected<StringRef> E = Section->getContents();
49e183340cSFangrui Song         if (!E)
501c03389cSReid Kleckner           return E.takeError();
51e183340cSFangrui Song         OpdExtractor.reset(new DataExtractor(*E, Obj->isLittleEndian(),
528df3a07aSAlexey Samsonov                                              Obj->getBytesInAddress()));
538df3a07aSAlexey Samsonov         OpdAddress = Section->getAddress();
548df3a07aSAlexey Samsonov         break;
558df3a07aSAlexey Samsonov       }
568df3a07aSAlexey Samsonov     }
578df3a07aSAlexey Samsonov   }
588df3a07aSAlexey Samsonov   std::vector<std::pair<SymbolRef, uint64_t>> Symbols =
598df3a07aSAlexey Samsonov       computeSymbolSizes(*Obj);
608df3a07aSAlexey Samsonov   for (auto &P : Symbols)
611c03389cSReid Kleckner     if (Error E =
621c03389cSReid Kleckner             res->addSymbol(P.first, P.second, OpdExtractor.get(), OpdAddress))
631c03389cSReid Kleckner       return std::move(E);
648df3a07aSAlexey Samsonov 
658df3a07aSAlexey Samsonov   // If this is a COFF object and we didn't find any symbols, try the export
668df3a07aSAlexey Samsonov   // table.
678df3a07aSAlexey Samsonov   if (Symbols.empty()) {
688df3a07aSAlexey Samsonov     if (auto *CoffObj = dyn_cast<COFFObjectFile>(Obj))
691c03389cSReid Kleckner       if (Error E = res->addCoffExportSymbols(CoffObj))
701c03389cSReid Kleckner         return std::move(E);
718df3a07aSAlexey Samsonov   }
72afb54fd6SFangrui Song 
73*04a2e126SFangrui Song   std::vector<SymbolDesc> &Fs = res->Functions, &Os = res->Objects;
74*04a2e126SFangrui Song   auto Uniquify = [](std::vector<SymbolDesc> &S) {
75cb300f12SFangrui Song     // Sort by (Addr,Size,Name). If several SymbolDescs share the same Addr,
76cb300f12SFangrui Song     // pick the one with the largest Size. This helps us avoid symbols with no
77cb300f12SFangrui Song     // size information (Size=0).
78cb300f12SFangrui Song     llvm::sort(S);
79cb300f12SFangrui Song     auto I = S.begin(), E = S.end(), J = S.begin();
80cb300f12SFangrui Song     while (I != E) {
81cb300f12SFangrui Song       auto OI = I;
82*04a2e126SFangrui Song       while (++I != E && OI->Addr == I->Addr) {
83cb300f12SFangrui Song       }
84cb300f12SFangrui Song       *J++ = I[-1];
85cb300f12SFangrui Song     }
86cb300f12SFangrui Song     S.erase(J, S.end());
87cb300f12SFangrui Song   };
88cb300f12SFangrui Song   Uniquify(Fs);
89cb300f12SFangrui Song   Uniquify(Os);
90afb54fd6SFangrui Song 
91c55cf4afSBill Wendling   return std::move(res);
928df3a07aSAlexey Samsonov }
938df3a07aSAlexey Samsonov 
945de4692cSYuanfang Chen SymbolizableObjectFile::SymbolizableObjectFile(const ObjectFile *Obj,
95a56d81f4SPeter Collingbourne                                                std::unique_ptr<DIContext> DICtx,
96a56d81f4SPeter Collingbourne                                                bool UntagAddresses)
97a56d81f4SPeter Collingbourne     : Module(Obj), DebugInfoContext(std::move(DICtx)),
98a56d81f4SPeter Collingbourne       UntagAddresses(UntagAddresses) {}
998df3a07aSAlexey Samsonov 
1008df3a07aSAlexey Samsonov namespace {
10144d95122SEugene Zelenko 
1028df3a07aSAlexey Samsonov struct OffsetNamePair {
1038df3a07aSAlexey Samsonov   uint32_t Offset;
1048df3a07aSAlexey Samsonov   StringRef Name;
10544d95122SEugene Zelenko 
1068df3a07aSAlexey Samsonov   bool operator<(const OffsetNamePair &R) const {
1078df3a07aSAlexey Samsonov     return Offset < R.Offset;
1088df3a07aSAlexey Samsonov   }
1098df3a07aSAlexey Samsonov };
11044d95122SEugene Zelenko 
11144d95122SEugene Zelenko } // end anonymous namespace
1128df3a07aSAlexey Samsonov 
1131c03389cSReid Kleckner Error SymbolizableObjectFile::addCoffExportSymbols(
1148df3a07aSAlexey Samsonov     const COFFObjectFile *CoffObj) {
1158df3a07aSAlexey Samsonov   // Get all export names and offsets.
1168df3a07aSAlexey Samsonov   std::vector<OffsetNamePair> ExportSyms;
1178df3a07aSAlexey Samsonov   for (const ExportDirectoryEntryRef &Ref : CoffObj->export_directories()) {
1188df3a07aSAlexey Samsonov     StringRef Name;
1198df3a07aSAlexey Samsonov     uint32_t Offset;
1208df3a07aSAlexey Samsonov     if (auto EC = Ref.getSymbolName(Name))
1218df3a07aSAlexey Samsonov       return EC;
1228df3a07aSAlexey Samsonov     if (auto EC = Ref.getExportRVA(Offset))
1238df3a07aSAlexey Samsonov       return EC;
1248df3a07aSAlexey Samsonov     ExportSyms.push_back(OffsetNamePair{Offset, Name});
1258df3a07aSAlexey Samsonov   }
1268df3a07aSAlexey Samsonov   if (ExportSyms.empty())
1271c03389cSReid Kleckner     return Error::success();
1288df3a07aSAlexey Samsonov 
1298df3a07aSAlexey Samsonov   // Sort by ascending offset.
1308df3a07aSAlexey Samsonov   array_pod_sort(ExportSyms.begin(), ExportSyms.end());
1318df3a07aSAlexey Samsonov 
1328df3a07aSAlexey Samsonov   // Approximate the symbol sizes by assuming they run to the next symbol.
1338df3a07aSAlexey Samsonov   // FIXME: This assumes all exports are functions.
1348df3a07aSAlexey Samsonov   uint64_t ImageBase = CoffObj->getImageBase();
1358df3a07aSAlexey Samsonov   for (auto I = ExportSyms.begin(), E = ExportSyms.end(); I != E; ++I) {
1368df3a07aSAlexey Samsonov     OffsetNamePair &Export = *I;
1378df3a07aSAlexey Samsonov     // FIXME: The last export has a one byte size now.
1388df3a07aSAlexey Samsonov     uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1;
1398df3a07aSAlexey Samsonov     uint64_t SymbolStart = ImageBase + Export.Offset;
1408df3a07aSAlexey Samsonov     uint64_t SymbolSize = NextOffset - Export.Offset;
141*04a2e126SFangrui Song     Functions.push_back({SymbolStart, SymbolSize, Export.Name, 0});
1428df3a07aSAlexey Samsonov   }
1431c03389cSReid Kleckner   return Error::success();
1448df3a07aSAlexey Samsonov }
1458df3a07aSAlexey Samsonov 
1461c03389cSReid Kleckner Error SymbolizableObjectFile::addSymbol(const SymbolRef &Symbol,
1478df3a07aSAlexey Samsonov                                         uint64_t SymbolSize,
1488df3a07aSAlexey Samsonov                                         DataExtractor *OpdExtractor,
1498df3a07aSAlexey Samsonov                                         uint64_t OpdAddress) {
150123be5d4SMatt Davis   // Avoid adding symbols from an unknown/undefined section.
1516d766c8bSFangrui Song   const ObjectFile &Obj = *Symbol.getObject();
152*04a2e126SFangrui Song   Expected<StringRef> SymbolNameOrErr = Symbol.getName();
153*04a2e126SFangrui Song   if (!SymbolNameOrErr)
154*04a2e126SFangrui Song     return SymbolNameOrErr.takeError();
155*04a2e126SFangrui Song   StringRef SymbolName = *SymbolNameOrErr;
156*04a2e126SFangrui Song 
157*04a2e126SFangrui Song   uint32_t ELFSymIdx =
158*04a2e126SFangrui Song       Obj.isELF() ? ELFSymbolRef(Symbol).getRawDataRefImpl().d.b : 0;
159123be5d4SMatt Davis   Expected<section_iterator> Sec = Symbol.getSection();
160*04a2e126SFangrui Song   if (!Sec || Obj.section_end() == *Sec) {
161*04a2e126SFangrui Song     if (Obj.isELF()) {
162*04a2e126SFangrui Song       // Store the (index, filename) pair for a file symbol.
163*04a2e126SFangrui Song       ELFSymbolRef ESym(Symbol);
164*04a2e126SFangrui Song       if (ESym.getELFType() == ELF::STT_FILE)
165*04a2e126SFangrui Song         FileSymbols.emplace_back(ELFSymIdx, SymbolName);
166*04a2e126SFangrui Song     }
1671c03389cSReid Kleckner     return Error::success();
168*04a2e126SFangrui Song   }
1696d766c8bSFangrui Song 
1707bd8d994SKevin Enderby   Expected<SymbolRef::Type> SymbolTypeOrErr = Symbol.getType();
1717bd8d994SKevin Enderby   if (!SymbolTypeOrErr)
1721c03389cSReid Kleckner     return SymbolTypeOrErr.takeError();
1735afbc1cdSKevin Enderby   SymbolRef::Type SymbolType = *SymbolTypeOrErr;
1746d766c8bSFangrui Song   if (Obj.isELF()) {
1756d766c8bSFangrui Song     // Allow function and data symbols. Additionally allow STT_NONE, which are
1766d766c8bSFangrui Song     // common for functions defined in assembly.
1776d766c8bSFangrui Song     uint8_t Type = ELFSymbolRef(Symbol).getELFType();
1786d766c8bSFangrui Song     if (Type != ELF::STT_NOTYPE && Type != ELF::STT_FUNC &&
1796d766c8bSFangrui Song         Type != ELF::STT_OBJECT && Type != ELF::STT_GNU_IFUNC)
1801c03389cSReid Kleckner       return Error::success();
1816d766c8bSFangrui Song   } else if (SymbolType != SymbolRef::ST_Function &&
1826d766c8bSFangrui Song              SymbolType != SymbolRef::ST_Data) {
1836d766c8bSFangrui Song     return Error::success();
1846d766c8bSFangrui Song   }
1856d766c8bSFangrui Song 
186931cb65dSKevin Enderby   Expected<uint64_t> SymbolAddressOrErr = Symbol.getAddress();
187931cb65dSKevin Enderby   if (!SymbolAddressOrErr)
1881c03389cSReid Kleckner     return SymbolAddressOrErr.takeError();
1898df3a07aSAlexey Samsonov   uint64_t SymbolAddress = *SymbolAddressOrErr;
190a56d81f4SPeter Collingbourne   if (UntagAddresses) {
191a56d81f4SPeter Collingbourne     // For kernel addresses, bits 56-63 need to be set, so we sign extend bit 55
192a56d81f4SPeter Collingbourne     // into bits 56-63 instead of masking them out.
193f0380bacSPeter Collingbourne     SymbolAddress &= (1ull << 56) - 1;
194a56d81f4SPeter Collingbourne     SymbolAddress = (int64_t(SymbolAddress) << 8) >> 8;
195a56d81f4SPeter Collingbourne   }
1968df3a07aSAlexey Samsonov   if (OpdExtractor) {
1978df3a07aSAlexey Samsonov     // For big-endian PowerPC64 ELF, symbols in the .opd section refer to
1988df3a07aSAlexey Samsonov     // function descriptors. The first word of the descriptor is a pointer to
1998df3a07aSAlexey Samsonov     // the function's code.
2008df3a07aSAlexey Samsonov     // For the purposes of symbolization, pretend the symbol's address is that
2018df3a07aSAlexey Samsonov     // of the function's code, not the descriptor.
2028df3a07aSAlexey Samsonov     uint64_t OpdOffset = SymbolAddress - OpdAddress;
203f26a70a5SIgor Kudrin     if (OpdExtractor->isValidOffsetForAddress(OpdOffset))
204f26a70a5SIgor Kudrin       SymbolAddress = OpdExtractor->getAddress(&OpdOffset);
2058df3a07aSAlexey Samsonov   }
2068df3a07aSAlexey Samsonov   // Mach-O symbol table names have leading underscore, skip it.
20744d95122SEugene Zelenko   if (Module->isMachO() && !SymbolName.empty() && SymbolName[0] == '_')
2088df3a07aSAlexey Samsonov     SymbolName = SymbolName.drop_front();
2096d766c8bSFangrui Song 
210*04a2e126SFangrui Song   if (Obj.isELF() && ELFSymbolRef(Symbol).getBinding() != ELF::STB_LOCAL)
211*04a2e126SFangrui Song     ELFSymIdx = 0;
212*04a2e126SFangrui Song   SymbolDesc SD = {SymbolAddress, SymbolSize, SymbolName, ELFSymIdx};
2136d766c8bSFangrui Song   // DATA command symbolizes just ST_Data (ELF STT_OBJECT) symbols as an
2146d766c8bSFangrui Song   // optimization. Treat everything else (e.g. ELF STT_NOTYPE, STT_FUNC and
2156d766c8bSFangrui Song   // STT_GNU_IFUNC) as function symbols which can be used to symbolize
2166d766c8bSFangrui Song   // addresses.
2176d766c8bSFangrui Song   if (SymbolType == SymbolRef::ST_Data)
218*04a2e126SFangrui Song     Objects.push_back(SD);
2196d766c8bSFangrui Song   else
220*04a2e126SFangrui Song     Functions.push_back(SD);
2211c03389cSReid Kleckner   return Error::success();
2228df3a07aSAlexey Samsonov }
2238df3a07aSAlexey Samsonov 
2248df3a07aSAlexey Samsonov // Return true if this is a 32-bit x86 PE COFF module.
2258df3a07aSAlexey Samsonov bool SymbolizableObjectFile::isWin32Module() const {
2268df3a07aSAlexey Samsonov   auto *CoffObject = dyn_cast<COFFObjectFile>(Module);
2278df3a07aSAlexey Samsonov   return CoffObject && CoffObject->getMachine() == COFF::IMAGE_FILE_MACHINE_I386;
2288df3a07aSAlexey Samsonov }
2298df3a07aSAlexey Samsonov 
2308df3a07aSAlexey Samsonov uint64_t SymbolizableObjectFile::getModulePreferredBase() const {
2318df3a07aSAlexey Samsonov   if (auto *CoffObject = dyn_cast<COFFObjectFile>(Module))
2328df3a07aSAlexey Samsonov     return CoffObject->getImageBase();
2338df3a07aSAlexey Samsonov   return 0;
2348df3a07aSAlexey Samsonov }
2358df3a07aSAlexey Samsonov 
236*04a2e126SFangrui Song bool SymbolizableObjectFile::getNameFromSymbolTable(
237*04a2e126SFangrui Song     SymbolRef::Type Type, uint64_t Address, std::string &Name, uint64_t &Addr,
238*04a2e126SFangrui Song     uint64_t &Size, std::string &FileName) const {
239afb54fd6SFangrui Song   const auto &Symbols = Type == SymbolRef::ST_Function ? Functions : Objects;
240*04a2e126SFangrui Song   SymbolDesc SD{Address, UINT64_C(-1), StringRef(), 0};
241afb54fd6SFangrui Song   auto SymbolIterator = llvm::upper_bound(Symbols, SD);
242afb54fd6SFangrui Song   if (SymbolIterator == Symbols.begin())
2438df3a07aSAlexey Samsonov     return false;
2448df3a07aSAlexey Samsonov   --SymbolIterator;
245*04a2e126SFangrui Song   if (SymbolIterator->Size != 0 &&
246*04a2e126SFangrui Song       SymbolIterator->Addr + SymbolIterator->Size <= Address)
2478df3a07aSAlexey Samsonov     return false;
248*04a2e126SFangrui Song   Name = SymbolIterator->Name.str();
249*04a2e126SFangrui Song   Addr = SymbolIterator->Addr;
250*04a2e126SFangrui Song   Size = SymbolIterator->Size;
251*04a2e126SFangrui Song 
252*04a2e126SFangrui Song   if (SymbolIterator->ELFLocalSymIdx != 0) {
253*04a2e126SFangrui Song     // If this is an ELF local symbol, find the STT_FILE symbol preceding
254*04a2e126SFangrui Song     // SymbolIterator to get the filename. The ELF spec requires the STT_FILE
255*04a2e126SFangrui Song     // symbol (if present) precedes the other STB_LOCAL symbols for the file.
256*04a2e126SFangrui Song     assert(Module->isELF());
257*04a2e126SFangrui Song     auto It = llvm::upper_bound(
258*04a2e126SFangrui Song         FileSymbols,
259*04a2e126SFangrui Song         std::make_pair(SymbolIterator->ELFLocalSymIdx, StringRef()));
260*04a2e126SFangrui Song     if (It != FileSymbols.begin())
261*04a2e126SFangrui Song       FileName = It[-1].second.str();
262*04a2e126SFangrui Song   }
2638df3a07aSAlexey Samsonov   return true;
2648df3a07aSAlexey Samsonov }
2658df3a07aSAlexey Samsonov 
266c038e2dbSReid Kleckner bool SymbolizableObjectFile::shouldOverrideWithSymbolTable(
267c038e2dbSReid Kleckner     FunctionNameKind FNKind, bool UseSymbolTable) const {
268c038e2dbSReid Kleckner   // When DWARF is used with -gline-tables-only / -gmlt, the symbol table gives
269c038e2dbSReid Kleckner   // better answers for linkage names than the DIContext. Otherwise, we are
270c038e2dbSReid Kleckner   // probably using PEs and PDBs, and we shouldn't do the override. PE files
271c038e2dbSReid Kleckner   // generally only contain the names of exported symbols.
272c038e2dbSReid Kleckner   return FNKind == FunctionNameKind::LinkageName && UseSymbolTable &&
273c038e2dbSReid Kleckner          isa<DWARFContext>(DebugInfoContext.get());
274c038e2dbSReid Kleckner }
275c038e2dbSReid Kleckner 
27677fc1f60SAlexey Lapshin DILineInfo
27777fc1f60SAlexey Lapshin SymbolizableObjectFile::symbolizeCode(object::SectionedAddress ModuleOffset,
2785de4ba17SSterling Augustine                                       DILineInfoSpecifier LineInfoSpecifier,
2798df3a07aSAlexey Samsonov                                       bool UseSymbolTable) const {
280b2c4b8bdSAlexey Lapshin   if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection)
281b2c4b8bdSAlexey Lapshin     ModuleOffset.SectionIndex =
282b2c4b8bdSAlexey Lapshin         getModuleSectionIndexForAddress(ModuleOffset.Address);
2835de4ba17SSterling Augustine   DILineInfo LineInfo =
2845de4ba17SSterling Augustine       DebugInfoContext->getLineInfoForAddress(ModuleOffset, LineInfoSpecifier);
2850feb6e52SPeter Collingbourne 
2868df3a07aSAlexey Samsonov   // Override function name from symbol table if necessary.
2875de4ba17SSterling Augustine   if (shouldOverrideWithSymbolTable(LineInfoSpecifier.FNKind, UseSymbolTable)) {
288*04a2e126SFangrui Song     std::string FunctionName, FileName;
2898df3a07aSAlexey Samsonov     uint64_t Start, Size;
29077fc1f60SAlexey Lapshin     if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset.Address,
291*04a2e126SFangrui Song                                FunctionName, Start, Size, FileName)) {
2928df3a07aSAlexey Samsonov       LineInfo.FunctionName = FunctionName;
293*04a2e126SFangrui Song       if (LineInfo.FileName == DILineInfo::BadString && !FileName.empty())
294*04a2e126SFangrui Song         LineInfo.FileName = FileName;
2958df3a07aSAlexey Samsonov     }
2968df3a07aSAlexey Samsonov   }
2978df3a07aSAlexey Samsonov   return LineInfo;
2988df3a07aSAlexey Samsonov }
2998df3a07aSAlexey Samsonov 
3008df3a07aSAlexey Samsonov DIInliningInfo SymbolizableObjectFile::symbolizeInlinedCode(
3015de4ba17SSterling Augustine     object::SectionedAddress ModuleOffset,
3025de4ba17SSterling Augustine     DILineInfoSpecifier LineInfoSpecifier, bool UseSymbolTable) const {
303b2c4b8bdSAlexey Lapshin   if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection)
304b2c4b8bdSAlexey Lapshin     ModuleOffset.SectionIndex =
305b2c4b8bdSAlexey Lapshin         getModuleSectionIndexForAddress(ModuleOffset.Address);
3060feb6e52SPeter Collingbourne   DIInliningInfo InlinedContext = DebugInfoContext->getInliningInfoForAddress(
3075de4ba17SSterling Augustine       ModuleOffset, LineInfoSpecifier);
3080feb6e52SPeter Collingbourne 
3098df3a07aSAlexey Samsonov   // Make sure there is at least one frame in context.
3108df3a07aSAlexey Samsonov   if (InlinedContext.getNumberOfFrames() == 0)
3118df3a07aSAlexey Samsonov     InlinedContext.addFrame(DILineInfo());
3128df3a07aSAlexey Samsonov 
3138df3a07aSAlexey Samsonov   // Override the function name in lower frame with name from symbol table.
3145de4ba17SSterling Augustine   if (shouldOverrideWithSymbolTable(LineInfoSpecifier.FNKind, UseSymbolTable)) {
315*04a2e126SFangrui Song     std::string FunctionName, FileName;
3168df3a07aSAlexey Samsonov     uint64_t Start, Size;
31777fc1f60SAlexey Lapshin     if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset.Address,
318*04a2e126SFangrui Song                                FunctionName, Start, Size, FileName)) {
319*04a2e126SFangrui Song       DILineInfo *LI = InlinedContext.getMutableFrame(
320*04a2e126SFangrui Song           InlinedContext.getNumberOfFrames() - 1);
321*04a2e126SFangrui Song       LI->FunctionName = FunctionName;
322*04a2e126SFangrui Song       if (LI->FileName == DILineInfo::BadString && !FileName.empty())
323*04a2e126SFangrui Song         LI->FileName = FileName;
3248df3a07aSAlexey Samsonov     }
3258df3a07aSAlexey Samsonov   }
326e46bd741SAlexey Samsonov 
327e46bd741SAlexey Samsonov   return InlinedContext;
3288df3a07aSAlexey Samsonov }
3298df3a07aSAlexey Samsonov 
33077fc1f60SAlexey Lapshin DIGlobal SymbolizableObjectFile::symbolizeData(
33177fc1f60SAlexey Lapshin     object::SectionedAddress ModuleOffset) const {
33276f7ecb8SAlexey Samsonov   DIGlobal Res;
333*04a2e126SFangrui Song   std::string FileName;
33477fc1f60SAlexey Lapshin   getNameFromSymbolTable(SymbolRef::ST_Data, ModuleOffset.Address, Res.Name,
335*04a2e126SFangrui Song                          Res.Start, Res.Size, FileName);
33676f7ecb8SAlexey Samsonov   return Res;
3378df3a07aSAlexey Samsonov }
338b2c4b8bdSAlexey Lapshin 
3399c8282a9SPeter Collingbourne std::vector<DILocal> SymbolizableObjectFile::symbolizeFrame(
3409c8282a9SPeter Collingbourne     object::SectionedAddress ModuleOffset) const {
3419c8282a9SPeter Collingbourne   if (ModuleOffset.SectionIndex == object::SectionedAddress::UndefSection)
3429c8282a9SPeter Collingbourne     ModuleOffset.SectionIndex =
3439c8282a9SPeter Collingbourne         getModuleSectionIndexForAddress(ModuleOffset.Address);
3449c8282a9SPeter Collingbourne   return DebugInfoContext->getLocalsForAddress(ModuleOffset);
3459c8282a9SPeter Collingbourne }
3469c8282a9SPeter Collingbourne 
347b2c4b8bdSAlexey Lapshin /// Search for the first occurence of specified Address in ObjectFile.
348b2c4b8bdSAlexey Lapshin uint64_t SymbolizableObjectFile::getModuleSectionIndexForAddress(
349b2c4b8bdSAlexey Lapshin     uint64_t Address) const {
350b2c4b8bdSAlexey Lapshin 
351b2c4b8bdSAlexey Lapshin   for (SectionRef Sec : Module->sections()) {
352b2c4b8bdSAlexey Lapshin     if (!Sec.isText() || Sec.isVirtual())
353b2c4b8bdSAlexey Lapshin       continue;
354b2c4b8bdSAlexey Lapshin 
355b2c4b8bdSAlexey Lapshin     if (Address >= Sec.getAddress() &&
356dd0e8335SFangrui Song         Address < Sec.getAddress() + Sec.getSize())
357b2c4b8bdSAlexey Lapshin       return Sec.getIndex();
358b2c4b8bdSAlexey Lapshin   }
359b2c4b8bdSAlexey Lapshin 
360b2c4b8bdSAlexey Lapshin   return object::SectionedAddress::UndefSection;
361b2c4b8bdSAlexey Lapshin }
362