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

Function nop_5b

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

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

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

Source from the content-addressed store, hash-verified

29
30 /// `NOP DWORD ptr [EAX + EAX*1 + 00H]`
31 pub fn nop_5b(_: &inst::nop_5b, buf: &mut impl CodeSink) {
32 buf.put1(0x0F);
33 buf.put1(0x1F);
34 buf.put1(0x44);
35 buf.put2(0x00_00);
36 }
37
38 /// `66 NOP DWORD ptr [EAX + EAX*1 + 00H]`
39 pub fn nop_6b(_: &inst::nop_6b, buf: &mut impl CodeSink) {

Callers

nothing calls this directly

Calls 2

put1Method · 0.45
put2Method · 0.45

Tested by

no test coverage detected