Added AGI stalls to 486 and later CPUs.

Reworked codegen timing a bit - split timing tables into CPU-specific and generic files.
A few other timing tweaks.
This commit is contained in:
SarahW 2017-07-23 17:41:24 +01:00
commit a883399781
17 changed files with 1755 additions and 763 deletions

View file

@ -1,4 +1,8 @@
#ifndef _CODEGEN_H_
#define _CODEGEN_H_
#include "mem.h"
#include "x86_ops.h"
#ifdef __amd64__
#include "codegen_x86-64.h"
@ -358,3 +362,5 @@ extern int codegen_fpu_loaded_iq[8];
extern int codegen_reg_loaded[8];
extern int codegen_in_recompile;
#endif