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

Method OnStoreExpr

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

Source from the content-addressed store, hash-verified

1427}
1428
1429Result BinaryReaderInterp::OnStoreExpr(Opcode opcode,
1430 Index memidx,
1431 Address align_log2,
1432 Address offset) {
1433 CHECK_RESULT(validator_.OnStore(GetLocation(), opcode,
1434 Var(memidx, GetLocation()),
1435 GetAlignment(align_log2), offset));
1436 istream_.Emit(opcode, memidx, offset);
1437 return Result::Ok;
1438}
1439
1440Result BinaryReaderInterp::OnMemoryGrowExpr(Index memidx) {
1441 CHECK_RESULT(

Callers

nothing calls this directly

Calls 4

GetAlignmentFunction · 0.85
EmitMethod · 0.80
VarClass · 0.50
OnStoreMethod · 0.45

Tested by

no test coverage detected