Created new M5 instruction to allow an integer parameter (init_param) to be specified...
[gem5.git] / cpu / base_cpu.hh
1 /*
2 * Copyright (c) 2003 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #ifndef __BASE_CPU_HH__
30 #define __BASE_CPU_HH__
31
32 #include <vector>
33
34 #include "sim/eventq.hh"
35 #include "sim/sim_object.hh"
36
37 #include "targetarch/isa_traits.hh" // for Addr
38
39 #ifdef FULL_SYSTEM
40 class System;
41 #endif
42
43 class BranchPred;
44 class ExecContext;
45
46 class BaseCPU : public SimObject
47 {
48 #ifdef FULL_SYSTEM
49 protected:
50 int number;
51 Tick frequency;
52 uint8_t interrupts[NumInterruptLevels];
53 uint64_t intstatus;
54
55 public:
56 virtual void post_interrupt(int int_num, int index);
57 virtual void clear_interrupt(int int_num, int index);
58 virtual void clear_interrupts();
59
60 bool check_interrupt(int int_num) const {
61 if (int_num > NumInterruptLevels)
62 panic("int_num out of bounds\n");
63
64 return interrupts[int_num] != 0;
65 }
66
67 bool check_interrupts() const { return intstatus != 0; }
68 uint64_t intr_status() const { return intstatus; }
69
70 Tick getFreq() const { return frequency; }
71 #endif
72
73 protected:
74 std::vector<ExecContext *> contexts;
75
76 public:
77 virtual void execCtxStatusChg() {}
78
79 public:
80
81 #ifdef FULL_SYSTEM
82 BaseCPU(const std::string &_name, int _number_of_threads,
83 Counter max_insts_any_thread, Counter max_insts_all_threads,
84 Counter max_loads_any_thread, Counter max_loads_all_threads,
85 System *_system,
86 int num, Tick freq);
87 #else
88 BaseCPU(const std::string &_name, int _number_of_threads,
89 Counter max_insts_any_thread = 0,
90 Counter max_insts_all_threads = 0,
91 Counter max_loads_any_thread = 0,
92 Counter max_loads_all_threads = 0);
93 #endif
94
95 virtual ~BaseCPU() {}
96
97 virtual void regStats();
98
99 /**
100 * Number of threads we're actually simulating (<= SMT_MAX_THREADS).
101 * This is a constant for the duration of the simulation.
102 */
103 int number_of_threads;
104
105 /**
106 * Vector of per-thread instruction-based event queues. Used for
107 * scheduling events based on number of instructions committed by
108 * a particular thread.
109 */
110 EventQueue **comInsnEventQueue;
111
112 /**
113 * Vector of per-thread load-based event queues. Used for
114 * scheduling events based on number of loads committed by
115 *a particular thread.
116 */
117 EventQueue **comLoadEventQueue;
118
119 #ifdef FULL_SYSTEM
120 System *system;
121 #endif
122
123 /**
124 * Return pointer to CPU's branch predictor (NULL if none).
125 * @return Branch predictor pointer.
126 */
127 virtual BranchPred *getBranchPred() { return NULL; };
128
129 private:
130 static std::vector<BaseCPU *> cpuList; //!< Static global cpu list
131
132 public:
133 static int numSimulatedCPUs() { return cpuList.size(); }
134 };
135
136 #endif // __BASE_CPU_HH__