fpu_state
ZyanU8 fpu_state ZYAN_BITFIELD(ZYDIS_RW_ACTION_REQUIRED_BITS); \
struct fpu_state fp_fxsave;
uint8 fpu_state[512] _ALIGNED(16);
if (definition->fpu_state != ZYDIS_RW_ACTION_NONE)
ZYAN_ASSERT(definition->fpu_state < ZYAN_ARRAY_LENGTH(mapping));
instruction->attributes |= mapping[definition->fpu_state];
x86_fxsave(sInitialState.fpu_state);
x86_fnsave(sInitialState.fpu_state);
kprintf("\tfpu_state at %p\n", at->fpu_state);
gX86SwapFPUFunc(from->arch_info.fpu_state, to->arch_info.fpu_state);
x86_fxsave(thread->arch_info.fpu_state);
memcpy(&cpuState->extended_registers, thread->arch_info.fpu_state,
memcpy(&cpuState->extended_registers, thread->arch_info.fpu_state,
memcpy(thread->arch_info.fpu_state, &cpuState->extended_registers,
x86_fxrstor(thread->arch_info.fpu_state);