MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / xadd64_u8

Method xadd64_u8

pulley/src/interp.rs:1725–1727  ·  view source on GitHub ↗
(&mut self, dst: XReg, src1: XReg, src2: u8)

Source from the content-addressed store, hash-verified

1723 }
1724
1725 fn xadd64_u8(&mut self, dst: XReg, src1: XReg, src2: u8) -> ControlFlow<Done> {
1726 self.xadd64_u32(dst, src1, src2.into())
1727 }
1728
1729 fn xadd64_u32(&mut self, dst: XReg, src1: XReg, src2: u32) -> ControlFlow<Done> {
1730 let a = self.state[src1].get_u64();

Callers

nothing calls this directly

Calls 1

xadd64_u32Method · 0.80

Tested by

no test coverage detected