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

Method xband32_s32

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

Source from the content-addressed store, hash-verified

2274 }
2275
2276 fn xband32_s32(&mut self, dst: XReg, src1: XReg, src2: i32) -> ControlFlow<Done> {
2277 let a = self.state[src1].get_i32();
2278 self.state[dst].set_i32(a & src2);
2279 ControlFlow::Continue(())
2280 }
2281
2282 fn xband64(&mut self, operands: BinaryOperands<XReg>) -> ControlFlow<Done> {
2283 let a = self.state[operands.src1].get_u64();

Callers 1

xband32_s8Method · 0.80

Calls 2

set_i32Method · 0.80
get_i32Method · 0.45

Tested by

no test coverage detected