1 |
19 |
jeremybenn |
/* execute.h -- Header file for architecture dependent execute.c
|
2 |
|
|
|
3 |
|
|
Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
|
4 |
|
|
Copyright (C) 2008 Embecosm Limited
|
5 |
|
|
|
6 |
|
|
Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
|
7 |
|
|
|
8 |
|
|
This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
|
9 |
|
|
|
10 |
|
|
This program is free software; you can redistribute it and/or modify it
|
11 |
|
|
under the terms of the GNU General Public License as published by the Free
|
12 |
|
|
Software Foundation; either version 3 of the License, or (at your option)
|
13 |
|
|
any later version.
|
14 |
|
|
|
15 |
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
16 |
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
17 |
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
18 |
|
|
more details.
|
19 |
|
|
|
20 |
|
|
You should have received a copy of the GNU General Public License along
|
21 |
|
|
with this program. If not, see <http://www.gnu.org/licenses/>. */
|
22 |
|
|
|
23 |
|
|
/* This program is commented throughout in a fashion suitable for processing
|
24 |
|
|
with Doxygen. */
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
#ifndef EXECUTE__H
|
28 |
|
|
#define EXECUTE__H
|
29 |
|
|
|
30 |
|
|
#include "spr-defs.h"
|
31 |
|
|
#include "opcode/or32.h"
|
32 |
|
|
#include "abstract.h"
|
33 |
|
|
|
34 |
|
|
#if DYNAMIC_EXECUTION
|
35 |
|
|
#include "setjmp.h"
|
36 |
|
|
#include "dyn-rec.h"
|
37 |
|
|
#endif
|
38 |
|
|
|
39 |
|
|
|
40 |
|
|
#define CURINSN(INSN) (strcmp(cur->insn, (INSN)) == 0)
|
41 |
|
|
|
42 |
|
|
/*!The main structure holding the current execution state of the CPU
|
43 |
|
|
|
44 |
|
|
Not to be confused with @c runtime, which holds the state of the
|
45 |
|
|
simulation.
|
46 |
|
|
|
47 |
|
|
@c insn_ea field is only used to get dump_exe_log() correct.
|
48 |
|
|
|
49 |
|
|
@c iqueue and @c icomplet fields are only used in analysis().
|
50 |
|
|
|
51 |
|
|
The micro-operation queue, @c opqs, is only used to speed up
|
52 |
|
|
recompile_page(). */
|
53 |
|
|
struct cpu_state {
|
54 |
|
|
uorreg_t reg[MAX_GPRS]; /*!< General purpose registers */
|
55 |
|
|
uorreg_t sprs[MAX_SPRS]; /*!< Special purpose registers */
|
56 |
|
|
oraddr_t insn_ea; /*!< EA of instrs that have an EA */
|
57 |
|
|
int delay_insn; /*!< Is current instr in delay slot */
|
58 |
|
|
int npc_not_valid; /*!< NPC updated while stalled */
|
59 |
|
|
oraddr_t pc; /*!< PC (and translated PC) */
|
60 |
|
|
oraddr_t pc_delay; /*!< Delay instr EA register */
|
61 |
|
|
uint32_t pic_lines; /*!< State of PIC lines */
|
62 |
|
|
struct iqueue_entry iqueue; /*!< Decode of just executed instr */
|
63 |
|
|
struct iqueue_entry icomplet; /*!< Decode of instr before this */
|
64 |
|
|
|
65 |
|
|
#if DYNAMIC_EXECUTION
|
66 |
|
|
jmp_buf excpt_loc; /*!< Longjump here for exception */
|
67 |
|
|
struct dyn_page *curr_page; /*!< Current page in execution */
|
68 |
|
|
struct dyn_page **dyn_pages; /*!< Pointers to recompiled pages */
|
69 |
|
|
int32_t cycles_dec;
|
70 |
|
|
struct op_queue *opqs; /*!< Micro-operation queue */
|
71 |
|
|
#endif
|
72 |
|
|
};
|
73 |
|
|
|
74 |
|
|
/*! History of execution */
|
75 |
|
|
struct hist_exec
|
76 |
|
|
{
|
77 |
|
|
oraddr_t addr;
|
78 |
|
|
struct hist_exec *prev;
|
79 |
|
|
struct hist_exec *next;
|
80 |
|
|
};
|
81 |
|
|
|
82 |
|
|
/* Globally visible data structures */
|
83 |
|
|
extern struct cpu_state cpu_state;
|
84 |
|
|
extern oraddr_t pcnext;
|
85 |
|
|
extern int sbuf_wait_cyc;
|
86 |
|
|
extern int sbuf_total_cyc;
|
87 |
|
|
extern int do_stats;
|
88 |
|
|
extern struct hist_exec *hist_exec_tail;
|
89 |
|
|
|
90 |
|
|
|
91 |
|
|
/* Prototypes for external use */
|
92 |
|
|
extern void dumpreg ();
|
93 |
|
|
extern void dump_exe_log ();
|
94 |
|
|
extern int cpu_clock ();
|
95 |
|
|
extern void cpu_reset ();
|
96 |
|
|
extern uorreg_t evalsim_reg (unsigned int regno);
|
97 |
|
|
extern void setsim_reg (unsigned int regno,
|
98 |
|
|
uorreg_t value);
|
99 |
|
|
extern uorreg_t eval_operand_val (uint32_t insn,
|
100 |
|
|
struct insn_op_struct *opd);
|
101 |
|
|
extern void analysis (struct iqueue_entry *current);
|
102 |
|
|
extern void cpu_reset ();
|
103 |
|
|
extern int cpu_clock ();
|
104 |
|
|
extern void exec_main ();
|
105 |
|
|
extern int depend_operands (struct iqueue_entry *prev,
|
106 |
|
|
struct iqueue_entry *next);
|
107 |
|
|
#endif /* EXECUTE__H */
|