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.cpp162 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getFileLine() local
165 if (!fileLine && c->file->ctx.config.mingw) in getFileLine()
166 fileLine = getFileLineDwarf(c, addr); in getFileLine()
167 return fileLine; in getFileLine()
180 std::pair<StringRef, uint32_t> fileLine; in getSymbolLocations() member
196 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getSymbolLocations() local
199 if (fileLine) in getSymbolLocations()
200 locations.push_back({sym, *fileLine}); in getSymbolLocations()
218 if (!loc.fileLine.first.empty()) in getSymbolLocations()
219 os << loc.fileLine.first << ":" << loc.fileLine.second in getSymbolLocations()
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DInputSection.cpp172 if (std::optional<std::pair<std::string, unsigned>> fileLine = in getSourceLocation() local
174 return createMsg(fileLine->first, fileLine->second); in getSourceLocation()
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp382 if (std::optional<std::pair<std::string, unsigned>> fileLine = in getSrcMsgAux() local
384 return createFileLineMsg(fileLine->first, fileLine->second); in getSrcMsgAux()