mt.hh

来自「M5,一个功能强大的多处理器系统模拟器.很多针对处理器架构,性能的研究都使用它作」· HH 代码 · 共 310 行

HH
310
字号
/* * Copyright (c) 2007 MIPS Technologies, Inc.  All Rights Reserved * * This software is part of the M5 simulator. * * THIS IS A LEGAL AGREEMENT.  BY DOWNLOADING, USING, COPYING, CREATING * DERIVATIVE WORKS, AND/OR DISTRIBUTING THIS SOFTWARE YOU ARE AGREEING * TO THESE TERMS AND CONDITIONS. * * Permission is granted to use, copy, create derivative works and * distribute this software and such derivative works for any purpose, * so long as (1) the copyright notice above, this grant of permission, * and the disclaimer below appear in all copies and derivative works * made, (2) the copyright notice above is augmented as appropriate to * reflect the addition of any new copyrightable work in a derivative * work (e.g., Copyright (c) <Publication Year> Copyright Owner), and (3) * the name of MIPS Technologies, Inc. ($(B!H(BMIPS$(B!I(B) is not used in any * advertising or publicity pertaining to the use or distribution of * this software without specific, written prior authorization. * * THIS SOFTWARE IS PROVIDED $(B!H(BAS IS.$(B!I(B  MIPS MAKES NO WARRANTIES AND * DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS, STATUTORY, IMPLIED OR * OTHERWISE, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND * NON-INFRINGEMENT OF THIRD PARTY RIGHTS, REGARDING THIS SOFTWARE. * IN NO EVENT SHALL MIPS BE LIABLE FOR ANY DAMAGES, INCLUDING DIRECT, * INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR PUNITIVE DAMAGES OF * ANY KIND OR NATURE, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT, * THIS SOFTWARE AND/OR THE USE OF THIS SOFTWARE, WHETHER SUCH LIABILITY * IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE OR * STRICT LIABILITY), OR OTHERWISE, EVEN IF MIPS HAS BEEN WARNED OF THE * POSSIBILITY OF ANY SUCH LOSS OR DAMAGE IN ADVANCE. * * Authors: Korey Sewell * */#ifndef __ARCH_MIPS_MT_HH__#define __ARCH_MIPS_MT_HH__/** * @file * * ISA-specific helper functions for multithreaded execution. */#include "arch/isa_traits.hh"#include "arch/mips/faults.hh"#include "arch/mips/mt_constants.hh"#include "base/bitfield.hh"#include "base/trace.hh"#include "base/misc.hh"#include <iostream>using namespace std;namespace MipsISA{template <class TC>inline unsignedgetVirtProcNum(TC *tc){    MiscReg tcbind = tc->readMiscRegNoEffect(TCBind);    return bits(tcbind, TCB_CUR_VPE_HI, TCB_CUR_VPE_LO);}template <class TC>inline unsignedgetTargetThread(TC *tc){    MiscReg vpec_ctrl = tc->readMiscRegNoEffect(VPEControl);    return bits(vpec_ctrl, VPEC_TARG_TC_HI, VPEC_TARG_TC_LO);}template <class TC>inline voidhaltThread(TC *tc){    if (tc->status() == TC::Active) {        tc->halt();        // Save last known PC in TCRestart        // @TODO: Needs to check if this is a branch and if so, take previous instruction        tc->setMiscReg(TCRestart, tc->readNextPC());        warn("%i: Halting thread %i in %s @ PC %x, setting restart PC to %x", curTick, tc->getThreadNum(), tc->getCpuPtr()->name(),             tc->readPC(), tc->readNextPC());    }}template <class TC>inline voidrestoreThread(TC *tc){    if (tc->status() != TC::Active) {        // Restore PC from TCRestart        IntReg pc = tc->readMiscRegNoEffect(TCRestart);        // TODO: SET PC WITH AN EVENT INSTEAD OF INSTANTANEOUSLY        // tc->setPCEvent(pc, pc + 4, pc + 8);        tc->setPC(pc);        tc->setNextPC(pc + 4);        tc->setNextNPC(pc + 8);        tc->activate(0);        warn("%i: Restoring thread %i in %s @ PC %x", curTick, tc->getThreadNum(), tc->getCpuPtr()->name(),             tc->readPC());    }}template <class TC>voidforkThread(TC *tc, Fault &fault, int Rd_bits, int Rs, int Rt){    int num_threads = bits(tc->readMiscRegNoEffect(MVPConf0), MVPC0_PTC_HI, MVPC0_PTC_LO) + 1;    int success = 0;    for (int tid = 0; tid < num_threads && success == 0; tid++) {        unsigned tid_TCBind = tc->readRegOtherThread(MipsISA::TCBind + Ctrl_Base_DepTag,                                                     tid);        unsigned tc_bind = tc->readMiscRegNoEffect(MipsISA::TCBind);        if (bits(tid_TCBind, TCB_CUR_VPE_HI, TCB_CUR_VPE_LO) ==            bits(tc_bind, TCB_CUR_VPE_HI, TCB_CUR_VPE_LO)) {            unsigned tid_TCStatus = tc->readRegOtherThread(MipsISA::TCStatus + Ctrl_Base_DepTag,                                                           tid);            unsigned tid_TCHalt = tc->readRegOtherThread(MipsISA::TCHalt + Ctrl_Base_DepTag,                                                         tid);            if (bits(tid_TCStatus, TCS_DA) == 1 &&                bits(tid_TCHalt, TCH_H) == 0    &&                bits(tid_TCStatus, TCS_A) == 0  &&                success == 0) {                tc->setRegOtherThread(MipsISA::TCRestart + Ctrl_Base_DepTag, Rs, tid);                tc->setRegOtherThread(Rd_bits, Rt, tid);                unsigned status_ksu = bits(tc->readMiscReg(MipsISA::Status),                                           S_KSU_HI, S_KSU_LO);                unsigned tc_status_asid = bits(tc->readMiscReg(MipsISA::TCStatus),                                          TCS_ASID_HI, TCS_ASID_LO);                // Set Run-State to Running                replaceBits(tid_TCStatus, TCSTATUS_RNST_HI, TCSTATUS_RNST_LO, 0);                // Set Delay-Slot to 0                replaceBits(tid_TCStatus, TCSTATUS_TDS, 0);                // Set Dirty TC to 1                replaceBits(tid_TCStatus, TCSTATUS_DT, 1);                // Set Activated to 1                replaceBits(tid_TCStatus, TCSTATUS_A, 1);                // Set status to previous thread's status                replaceBits(tid_TCStatus, TCSTATUS_TKSU_HI, TCSTATUS_TKSU_LO, status_ksu);                // Set ASID to previous thread's state                replaceBits(tid_TCStatus, TCSTATUS_ASID_HI, TCSTATUS_ASID_LO, tc_status_asid);                // Write Status Register                tc->setRegOtherThread(MipsISA::TCStatus + Ctrl_Base_DepTag,                                      tid_TCStatus, tid);                // Mark As Successful Fork                success = 1;            }        } else {            std::cerr << "Bad VPEs" << endl;        }    }    if (success == 0) {        unsigned vpe_control = tc->readMiscRegNoEffect(MipsISA::VPEControl);        tc->setMiscReg(VPEControl, insertBits(vpe_control, VPEC_EXCPT_HI, VPEC_EXCPT_LO, 1));        fault = new ThreadFault();    }}template <class TC>intyieldThread(TC *tc, Fault &fault, int src_reg, uint32_t yield_mask){    if (src_reg == 0) {        unsigned mvpconf0 = tc->readMiscRegNoEffect(MVPConf0);        int num_threads = bits(mvpconf0, MVPC0_PTC_HI, MVPC0_PTC_LO) + 1;        int ok = 0;        // Get Current VPE & TC numbers from calling thread        unsigned tcbind = tc->readMiscRegNoEffect(TCBind);        unsigned cur_vpe = bits(tcbind, TCB_CUR_VPE_HI, TCB_CUR_VPE_LO);        unsigned cur_tc = bits(tcbind, TCB_CUR_TC_HI, TCB_CUR_TC_LO);        for (int tid = 0; tid < num_threads; tid++) {            unsigned tid_TCStatus = tc->readRegOtherThread(MipsISA::TCStatus + Ctrl_Base_DepTag,                                                           tid);            unsigned tid_TCHalt = tc->readRegOtherThread(MipsISA::TCHalt + Ctrl_Base_DepTag,                                                         tid);            unsigned tid_TCBind = tc->readRegOtherThread(MipsISA::TCBind + Ctrl_Base_DepTag,                                                         tid);            unsigned tid_vpe = bits(tid_TCBind, TCB_CUR_VPE_HI, TCB_CUR_VPE_LO);            unsigned tid_tc = bits(tid_TCBind, TCB_CUR_TC_HI, TCB_CUR_TC_LO);            unsigned tid_tcstatus_da = bits(tid_TCStatus, TCS_DA);            unsigned tid_tcstatus_a = bits(tid_TCStatus, TCS_A);            unsigned tid_tchalt_h = bits(tid_TCHalt, TCH_H);            if (tid_vpe == cur_vpe &&                tid_tc == cur_tc &&                tid_tcstatus_da == 1 &&                tid_tchalt_h == 0    &&                tid_tcstatus_a == 1) {                ok = 1;            }        }        if (ok == 1) {            unsigned tcstatus = tc->readMiscRegNoEffect(TCStatus);            tc->setMiscReg(TCStatus, insertBits(tcstatus, TCS_A, TCS_A, 0));            warn("%i: Deactivating Hardware Thread Context #%i", curTick, tc->getThreadNum());        }    } else if (src_reg > 0) {        if (src_reg & !yield_mask != 0) {            unsigned vpe_control = tc->readMiscReg(VPEControl);            tc->setMiscReg(VPEControl, insertBits(vpe_control, VPEC_EXCPT_HI, VPEC_EXCPT_LO, 2));            fault = new ThreadFault();        } else {            //tc->setThreadRescheduleCondition(src_reg & yield_mask);        }    } else if (src_reg != -2) {        unsigned tcstatus = tc->readMiscRegNoEffect(TCStatus);        unsigned vpe_control = tc->readMiscRegNoEffect(VPEControl);        unsigned tcstatus_dt = bits(tcstatus, TCS_DT);        unsigned vpe_control_ysi = bits(vpe_control, VPEC_YSI);        if (vpe_control_ysi == 1 && tcstatus_dt == 1 ) {            tc->setMiscReg(VPEControl, insertBits(vpe_control, VPEC_EXCPT_HI, VPEC_EXCPT_LO, 4));            fault = new ThreadFault();        } else {            //tc->ScheduleOtherThreads();            //std::cerr << "T" << tc->getThreadNum() << "YIELD: Schedule Other Threads.\n" << std::endl;            //tc->suspend();            // Save last known PC in TCRestart            // @TODO: Needs to check if this is a branch and if so, take previous instruction            //tc->setMiscRegWithEffect(TCRestart, tc->readNextPC());        }    }    return src_reg & yield_mask;}// TC will usually be a object derived from ThreadContext// (src/cpu/thread_context.hh)template <class TC>inline voidupdateStatusView(TC *tc){    // TCStatus' register view must be the same as    // Status register view for CU, MX, KSU bits    MiscReg tc_status = tc->readMiscRegNoEffect(TCStatus);    MiscReg status = tc->readMiscRegNoEffect(Status);    unsigned cu_bits = bits(tc_status, TCS_TCU_HI, TCS_TCU_LO);    replaceBits(status, S_CU_HI, S_CU_LO, cu_bits);    unsigned mx_bits = bits(tc_status, TCS_TMX);    replaceBits(status, S_MX, S_MX, mx_bits);    unsigned ksu_bits = bits(tc_status, TCS_TKSU_HI, TCS_TKSU_LO);    replaceBits(status, S_KSU_HI, S_KSU_LO, ksu_bits);    tc->setMiscRegNoEffect(Status, status);}// TC will usually be a object derived from ThreadContext// (src/cpu/thread_context.hh)template <class TC>inline voidupdateTCStatusView(TC *tc){    // TCStatus' register view must be the same as    // Status register view for CU, MX, KSU bits    MiscReg tc_status = tc->readMiscRegNoEffect(TCStatus);    MiscReg status = tc->readMiscRegNoEffect(Status);    unsigned cu_bits = bits(status, S_CU_HI, S_CU_LO);    replaceBits(tc_status, TCS_TCU_HI, TCS_TCU_LO, cu_bits);    unsigned mx_bits = bits(status, S_MX, S_MX);    replaceBits(tc_status, TCS_TMX, mx_bits);    unsigned ksu_bits = bits(status, S_KSU_HI, S_KSU_LO);    replaceBits(tc_status, TCS_TKSU_HI, TCS_TKSU_LO, ksu_bits);    tc->setMiscRegNoEffect(TCStatus, tc_status);}} // namespace MipsISA#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?