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

Function x86FSTP

NULLC/Translator_X86.cpp:173–178  ·  view source on GitHub ↗

fstp st

Source from the content-addressed store, hash-verified

171
172// fstp st*
173int x86FSTP(unsigned char *stream, x87Reg dst)
174{
175 stream[0] = 0xdd;
176 stream[1] = (unsigned char)(0xd8 + dst);
177 return 2;
178}
179// fstp *word [index*mult+base+shift]
180int x86FSTP(unsigned char *stream, x86Size size, x86Reg index, int multiplier, x86Reg base, int shift)
181{

Callers 1

TranslateToNativeMethod · 0.85

Calls 2

assertFunction · 0.85
encodeAddressFunction · 0.85

Tested by

no test coverage detected