gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
core.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 The Regents of The University of Michigan
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * Copyright (c) 2013 Mark D. Hill and David A. Wood
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 #include "sim/core.hh"
32 
33 #include <iostream>
34 #include <string>
35 
36 #include "base/callback.hh"
37 #include "base/cprintf.hh"
38 #include "base/logging.hh"
39 #include "base/output.hh"
40 
41 namespace SimClock {
44 
45 namespace Float {
46 double s;
47 double ms;
48 double us;
49 double ns;
50 double ps;
51 
52 double Hz;
53 double kHz;
54 double MHz;
55 double GHz;
56 } // namespace Float
57 
58 namespace Int {
64 } // namespace Float
65 
66 } // namespace SimClock
67 
68 namespace {
69 
70 bool _clockFrequencyFixed = false;
71 
72 // Default to 1 THz (1 Tick == 1 ps)
73 Tick _ticksPerSecond = 1e12;
74 
75 } // anonymous namespace
76 
77 void
79 {
80  if (_clockFrequencyFixed)
81  return;
82 
83  using namespace SimClock;
84  Frequency = _ticksPerSecond;
85  Float::s = static_cast<double>(Frequency);
86  Float::ms = Float::s / 1.0e3;
87  Float::us = Float::s / 1.0e6;
88  Float::ns = Float::s / 1.0e9;
89  Float::ps = Float::s / 1.0e12;
90 
91  Float::Hz = 1.0 / Float::s;
92  Float::kHz = 1.0 / Float::ms;
93  Float::MHz = 1.0 / Float::us;
94  Float::GHz = 1.0 / Float::ns;
95 
96  Int::s = Frequency;
97  Int::ms = Int::s / 1000;
98  Int::us = Int::ms / 1000;
99  Int::ns = Int::us / 1000;
100  Int::ps = Int::ns / 1000;
101 
102  cprintf("Global frequency set at %d ticks per second\n", _ticksPerSecond);
103 
104  _clockFrequencyFixed = true;
105 }
106 bool clockFrequencyFixed() { return _clockFrequencyFixed; }
107 
108 void
110 {
111  panic_if(_clockFrequencyFixed,
112  "Global frequency already fixed at %f ticks/s.", _ticksPerSecond);
113  _ticksPerSecond = tps;
114 }
115 Tick getClockFrequency() { return _ticksPerSecond; }
116 
117 void
118 setOutputDir(const std::string &dir)
119 {
120  simout.setDirectory(dir);
121 }
122 
126 inline CallbackQueue &
128 {
129  static CallbackQueue theQueue;
130  return theQueue;
131 }
132 
136 void
137 registerExitCallback(const std::function<void()> &callback)
138 {
139  exitCallbacks().push_back(callback);
140 }
141 
146 void
148 {
150  exitCallbacks().clear();
151 
152  std::cout.flush();
153 }
154 
SimClock::Float::ps
double ps
picosecond
Definition: core.cc:50
doExitCleanup
void doExitCleanup()
Do C++ simulator exit processing.
Definition: core.cc:147
SimClock::Float::s
double s
These variables equal the number of ticks in the unit of time they're named after in a double.
Definition: core.cc:46
SimClock::Int::ns
Tick ns
nanosecond
Definition: core.cc:62
getClockFrequency
Tick getClockFrequency()
Definition: core.cc:115
SimClock::Float::MHz
double MHz
MHz.
Definition: core.cc:54
setClockFrequency
void setClockFrequency(Tick tps)
Definition: core.cc:109
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
SimClock::Float::kHz
double kHz
kHz
Definition: core.cc:53
SimClock::Int::us
Tick us
microsecond
Definition: core.cc:61
SimClock::Float::us
double us
microsecond
Definition: core.cc:48
OutputDirectory::setDirectory
void setDirectory(const std::string &dir)
Sets name of this directory.
Definition: output.cc:161
CallbackQueue
Definition: callback.hh:35
output.hh
SimClock::Frequency
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:43
exitCallbacks
CallbackQueue & exitCallbacks()
Queue of C++ callbacks to invoke on simulator exit.
Definition: core.cc:127
registerExitCallback
void registerExitCallback(const std::function< void()> &callback)
Register an exit callback.
Definition: core.cc:137
SimClock::Float::Hz
double Hz
These variables the inverse of above.
Definition: core.cc:52
cprintf
void cprintf(const char *format, const Args &...args)
Definition: cprintf.hh:152
SimClock::Float::ns
double ns
nanosecond
Definition: core.cc:49
SimClock::Int::s
Tick s
second
Definition: core.cc:59
SimClock::Int::ms
Tick ms
millisecond
Definition: core.cc:60
clockFrequencyFixed
bool clockFrequencyFixed()
Definition: core.cc:106
SimClock::Int::ps
Tick ps
picosecond
Definition: core.cc:63
cprintf.hh
SimClock
These are variables that are set based on the simulator frequency.
Definition: core.cc:41
core.hh
SimClock::Float::ms
double ms
millisecond
Definition: core.cc:47
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
fixClockFrequency
void fixClockFrequency()
Definition: core.cc:78
CallbackQueue::process
void process()
Definition: callback.hh:46
logging.hh
setOutputDir
void setOutputDir(const std::string &dir)
Definition: core.cc:118
simout
OutputDirectory simout
Definition: output.cc:59
callback.hh
SimClock::Float::GHz
double GHz
GHz.
Definition: core.cc:55

Generated on Tue Jun 22 2021 15:28:30 for gem5 by doxygen 1.8.17