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

Function nop_3b

cranelift/assembler-x64/src/custom.rs:16–20  ·  view source on GitHub ↗

`NOP DWORD ptr [EAX]`

(_: &inst::nop_3b, buf: &mut impl CodeSink)

Source from the content-addressed store, hash-verified

14
15 /// `NOP DWORD ptr [EAX]`
16 pub fn nop_3b(_: &inst::nop_3b, buf: &mut impl CodeSink) {
17 buf.put1(0x0F);
18 buf.put1(0x1F);
19 buf.put1(0x00);
20 }
21
22 /// `NOP DWORD ptr [EAX + 00H]`
23 pub fn nop_4b(_: &inst::nop_4b, buf: &mut impl CodeSink) {

Callers

nothing calls this directly

Calls 1

put1Method · 0.45

Tested by

no test coverage detected