2003-11-03 02:43:39 +01:00
|
|
|
/*
|
2006-03-01 00:41:04 +01:00
|
|
|
* Copyright (c) 2003-2006 The Regents of The University of Michigan
|
2003-11-03 02:43:39 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Nathan Binkert
|
2003-11-03 02:43:39 +01:00
|
|
|
*/
|
|
|
|
|
2005-04-22 19:12:03 +02:00
|
|
|
#include <errno.h>
|
2004-07-02 00:03:05 +02:00
|
|
|
#include <fcntl.h>
|
2004-07-02 18:30:06 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-02-18 07:52:32 +01:00
|
|
|
#include <fstream>
|
2003-11-03 02:52:40 +01:00
|
|
|
#include <string>
|
|
|
|
|
2006-02-27 11:35:43 +01:00
|
|
|
#include "arch/vtophys.hh"
|
2006-09-11 23:57:20 +02:00
|
|
|
#include "base/annotate.hh"
|
2005-06-05 02:50:10 +02:00
|
|
|
#include "cpu/base.hh"
|
2006-06-06 23:32:21 +02:00
|
|
|
#include "cpu/thread_context.hh"
|
2006-05-16 19:51:18 +02:00
|
|
|
#include "cpu/quiesce_event.hh"
|
2006-11-08 04:34:34 +01:00
|
|
|
#include "arch/kernel_stats.hh"
|
|
|
|
#include "sim/pseudo_inst.hh"
|
2003-11-03 02:43:39 +01:00
|
|
|
#include "sim/serialize.hh"
|
|
|
|
#include "sim/sim_exit.hh"
|
2004-05-04 23:01:00 +02:00
|
|
|
#include "sim/stat_control.hh"
|
|
|
|
#include "sim/stats.hh"
|
2004-07-02 00:03:05 +02:00
|
|
|
#include "sim/system.hh"
|
2004-08-02 23:10:02 +02:00
|
|
|
#include "sim/debug.hh"
|
2006-02-12 18:40:58 +01:00
|
|
|
#include "sim/vptr.hh"
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2003-11-03 02:52:40 +01:00
|
|
|
using namespace std;
|
2004-08-02 23:10:02 +02:00
|
|
|
|
2004-05-21 19:39:20 +02:00
|
|
|
using namespace Stats;
|
Changes to untemplate StaticInst and StaticInstPtr, change the isa to a namespace instead of a class, an improvement to the architecture specific header file selection system, and fixed up a few include paths.
arch/alpha/alpha_linux_process.cc:
Added using directive for AlphaISA namespace
arch/alpha/alpha_memory.hh:
arch/alpha/isa/branch.isa:
cpu/pc_event.hh:
Added typedefs for Addr
arch/alpha/alpha_tru64_process.cc:
arch/alpha/arguments.cc:
Added using directive for AlphaISA
arch/alpha/ev5.hh:
Added an include of arch/alpha/isa_traits.hh, and a using directive for the AlphaISA namespace.
arch/alpha/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/alpha/isa/main.isa:
Untemplatized StaticInst, added a using for namespace AlphaISA to show up in decoder.cc and the exec.ccs, relocated makeNop to decoder.hh
arch/alpha/isa/mem.isa:
Untemplatized StaticInst and StaticInstPtr
arch/alpha/isa/pal.isa:
cpu/base_dyn_inst.cc:
Untemplatized StaticInstPtr
arch/alpha/isa_traits.hh:
Changed variables to be externs instead of static since they are part of a namespace and not a class.
arch/alpha/stacktrace.cc:
Untemplatized StaticInstPtr, and added a using directive for AlphaISA.
arch/alpha/stacktrace.hh:
Added some typedefs for Addr and MachInst, and untemplatized StaticInstPtr
arch/alpha/vtophys.cc:
Added a using directive for AlphaISA
arch/alpha/vtophys.hh:
Added the AlphaISA namespace specifier where needed
arch/isa_parser.py:
Changed the placement of the definition of the decodeInst function to be outside the namespaceInst namespace.
base/loader/object_file.hh:
cpu/o3/bpred_unit.hh:
Added a typedef for Addr
base/loader/symtab.hh:
Added a typedef for Addr, and added a TheISA to Addr in another typedef
base/remote_gdb.cc:
Added a using namespace TheISA, and untemplatized StaticInstPtr
base/remote_gdb.hh:
Added typedefs for Addr and MachInst
cpu/base.cc:
Added TheISA specifier to some variables exported from the isa.
cpu/base.hh:
Added a typedef for Addr, and TheISA to some variables from the ISA
cpu/base_dyn_inst.hh:
Untemplatized StaticInstPtr, and added TheISA specifier to some variables from the ISA.
cpu/exec_context.hh:
Added some typedefs for types from the isa, and added TheISA specifier to some variables from the isa
cpu/exetrace.hh:
Added typedefs for some types from the ISA, and untemplatized StaticInstPtr
cpu/memtest/memtest.cc:
cpu/o3/btb.cc:
dev/baddev.cc:
dev/ide_ctrl.cc:
dev/ide_disk.cc:
dev/isa_fake.cc:
dev/ns_gige.cc:
dev/pciconfigall.cc:
dev/platform.cc:
dev/sinic.cc:
dev/uart8250.cc:
kern/freebsd/freebsd_system.cc:
kern/linux/linux_system.cc:
kern/system_events.cc:
kern/tru64/dump_mbuf.cc:
kern/tru64/tru64_events.cc:
sim/process.cc:
sim/pseudo_inst.cc:
sim/system.cc:
Added using namespace TheISA
cpu/memtest/memtest.hh:
cpu/trace/opt_cpu.hh:
cpu/trace/reader/itx_reader.hh:
dev/ide_disk.hh:
dev/pcidev.hh:
dev/platform.hh:
dev/tsunami.hh:
sim/system.hh:
sim/vptr.hh:
Added typedef for Addr
cpu/o3/2bit_local_pred.hh:
Changed the include to use arch/isa_traits.hh instead of arch/alpha/isa_traits.hh. Added typedef for Addr
cpu/o3/alpha_cpu.hh:
Added typedefs for Addr and IntReg
cpu/o3/alpha_cpu_impl.hh:
Added this-> to setNextPC to fix a problem since it didn't depend on template parameters any more. Removed "typename" where it was no longer needed.
cpu/o3/alpha_dyn_inst.hh:
Cleaned up some typedefs, and untemplatized StaticInst
cpu/o3/alpha_dyn_inst_impl.hh:
untemplatized StaticInstPtr
cpu/o3/alpha_impl.hh:
Fixed up a typedef of MachInst
cpu/o3/bpred_unit_impl.hh:
Added a using TheISA::MachInst to a function
cpu/o3/btb.hh:
Changed an include from arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef for Addr
cpu/o3/commit.hh:
Removed a typedef of Impl::ISA as ISA, since TheISA takes care of this now.
cpu/o3/cpu.cc:
Cleaned up namespace issues
cpu/o3/cpu.hh:
Cleaned up namespace usage
cpu/o3/decode.hh:
Removed typedef of ISA, and changed it to TheISA
cpu/o3/fetch.hh:
Fized up typedefs, and changed ISA to TheISA
cpu/o3/free_list.hh:
Changed include of arch/alpha/isa_traits.hh to arch/isa_traits.hh
cpu/o3/iew.hh:
Removed typedef of ISA
cpu/o3/iew_impl.hh:
Added TheISA namespace specifier to MachInst
cpu/o3/ras.hh:
Changed include from arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef for Addr.
cpu/o3/regfile.hh:
Changed ISA to TheISA, and added some typedefs for Addr, IntReg, FloatReg, and MiscRegFile
cpu/o3/rename.hh:
Changed ISA to TheISA, and added a typedef for RegIndex
cpu/o3/rename_map.hh:
Added an include for arch/isa_traits.hh, and a typedef for RegIndex
cpu/o3/rob.hh:
Added a typedef for RegIndex
cpu/o3/store_set.hh:
cpu/o3/tournament_pred.hh:
Changed an include of arch/alpha/isa_traits.hh to arch/isa_traits.hh, and added a typedef of Addr
cpu/ozone/cpu.hh:
Changed ISA into TheISA, and untemplatized StaticInst
cpu/pc_event.cc:
Added namespace specifier TheISA to Addr types
cpu/profile.hh:
kern/kernel_stats.hh:
Added typedef for Addr, and untemplatized StaticInstPtr
cpu/simple/cpu.cc:
Changed using directive from LittleEndianGuest to AlphaISA, which will contain both namespaces. Added TheISA where needed, and untemplatized StaticInst
cpu/simple/cpu.hh:
Added a typedef for MachInst, and untemplatized StaticInst
cpu/static_inst.cc:
Untemplatized StaticInst
cpu/static_inst.hh:
Untemplatized StaticInst by using the TheISA namespace
dev/alpha_console.cc:
Added using namespace AlphaISA
dev/simple_disk.hh:
Added typedef for Addr and fixed up some formatting
dev/sinicreg.hh:
Added TheISA namespace specifier where needed
dev/tsunami.cc:
dev/tsunami_io.cc:
dev/tsunami_pchip.cc:
Added using namespace TheISA. It might be better for it to be AlphaISA
dev/tsunami_cchip.cc:
Added typedef for TheISA. It might be better for it to be AlphaISA
kern/linux/aligned.hh:
sim/pseudo_inst.hh:
Added TheISA namespace specifier to Addr
kern/linux/linux_threadinfo.hh:
Added typedef for Addr, and TheISA namespace specifier to StackPointerReg
kern/tru64/mbuf.hh:
Added TheISA to Addr type in structs
sim/process.hh:
Added typedefs of Addr, RegFile, and MachInst
sim/syscall_emul.cc:
Added using namespace TheISA, and a cast of VMPageSize to the int type
sim/syscall_emul.hh:
Added typecast for Addr, and TheISA namespace specifier for where needed
--HG--
extra : convert_revision : 91d4f6ca33a73b21c1f1771d74bfdea3b80eff45
2006-02-19 08:34:37 +01:00
|
|
|
using namespace TheISA;
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2007-02-22 03:06:17 +01:00
|
|
|
namespace PseudoInst
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2004-05-13 14:03:36 +02:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
arm(ThreadContext *tc)
|
2004-05-13 14:03:36 +02:00
|
|
|
{
|
2006-06-06 23:32:21 +02:00
|
|
|
if (tc->getKernelStats())
|
|
|
|
tc->getKernelStats()->arm();
|
2004-05-13 14:03:36 +02:00
|
|
|
}
|
|
|
|
|
2003-11-03 22:47:08 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
quiesce(ThreadContext *tc)
|
2003-11-03 22:47:08 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_quiesce)
|
2003-11-03 22:47:08 +01:00
|
|
|
return;
|
|
|
|
|
2006-10-23 01:22:45 +02:00
|
|
|
DPRINTF(Quiesce, "%s: quiesce()\n", tc->getCpuPtr()->name());
|
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
tc->suspend();
|
|
|
|
if (tc->getKernelStats())
|
|
|
|
tc->getKernelStats()->quiesce();
|
2003-11-03 22:47:08 +01:00
|
|
|
}
|
2003-11-03 02:52:40 +01:00
|
|
|
|
2006-03-01 00:41:04 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
quiesceNs(ThreadContext *tc, uint64_t ns)
|
2006-03-01 00:41:04 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_quiesce || ns == 0)
|
2006-03-01 00:41:04 +01:00
|
|
|
return;
|
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent();
|
2006-03-08 01:59:12 +01:00
|
|
|
|
2006-10-22 08:32:14 +02:00
|
|
|
Tick resume = curTick + Clock::Int::ns * ns;
|
|
|
|
|
2006-03-08 01:59:12 +01:00
|
|
|
if (quiesceEvent->scheduled())
|
2006-10-22 08:32:14 +02:00
|
|
|
quiesceEvent->reschedule(resume);
|
2006-03-01 00:41:04 +01:00
|
|
|
else
|
2006-10-22 08:32:14 +02:00
|
|
|
quiesceEvent->schedule(resume);
|
|
|
|
|
|
|
|
DPRINTF(Quiesce, "%s: quiesceNs(%d) until %d\n",
|
|
|
|
tc->getCpuPtr()->name(), ns, resume);
|
2006-03-01 00:41:04 +01:00
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
tc->suspend();
|
|
|
|
if (tc->getKernelStats())
|
|
|
|
tc->getKernelStats()->quiesce();
|
2006-03-01 00:41:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
quiesceCycles(ThreadContext *tc, uint64_t cycles)
|
2006-03-01 00:41:04 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_quiesce || cycles == 0)
|
2006-03-01 00:41:04 +01:00
|
|
|
return;
|
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent();
|
2006-03-08 01:59:12 +01:00
|
|
|
|
2006-10-22 08:32:14 +02:00
|
|
|
Tick resume = curTick + tc->getCpuPtr()->cycles(cycles);
|
|
|
|
|
2006-03-08 01:59:12 +01:00
|
|
|
if (quiesceEvent->scheduled())
|
2006-10-22 08:32:14 +02:00
|
|
|
quiesceEvent->reschedule(resume);
|
2006-03-01 00:41:04 +01:00
|
|
|
else
|
2006-10-22 08:32:14 +02:00
|
|
|
quiesceEvent->schedule(resume);
|
|
|
|
|
|
|
|
DPRINTF(Quiesce, "%s: quiesceCycles(%d) until %d\n",
|
|
|
|
tc->getCpuPtr()->name(), cycles, resume);
|
2006-03-01 00:41:04 +01:00
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
tc->suspend();
|
|
|
|
if (tc->getKernelStats())
|
|
|
|
tc->getKernelStats()->quiesce();
|
2006-03-01 00:41:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
2006-06-06 23:32:21 +02:00
|
|
|
quiesceTime(ThreadContext *tc)
|
2006-03-01 00:41:04 +01:00
|
|
|
{
|
2006-06-06 23:32:21 +02:00
|
|
|
return (tc->readLastActivate() - tc->readLastSuspend()) / Clock::Int::ns;
|
2006-03-01 00:41:04 +01:00
|
|
|
}
|
|
|
|
|
2003-11-03 02:43:39 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
m5exit_old(ThreadContext *tc)
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2006-10-06 07:27:02 +02:00
|
|
|
exitSimLoop("m5_exit_old instruction encountered");
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
m5exit(ThreadContext *tc, Tick delay)
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2005-03-29 14:55:44 +02:00
|
|
|
Tick when = curTick + delay * Clock::Int::ns;
|
2006-10-06 07:27:02 +02:00
|
|
|
schedExitSimLoop("m5_exit instruction encountered", when);
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|
|
|
|
|
2006-08-23 22:57:07 +02:00
|
|
|
void
|
2006-10-02 17:58:09 +02:00
|
|
|
loadsymbol(ThreadContext *tc)
|
2006-08-23 22:57:07 +02:00
|
|
|
{
|
2006-10-02 17:58:09 +02:00
|
|
|
const string &filename = tc->getCpuPtr()->system->params()->symbolfile;
|
2006-08-23 22:57:07 +02:00
|
|
|
if (filename.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string buffer;
|
|
|
|
ifstream file(filename.c_str());
|
|
|
|
|
|
|
|
if (!file)
|
|
|
|
fatal("file error: Can't open symbol table file %s\n", filename);
|
|
|
|
|
|
|
|
while (!file.eof()) {
|
|
|
|
getline(file, buffer);
|
|
|
|
|
|
|
|
if (buffer.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int idx = buffer.find(' ');
|
|
|
|
if (idx == string::npos)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
string address = "0x" + buffer.substr(0, idx);
|
|
|
|
eat_white(address);
|
|
|
|
if (address.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Skip over letter and space
|
|
|
|
string symbol = buffer.substr(idx + 3);
|
|
|
|
eat_white(symbol);
|
|
|
|
if (symbol.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Addr addr;
|
|
|
|
if (!to_number(address, addr))
|
|
|
|
continue;
|
|
|
|
|
2006-10-02 17:58:09 +02:00
|
|
|
if (!tc->getSystemPtr()->kernelSymtab->insert(addr, symbol))
|
2006-08-23 22:57:07 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr);
|
|
|
|
}
|
|
|
|
file.close();
|
|
|
|
}
|
|
|
|
|
2003-11-03 02:43:39 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
resetstats(ThreadContext *tc, Tick delay, Tick period)
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_statistics_insts)
|
2003-11-03 02:52:40 +01:00
|
|
|
return;
|
|
|
|
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2005-03-29 14:55:44 +02:00
|
|
|
Tick when = curTick + delay * Clock::Int::ns;
|
|
|
|
Tick repeat = period * Clock::Int::ns;
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2007-02-18 07:52:32 +01:00
|
|
|
Stats::StatEvent(false, true, when, repeat);
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
dumpstats(ThreadContext *tc, Tick delay, Tick period)
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_statistics_insts)
|
2003-11-03 02:52:40 +01:00
|
|
|
return;
|
|
|
|
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2005-03-29 14:55:44 +02:00
|
|
|
Tick when = curTick + delay * Clock::Int::ns;
|
|
|
|
Tick repeat = period * Clock::Int::ns;
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2007-02-18 07:52:32 +01:00
|
|
|
Stats::StatEvent(true, false, when, repeat);
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|
|
|
|
|
2005-11-19 07:25:34 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr)
|
2005-11-19 07:25:34 +01:00
|
|
|
{
|
|
|
|
char symb[100];
|
2006-06-06 23:32:21 +02:00
|
|
|
CopyStringOut(tc, symb, symbolAddr, 100);
|
2005-11-19 07:25:34 +01:00
|
|
|
std::string symbol(symb);
|
|
|
|
|
|
|
|
DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr);
|
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
tc->getSystemPtr()->kernelSymtab->insert(addr,symbol);
|
2005-11-19 07:25:34 +01:00
|
|
|
}
|
|
|
|
|
2006-09-11 23:57:20 +02:00
|
|
|
void
|
|
|
|
anBegin(ThreadContext *tc, uint64_t cur)
|
|
|
|
{
|
|
|
|
Annotate::annotations.add(tc->getSystemPtr(), 0, cur >> 32, cur &
|
|
|
|
0xFFFFFFFF, 0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
anWait(ThreadContext *tc, uint64_t cur, uint64_t wait)
|
|
|
|
{
|
|
|
|
Annotate::annotations.add(tc->getSystemPtr(), 0, cur >> 32, cur &
|
|
|
|
0xFFFFFFFF, wait >> 32, wait & 0xFFFFFFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-03 02:43:39 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
dumpresetstats(ThreadContext *tc, Tick delay, Tick period)
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_statistics_insts)
|
2003-11-03 02:52:40 +01:00
|
|
|
return;
|
|
|
|
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2005-03-29 14:55:44 +02:00
|
|
|
Tick when = curTick + delay * Clock::Int::ns;
|
|
|
|
Tick repeat = period * Clock::Int::ns;
|
2003-11-03 02:43:39 +01:00
|
|
|
|
2007-02-18 07:52:32 +01:00
|
|
|
Stats::StatEvent(true, true, when, repeat);
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
m5checkpoint(ThreadContext *tc, Tick delay, Tick period)
|
2003-11-03 02:43:39 +01:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
if (!tc->getCpuPtr()->params->do_checkpoint_insts)
|
2003-11-03 02:52:40 +01:00
|
|
|
return;
|
2006-10-06 07:27:02 +02:00
|
|
|
|
|
|
|
Tick when = curTick + delay * Clock::Int::ns;
|
|
|
|
Tick repeat = period * Clock::Int::ns;
|
|
|
|
|
|
|
|
schedExitSimLoop("checkpoint", when, repeat);
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|
|
|
|
|
2006-02-12 23:38:10 +01:00
|
|
|
uint64_t
|
2006-06-06 23:32:21 +02:00
|
|
|
readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
|
2004-07-02 00:03:05 +02:00
|
|
|
{
|
2006-11-12 02:22:10 +01:00
|
|
|
const string &file = tc->getSystemPtr()->params()->readfile;
|
2004-07-02 00:03:05 +02:00
|
|
|
if (file.empty()) {
|
2006-02-12 23:38:10 +01:00
|
|
|
return ULL(0);
|
2004-07-02 00:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t result = 0;
|
|
|
|
|
|
|
|
int fd = ::open(file.c_str(), O_RDONLY, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
panic("could not open file %s\n", file);
|
|
|
|
|
2005-04-22 19:12:03 +02:00
|
|
|
if (::lseek(fd, offset, SEEK_SET) < 0)
|
|
|
|
panic("could not seek: %s", strerror(errno));
|
|
|
|
|
2004-07-02 00:03:05 +02:00
|
|
|
char *buf = new char[len];
|
|
|
|
char *p = buf;
|
|
|
|
while (len > 0) {
|
2005-04-22 19:12:03 +02:00
|
|
|
int bytes = ::read(fd, p, len);
|
2004-07-02 00:03:05 +02:00
|
|
|
if (bytes <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
p += bytes;
|
|
|
|
result += bytes;
|
|
|
|
len -= bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
2006-06-06 23:32:21 +02:00
|
|
|
CopyIn(tc, vaddr, buf, result);
|
2004-07-02 00:03:05 +02:00
|
|
|
delete [] buf;
|
2006-02-12 23:38:10 +01:00
|
|
|
return result;
|
2004-07-02 00:03:05 +02:00
|
|
|
}
|
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
void debugbreak(ThreadContext *tc)
|
2004-08-02 23:10:02 +02:00
|
|
|
{
|
|
|
|
debug_break();
|
|
|
|
}
|
|
|
|
|
2006-06-06 23:32:21 +02:00
|
|
|
void switchcpu(ThreadContext *tc)
|
2004-08-02 23:10:02 +02:00
|
|
|
{
|
2006-07-06 05:38:11 +02:00
|
|
|
exitSimLoop("switchcpu");
|
2004-08-02 23:10:02 +02:00
|
|
|
}
|
2003-11-03 02:43:39 +01:00
|
|
|
}
|