gem5  v20.1.0.0
goodbye_object.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Jason Lowe-Power
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 
30 
31 #include "base/trace.hh"
32 #include "debug/HelloExample.hh"
33 #include "sim/sim_exit.hh"
34 
35 GoodbyeObject::GoodbyeObject(GoodbyeObjectParams *params) :
36  SimObject(params), event([this]{ processEvent(); }, name() + ".event"),
37  bandwidth(params->write_bandwidth), bufferSize(params->buffer_size),
38  buffer(nullptr), bufferUsed(0)
39 {
40  buffer = new char[bufferSize]();
41  DPRINTF(HelloExample, "Created the goodbye object\n");
42 }
43 
45 {
46  delete[] buffer;
47 }
48 
49 void
51 {
52  DPRINTF(HelloExample, "Processing the event!\n");
53 
54  // Actually do the "work" of the event
55  fillBuffer();
56 }
57 
58 void
59 GoodbyeObject::sayGoodbye(std::string other_name)
60 {
61  DPRINTF(HelloExample, "Saying goodbye to %s\n", other_name);
62 
63  message = "Goodbye " + other_name + "!! ";
64 
65  // Kick off the the first buffer fill. If it can't fill the whole buffer
66  // because of a limited bandwidth, then this function will schedule another
67  // event to finish the fill
68  fillBuffer();
69 }
70 
71 void
73 {
74  // There better be a message
75  assert(message.length() > 0);
76 
77  // Copy from the message to the buffer per byte.
78  int bytes_copied = 0;
79  for (auto it = message.begin();
80  it < message.end() && bufferUsed < bufferSize - 1;
81  it++, bufferUsed++, bytes_copied++) {
82  // Copy the character into the buffer
83  buffer[bufferUsed] = *it;
84  }
85 
86  if (bufferUsed < bufferSize - 1) {
87  // Wait for the next copy for as long as it would have taken
88  DPRINTF(HelloExample, "Scheduling another fillBuffer in %d ticks\n",
89  bandwidth * bytes_copied);
90  schedule(event, curTick() + bandwidth * bytes_copied);
91  } else {
92  DPRINTF(HelloExample, "Goodbye done copying!\n");
93  // Be sure to take into account the time for the last bytes
94  exitSimLoop(buffer, 0, curTick() + bandwidth * bytes_copied);
95  }
96 }
97 
99 GoodbyeObjectParams::create()
100 {
101  return new GoodbyeObject(this);
102 }
GoodbyeObject::fillBuffer
void fillBuffer()
Fills the buffer for one iteration.
Definition: goodbye_object.cc:72
GoodbyeObject::bufferUsed
int bufferUsed
The amount of the buffer we've used so far.
Definition: goodbye_object.hh:67
GoodbyeObject::message
std::string message
The message to put into the buffer.
Definition: goodbye_object.hh:64
GoodbyeObject::event
EventFunctionWrapper event
An event that wraps the above function.
Definition: goodbye_object.hh:46
GoodbyeObject::bandwidth
float bandwidth
The bytes processed per tick.
Definition: goodbye_object.hh:55
GoodbyeObject::bufferSize
int bufferSize
The size of the buffer we are going to fill.
Definition: goodbye_object.hh:58
GoodbyeObject::sayGoodbye
void sayGoodbye(std::string name)
Called by an outside object.
Definition: goodbye_object.cc:59
sim_exit.hh
GoodbyeObject::buffer
char * buffer
The buffer we are putting our message in.
Definition: goodbye_object.hh:61
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1005
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:234
GoodbyeObject::~GoodbyeObject
~GoodbyeObject()
Definition: goodbye_object.cc:44
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
GoodbyeObject::GoodbyeObject
GoodbyeObject(GoodbyeObjectParams *p)
Definition: goodbye_object.cc:35
exitSimLoop
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
Definition: sim_events.cc:88
name
const std::string & name()
Definition: trace.cc:50
goodbye_object.hh
GoodbyeObject
Definition: goodbye_object.hh:37
trace.hh
GoodbyeObject::processEvent
void processEvent()
Fill the buffer with the next chunk of data.
Definition: goodbye_object.cc:50
curTick
Tick curTick()
The current simulated tick.
Definition: core.hh:45
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:92

Generated on Wed Sep 30 2020 14:02:12 for gem5 by doxygen 1.8.17