MCPcopy Create free account
hub / github.com/WheretIB/nullc / x86NOT

Function x86NOT

NULLC/Translator_X86.cpp:872–877  ·  view source on GitHub ↗

not reg

Source from the content-addressed store, hash-verified

870
871// not reg
872int x86NOT(unsigned char *stream, x86Reg reg)
873{
874 stream[0] = 0xf7;
875 stream[1] = encodeRegister(reg, 2);
876 return 2;
877}
878// not dword [index*mult+base+shift]
879int x86NOT(unsigned char *stream, x86Size size, x86Reg index, int multiplier, x86Reg base, int shift)
880{

Callers 1

TranslateToNativeMethod · 0.85

Calls 3

encodeRegisterFunction · 0.85
assertFunction · 0.85
encodeAddressFunction · 0.85

Tested by

no test coverage detected