gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups 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  * Authors: Nathan Binkert
31  * Steve Reinhardt
32  */
33 
34 #include "sim/core.hh"
35 
36 #include <iostream>
37 #include <string>
38 
39 #include "base/callback.hh"
40 #include "base/output.hh"
41 #include "sim/eventq.hh"
42 
43 using namespace std;
44 
45 namespace SimClock {
48 
49 namespace Float {
50 double s;
51 double ms;
52 double us;
53 double ns;
54 double ps;
55 
56 double Hz;
57 double kHz;
58 double MHz;
59 double GHZ;
60 } // namespace Float
61 
62 namespace Int {
68 } // namespace Float
69 
70 } // namespace SimClock
71 
72 void
73 setClockFrequency(Tick ticksPerSecond)
74 {
75  using namespace SimClock;
76  Frequency = ticksPerSecond;
77  Float::s = static_cast<double>(Frequency);
78  Float::ms = Float::s / 1.0e3;
79  Float::us = Float::s / 1.0e6;
80  Float::ns = Float::s / 1.0e9;
81  Float::ps = Float::s / 1.0e12;
82 
83  Float::Hz = 1.0 / Float::s;
84  Float::kHz = 1.0 / Float::ms;
85  Float::MHz = 1.0 / Float::us;
86  Float::GHZ = 1.0 / Float::ns;
87 
88  Int::s = Frequency;
89  Int::ms = Int::s / 1000;
90  Int::us = Int::ms / 1000;
91  Int::ns = Int::us / 1000;
92  Int::ps = Int::ns / 1000;
93 
94 }
95 
96 void
97 setOutputDir(const string &dir)
98 {
99  simout.setDirectory(dir);
100 }
101 
105 inline CallbackQueue &
107 {
108  static CallbackQueue theQueue;
109  return theQueue;
110 }
111 
115 void
117 {
118  exitCallbacks().add(callback);
119 }
120 
125 void
127 {
129  exitCallbacks().clear();
130 
131  cout.flush();
132 }
133 
OutputDirectory simout
Definition: output.cc:65
Tick us
microsecond
Definition: core.cc:65
Generic callback class.
Definition: callback.hh:41
Tick ps
picosecond
Definition: core.cc:67
void process()
process all callbacks
Definition: callback.hh:135
void doExitCleanup()
Do C++ simulator exit processing.
Definition: core.cc:126
CallbackQueue & exitCallbacks()
Queue of C++ callbacks to invoke on simulator exit.
Definition: core.cc:106
double kHz
kHz
Definition: core.cc:57
void setDirectory(const std::string &dir)
Sets name of this directory.
Definition: output.cc:160
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:47
double MHz
MHz.
Definition: core.cc:58
void setOutputDir(const string &dir)
Definition: core.cc:97
void add(Callback *callback)
Add a callback to the end of the queue.
Definition: callback.hh:107
uint64_t Tick
Tick count type.
Definition: types.hh:63
void registerExitCallback(Callback *callback)
Register an exit callback.
Definition: core.cc:116
Tick s
second
Definition: core.cc:63
Tick ms
millisecond
Definition: core.cc:64
void clear()
clear the callback queue
Definition: callback.hh:150
double GHZ
GHz.
Definition: core.cc:59
void setClockFrequency(Tick ticksPerSecond)
Definition: core.cc:73
double Hz
These variables the inverse of above.
Definition: core.cc:56
Tick ns
nanosecond
Definition: core.cc:66

Generated on Fri Jun 9 2017 13:03:51 for gem5 by doxygen 1.8.6