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

Function nop_6b

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

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

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

Source from the content-addressed store, hash-verified

37
38 /// `66 NOP DWORD ptr [EAX + EAX*1 + 00H]`
39 pub fn nop_6b(_: &inst::nop_6b, buf: &mut impl CodeSink) {
40 buf.put1(0x66);
41 buf.put1(0x0F);
42 buf.put1(0x1F);
43 buf.put1(0x44);
44 buf.put2(0x00_00);
45 }
46
47 /// `NOP DWORD ptr [EAX + 00000000H]`
48 pub fn nop_7b(_: &inst::nop_7b, buf: &mut impl CodeSink) {

Callers

nothing calls this directly

Calls 2

put1Method · 0.45
put2Method · 0.45

Tested by

no test coverage detected