1
|
|
2
|
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc
|
3
|
|
4
|
-- This file is part of VESTs (Vhdl tESTs).
|
5
|
|
6
|
-- VESTs is free software; you can redistribute it and/or modify it
|
7
|
-- under the terms of the GNU General Public License as published by the
|
8
|
-- Free Software Foundation; either version 2 of the License, or (at
|
9
|
-- your option) any later version.
|
10
|
|
11
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
12
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
13
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
14
|
-- for more details.
|
15
|
|
16
|
-- You should have received a copy of the GNU General Public License
|
17
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
18
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
|
|
20
|
-- ---------------------------------------------------------------------
|
21
|
--
|
22
|
-- $Id: ch_18_fg_18_03.vhd,v 1.3 2001-10-26 16:29:36 paw Exp $
|
23
|
-- $Revision: 1.3 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
library bv_utilities;
|
28
|
|
29
|
package CPU_types is
|
30
|
|
31
|
subtype word is bit_vector(0 to 31);
|
32
|
subtype byte is bit_vector(0 to 7);
|
33
|
|
34
|
alias convert_to_natural is
|
35
|
bv_utilities.bv_arithmetic.bv_to_natural [ bit_vector return natural ];
|
36
|
|
37
|
constant halt_opcode : byte := "00000000";
|
38
|
|
39
|
type code_array is array (natural range <>) of word;
|
40
|
constant code : code_array := ( X"01000000", X"01000000", X"02000000",
|
41
|
X"01000000", X"01000000", X"02000000",
|
42
|
X"00000000" );
|
43
|
|
44
|
end package CPU_types;
|
45
|
|
46
|
use work.CPU_types.all;
|
47
|
|
48
|
entity CPU is
|
49
|
end entity CPU;
|
50
|
|
51
|
-- code from book
|
52
|
|
53
|
architecture instrumented of CPU is
|
54
|
|
55
|
type count_file is file of natural;
|
56
|
file instruction_counts : count_file open write_mode is "instructions";
|
57
|
|
58
|
begin
|
59
|
|
60
|
interpreter : process is
|
61
|
|
62
|
variable IR : word;
|
63
|
alias opcode : byte is IR(0 to 7);
|
64
|
variable opcode_number : natural;
|
65
|
type counter_array is array (0 to 2**opcode'length - 1) of natural;
|
66
|
variable counters : counter_array := (others => 0);
|
67
|
-- . . .
|
68
|
|
69
|
-- not in book
|
70
|
variable code_index : natural := 0;
|
71
|
-- end not in book
|
72
|
|
73
|
begin
|
74
|
|
75
|
-- . . . -- initialize the instruction set interpreter
|
76
|
|
77
|
instruction_loop : loop
|
78
|
|
79
|
-- . . . -- fetch the next instruction into IR
|
80
|
|
81
|
-- not in book
|
82
|
IR := code(code_index);
|
83
|
code_index := code_index + 1;
|
84
|
-- end not in book
|
85
|
|
86
|
-- decode the instruction
|
87
|
opcode_number := convert_to_natural(opcode);
|
88
|
counters(opcode_number) := counters(opcode_number) + 1;
|
89
|
-- . . .
|
90
|
|
91
|
-- execute the decoded instruction
|
92
|
case opcode is
|
93
|
-- . . .
|
94
|
when halt_opcode => exit instruction_loop;
|
95
|
-- . . .
|
96
|
-- not in book
|
97
|
when others => null;
|
98
|
-- end not in book
|
99
|
end case;
|
100
|
|
101
|
end loop instruction_loop;
|
102
|
|
103
|
for index in counters'range loop
|
104
|
write(instruction_counts, counters(index));
|
105
|
end loop;
|
106
|
wait; -- program finished, wait forever
|
107
|
|
108
|
end process interpreter;
|
109
|
|
110
|
end architecture instrumented;
|
111
|
|
112
|
-- code from book
|
113
|
|