MCPcopy Create free account
hub / github.com/WebAssembly/wabt / Resolve

Method Resolve

src/interp/binary-reader-interp.cc:381–390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

379}
380
381void FixupMap::Resolve(Istream& istream, Index index) {
382 auto iter = map.find(index);
383 if (iter == map.end()) {
384 return;
385 }
386 for (Offset offset : iter->second) {
387 istream.ResolveFixupU32(offset);
388 }
389 map.erase(iter);
390}
391
392BinaryReaderInterp::BinaryReaderInterp(ModuleDesc* module,
393 std::string_view filename,

Callers 2

FixupTopLabelMethod · 0.80
BeginFunctionBodyMethod · 0.80

Calls 4

findMethod · 0.80
ResolveFixupU32Method · 0.80
eraseMethod · 0.80
endMethod · 0.45

Tested by

no test coverage detected