OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [cpu/] [common/] [execute.h] - Blame information for rev 552

Details | Compare with Previous | View Log

Line No. Rev Author Line
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
#define CURINSN(INSN) (strcmp(cur->insn, (INSN)) == 0)
35
 
36
/*!The main structure holding the current execution state of the CPU
37
 
38
   Not to be confused with @c runtime, which holds the state of the
39
   simulation.
40
 
41
   @c insn_ea field is only used to get dump_exe_log() correct.
42
 
43
   @c iqueue and @c icomplet fields are only used in analysis().
44
 
45
   The micro-operation queue, @c opqs, is only used to speed up
46
   recompile_page().                                                         */
47
struct cpu_state {
48
  uorreg_t             reg[MAX_GPRS];   /*!< General purpose registers */
49
  uorreg_t             sprs[MAX_SPRS];  /*!< Special purpose registers */
50
  oraddr_t             insn_ea;         /*!< EA of instrs that have an EA */
51
  int                  delay_insn;      /*!< Is current instr in delay slot */
52
  int                  npc_not_valid;   /*!< NPC updated while stalled */
53
  oraddr_t             pc;              /*!< PC (and translated PC) */
54
  oraddr_t             pc_delay;        /*!< Delay instr EA register */
55
  struct iqueue_entry  iqueue;          /*!< Decode of just executed instr */
56
  struct iqueue_entry  icomplet;        /*!< Decode of instr before this */
57
 
58
};
59
 
60
/*! History of execution */
61
struct hist_exec
62
{
63
  oraddr_t addr;
64
  struct hist_exec *prev;
65
  struct hist_exec *next;
66
};
67
 
68
/* Globally visible data structures */
69
extern struct cpu_state  cpu_state;
70
extern oraddr_t          pcnext;
71
extern int               sbuf_wait_cyc;
72
extern int               sbuf_total_cyc;
73
extern int               do_stats;
74
extern struct hist_exec *hist_exec_tail;
75
 
76
 
77
/* Prototypes for external use */
78
extern void      dumpreg ();
79 420 jeremybenn
extern void      trace_instr ();
80 19 jeremybenn
extern void      dump_exe_log ();
81 202 julius
extern void      dump_exe_bin_insn_log (struct iqueue_entry *current);
82
 
83 19 jeremybenn
extern int       cpu_clock ();
84
extern void      cpu_reset ();
85
extern uorreg_t  evalsim_reg (unsigned int  regno);
86
extern void      setsim_reg (unsigned int  regno,
87
                             uorreg_t      value);
88
extern uorreg_t  eval_operand_val (uint32_t               insn,
89
                                   struct insn_op_struct *opd);
90
extern void      analysis (struct iqueue_entry *current);
91
extern void      cpu_reset ();
92
extern int       cpu_clock ();
93
extern void      exec_main ();
94
extern int       depend_operands (struct iqueue_entry *prev,
95
                                  struct iqueue_entry *next);
96
#endif  /* EXECUTE__H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.