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

Function x86CALL

NULLC/Translator_X86.cpp:1107–1112  ·  view source on GitHub ↗

call reg

Source from the content-addressed store, hash-verified

1105
1106// call reg
1107int x86CALL(unsigned char *stream, x86Reg address)
1108{
1109 stream[0] = 0xff;
1110 stream[1] = encodeRegister(address, 2);
1111 return 2;
1112}
1113// call [index*mult+base+shift]
1114int x86CALL(unsigned char *stream, x86Size, x86Reg index, int multiplier, x86Reg base, unsigned int shift)
1115{

Callers 1

TranslateToNativeMethod · 0.85

Calls 4

encodeRegisterFunction · 0.85
encodeAddressFunction · 0.85
UnsatisfiedJumpClass · 0.85
push_backMethod · 0.45

Tested by

no test coverage detected