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

Function nop_9b

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

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

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

Source from the content-addressed store, hash-verified

63
64 /// `66 NOP DWORD ptr [EAX + EAX*1 + 00000000H]`
65 pub fn nop_9b(_: &inst::nop_9b, buf: &mut impl CodeSink) {
66 buf.put1(0x66);
67 buf.put1(0x0F);
68 buf.put1(0x1F);
69 buf.put1(0x84);
70 buf.put1(0x00);
71 buf.put4(0x00_00_00_00);
72 }
73}
74
75pub mod mnemonic {

Callers

nothing calls this directly

Calls 2

put1Method · 0.45
put4Method · 0.45

Tested by

no test coverage detected