summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/contexts.h27
1 files changed, 24 insertions, 3 deletions
diff --git a/src/parser/contexts.h b/src/parser/contexts.h
index 387cb146e..b0cd1458b 100644
--- a/src/parser/contexts.h
+++ b/src/parser/contexts.h
@@ -1398,6 +1398,7 @@ struct ParseDefsCtx : TypeParserCtx<ParseDefsCtx> {
typeNames;
const std::unordered_map<Index, Index>& implicitElemIndices;
+ std::unordered_map<std::string_view, Index> debugSymbolNameIndices;
std::unordered_map<std::string_view, Index> debugFileIndices;
// The index of the current module element.
@@ -1777,12 +1778,32 @@ struct ParseDefsCtx : TypeParserCtx<ParseDefsCtx> {
}
contents = contents.substr(lineSize + 1);
- lexer = Lexer(contents);
+ auto colSize = contents.find(':');
+ if (colSize == contents.npos) {
+ colSize = contents.size();
+ if (colSize == 0) {
+ return;
+ }
+ }
+ lexer = Lexer(contents.substr(0, colSize));
auto col = lexer.takeU32();
- if (!col || !lexer.empty()) {
+ if (!col) {
return;
}
+ std::optional<BinaryLocation> symbolNameIndex;
+ if (colSize != contents.size()) {
+ contents = contents.substr(colSize + 1);
+ auto symbolName = contents;
+ auto [it, inserted] = debugSymbolNameIndices.insert(
+ {symbolName, debugSymbolNameIndices.size()});
+ if (inserted) {
+ assert(wasm.debugInfoSymbolNames.size() == it->second);
+ wasm.debugInfoSymbolNames.push_back(std::string(symbolName));
+ }
+ symbolNameIndex = it->second;
+ }
+
// TODO: If we ever parallelize the parse, access to
// `wasm.debugInfoFileNames` will have to be protected by a lock.
auto [it, inserted] =
@@ -1792,7 +1813,7 @@ struct ParseDefsCtx : TypeParserCtx<ParseDefsCtx> {
wasm.debugInfoFileNames.push_back(std::string(file));
}
irBuilder.setDebugLocation(
- Function::DebugLocation({it->second, *line, *col}));
+ Function::DebugLocation({it->second, *line, *col, symbolNameIndex}));
}
Result<> makeBlock(Index pos,