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

Function nop_7b

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

`NOP DWORD ptr [EAX + 00000000H]`

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

Source from the content-addressed store, hash-verified

46
47 /// `NOP DWORD ptr [EAX + 00000000H]`
48 pub fn nop_7b(_: &inst::nop_7b, buf: &mut impl CodeSink) {
49 buf.put1(0x0F);
50 buf.put1(0x1F);
51 buf.put1(0x80);
52 buf.put4(0x00_00_00_00);
53 }
54
55 /// `NOP DWORD ptr [EAX + EAX*1 + 00000000H]`
56 pub fn nop_8b(_: &inst::nop_8b, buf: &mut impl CodeSink) {

Callers

nothing calls this directly

Calls 2

put1Method · 0.45
put4Method · 0.45

Tested by

no test coverage detected