Home
last modified time | relevance | path

Searched refs:fileLine (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp121 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getFileLine() local
124 if (!fileLine && c->file->symtab.ctx.config.mingw) in getFileLine()
125 fileLine = getFileLineDwarf(c, addr); in getFileLine()
126 return fileLine; in getFileLine()
139 std::pair<StringRef, uint32_t> fileLine; in getSymbolLocations() member
155 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getSymbolLocations() local
158 if (fileLine) in getSymbolLocations()
159 locations.push_back({sym, *fileLine}); in getSymbolLocations()
177 if (!loc.fileLine.first.empty()) in getSymbolLocations()
178 os << loc.fileLine.first << ":" << loc.fileLine.second in getSymbolLocations()
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DInputSection.cpp170 if (std::optional<std::pair<std::string, unsigned>> fileLine = in getSourceLocation() local
172 return createMsg(fileLine->first, fileLine->second); in getSourceLocation()
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputSection.cpp343 else if (auto fileLine = dwarf->getVariableLoc(msg.sym.getName())) in operator <<() local
345 printFileLine(s, fileLine->first, fileLine->second); in operator <<()