pseudo_inst.cc revision 8666
1298SN/A/* 28142SAli.Saidi@ARM.com * Copyright (c) 2010 ARM Limited 38142SAli.Saidi@ARM.com * All rights reserved 48142SAli.Saidi@ARM.com * 58142SAli.Saidi@ARM.com * The license below extends only to copyright in the software and shall 68142SAli.Saidi@ARM.com * not be construed as granting a license to any other intellectual 78142SAli.Saidi@ARM.com * property including but not limited to intellectual property relating 88142SAli.Saidi@ARM.com * to a hardware implementation of the functionality of the software 98142SAli.Saidi@ARM.com * licensed hereunder. You may use the software subject to the license 108142SAli.Saidi@ARM.com * terms below provided that you ensure that this notice is replicated 118142SAli.Saidi@ARM.com * unmodified and in its entirety in all distributions of the software, 128142SAli.Saidi@ARM.com * modified or unmodified, in source code or in binary form. 138142SAli.Saidi@ARM.com * 148580Ssteve.reinhardt@amd.com * Copyright (c) 2011 Advanced Micro Devices, Inc. 152188SN/A * Copyright (c) 2003-2006 The Regents of The University of Michigan 16298SN/A * All rights reserved. 17298SN/A * 18298SN/A * Redistribution and use in source and binary forms, with or without 19298SN/A * modification, are permitted provided that the following conditions are 20298SN/A * met: redistributions of source code must retain the above copyright 21298SN/A * notice, this list of conditions and the following disclaimer; 22298SN/A * redistributions in binary form must reproduce the above copyright 23298SN/A * notice, this list of conditions and the following disclaimer in the 24298SN/A * documentation and/or other materials provided with the distribution; 25298SN/A * neither the name of the copyright holders nor the names of its 26298SN/A * contributors may be used to endorse or promote products derived from 27298SN/A * this software without specific prior written permission. 28298SN/A * 29298SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 30298SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 31298SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 32298SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 33298SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 34298SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 35298SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 36298SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 37298SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 38298SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 39298SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 402665Ssaidi@eecs.umich.edu * 412665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert 42298SN/A */ 43298SN/A 44954SN/A#include <fcntl.h> 45956SN/A#include <unistd.h> 46956SN/A 478229Snate@binkert.org#include <cerrno> 484078Sbinkertn@umich.edu#include <fstream> 49299SN/A#include <string> 50299SN/A 512170SN/A#include "arch/vtophys.hh" 525882Snate@binkert.org#include "base/debug.hh" 536658Snate@binkert.org#include "config/full_system.hh" 546658Snate@binkert.org#include "config/the_isa.hh" 551717SN/A#include "cpu/base.hh" 568229Snate@binkert.org#include "cpu/quiesce_event.hh" 572680Sktlim@umich.edu#include "cpu/thread_context.hh" 588232Snate@binkert.org#include "debug/Loader.hh" 598232Snate@binkert.org#include "debug/Quiesce.hh" 608232Snate@binkert.org#include "debug/WorkItems.hh" 615529Snate@binkert.org#include "params/BaseCPU.hh" 623565Sgblack@eecs.umich.edu#include "sim/pseudo_inst.hh" 63298SN/A#include "sim/serialize.hh" 645606Snate@binkert.org#include "sim/sim_events.hh" 65298SN/A#include "sim/sim_exit.hh" 66695SN/A#include "sim/stat_control.hh" 67695SN/A#include "sim/stats.hh" 68954SN/A#include "sim/system.hh" 696118Snate@binkert.org 705780Ssteve.reinhardt@amd.com#if FULL_SYSTEM 716118Snate@binkert.org#include "arch/kernel_stats.hh" 722080SN/A#include "sim/vptr.hh" 735780Ssteve.reinhardt@amd.com#endif 74298SN/A 75299SN/Ausing namespace std; 761052SN/A 77729SN/Ausing namespace Stats; 782107SN/Ausing namespace TheISA; 79298SN/A 805504Snate@binkert.orgnamespace PseudoInst { 815504Snate@binkert.org 825780Ssteve.reinhardt@amd.com#if FULL_SYSTEM 835780Ssteve.reinhardt@amd.com 845504Snate@binkert.orgvoid 855504Snate@binkert.orgarm(ThreadContext *tc) 86298SN/A{ 875504Snate@binkert.org if (tc->getKernelStats()) 885504Snate@binkert.org tc->getKernelStats()->arm(); 895504Snate@binkert.org} 905504Snate@binkert.org 915504Snate@binkert.orgvoid 925504Snate@binkert.orgquiesce(ThreadContext *tc) 935504Snate@binkert.org{ 945529Snate@binkert.org if (!tc->getCpuPtr()->params()->do_quiesce) 955504Snate@binkert.org return; 965504Snate@binkert.org 975504Snate@binkert.org DPRINTF(Quiesce, "%s: quiesce()\n", tc->getCpuPtr()->name()); 985504Snate@binkert.org 995504Snate@binkert.org tc->suspend(); 1005504Snate@binkert.org if (tc->getKernelStats()) 1015504Snate@binkert.org tc->getKernelStats()->quiesce(); 1025504Snate@binkert.org} 1035504Snate@binkert.org 1045504Snate@binkert.orgvoid 1058142SAli.Saidi@ARM.comquiesceSkip(ThreadContext *tc) 1068142SAli.Saidi@ARM.com{ 1078142SAli.Saidi@ARM.com BaseCPU *cpu = tc->getCpuPtr(); 1088142SAli.Saidi@ARM.com 1098142SAli.Saidi@ARM.com if (!cpu->params()->do_quiesce) 1108142SAli.Saidi@ARM.com return; 1118142SAli.Saidi@ARM.com 1128142SAli.Saidi@ARM.com EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent(); 1138142SAli.Saidi@ARM.com 1148142SAli.Saidi@ARM.com Tick resume = curTick() + 1; 1158142SAli.Saidi@ARM.com 1168142SAli.Saidi@ARM.com cpu->reschedule(quiesceEvent, resume, true); 1178142SAli.Saidi@ARM.com 1188142SAli.Saidi@ARM.com DPRINTF(Quiesce, "%s: quiesceSkip() until %d\n", 1198142SAli.Saidi@ARM.com cpu->name(), resume); 1208142SAli.Saidi@ARM.com 1218142SAli.Saidi@ARM.com tc->suspend(); 1228142SAli.Saidi@ARM.com if (tc->getKernelStats()) 1238142SAli.Saidi@ARM.com tc->getKernelStats()->quiesce(); 1248142SAli.Saidi@ARM.com} 1258142SAli.Saidi@ARM.com 1268142SAli.Saidi@ARM.comvoid 1275504Snate@binkert.orgquiesceNs(ThreadContext *tc, uint64_t ns) 1285504Snate@binkert.org{ 1297819Ssteve.reinhardt@amd.com BaseCPU *cpu = tc->getCpuPtr(); 1307819Ssteve.reinhardt@amd.com 1317819Ssteve.reinhardt@amd.com if (!cpu->params()->do_quiesce || ns == 0) 1325504Snate@binkert.org return; 1335504Snate@binkert.org 1345504Snate@binkert.org EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent(); 1355504Snate@binkert.org 1367823Ssteve.reinhardt@amd.com Tick resume = curTick() + SimClock::Int::ns * ns; 1375504Snate@binkert.org 1387819Ssteve.reinhardt@amd.com cpu->reschedule(quiesceEvent, resume, true); 1395504Snate@binkert.org 1405504Snate@binkert.org DPRINTF(Quiesce, "%s: quiesceNs(%d) until %d\n", 1417819Ssteve.reinhardt@amd.com cpu->name(), ns, resume); 1425504Snate@binkert.org 1435504Snate@binkert.org tc->suspend(); 1445504Snate@binkert.org if (tc->getKernelStats()) 1455504Snate@binkert.org tc->getKernelStats()->quiesce(); 1465504Snate@binkert.org} 1475504Snate@binkert.org 1485504Snate@binkert.orgvoid 1495504Snate@binkert.orgquiesceCycles(ThreadContext *tc, uint64_t cycles) 1505504Snate@binkert.org{ 1517819Ssteve.reinhardt@amd.com BaseCPU *cpu = tc->getCpuPtr(); 1527819Ssteve.reinhardt@amd.com 1537819Ssteve.reinhardt@amd.com if (!cpu->params()->do_quiesce || cycles == 0) 1545504Snate@binkert.org return; 1555504Snate@binkert.org 1565504Snate@binkert.org EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent(); 1575504Snate@binkert.org 1587823Ssteve.reinhardt@amd.com Tick resume = curTick() + cpu->ticks(cycles); 1595504Snate@binkert.org 1607819Ssteve.reinhardt@amd.com cpu->reschedule(quiesceEvent, resume, true); 1615504Snate@binkert.org 1625504Snate@binkert.org DPRINTF(Quiesce, "%s: quiesceCycles(%d) until %d\n", 1637819Ssteve.reinhardt@amd.com cpu->name(), cycles, resume); 1645504Snate@binkert.org 1655504Snate@binkert.org tc->suspend(); 1665504Snate@binkert.org if (tc->getKernelStats()) 1675504Snate@binkert.org tc->getKernelStats()->quiesce(); 1685504Snate@binkert.org} 1695504Snate@binkert.org 1705504Snate@binkert.orguint64_t 1715504Snate@binkert.orgquiesceTime(ThreadContext *tc) 1725504Snate@binkert.org{ 1737064Snate@binkert.org return (tc->readLastActivate() - tc->readLastSuspend()) / 1747064Snate@binkert.org SimClock::Int::ns; 1755504Snate@binkert.org} 1765504Snate@binkert.org 1775780Ssteve.reinhardt@amd.com#endif 1785780Ssteve.reinhardt@amd.com 1795741Snate@binkert.orguint64_t 1805741Snate@binkert.orgrpns(ThreadContext *tc) 1815741Snate@binkert.org{ 1827823Ssteve.reinhardt@amd.com return curTick() / SimClock::Int::ns; 1835741Snate@binkert.org} 1845741Snate@binkert.org 1855504Snate@binkert.orgvoid 1865808Snate@binkert.orgwakeCPU(ThreadContext *tc, uint64_t cpuid) 1875808Snate@binkert.org{ 1885808Snate@binkert.org System *sys = tc->getSystemPtr(); 1895808Snate@binkert.org ThreadContext *other_tc = sys->threadContexts[cpuid]; 1905808Snate@binkert.org if (other_tc->status() == ThreadContext::Suspended) 1915808Snate@binkert.org other_tc->activate(); 1925808Snate@binkert.org} 1935808Snate@binkert.org 1945808Snate@binkert.orgvoid 1955504Snate@binkert.orgm5exit(ThreadContext *tc, Tick delay) 1965504Snate@binkert.org{ 1977823Ssteve.reinhardt@amd.com Tick when = curTick() + delay * SimClock::Int::ns; 1987819Ssteve.reinhardt@amd.com exitSimLoop("m5_exit instruction encountered", 0, when); 1995504Snate@binkert.org} 2005504Snate@binkert.org 2015780Ssteve.reinhardt@amd.com#if FULL_SYSTEM 2025780Ssteve.reinhardt@amd.com 2035504Snate@binkert.orgvoid 2045504Snate@binkert.orgloadsymbol(ThreadContext *tc) 2055504Snate@binkert.org{ 2065504Snate@binkert.org const string &filename = tc->getCpuPtr()->system->params()->symbolfile; 2075504Snate@binkert.org if (filename.empty()) { 2085504Snate@binkert.org return; 209711SN/A } 210711SN/A 2115504Snate@binkert.org std::string buffer; 2125504Snate@binkert.org ifstream file(filename.c_str()); 213310SN/A 2145504Snate@binkert.org if (!file) 2155504Snate@binkert.org fatal("file error: Can't open symbol table file %s\n", filename); 2163373Sstever@eecs.umich.edu 2175504Snate@binkert.org while (!file.eof()) { 2185504Snate@binkert.org getline(file, buffer); 2195504Snate@binkert.org 2205504Snate@binkert.org if (buffer.empty()) 2215504Snate@binkert.org continue; 2225504Snate@binkert.org 2236227Snate@binkert.org string::size_type idx = buffer.find(' '); 2245504Snate@binkert.org if (idx == string::npos) 2255504Snate@binkert.org continue; 2265504Snate@binkert.org 2275504Snate@binkert.org string address = "0x" + buffer.substr(0, idx); 2285504Snate@binkert.org eat_white(address); 2295504Snate@binkert.org if (address.empty()) 2305504Snate@binkert.org continue; 2315504Snate@binkert.org 2325504Snate@binkert.org // Skip over letter and space 2335504Snate@binkert.org string symbol = buffer.substr(idx + 3); 2345504Snate@binkert.org eat_white(symbol); 2355504Snate@binkert.org if (symbol.empty()) 2365504Snate@binkert.org continue; 2375504Snate@binkert.org 2385504Snate@binkert.org Addr addr; 2395504Snate@binkert.org if (!to_number(address, addr)) 2405504Snate@binkert.org continue; 2415504Snate@binkert.org 2425504Snate@binkert.org if (!tc->getSystemPtr()->kernelSymtab->insert(addr, symbol)) 2435504Snate@binkert.org continue; 2445504Snate@binkert.org 2455504Snate@binkert.org 2465504Snate@binkert.org DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr); 2475504Snate@binkert.org } 2485504Snate@binkert.org file.close(); 2495504Snate@binkert.org} 2505504Snate@binkert.org 2515504Snate@binkert.orgvoid 2525780Ssteve.reinhardt@amd.comaddsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr) 2535780Ssteve.reinhardt@amd.com{ 2545780Ssteve.reinhardt@amd.com char symb[100]; 2555780Ssteve.reinhardt@amd.com CopyStringOut(tc, symb, symbolAddr, 100); 2565780Ssteve.reinhardt@amd.com std::string symbol(symb); 2575780Ssteve.reinhardt@amd.com 2585780Ssteve.reinhardt@amd.com DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr); 2595780Ssteve.reinhardt@amd.com 2605780Ssteve.reinhardt@amd.com tc->getSystemPtr()->kernelSymtab->insert(addr,symbol); 2615952Ssaidi@eecs.umich.edu debugSymbolTable->insert(addr,symbol); 2625780Ssteve.reinhardt@amd.com} 2635780Ssteve.reinhardt@amd.com 2648555Sgblack@eecs.umich.eduuint64_t 2658555Sgblack@eecs.umich.eduinitParam(ThreadContext *tc) 2668555Sgblack@eecs.umich.edu{ 2678555Sgblack@eecs.umich.edu return tc->getCpuPtr()->system->init_param; 2688555Sgblack@eecs.umich.edu} 2698555Sgblack@eecs.umich.edu 2705780Ssteve.reinhardt@amd.com#endif 2715780Ssteve.reinhardt@amd.com 2725780Ssteve.reinhardt@amd.com 2735780Ssteve.reinhardt@amd.comvoid 2745504Snate@binkert.orgresetstats(ThreadContext *tc, Tick delay, Tick period) 2755504Snate@binkert.org{ 2765529Snate@binkert.org if (!tc->getCpuPtr()->params()->do_statistics_insts) 2775504Snate@binkert.org return; 2785504Snate@binkert.org 2795504Snate@binkert.org 2807823Ssteve.reinhardt@amd.com Tick when = curTick() + delay * SimClock::Int::ns; 2817064Snate@binkert.org Tick repeat = period * SimClock::Int::ns; 2825504Snate@binkert.org 2837822Ssteve.reinhardt@amd.com Stats::schedStatEvent(false, true, when, repeat); 2845504Snate@binkert.org} 2855504Snate@binkert.org 2865504Snate@binkert.orgvoid 2875504Snate@binkert.orgdumpstats(ThreadContext *tc, Tick delay, Tick period) 2885504Snate@binkert.org{ 2895529Snate@binkert.org if (!tc->getCpuPtr()->params()->do_statistics_insts) 2905504Snate@binkert.org return; 2915504Snate@binkert.org 2925504Snate@binkert.org 2937823Ssteve.reinhardt@amd.com Tick when = curTick() + delay * SimClock::Int::ns; 2947064Snate@binkert.org Tick repeat = period * SimClock::Int::ns; 2955504Snate@binkert.org 2967822Ssteve.reinhardt@amd.com Stats::schedStatEvent(true, false, when, repeat); 2975504Snate@binkert.org} 2985504Snate@binkert.org 2995504Snate@binkert.orgvoid 3005504Snate@binkert.orgdumpresetstats(ThreadContext *tc, Tick delay, Tick period) 3015504Snate@binkert.org{ 3025529Snate@binkert.org if (!tc->getCpuPtr()->params()->do_statistics_insts) 3035504Snate@binkert.org return; 3045504Snate@binkert.org 3055504Snate@binkert.org 3067823Ssteve.reinhardt@amd.com Tick when = curTick() + delay * SimClock::Int::ns; 3077064Snate@binkert.org Tick repeat = period * SimClock::Int::ns; 3085504Snate@binkert.org 3097822Ssteve.reinhardt@amd.com Stats::schedStatEvent(true, true, when, repeat); 3105504Snate@binkert.org} 3115504Snate@binkert.org 3125504Snate@binkert.orgvoid 3135504Snate@binkert.orgm5checkpoint(ThreadContext *tc, Tick delay, Tick period) 3145504Snate@binkert.org{ 3155529Snate@binkert.org if (!tc->getCpuPtr()->params()->do_checkpoint_insts) 3165504Snate@binkert.org return; 3175504Snate@binkert.org 3187823Ssteve.reinhardt@amd.com Tick when = curTick() + delay * SimClock::Int::ns; 3197064Snate@binkert.org Tick repeat = period * SimClock::Int::ns; 3205504Snate@binkert.org 3217819Ssteve.reinhardt@amd.com exitSimLoop("checkpoint", 0, when, repeat); 3225504Snate@binkert.org} 3235504Snate@binkert.org 3245780Ssteve.reinhardt@amd.com#if FULL_SYSTEM 3255780Ssteve.reinhardt@amd.com 3265504Snate@binkert.orguint64_t 3275504Snate@binkert.orgreadfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset) 3285504Snate@binkert.org{ 3295504Snate@binkert.org const string &file = tc->getSystemPtr()->params()->readfile; 3305504Snate@binkert.org if (file.empty()) { 3315504Snate@binkert.org return ULL(0); 332310SN/A } 333299SN/A 3345504Snate@binkert.org uint64_t result = 0; 3352188SN/A 3365504Snate@binkert.org int fd = ::open(file.c_str(), O_RDONLY, 0); 3375504Snate@binkert.org if (fd < 0) 3385504Snate@binkert.org panic("could not open file %s\n", file); 3392235SN/A 3405504Snate@binkert.org if (::lseek(fd, offset, SEEK_SET) < 0) 3415504Snate@binkert.org panic("could not seek: %s", strerror(errno)); 3423368Sstever@eecs.umich.edu 3435504Snate@binkert.org char *buf = new char[len]; 3445504Snate@binkert.org char *p = buf; 3455504Snate@binkert.org while (len > 0) { 3465504Snate@binkert.org int bytes = ::read(fd, p, len); 3475504Snate@binkert.org if (bytes <= 0) 3485504Snate@binkert.org break; 3493368Sstever@eecs.umich.edu 3505504Snate@binkert.org p += bytes; 3515504Snate@binkert.org result += bytes; 3525504Snate@binkert.org len -= bytes; 3532188SN/A } 3542188SN/A 3555504Snate@binkert.org close(fd); 3565504Snate@binkert.org CopyIn(tc, vaddr, buf, result); 3575504Snate@binkert.org delete [] buf; 3585504Snate@binkert.org return result; 3595504Snate@binkert.org} 3602188SN/A 3615780Ssteve.reinhardt@amd.com#endif 3625780Ssteve.reinhardt@amd.com 3635504Snate@binkert.orgvoid 3645504Snate@binkert.orgdebugbreak(ThreadContext *tc) 3655504Snate@binkert.org{ 3668231Snate@binkert.org Debug::breakpoint(); 3675504Snate@binkert.org} 3682235SN/A 3695504Snate@binkert.orgvoid 3705504Snate@binkert.orgswitchcpu(ThreadContext *tc) 3715504Snate@binkert.org{ 3725504Snate@binkert.org exitSimLoop("switchcpu"); 3735504Snate@binkert.org} 3743368Sstever@eecs.umich.edu 3757914SBrad.Beckmann@amd.com// 3767914SBrad.Beckmann@amd.com// This function is executed when annotated work items begin. Depending on 3777914SBrad.Beckmann@amd.com// what the user specified at the command line, the simulation may exit and/or 3787914SBrad.Beckmann@amd.com// take a checkpoint when a certain work item begins. 3797914SBrad.Beckmann@amd.com// 3807914SBrad.Beckmann@amd.comvoid 3817914SBrad.Beckmann@amd.comworkbegin(ThreadContext *tc, uint64_t workid, uint64_t threadid) 3827914SBrad.Beckmann@amd.com{ 3837914SBrad.Beckmann@amd.com tc->getCpuPtr()->workItemBegin(); 3847914SBrad.Beckmann@amd.com System *sys = tc->getSystemPtr(); 3858580Ssteve.reinhardt@amd.com const System::Params *params = sys->params(); 3868666SPrakash.Ramrakhyani@arm.com sys->workItemBegin(threadid, workid); 3877914SBrad.Beckmann@amd.com 3887914SBrad.Beckmann@amd.com DPRINTF(WorkItems, "Work Begin workid: %d, threadid %d\n", workid, 3897914SBrad.Beckmann@amd.com threadid); 3907914SBrad.Beckmann@amd.com 3917914SBrad.Beckmann@amd.com // 3927914SBrad.Beckmann@amd.com // If specified, determine if this is the specific work item the user 3937914SBrad.Beckmann@amd.com // identified 3947914SBrad.Beckmann@amd.com // 3958580Ssteve.reinhardt@amd.com if (params->work_item_id == -1 || params->work_item_id == workid) { 3967914SBrad.Beckmann@amd.com 3977914SBrad.Beckmann@amd.com uint64_t systemWorkBeginCount = sys->incWorkItemsBegin(); 3987914SBrad.Beckmann@amd.com int cpuId = tc->getCpuPtr()->cpuId(); 3997914SBrad.Beckmann@amd.com 4008580Ssteve.reinhardt@amd.com if (params->work_cpus_ckpt_count != 0 && 4018580Ssteve.reinhardt@amd.com sys->markWorkItem(cpuId) >= params->work_cpus_ckpt_count) { 4027914SBrad.Beckmann@amd.com // 4037914SBrad.Beckmann@amd.com // If active cpus equals checkpoint count, create checkpoint 4047914SBrad.Beckmann@amd.com // 4058580Ssteve.reinhardt@amd.com exitSimLoop("checkpoint"); 4067914SBrad.Beckmann@amd.com } 4077914SBrad.Beckmann@amd.com 4088580Ssteve.reinhardt@amd.com if (systemWorkBeginCount == params->work_begin_ckpt_count) { 4097914SBrad.Beckmann@amd.com // 4107914SBrad.Beckmann@amd.com // Note: the string specified as the cause of the exit event must 4117914SBrad.Beckmann@amd.com // exactly equal "checkpoint" inorder to create a checkpoint 4127914SBrad.Beckmann@amd.com // 4138580Ssteve.reinhardt@amd.com exitSimLoop("checkpoint"); 4147914SBrad.Beckmann@amd.com } 4157914SBrad.Beckmann@amd.com 4168580Ssteve.reinhardt@amd.com if (systemWorkBeginCount == params->work_begin_exit_count) { 4177914SBrad.Beckmann@amd.com // 4187914SBrad.Beckmann@amd.com // If a certain number of work items started, exit simulation 4197914SBrad.Beckmann@amd.com // 4208580Ssteve.reinhardt@amd.com exitSimLoop("work started count reach"); 4217914SBrad.Beckmann@amd.com } 4227914SBrad.Beckmann@amd.com 4238580Ssteve.reinhardt@amd.com if (cpuId == params->work_begin_cpu_id_exit) { 4247914SBrad.Beckmann@amd.com // 4258580Ssteve.reinhardt@amd.com // If work started on the cpu id specified, exit simulation 4267914SBrad.Beckmann@amd.com // 4278580Ssteve.reinhardt@amd.com exitSimLoop("work started on specific cpu"); 4287914SBrad.Beckmann@amd.com } 4297914SBrad.Beckmann@amd.com } 4307914SBrad.Beckmann@amd.com} 4317914SBrad.Beckmann@amd.com 4327914SBrad.Beckmann@amd.com// 4337914SBrad.Beckmann@amd.com// This function is executed when annotated work items end. Depending on 4347914SBrad.Beckmann@amd.com// what the user specified at the command line, the simulation may exit and/or 4357914SBrad.Beckmann@amd.com// take a checkpoint when a certain work item ends. 4367914SBrad.Beckmann@amd.com// 4377914SBrad.Beckmann@amd.comvoid 4387914SBrad.Beckmann@amd.comworkend(ThreadContext *tc, uint64_t workid, uint64_t threadid) 4397914SBrad.Beckmann@amd.com{ 4407914SBrad.Beckmann@amd.com tc->getCpuPtr()->workItemEnd(); 4417914SBrad.Beckmann@amd.com System *sys = tc->getSystemPtr(); 4428580Ssteve.reinhardt@amd.com const System::Params *params = sys->params(); 4438666SPrakash.Ramrakhyani@arm.com sys->workItemEnd(threadid, workid); 4447914SBrad.Beckmann@amd.com 4457914SBrad.Beckmann@amd.com DPRINTF(WorkItems, "Work End workid: %d, threadid %d\n", workid, threadid); 4467914SBrad.Beckmann@amd.com 4477914SBrad.Beckmann@amd.com // 4487914SBrad.Beckmann@amd.com // If specified, determine if this is the specific work item the user 4497914SBrad.Beckmann@amd.com // identified 4507914SBrad.Beckmann@amd.com // 4518580Ssteve.reinhardt@amd.com if (params->work_item_id == -1 || params->work_item_id == workid) { 4527914SBrad.Beckmann@amd.com 4537914SBrad.Beckmann@amd.com uint64_t systemWorkEndCount = sys->incWorkItemsEnd(); 4547914SBrad.Beckmann@amd.com int cpuId = tc->getCpuPtr()->cpuId(); 4557914SBrad.Beckmann@amd.com 4568580Ssteve.reinhardt@amd.com if (params->work_cpus_ckpt_count != 0 && 4578580Ssteve.reinhardt@amd.com sys->markWorkItem(cpuId) >= params->work_cpus_ckpt_count) { 4587914SBrad.Beckmann@amd.com // 4597914SBrad.Beckmann@amd.com // If active cpus equals checkpoint count, create checkpoint 4607914SBrad.Beckmann@amd.com // 4618580Ssteve.reinhardt@amd.com exitSimLoop("checkpoint"); 4627914SBrad.Beckmann@amd.com } 4637914SBrad.Beckmann@amd.com 4648580Ssteve.reinhardt@amd.com if (params->work_end_ckpt_count != 0 && 4658580Ssteve.reinhardt@amd.com systemWorkEndCount == params->work_end_ckpt_count) { 4667914SBrad.Beckmann@amd.com // 4677914SBrad.Beckmann@amd.com // If total work items completed equals checkpoint count, create 4687914SBrad.Beckmann@amd.com // checkpoint 4697914SBrad.Beckmann@amd.com // 4708580Ssteve.reinhardt@amd.com exitSimLoop("checkpoint"); 4717914SBrad.Beckmann@amd.com } 4727914SBrad.Beckmann@amd.com 4738580Ssteve.reinhardt@amd.com if (params->work_end_exit_count != 0 && 4748580Ssteve.reinhardt@amd.com systemWorkEndCount == params->work_end_exit_count) { 4757914SBrad.Beckmann@amd.com // 4767914SBrad.Beckmann@amd.com // If total work items completed equals exit count, exit simulation 4777914SBrad.Beckmann@amd.com // 4788580Ssteve.reinhardt@amd.com exitSimLoop("work items exit count reached"); 4797914SBrad.Beckmann@amd.com } 4807914SBrad.Beckmann@amd.com } 4817914SBrad.Beckmann@amd.com} 4827914SBrad.Beckmann@amd.com 4837811Ssteve.reinhardt@amd.com} // namespace PseudoInst 484