diff options
Diffstat (limited to 'sim/common/cgen-cpu.h')
-rw-r--r-- | sim/common/cgen-cpu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sim/common/cgen-cpu.h b/sim/common/cgen-cpu.h index 914fb45..d79e98f 100644 --- a/sim/common/cgen-cpu.h +++ b/sim/common/cgen-cpu.h @@ -90,6 +90,10 @@ typedef struct { CGEN_DISASSEMBLER *disassembler; #define CPU_DISASSEMBLER(cpu) ((cpu)->cgen_cpu.disassembler) + /* Queued writes for parallel write-after support. */ + CGEN_WRITE_QUEUE write_queue; +#define CPU_WRITE_QUEUE(cpu) (& (cpu)->cgen_cpu.write_queue) + /* Allow slop in size calcs for case where multiple cpu types are supported and space for the specified cpu is malloc'd at run time. */ double slop; |