HomeSort by relevance Sort by last modified time
    Searched defs:DebugMapObject (Results 1 - 2 of 2) sorted by null

  /external/llvm/tools/dsymutil/
DebugMap.cpp 23 DebugMapObject::DebugMapObject(StringRef ObjectFilename,
27 bool DebugMapObject::addSymbol(StringRef Name, uint64_t ObjectAddress,
37 void DebugMapObject::print(raw_ostream &OS) const {
59 void DebugMapObject::dump() const { print(errs()); }
62 DebugMapObject &DebugMap::addDebugMapObject(StringRef ObjectFilePath,
64 Objects.emplace_back(new DebugMapObject(ObjectFilePath, Timestamp));
68 const DebugMapObject::DebugMapEntry *
69 DebugMapObject::lookupSymbol(StringRef SymbolName) const {
76 const DebugMapObject::DebugMapEntry
    [all...]
DebugMap.h 40 class DebugMapObject;
50 /// DebugMapObject &DMO = DM->addDebugMapObject(Obj.getPath());
70 typedef std::vector<std::unique_ptr<DebugMapObject>> ObjectContainer;
93 /// This function adds an DebugMapObject to the list owned by this
95 DebugMapObject &addDebugMapObject(StringRef ObjectFilePath,
113 /// \brief The DebugMapObject represents one object file described by
117 class DebugMapObject {
132 /// \brief Adds a symbol mapping to this DebugMapObject.
161 DebugMapObject(StringRef ObjectFilename, sys::TimeValue Timestamp);
171 friend yaml::MappingTraits<dsymutil::DebugMapObject>;
    [all...]

Completed in 41 milliseconds