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:
parent
a96e87527e
commit
a883399781
17 changed files with 1755 additions and 763 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue