gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
core.hh
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 #ifndef __SIM_CORE_HH__
32 #define __SIM_CORE_HH__
33 
38 #include <functional>
39 #include <string>
40 
41 #include "base/types.hh"
42 // @todo The next include is not needed in this file, but must be kept
43 // until the transitive includes are fixed
44 #include "sim/cur_tick.hh"
45 
48 namespace SimClock {
49 extern Tick Frequency;
50 
51 namespace Float {
52 
57 extern double s;
58 extern double ms;
59 extern double us;
60 extern double ns;
61 extern double ps;
62 
67 extern double Hz;
68 extern double kHz;
69 extern double MHz;
70 extern double GHz;
71 
72 } // namespace Float
73 
79 namespace Int {
80 extern Tick s;
81 extern Tick ms;
82 extern Tick us;
83 extern Tick ns;
84 extern Tick ps;
85 
86 } // namespace Int
87 } // namespace SimClock
90 void fixClockFrequency();
91 bool clockFrequencyFixed();
92 
93 void setClockFrequency(Tick ticksPerSecond);
94 Tick getClockFrequency(); // Ticks per second.
95 
96 void setOutputDir(const std::string &dir);
97 
98 void registerExitCallback(const std::function<void()> &callback);
99 void doExitCleanup();
100 
101 #endif /* __SIM_CORE_HH__ */
SimClock::Float::ps
double ps
picosecond
Definition: core.cc:50
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
cur_tick.hh
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
clockFrequencyFixed
bool clockFrequencyFixed()
Definition: core.cc:106
SimClock::Float::us
double us
microsecond
Definition: core.cc:48
doExitCleanup
void doExitCleanup()
Do C++ simulator exit processing.
Definition: core.cc:147
SimClock::Frequency
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:43
SimClock::Float::Hz
double Hz
These variables the inverse of above.
Definition: core.cc:52
SimClock::Float::ns
double ns
nanosecond
Definition: core.cc:49
setClockFrequency
void setClockFrequency(Tick ticksPerSecond)
Definition: core.cc:109
SimClock::Int::s
Tick s
second
Definition: core.cc:59
SimClock::Int::ms
Tick ms
millisecond
Definition: core.cc:60
setOutputDir
void setOutputDir(const std::string &dir)
Definition: core.cc:118
SimClock::Int::ps
Tick ps
picosecond
Definition: core.cc:63
SimClock
These are variables that are set based on the simulator frequency.
Definition: core.cc:41
registerExitCallback
void registerExitCallback(const std::function< void()> &callback)
Register an exit callback.
Definition: core.cc:137
SimClock::Float::ms
double ms
millisecond
Definition: core.cc:47
types.hh
fixClockFrequency
void fixClockFrequency()
Definition: core.cc:78
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