HomeSort by relevance Sort by last modified time
    Searched refs:DebugMap (Results 1 - 7 of 7) sorted by null

  /external/llvm/tools/dsymutil/
MachOUtils.h 19 class DebugMap;
32 bool generateDsymCompanion(const DebugMap &DM, MCStreamer &MS,
dsymutil.h 19 #include "DebugMap.h"
39 llvm::ErrorOr<std::vector<std::unique_ptr<DebugMap>>>
47 /// \brief Link the Dwarf debuginfo as directed by the passed DebugMap
50 bool linkDwarf(StringRef OutputFilename, const DebugMap &DM,
DebugMap.h 1 //=== tools/dsymutil/DebugMap.h - Generic debug map representation -*- C++ -*-//
12 /// This file contains the class declaration of the DebugMap
13 /// entity. A DebugMap lists all the object files linked together to
16 /// The DebugMap is an input to the DwarfLinker class that will
42 /// \brief The DebugMap object stores the list of object files to
47 /// A DebugMap producer could look like this:
48 /// DebugMap *DM = new DebugMap();
56 /// A DebugMap consumer can then use the map to link the debug
67 class DebugMap {
    [all...]
DebugMap.cpp 1 //===- tools/dsymutil/DebugMap.cpp - Generic debug map representation -----===//
9 #include "DebugMap.h"
65 DebugMapObject &DebugMap::addDebugMapObject(StringRef ObjectFilePath,
87 void DebugMap::print(raw_ostream &OS) const {
89 yout << const_cast<DebugMap &>(*this);
93 void DebugMap::dump() const { print(errs()); }
103 ErrorOr<std::vector<std::unique_ptr<DebugMap>>>
104 DebugMap::parseYAMLDebugMap(StringRef InputFile, StringRef PrependPath,
114 std::unique_ptr<DebugMap> Res;
120 std::vector<std::unique_ptr<DebugMap>> Result
    [all...]
MachODebugMapParser.cpp 11 #include "DebugMap.h"
36 ErrorOr<std::vector<std::unique_ptr<DebugMap>>> parse();
51 /// The constructed DebugMap.
52 std::unique_ptr<DebugMap> Result;
65 std::unique_ptr<DebugMap> parseOneBinary(const MachOObjectFile &MainBinary,
144 std::unique_ptr<DebugMap>
148 Result = make_unique<DebugMap>(MainBinary.getArchTriple(), BinaryPath);
323 ErrorOr<std::vector<std::unique_ptr<DebugMap>>> MachODebugMapParser::parse() {
329 std::vector<std::unique_ptr<DebugMap>> Results;
337 /// Interpret the STAB entries to fill the DebugMap
    [all...]
DwarfLinker.cpp 9 #include "DebugMap.h"
11 #include "DebugMap.h"
505 bool finish(const DebugMap &);
649 bool DwarfStreamer::finish(const DebugMap &DM) {
    [all...]
MachOUtils.cpp 12 #include "DebugMap.h"
320 bool generateDsymCompanion(const DebugMap &DM, MCStreamer &MS,

Completed in 3494 milliseconds