Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/COFF/
H A DSymbolTable.cpp143 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getFileLine() local
146 if (!fileLine && c->file->ctx.config.mingw) in getFileLine()
147 fileLine = getFileLineDwarf(c, addr); in getFileLine()
148 return fileLine; in getFileLine()
161 std::pair<StringRef, uint32_t> fileLine; in getSymbolLocations() member
177 std::optional<std::pair<StringRef, uint32_t>> fileLine = in getSymbolLocations() local
180 if (fileLine) in getSymbolLocations()
181 locations.push_back({sym, *fileLine}); in getSymbolLocations()
199 if (!loc.fileLine.first.empty()) in getSymbolLocations()
200 os << loc.fileLine.first << ":" << loc.fileLine.second in getSymbolLocations()
[all …]
/openbsd-src/gnu/llvm/lld/MachO/
H A DInputSection.cpp126 if (std::optional<std::pair<std::string, unsigned>> fileLine = in getSourceLocation() local
128 return createMsg(fileLine->first, fileLine->second); in getSourceLocation()
/openbsd-src/gnu/llvm/lld/ELF/
H A DInputFiles.cpp330 if (std::optional<std::pair<std::string, unsigned>> fileLine = in getSrcMsgAux() local
332 return createFileLineMsg(fileLine->first, fileLine->second); in getSrcMsgAux()