Lines Matching refs:ModInfo
46 struct ModInfo::FileLayout {
70 ModInfo::ModInfo() : Layout(nullptr) {} in ModInfo() function in ModInfo
72 ModInfo::ModInfo(const ModInfo &Info) in ModInfo() function in ModInfo
76 ModInfo::~ModInfo() {} in ~ModInfo()
78 Error ModInfo::initialize(codeview::StreamRef Stream, ModInfo &Info) { in initialize()
91 bool ModInfo::hasECInfo() const { return (Layout->Flags & HasECFlagMask) != 0; } in hasECInfo()
93 uint16_t ModInfo::getTypeServerIndex() const { in getTypeServerIndex()
97 uint16_t ModInfo::getModuleStreamIndex() const { return Layout->ModDiStream; } in getModuleStreamIndex()
99 uint32_t ModInfo::getSymbolDebugInfoByteSize() const { in getSymbolDebugInfoByteSize()
103 uint32_t ModInfo::getLineInfoByteSize() const { return Layout->LineBytes; } in getLineInfoByteSize()
105 uint32_t ModInfo::getC13LineInfoByteSize() const { return Layout->C13Bytes; } in getC13LineInfoByteSize()
107 uint32_t ModInfo::getNumberOfFiles() const { return Layout->NumFiles; } in getNumberOfFiles()
109 uint32_t ModInfo::getSourceFileNameIndex() const { in getSourceFileNameIndex()
113 uint32_t ModInfo::getPdbFilePathNameIndex() const { in getPdbFilePathNameIndex()
117 StringRef ModInfo::getModuleName() const { return ModuleName; } in getModuleName()
119 StringRef ModInfo::getObjFileName() const { return ObjFileName; } in getObjFileName()
121 uint32_t ModInfo::getRecordLength() const { in getRecordLength()