gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pseudo_inst.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2012, 2015, 2017 ARM Limited
3  * Copyright (c) 2020 Barkhausen Institut
4  * All rights reserved
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2011 Advanced Micro Devices, Inc.
16  * Copyright (c) 2003-2006 The Regents of The University of Michigan
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions are
21  * met: redistributions of source code must retain the above copyright
22  * notice, this list of conditions and the following disclaimer;
23  * redistributions in binary form must reproduce the above copyright
24  * notice, this list of conditions and the following disclaimer in the
25  * documentation and/or other materials provided with the distribution;
26  * neither the name of the copyright holders nor the names of its
27  * contributors may be used to endorse or promote products derived from
28  * this software without specific prior written permission.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
33  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
36  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41  */
42 
43 #include "sim/pseudo_inst.hh"
44 
45 #include <fcntl.h>
46 #include <unistd.h>
47 
48 #include <array>
49 #include <cerrno>
50 #include <fstream>
51 #include <string>
52 #include <vector>
53 
54 #include "base/debug.hh"
55 #include "base/output.hh"
56 #include "cpu/base.hh"
57 #include "cpu/thread_context.hh"
58 #include "debug/Loader.hh"
59 #include "debug/Quiesce.hh"
60 #include "debug/WorkItems.hh"
61 #include "dev/net/dist_iface.hh"
64 #include "params/BaseCPU.hh"
65 #include "sim/full_system.hh"
66 #include "sim/process.hh"
67 #include "sim/serialize.hh"
68 #include "sim/sim_events.hh"
69 #include "sim/sim_exit.hh"
70 #include "sim/stat_control.hh"
71 #include "sim/stats.hh"
72 #include "sim/system.hh"
73 
74 namespace gem5
75 {
76 
77 using namespace statistics;
78 
79 namespace pseudo_inst
80 {
81 
88 namespace
89 {
90 
94 const std::string DEFAULT = "";
98 const std::string DIST_RANK = "dist-rank";
102 const std::string DIST_SIZE = "dist-size";
103 
104 } // anonymous namespace
105 
106 void
108 {
109  DPRINTF(PseudoInst, "pseudo_inst::arm()\n");
110 
111  auto *workload = tc->getSystemPtr()->workload;
112  if (workload)
113  workload->recordArm();
114 }
115 
116 void
118 {
119  DPRINTF(PseudoInst, "pseudo_inst::quiesce()\n");
120  tc->quiesce();
121 }
122 
123 void
125 {
126  DPRINTF(PseudoInst, "pseudo_inst::quiesceSkip()\n");
127  tc->quiesceTick(tc->getCpuPtr()->nextCycle() + 1);
128 }
129 
130 void
131 quiesceNs(ThreadContext *tc, uint64_t ns)
132 {
133  DPRINTF(PseudoInst, "pseudo_inst::quiesceNs(%i)\n", ns);
135 }
136 
137 void
138 quiesceCycles(ThreadContext *tc, uint64_t cycles)
139 {
140  DPRINTF(PseudoInst, "pseudo_inst::quiesceCycles(%i)\n", cycles);
141  tc->quiesceTick(tc->getCpuPtr()->clockEdge(Cycles(cycles)));
142 }
143 
144 uint64_t
146 {
147  DPRINTF(PseudoInst, "pseudo_inst::quiesceTime()\n");
148 
149  return (tc->readLastActivate() - tc->readLastSuspend()) /
151 }
152 
153 uint64_t
155 {
156  DPRINTF(PseudoInst, "pseudo_inst::rpns()\n");
157  return curTick() / sim_clock::as_int::ns;
158 }
159 
160 void
162 {
163  DPRINTF(PseudoInst, "pseudo_inst::wakeCPU(%i)\n", cpuid);
164  System *sys = tc->getSystemPtr();
165 
166  if (sys->threads.size() <= cpuid) {
167  warn("pseudo_inst::wakeCPU(%i), cpuid greater than number of contexts"
168  "(%i)\n", cpuid, sys->threads.size());
169  return;
170  }
171 
172  ThreadContext *other_tc = sys->threads[cpuid];
173  if (other_tc->status() == ThreadContext::Suspended)
174  other_tc->activate();
175 }
176 
177 void
179 {
180  DPRINTF(PseudoInst, "pseudo_inst::m5exit(%i)\n", delay);
181  if (DistIface::readyToExit(delay)) {
182  Tick when = curTick() + delay * sim_clock::as_int::ns;
183  exitSimLoop("m5_exit instruction encountered", 0, when, 0, true);
184  }
185 }
186 
187 // m5sum is for sanity checking the gem5 op interface.
188 uint64_t
189 m5sum(ThreadContext *tc, uint64_t a, uint64_t b, uint64_t c,
190  uint64_t d, uint64_t e, uint64_t f)
191 {
192  DPRINTF(PseudoInst, "pseudo_inst::m5sum(%#x, %#x, %#x, %#x, %#x, %#x)\n",
193  a, b, c, d, e, f);
194  return a + b + c + d + e + f;
195 }
196 
197 void
198 m5fail(ThreadContext *tc, Tick delay, uint64_t code)
199 {
200  DPRINTF(PseudoInst, "pseudo_inst::m5fail(%i, %i)\n", delay, code);
201  Tick when = curTick() + delay * sim_clock::as_int::ns;
202  exitSimLoop("m5_fail instruction encountered", code, when, 0, true);
203 }
204 
205 void
207 {
208  DPRINTF(PseudoInst, "pseudo_inst::loadsymbol()\n");
209 
210  const std::string &filename = tc->getCpuPtr()->system->params().symbolfile;
211  if (filename.empty()) {
212  return;
213  }
214 
215  std::string buffer;
216  std::ifstream file(filename.c_str());
217 
218  if (!file)
219  fatal("file error: Can't open symbol table file %s\n", filename);
220 
221  while (!file.eof()) {
222  getline(file, buffer);
223 
224  if (buffer.empty())
225  continue;
226 
227  std::string::size_type idx = buffer.find(' ');
228  if (idx == std::string::npos)
229  continue;
230 
231  std::string address = "0x" + buffer.substr(0, idx);
232  eat_white(address);
233  if (address.empty())
234  continue;
235 
236  // Skip over letter and space
237  std::string symbol = buffer.substr(idx + 3);
238  eat_white(symbol);
239  if (symbol.empty())
240  continue;
241 
242  Addr addr;
243  if (!to_number(address, addr))
244  continue;
245 
246  if (!tc->getSystemPtr()->workload->insertSymbol(
247  { loader::Symbol::Binding::Global, symbol, addr })) {
248  continue;
249  }
250 
251 
252  DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr);
253  }
254  file.close();
255 }
256 
257 void
259 {
260  DPRINTF(PseudoInst, "pseudo_inst::addsymbol(0x%x, 0x%x)\n",
261  addr, symbolAddr);
262 
263  std::string symbol;
264  TranslatingPortProxy fs_proxy(tc);
265  SETranslatingPortProxy se_proxy(tc);
266  PortProxy &virt_proxy = FullSystem ? fs_proxy : se_proxy;
267 
268  virt_proxy.readString(symbol, symbolAddr);
269 
270  DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr);
271 
276 }
277 
278 uint64_t
279 initParam(ThreadContext *tc, uint64_t key_str1, uint64_t key_str2)
280 {
281  DPRINTF(PseudoInst, "pseudo_inst::initParam() key:%s%s\n",
282  (char *)&key_str1, (char *)&key_str2);
283 
284  // The key parameter string is passed in via two 64-bit registers. We copy
285  // out the characters from the 64-bit integer variables here, and
286  // concatenate them in the key character buffer
287  const int len = 2 * sizeof(uint64_t) + 1;
288  char key[len];
289  std::memset(key, '\0', len);
290 
291  std::array<uint64_t, 2> key_regs = {{ key_str1, key_str2 }};
292  key_regs = letoh(key_regs);
293  std::memcpy(key, key_regs.data(), sizeof(key_regs));
294 
295  // Check key parameter to figure out what to return.
296  const std::string key_str(key);
297  if (key == DEFAULT)
298  return tc->getCpuPtr()->system->init_param;
299  else if (key == DIST_RANK)
300  return DistIface::rankParam();
301  else if (key == DIST_SIZE)
302  return DistIface::sizeParam();
303  else
304  panic("Unknown key for initparam pseudo instruction:\"%s\"", key_str);
305 }
306 
307 
308 void
309 resetstats(ThreadContext *tc, Tick delay, Tick period)
310 {
311  DPRINTF(PseudoInst, "pseudo_inst::resetstats(%i, %i)\n", delay, period);
312  if (!tc->getCpuPtr()->params().do_statistics_insts)
313  return;
314 
315 
316  Tick when = curTick() + delay * sim_clock::as_int::ns;
317  Tick repeat = period * sim_clock::as_int::ns;
318 
319  statistics::schedStatEvent(false, true, when, repeat);
320 }
321 
322 void
323 dumpstats(ThreadContext *tc, Tick delay, Tick period)
324 {
325  DPRINTF(PseudoInst, "pseudo_inst::dumpstats(%i, %i)\n", delay, period);
326  if (!tc->getCpuPtr()->params().do_statistics_insts)
327  return;
328 
329 
330  Tick when = curTick() + delay * sim_clock::as_int::ns;
331  Tick repeat = period * sim_clock::as_int::ns;
332 
333  statistics::schedStatEvent(true, false, when, repeat);
334 }
335 
336 void
338 {
339  DPRINTF(PseudoInst, "pseudo_inst::dumpresetstats(%i, %i)\n", delay,
340  period);
341  if (!tc->getCpuPtr()->params().do_statistics_insts)
342  return;
343 
344 
345  Tick when = curTick() + delay * sim_clock::as_int::ns;
346  Tick repeat = period * sim_clock::as_int::ns;
347 
348  statistics::schedStatEvent(true, true, when, repeat);
349 }
350 
351 void
352 m5checkpoint(ThreadContext *tc, Tick delay, Tick period)
353 {
354  DPRINTF(PseudoInst, "pseudo_inst::m5checkpoint(%i, %i)\n", delay, period);
355  if (!tc->getCpuPtr()->params().do_checkpoint_insts)
356  return;
357 
358  if (DistIface::readyToCkpt(delay, period)) {
359  Tick when = curTick() + delay * sim_clock::as_int::ns;
360  Tick repeat = period * sim_clock::as_int::ns;
361  exitSimLoop("checkpoint", 0, when, repeat);
362  }
363 }
364 
365 uint64_t
366 readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
367 {
368  DPRINTF(PseudoInst, "pseudo_inst::readfile(0x%x, 0x%x, 0x%x)\n",
369  vaddr, len, offset);
370 
371  const std::string &file = tc->getSystemPtr()->params().readfile;
372  if (file.empty()) {
373  return 0;
374  }
375 
376  uint64_t result = 0;
377 
378  int fd = ::open(file.c_str(), O_RDONLY, 0);
379  if (fd < 0)
380  panic("could not open file %s\n", file);
381 
382  if (::lseek(fd, offset, SEEK_SET) < 0)
383  panic("could not seek: %s", strerror(errno));
384 
385  char *buf = new char[len];
386  char *p = buf;
387  while (len > 0) {
388  int bytes = ::read(fd, p, len);
389  if (bytes <= 0)
390  break;
391 
392  p += bytes;
393  result += bytes;
394  len -= bytes;
395  }
396 
397  close(fd);
398  TranslatingPortProxy fs_proxy(tc);
399  SETranslatingPortProxy se_proxy(tc);
400  PortProxy &virt_proxy = FullSystem ? fs_proxy : se_proxy;
401 
402  virt_proxy.writeBlob(vaddr, buf, result);
403  delete [] buf;
404  return result;
405 }
406 
407 uint64_t
408 writefile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset,
409  Addr filename_addr)
410 {
411  DPRINTF(PseudoInst, "pseudo_inst::writefile(0x%x, 0x%x, 0x%x, 0x%x)\n",
412  vaddr, len, offset, filename_addr);
413 
414  // copy out target filename
415  std::string filename;
416  TranslatingPortProxy fs_proxy(tc);
417  SETranslatingPortProxy se_proxy(tc);
418  PortProxy &virt_proxy = FullSystem ? fs_proxy : se_proxy;
419 
420  virt_proxy.readString(filename, filename_addr);
421 
422  OutputStream *out;
423  if (offset == 0) {
424  // create a new file (truncate)
425  out = simout.create(filename, true, true);
426  } else {
427  // do not truncate file if offset is non-zero
428  // (ios::in flag is required as well to keep the existing data
429  // intact, otherwise existing data will be zeroed out.)
430  out = simout.open(filename,
431  std::ios::in | std::ios::out | std::ios::binary, true);
432  }
433 
434  std::ostream *os(out->stream());
435  if (!os)
436  panic("could not open file %s\n", filename);
437 
438  if (offset != 0) {
439  // seek to offset
440  os->seekp(offset);
441  }
442 
443  // copy out data and write to file
444  char *buf = new char[len];
445 
446  virt_proxy.readBlob(vaddr, buf, len);
447  os->write(buf, len);
448  if (os->fail() || os->bad())
449  panic("Error while doing writefile!\n");
450 
451  simout.close(out);
452 
453  delete [] buf;
454 
455  return len;
456 }
457 
458 void
460 {
461  DPRINTF(PseudoInst, "pseudo_inst::debugbreak()\n");
463 }
464 
465 void
467 {
468  DPRINTF(PseudoInst, "pseudo_inst::switchcpu()\n");
469  exitSimLoop("switchcpu");
470 }
471 
472 void
474 {
475  DPRINTF(PseudoInst, "pseudo_inst::togglesync()\n");
477 }
478 
479 void
481 {
482  DPRINTF(PseudoInst, "pseudo_inst::triggerWorkloadEvent()\n");
483  tc->getSystemPtr()->workload->event(tc);
484 }
485 
486 //
487 // This function is executed when annotated work items begin. Depending on
488 // what the user specified at the command line, the simulation may exit and/or
489 // take a checkpoint when a certain work item begins.
490 //
491 void
492 workbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid)
493 {
494  DPRINTF(PseudoInst, "pseudo_inst::workbegin(%i, %i)\n", workid, threadid);
495  System *sys = tc->getSystemPtr();
496  const System::Params &params = sys->params();
497 
498  if (params.exit_on_work_items) {
499  exitSimLoop("workbegin", static_cast<int>(workid));
500  return;
501  }
502 
503  DPRINTF(WorkItems, "Work Begin workid: %d, threadid %d\n", workid,
504  threadid);
505  tc->getCpuPtr()->workItemBegin();
506  sys->workItemBegin(threadid, workid);
507 
508  //
509  // If specified, determine if this is the specific work item the user
510  // identified
511  //
512  if (params.work_item_id == -1 || params.work_item_id == workid) {
513 
514  uint64_t systemWorkBeginCount = sys->incWorkItemsBegin();
515  int cpuId = tc->getCpuPtr()->cpuId();
516 
517  if (params.work_cpus_ckpt_count != 0 &&
518  sys->markWorkItem(cpuId) >= params.work_cpus_ckpt_count) {
519  //
520  // If active cpus equals checkpoint count, create checkpoint
521  //
522  exitSimLoop("checkpoint");
523  }
524 
525  if (systemWorkBeginCount == params.work_begin_ckpt_count) {
526  //
527  // Note: the string specified as the cause of the exit event must
528  // exactly equal "checkpoint" inorder to create a checkpoint
529  //
530  exitSimLoop("checkpoint");
531  }
532 
533  if (systemWorkBeginCount == params.work_begin_exit_count) {
534  //
535  // If a certain number of work items started, exit simulation
536  //
537  exitSimLoop("work started count reach");
538  }
539 
540  if (cpuId == params.work_begin_cpu_id_exit) {
541  //
542  // If work started on the cpu id specified, exit simulation
543  //
544  exitSimLoop("work started on specific cpu");
545  }
546  }
547 }
548 
549 //
550 // This function is executed when annotated work items end. Depending on
551 // what the user specified at the command line, the simulation may exit and/or
552 // take a checkpoint when a certain work item ends.
553 //
554 void
555 workend(ThreadContext *tc, uint64_t workid, uint64_t threadid)
556 {
557  DPRINTF(PseudoInst, "pseudo_inst::workend(%i, %i)\n", workid, threadid);
558  System *sys = tc->getSystemPtr();
559  const System::Params &params = sys->params();
560 
561  if (params.exit_on_work_items) {
562  exitSimLoop("workend", static_cast<int>(workid));
563  return;
564  }
565 
566  DPRINTF(WorkItems, "Work End workid: %d, threadid %d\n", workid, threadid);
567  tc->getCpuPtr()->workItemEnd();
568  sys->workItemEnd(threadid, workid);
569 
570  //
571  // If specified, determine if this is the specific work item the user
572  // identified
573  //
574  if (params.work_item_id == -1 || params.work_item_id == workid) {
575 
576  uint64_t systemWorkEndCount = sys->incWorkItemsEnd();
577  int cpuId = tc->getCpuPtr()->cpuId();
578 
579  if (params.work_cpus_ckpt_count != 0 &&
580  sys->markWorkItem(cpuId) >= params.work_cpus_ckpt_count) {
581  //
582  // If active cpus equals checkpoint count, create checkpoint
583  //
584  exitSimLoop("checkpoint");
585  }
586 
587  if (params.work_end_ckpt_count != 0 &&
588  systemWorkEndCount == params.work_end_ckpt_count) {
589  //
590  // If total work items completed equals checkpoint count, create
591  // checkpoint
592  //
593  exitSimLoop("checkpoint");
594  }
595 
596  if (params.work_end_exit_count != 0 &&
597  systemWorkEndCount == params.work_end_exit_count) {
598  //
599  // If total work items completed equals exit count, exit simulation
600  //
601  exitSimLoop("work items exit count reached");
602  }
603  }
604 }
605 
606 } // namespace pseudo_inst
607 } // namespace gem5
gem5::curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:46
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:200
gem5::DistIface::readyToExit
static bool readyToExit(Tick delay)
Initiate the exit from the simulation.
Definition: dist_iface.cc:891
gem5::VegaISA::f
Bitfield< 56 > f
Definition: pagetable.hh:53
gem5::SETranslatingPortProxy
Definition: se_translating_port_proxy.hh:49
gem5::ThreadContext::getSystemPtr
virtual System * getSystemPtr()=0
gem5::ThreadContext::readLastSuspend
virtual Tick readLastSuspend()=0
warn
#define warn(...)
Definition: logging.hh:256
gem5::System::Threads::size
int size() const
Definition: system.hh:210
gem5::System::workItemEnd
void workItemEnd(uint32_t tid, uint32_t workid)
Definition: system.cc:377
gem5::PortProxy::writeBlob
void writeBlob(Addr addr, const void *p, int size) const
Same as tryWriteBlob, but insists on success.
Definition: port_proxy.hh:192
gem5::pseudo_inst::workend
void workend(ThreadContext *tc, uint64_t workid, uint64_t threadid)
Definition: pseudo_inst.cc:555
system.hh
gem5::pseudo_inst::quiesceNs
void quiesceNs(ThreadContext *tc, uint64_t ns)
Definition: pseudo_inst.cc:131
gem5::loader::Symbol::Binding::Global
@ Global
gem5::MipsISA::cpuid
Bitfield< 28, 21 > cpuid
Definition: dt_constants.hh:95
serialize.hh
gem5::ArmISA::fd
Bitfield< 14, 12 > fd
Definition: types.hh:150
gem5::pseudo_inst::quiesceTime
uint64_t quiesceTime(ThreadContext *tc)
Definition: pseudo_inst.cc:145
gem5::pseudo_inst::debugbreak
void debugbreak(ThreadContext *tc)
Definition: pseudo_inst.cc:459
gem5::PortProxy::readString
void readString(std::string &str, Addr addr) const
Same as tryReadString, but insists on success.
Definition: port_proxy.hh:260
sim_events.hh
pseudo_inst.hh
gem5::pseudo_inst::switchcpu
void switchcpu(ThreadContext *tc)
Definition: pseudo_inst.cc:466
translating_port_proxy.hh
gem5::System::incWorkItemsEnd
uint64_t incWorkItemsEnd()
Called by pseudo_inst to track the number of work items completed by this system.
Definition: system.hh:527
gem5::ArmISA::e
Bitfield< 9 > e
Definition: misc_types.hh:65
gem5::simout
OutputDirectory simout
Definition: output.cc:62
gem5::ArmISA::a
Bitfield< 8 > a
Definition: misc_types.hh:66
gem5::debug::breakpoint
void breakpoint()
Definition: debug.cc:64
gem5::ArmISA::ns
Bitfield< 0 > ns
Definition: misc_types.hh:388
gem5::BaseCPU::system
System * system
Definition: base.hh:392
gem5::System::workload
Workload * workload
OS kernel.
Definition: system.hh:326
gem5::eat_white
void eat_white(std::string &s)
Definition: str.hh:68
gem5::to_number
bool to_number(const std::string &value, Pixel &retval)
Definition: pixel.hh:217
gem5::ThreadContext::activate
virtual void activate()=0
Set the status to Active.
gem5::OutputDirectory::create
OutputStream * create(const std::string &name, bool binary=false, bool no_gz=false)
Creates a file in this directory (optionally compressed).
Definition: output.cc:210
gem5::pseudo_inst::quiesce
void quiesce(ThreadContext *tc)
Definition: pseudo_inst.cc:117
sim_exit.hh
output.hh
gem5::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
gem5::letoh
T letoh(T value)
Definition: byteswap.hh:173
gem5::ThreadContext::status
virtual Status status() const =0
gem5::TranslatingPortProxy
This proxy attempts to translate virtual addresses using the TLBs.
Definition: translating_port_proxy.hh:60
gem5::Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:78
gem5::pseudo_inst::rpns
uint64_t rpns(ThreadContext *tc)
Definition: pseudo_inst.cc:154
gem5::SimObject::Params
SimObjectParams Params
Definition: sim_object.hh:170
stats.hh
gem5::VegaISA::c
Bitfield< 2 > c
Definition: pagetable.hh:63
gem5::pseudo_inst::triggerWorkloadEvent
void triggerWorkloadEvent(ThreadContext *tc)
Definition: pseudo_inst.cc:480
gem5::OutputStream::stream
std::ostream * stream() const
Get the output underlying output stream.
Definition: output.hh:62
gem5::OutputDirectory::close
void close(OutputStream *file)
Closes an output file and free the corresponding OutputFile.
Definition: output.cc:147
gem5::System::incWorkItemsBegin
uint64_t incWorkItemsBegin()
Called by pseudo_inst to track the number of work items started by this system.
Definition: system.hh:517
gem5::pseudo_inst::loadsymbol
void loadsymbol(ThreadContext *tc)
Definition: pseudo_inst.cc:206
gem5::ThreadContext::quiesceTick
void quiesceTick(Tick resume)
Quiesce, suspend, and schedule activate at resume.
Definition: thread_context.cc:174
gem5::System
Definition: system.hh:74
gem5::pseudo_inst::writefile
uint64_t writefile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset, Addr filename_addr)
Definition: pseudo_inst.cc:408
gem5::ArmISA::b
Bitfield< 7 > b
Definition: misc_types.hh:438
gem5::pseudo_inst::wakeCPU
void wakeCPU(ThreadContext *tc, uint64_t cpuid)
Definition: pseudo_inst.cc:161
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
gem5::ThreadContext::quiesce
void quiesce()
Quiesce thread context.
Definition: thread_context.cc:167
gem5::Workload::event
virtual void event(ThreadContext *tc)
Definition: workload.hh:117
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::SimObject::params
const Params & params() const
Definition: sim_object.hh:176
gem5::ThreadContext::Suspended
@ Suspended
Temporarily inactive.
Definition: thread_context.hh:107
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:210
gem5::ArmISA::d
Bitfield< 9 > d
Definition: misc_types.hh:64
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::pseudo_inst::m5checkpoint
void m5checkpoint(ThreadContext *tc, Tick delay, Tick period)
Definition: pseudo_inst.cc:352
gem5::ThreadContext::readLastActivate
virtual Tick readLastActivate()=0
process.hh
dist_iface.hh
len
uint16_t len
Definition: helpers.cc:62
gem5::PortProxy
This object is a proxy for a port or other object which implements the functional response protocol,...
Definition: port_proxy.hh:86
gem5::OutputDirectory::open
OutputStream * open(const std::string &name, std::ios_base::openmode mode, bool recreateable=true, bool no_gz=false)
Open a file in this directory (optionally compressed).
Definition: output.cc:224
debug.hh
gem5::pseudo_inst::readfile
uint64_t readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
Definition: pseudo_inst.cc:366
gem5::ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:144
gem5::Workload::recordArm
void recordArm()
Definition: workload.hh:91
gem5::PortProxy::readBlob
void readBlob(Addr addr, void *p, int size) const
Higher level interfaces based on the above.
Definition: port_proxy.hh:182
gem5::pseudo_inst::m5fail
void m5fail(ThreadContext *tc, Tick delay, uint64_t code)
Definition: pseudo_inst.cc:198
gem5::statistics::size_type
unsigned int size_type
Definition: types.hh:59
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::Clocked::clockEdge
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Definition: clocked_object.hh:177
gem5::pseudo_inst::quiesceSkip
void quiesceSkip(ThreadContext *tc)
Definition: pseudo_inst.cc:124
full_system.hh
gem5::pseudo_inst::resetstats
void resetstats(ThreadContext *tc, Tick delay, Tick period)
Definition: pseudo_inst.cc:309
gem5::pseudo_inst::arm
void arm(ThreadContext *tc)
Definition: pseudo_inst.cc:107
gem5::BaseCPU::workItemEnd
void workItemEnd()
Definition: base.hh:219
gem5::pseudo_inst::dumpresetstats
void dumpresetstats(ThreadContext *tc, Tick delay, Tick period)
Definition: pseudo_inst.cc:337
gem5::Clocked::nextCycle
Tick nextCycle() const
Based on the clock of the object, determine the start tick of the first cycle that is at least one cy...
Definition: clocked_object.hh:213
gem5::FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:220
stat_control.hh
gem5::pseudo_inst::workbegin
void workbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid)
Definition: pseudo_inst.cc:492
gem5::loader::SymbolTable::insert
bool insert(const Symbol &symbol)
Insert a new symbol in the table if it does not already exist.
Definition: symtab.cc:54
gem5::DistIface::sizeParam
static uint64_t sizeParam()
Getter for the dist size param.
Definition: dist_iface.cc:929
gem5::pseudo_inst::addsymbol
void addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr)
Definition: pseudo_inst.cc:258
base.hh
gem5::System::threads
Threads threads
Definition: system.hh:310
gem5::X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:810
gem5::pseudo_inst::quiesceCycles
void quiesceCycles(ThreadContext *tc, uint64_t cycles)
Definition: pseudo_inst.cc:138
gem5::System::init_param
uint64_t init_param
Definition: system.hh:319
gem5::pseudo_inst::m5exit
void m5exit(ThreadContext *tc, Tick delay)
Definition: pseudo_inst.cc:178
gem5::BaseCPU::cpuId
int cpuId() const
Reads this CPU's ID.
Definition: base.hh:187
gem5::BaseCPU::workItemBegin
void workItemBegin()
Definition: base.hh:218
gem5::DistIface::readyToCkpt
static bool readyToCkpt(Tick delay, Tick period)
Initiate taking a checkpoint.
Definition: dist_iface.cc:823
gem5::System::markWorkItem
int markWorkItem(int index)
Called by pseudo_inst to mark the cpus actively executing work items.
Definition: system.hh:538
gem5::pseudo_inst::m5sum
uint64_t m5sum(ThreadContext *tc, uint64_t a, uint64_t b, uint64_t c, uint64_t d, uint64_t e, uint64_t f)
Definition: pseudo_inst.cc:189
gem5::ThreadContext::getCpuPtr
virtual BaseCPU * getCpuPtr()=0
gem5::DistIface::toggleSync
static void toggleSync(ThreadContext *tc)
Trigger the primary to start/stop synchronization.
Definition: dist_iface.cc:854
se_translating_port_proxy.hh
gem5::pseudo_inst::togglesync
void togglesync(ThreadContext *tc)
Definition: pseudo_inst.cc:473
gem5::MipsISA::vaddr
vaddr
Definition: pra_constants.hh:278
gem5::loader::debugSymbolTable
SymbolTable debugSymbolTable
Global unified debugging symbol table (for target).
Definition: symtab.cc:43
gem5::DistIface::rankParam
static uint64_t rankParam()
Getter for the dist rank param.
Definition: dist_iface.cc:916
gem5::System::workItemBegin
void workItemBegin(uint32_t tid, uint32_t workid)
Definition: system.hh:545
gem5::pseudo_inst::initParam
uint64_t initParam(ThreadContext *tc, uint64_t key_str1, uint64_t key_str2)
Definition: pseudo_inst.cc:279
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::pseudo_inst::dumpstats
void dumpstats(ThreadContext *tc, Tick delay, Tick period)
Definition: pseudo_inst.cc:323
gem5::OutputStream
Definition: output.hh:56
gem5::Workload::insertSymbol
virtual bool insertSymbol(const loader::Symbol &symbol)=0
thread_context.hh
gem5::statistics::schedStatEvent
void schedStatEvent(bool dump, bool reset, Tick when, Tick repeat)
Schedule statistics dumping.
Definition: stat_control.cc:106
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:188
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84
gem5::sim_clock::as_int::ns
Tick ns
nanosecond
Definition: core.cc:68

Generated on Sun Jul 30 2023 01:56:59 for gem5 by doxygen 1.8.17