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

Function nop_8b

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

`NOP DWORD ptr [EAX + EAX*1 + 00000000H]`

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

Source from the content-addressed store, hash-verified

54
55 /// `NOP DWORD ptr [EAX + EAX*1 + 00000000H]`
56 pub fn nop_8b(_: &inst::nop_8b, buf: &mut impl CodeSink) {
57 buf.put1(0x0F);
58 buf.put1(0x1F);
59 buf.put1(0x84);
60 buf.put1(0x00);
61 buf.put4(0x00_00_00_00);
62 }
63
64 /// `66 NOP DWORD ptr [EAX + EAX*1 + 00000000H]`
65 pub fn nop_9b(_: &inst::nop_9b, buf: &mut impl CodeSink) {

Callers

nothing calls this directly

Calls 2

put1Method · 0.45
put4Method · 0.45

Tested by

no test coverage detected