2020-06-13 10:53:11 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
|
|
|
|
|
#include <86box/86box.h>
|
|
|
|
|
#include <86box/mem.h>
|
|
|
|
|
#include "cpu.h"
|
|
|
|
|
#include "x86_ops.h"
|
|
|
|
|
#include "codegen.h"
|
|
|
|
|
|
2022-11-17 22:44:06 +01:00
|
|
|
void (*codegen_timing_start)(void);
|
2020-06-13 10:53:11 +02:00
|
|
|
void (*codegen_timing_prefix)(uint8_t prefix, uint32_t fetchdat);
|
|
|
|
|
void (*codegen_timing_opcode)(uint8_t opcode, uint32_t fetchdat, int op_32, uint32_t op_pc);
|
2022-11-17 22:44:06 +01:00
|
|
|
void (*codegen_timing_block_start)(void);
|
|
|
|
|
void (*codegen_timing_block_end)(void);
|
|
|
|
|
int (*codegen_timing_jump_cycles)(void);
|
2020-06-13 10:53:11 +02:00
|
|
|
|
2022-11-19 09:49:14 -05:00
|
|
|
void
|
|
|
|
|
codegen_timing_set(codegen_timing_t *timing)
|
2020-06-13 10:53:11 +02:00
|
|
|
{
|
2022-11-19 09:49:14 -05:00
|
|
|
codegen_timing_start = timing->start;
|
|
|
|
|
codegen_timing_prefix = timing->prefix;
|
|
|
|
|
codegen_timing_opcode = timing->opcode;
|
|
|
|
|
codegen_timing_block_start = timing->block_start;
|
|
|
|
|
codegen_timing_block_end = timing->block_end;
|
|
|
|
|
codegen_timing_jump_cycles = timing->jump_cycles;
|
2020-06-13 10:53:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int codegen_in_recompile;
|
|
|
|
|
|
|
|
|
|
/* This is for compatibility with new x87 code. */
|
2022-11-19 09:49:14 -05:00
|
|
|
void
|
|
|
|
|
codegen_set_rounding_mode(int mode)
|
2020-06-13 10:53:11 +02:00
|
|
|
{
|
2022-11-19 09:49:14 -05:00
|
|
|
/* cpu_state.new_npxc = (cpu_state.old_npxc & ~0xc00) | (cpu_state.npxc & 0xc00); */
|
|
|
|
|
cpu_state.new_npxc = (cpu_state.old_npxc & ~0xc00) | (mode << 10);
|
2020-06-13 10:53:11 +02:00
|
|
|
}
|