123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- #pragma once
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wunused-parameter"
- #endif
- //===- Symbolize.h ----------------------------------------------*- C++ -*-===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- //
- // Header for LLVM symbolization library.
- //
- //===----------------------------------------------------------------------===//
- #ifndef LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZE_H
- #define LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZE_H
- #include "llvm/ADT/StringMap.h"
- #include "llvm/ADT/ilist_node.h"
- #include "llvm/ADT/simple_ilist.h"
- #include "llvm/DebugInfo/DIContext.h"
- #include "llvm/Object/Binary.h"
- #include "llvm/Object/BuildID.h"
- #include "llvm/Support/Error.h"
- #include <algorithm>
- #include <cstdint>
- #include <map>
- #include <memory>
- #include <string>
- #include <utility>
- #include <vector>
- namespace llvm {
- namespace object {
- class ELFObjectFileBase;
- class MachOObjectFile;
- class ObjectFile;
- struct SectionedAddress;
- } // namespace object
- namespace symbolize {
- class SymbolizableModule;
- using namespace object;
- using FunctionNameKind = DILineInfoSpecifier::FunctionNameKind;
- using FileLineInfoKind = DILineInfoSpecifier::FileLineInfoKind;
- class CachedBinary;
- class LLVMSymbolizer {
- public:
- struct Options {
- FunctionNameKind PrintFunctions = FunctionNameKind::LinkageName;
- FileLineInfoKind PathStyle = FileLineInfoKind::AbsoluteFilePath;
- bool UseSymbolTable = true;
- bool Demangle = true;
- bool RelativeAddresses = false;
- bool UntagAddresses = false;
- bool UseDIA = false;
- std::string DefaultArch;
- std::vector<std::string> DsymHints;
- std::string FallbackDebugPath;
- std::string DWPName;
- std::vector<std::string> DebugFileDirectory;
- size_t MaxCacheSize =
- sizeof(size_t) == 4
- ? 512 * 1024 * 1024 /* 512 MiB */
- : static_cast<size_t>(4ULL * 1024 * 1024 * 1024) /* 4 GiB */;
- };
- LLVMSymbolizer();
- LLVMSymbolizer(const Options &Opts);
- ~LLVMSymbolizer();
- // Overloads accepting ObjectFile does not support COFF currently
- Expected<DILineInfo> symbolizeCode(const ObjectFile &Obj,
- object::SectionedAddress ModuleOffset);
- Expected<DILineInfo> symbolizeCode(const std::string &ModuleName,
- object::SectionedAddress ModuleOffset);
- Expected<DILineInfo> symbolizeCode(ArrayRef<uint8_t> BuildID,
- object::SectionedAddress ModuleOffset);
- Expected<DIInliningInfo>
- symbolizeInlinedCode(const ObjectFile &Obj,
- object::SectionedAddress ModuleOffset);
- Expected<DIInliningInfo>
- symbolizeInlinedCode(const std::string &ModuleName,
- object::SectionedAddress ModuleOffset);
- Expected<DIInliningInfo>
- symbolizeInlinedCode(ArrayRef<uint8_t> BuildID,
- object::SectionedAddress ModuleOffset);
- Expected<DIGlobal> symbolizeData(const ObjectFile &Obj,
- object::SectionedAddress ModuleOffset);
- Expected<DIGlobal> symbolizeData(const std::string &ModuleName,
- object::SectionedAddress ModuleOffset);
- Expected<DIGlobal> symbolizeData(ArrayRef<uint8_t> BuildID,
- object::SectionedAddress ModuleOffset);
- Expected<std::vector<DILocal>>
- symbolizeFrame(const ObjectFile &Obj, object::SectionedAddress ModuleOffset);
- Expected<std::vector<DILocal>>
- symbolizeFrame(const std::string &ModuleName,
- object::SectionedAddress ModuleOffset);
- Expected<std::vector<DILocal>>
- symbolizeFrame(ArrayRef<uint8_t> BuildID,
- object::SectionedAddress ModuleOffset);
- void flush();
- // Evict entries from the binary cache until it is under the maximum size
- // given in the options. Calling this invalidates references in the DI...
- // objects returned by the methods above.
- void pruneCache();
- static std::string
- DemangleName(const std::string &Name,
- const SymbolizableModule *DbiModuleDescriptor);
- void setBuildIDFetcher(std::unique_ptr<BuildIDFetcher> Fetcher) {
- BIDFetcher = std::move(Fetcher);
- }
- private:
- // Bundles together object file with code/data and object file with
- // corresponding debug info. These objects can be the same.
- using ObjectPair = std::pair<const ObjectFile *, const ObjectFile *>;
- template <typename T>
- Expected<DILineInfo>
- symbolizeCodeCommon(const T &ModuleSpecifier,
- object::SectionedAddress ModuleOffset);
- template <typename T>
- Expected<DIInliningInfo>
- symbolizeInlinedCodeCommon(const T &ModuleSpecifier,
- object::SectionedAddress ModuleOffset);
- template <typename T>
- Expected<DIGlobal> symbolizeDataCommon(const T &ModuleSpecifier,
- object::SectionedAddress ModuleOffset);
- template <typename T>
- Expected<std::vector<DILocal>>
- symbolizeFrameCommon(const T &ModuleSpecifier,
- object::SectionedAddress ModuleOffset);
- /// Returns a SymbolizableModule or an error if loading debug info failed.
- /// Only one attempt is made to load a module, and errors during loading are
- /// only reported once. Subsequent calls to get module info for a module that
- /// failed to load will return nullptr.
- Expected<SymbolizableModule *>
- getOrCreateModuleInfo(const std::string &ModuleName);
- Expected<SymbolizableModule *> getOrCreateModuleInfo(const ObjectFile &Obj);
- /// Returns a SymbolizableModule or an error if loading debug info failed.
- /// Unlike the above, errors are reported each time, since they are more
- /// likely to be transient.
- Expected<SymbolizableModule *>
- getOrCreateModuleInfo(ArrayRef<uint8_t> BuildID);
- Expected<SymbolizableModule *>
- createModuleInfo(const ObjectFile *Obj, std::unique_ptr<DIContext> Context,
- StringRef ModuleName);
- ObjectFile *lookUpDsymFile(const std::string &Path,
- const MachOObjectFile *ExeObj,
- const std::string &ArchName);
- ObjectFile *lookUpDebuglinkObject(const std::string &Path,
- const ObjectFile *Obj,
- const std::string &ArchName);
- ObjectFile *lookUpBuildIDObject(const std::string &Path,
- const ELFObjectFileBase *Obj,
- const std::string &ArchName);
- bool findDebugBinary(const std::string &OrigPath,
- const std::string &DebuglinkName, uint32_t CRCHash,
- std::string &Result);
- bool getOrFindDebugBinary(const ArrayRef<uint8_t> BuildID,
- std::string &Result);
- /// Returns pair of pointers to object and debug object.
- Expected<ObjectPair> getOrCreateObjectPair(const std::string &Path,
- const std::string &ArchName);
- /// Return a pointer to object file at specified path, for a specified
- /// architecture (e.g. if path refers to a Mach-O universal binary, only one
- /// object file from it will be returned).
- Expected<ObjectFile *> getOrCreateObject(const std::string &Path,
- const std::string &ArchName);
- /// Update the LRU cache order when a binary is accessed.
- void recordAccess(CachedBinary &Bin);
- std::map<std::string, std::unique_ptr<SymbolizableModule>, std::less<>>
- Modules;
- StringMap<std::string> BuildIDPaths;
- /// Contains cached results of getOrCreateObjectPair().
- std::map<std::pair<std::string, std::string>, ObjectPair>
- ObjectPairForPathArch;
- /// Contains parsed binary for each path, or parsing error.
- std::map<std::string, CachedBinary> BinaryForPath;
- /// A list of cached binaries in LRU order.
- simple_ilist<CachedBinary> LRUBinaries;
- /// Sum of the sizes of the cached binaries.
- size_t CacheSize = 0;
- /// Parsed object file for path/architecture pair, where "path" refers
- /// to Mach-O universal binary.
- std::map<std::pair<std::string, std::string>, std::unique_ptr<ObjectFile>>
- ObjectForUBPathAndArch;
- Options Opts;
- std::unique_ptr<BuildIDFetcher> BIDFetcher;
- };
- // A binary intrusively linked into a LRU cache list. If the binary is empty,
- // then the entry marks that an error occurred, and it is not part of the LRU
- // list.
- class CachedBinary : public ilist_node<CachedBinary> {
- public:
- CachedBinary() = default;
- CachedBinary(OwningBinary<Binary> Bin) : Bin(std::move(Bin)) {}
- OwningBinary<Binary> &operator*() { return Bin; }
- OwningBinary<Binary> *operator->() { return &Bin; }
- // Add an action to be performed when the binary is evicted, before all
- // previously registered evictors.
- void pushEvictor(std::function<void()> Evictor);
- // Run all registered evictors in the reverse of the order in which they were
- // added.
- void evict() {
- if (Evictor)
- Evictor();
- }
- size_t size() { return Bin.getBinary()->getData().size(); }
- private:
- OwningBinary<Binary> Bin;
- std::function<void()> Evictor;
- };
- } // end namespace symbolize
- } // end namespace llvm
- #endif // LLVM_DEBUGINFO_SYMBOLIZE_SYMBOLIZE_H
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif
|