コード例 #1
0
ファイル: CMC.cs プロジェクト: hoangt/PIMSim
        /* ----------------------------------------------------- HMCSIM_REGISTER_CMC */

        /*
         * Registers the target CMC library instance with the core simulation. This
         * function is loaded via dlopen and called from the HMC-Sim library when
         * the sim makes a call to hmcsim_load_cmc().  Most users will not need
         * to change this function.
         *
         * *rqst is a pointer to a valid hmc_rqst_t that defines which CMC operation
         *     command enum that this library will utilize.  See the hmc_rqst_t
         *     enums labeled CMCnn in ~/include/hmc_sim_types.h.
         *
         * *cmd is the respective command code that matches the *rqst command enum.
         *     For example, if *rqst returns CMC32, then the *cmd is "32".
         *
         * *rsp_len is the respective command's response packet length.
         *    This must fit within the standard HMC response packet sizes
         *
         * *rsp_cmd is the respective command's response command type.  See
         *    the values defined in the hmc_response_t enum in ~/include/hmc_sim_types.h
         *
         * *rsp_cmd_code is the respective command's response command code in raw form.
         *
         */
        public static int hmcsim_register_cmc(ref hmc_rqst rqst,
                                              ref UInt32 cmd,
                                              ref UInt32 rqst_len,
                                              ref UInt32 rsp_len,
                                              ref hmc_response rsp_cmd,
                                              ref uint rsp_cmd_code)
        {
            rqst         = __rqst;
            cmd          = __cmd;
            rqst_len     = __rqst_len;
            rsp_len      = __rsp_len;
            rsp_cmd      = __rsp_cmd;
            rsp_cmd_code = __rsp_cmd_code;

            return(0);
        }
コード例 #2
0
ファイル: HMCMem.cs プロジェクト: hoangt/PIMSim
        public override void Step()
        {
            cycle++;
            current_statue = Macros.HMC_OK;
            MemRequest req_ = new MemRequest();

            while (Mctrl.get_req(this.pid, ref req_))
            {
                TransationQueue.Add(req_);
            }
            if (Config.use_pim)
            {
                while (PIMMctrl.get_req(this.pid, ref req_))
                {
                    TransationQueue.Add(req_);
                }
            }


            bool restart = false;

            while (!restart)
            {
                restart = true;
                for (int i = 0; i < TransationQueue.Count; i++)
                {
                    for (int j = 0; j < TransationQueue.Count; j++)
                    {
                        if (i != j && TransationQueue[i].address == TransationQueue[j].address && TransationQueue[i].pim == TransationQueue[j].pim)
                        {
                            foreach (var id in TransationQueue[j].pid)
                            {
                                TransationQueue[i].pid.Add(id);
                            }
                            TransationQueue.RemoveAt(j);

                            restart = false;
                            continue;
                        }
                    }
                }
            }
            if (TransationQueue.Count() > 0)
            {
                MemRequest   req             = TransationQueue[0];
                UInt64[]     packet          = new UInt64[Macros.HMC_MAX_UQ_PACKET];
                hmc_rqst     type            = hmc_rqst.RD64;
                UInt64       d_response_head = 0;
                UInt64       d_response_tail = 0;
                hmc_response d_type          = hmc_response.MD_RD_RS;
                uint         d_length        = 0;
                UInt16       d_tag           = 0;
                uint         d_rtn_tag       = 0;
                uint         d_src_link      = 0;
                uint         d_rrp           = 0;
                uint         d_frp           = 0;
                uint         d_seq           = 0;
                uint         d_dinv          = 0;
                uint         d_errstat       = 0;
                uint         d_rtc           = 0;
                UInt32       d_crc           = 0;
                zero_packet(ref packet);

                switch (req.memtype)
                {
                case MemReqType.READ:
                    type = hmc_rqst.RD64;
                    break;

                case MemReqType.WRITE:
                    type = hmc_rqst.WR64;
                    break;

                case MemReqType.FLUSH:
                    type = hmc_rqst.WR64;
                    break;

                case MemReqType.LOAD:
                    type = hmc_rqst.RD64;
                    break;

                case MemReqType.STORE:
                    type = hmc_rqst.WR64;
                    break;

                case MemReqType.RETURN_DATA:

                default:

                    break;
                }
                if (current_statue != Macros.HMC_STALL)
                {
                    uint cub = 0;

                    uint    link    = 0;
                    ulong[] payload = { 0x00L, 0x00L, 0x00L, 0x00L, 0x00L, 0x00L, 0x00L, 0x00L };
                    UInt64  head    = 0x00L;
                    UInt64  tail    = 0x00L;
                    hmc.hmcsim_build_memrequest(
                        cub,
                        req.address,
                        tag,
                        type,
                        link,
                        payload,
                        ref head,
                        ref tail);

                    /*
                     * read packets have:
                     * head +
                     * tail
                     *
                     */
                    tag++;
                    if (type == hmc_rqst.RD64)
                    {
                        packet[0] = head;
                        packet[1] = tail;
                    }
                    if (type == hmc_rqst.WR64)
                    {
                        packet[0] = head;
                        packet[1] = 0x05L;
                        packet[2] = 0x06L;
                        packet[3] = 0x07L;
                        packet[4] = 0x08L;
                        packet[5] = 0x09L;
                        packet[6] = 0x0AL;
                        packet[7] = 0x0BL;
                        packet[8] = 0x0CL;
                        packet[9] = tail;
                    }
                    current_statue = hmc.hmcsim_send(packet);
                    if (current_statue == 0)
                    {
                        var newitem = new CallBackInfo(req.address, req.block_addr, req.pim, req.pid);
                        if (req.memtype == MemReqType.FLUSH)
                        {
                            newitem.flush = true;
                        }
                        if (req.memtype == MemReqType.LOAD)
                        {
                            newitem.load     = true;
                            newitem.stage_id = req.stage_id;
                        }
                        if (req.memtype == MemReqType.STORE)
                        {
                            newitem.store    = true;
                            newitem.stage_id = req.stage_id;
                        }
                        callback.Add(new Tuple <ulong, CallBackInfo>(tag - 1, newitem));
                        TransationQueue.RemoveAt(0);
                        current_statue = Macros.HMC_OK;
                        while (current_statue != Macros.HMC_STALL)
                        {
                            int stall_sig = 0;
                            for (int z = 0; z < hmc.num_links; z++)
                            {
                                int res = hmc.hmcsim_recv(cub, (uint)z, ref packet);

                                if (res == Macros.HMC_STALL)
                                {
                                    stall_sig++;
                                }
                                else
                                {
                                    /* successfully received a packet */
                                    if (Config.DEBUG_MEMORY)
                                    {
                                        DEBUG.WriteLine("SUCCESS : RECEIVED A SUCCESSFUL PACKET RESPONSE");
                                    }
                                    hmc.hmcsim_decode_memresponse(
                                        packet,
                                        ref d_response_head,
                                        ref d_response_tail,
                                        ref d_type,
                                        ref d_length,
                                        ref d_tag,
                                        ref d_rtn_tag,
                                        ref d_src_link,
                                        ref d_rrp,
                                        ref d_frp,
                                        ref d_seq,
                                        ref d_dinv,
                                        ref d_errstat,
                                        ref d_rtc,
                                        ref d_crc);
                                    if (Config.DEBUG_MEMORY)
                                    {
                                        DEBUG.WriteLine("RECV tag=" + d_tag + "; rtn_tag=" + d_rtn_tag);
                                    }
                                    // all_recv++;
                                    var item = callback.FindIndex(s => s.Item1 == d_tag);
                                    if (item < 0)
                                    {
                                        //read none
                                        if (Config.DEBUG_MEMORY)
                                        {
                                            DEBUG.WriteLine("");
                                        }
                                    }

                                    if (d_type == hmc_response.RD_RS)
                                    {
                                        if (callback[item].Item2.load)
                                        {
                                            foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                            {
                                                pimunit.read_callback(callback[item].Item2);
                                            }
                                            goto end;
                                        }
                                        if (!callback[item].Item2.pim)
                                        {
                                            foreach (var proc in (callback[item].Item2.getsource() as List <Proc>))
                                            {
                                                proc.read_callback(callback[item].Item2);
                                            }
                                        }
                                        else
                                        {
                                            if (PIMConfigs.unit_type == PIM_Unit_Type.Processors)
                                            {
                                                foreach (var pimproc in (callback[item].Item2.getsource() as List <PIMProc>))
                                                {
                                                    pimproc.read_callback(callback[item].Item2);
                                                }
                                            }
                                            else
                                            {
                                                foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                                {
                                                    pimunit.read_callback(callback[item].Item2);
                                                }
                                            }
                                        }
                                    }
                                    else
                                    {
                                        if (d_type == hmc_response.WR_RS)
                                        {
                                            if (callback[item].Item2.store)
                                            {
                                                foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                                {
                                                    pimunit.write_callback(callback[item].Item2);
                                                }
                                                goto end;
                                            }
                                            if (callback[item].Item2.flush)
                                            {
                                                Coherence.flush_queue.Remove(callback[item].Item2.block_addr);
                                                DEBUG.WriteLine("-- Flushed data : [" + callback[item].Item2.block_addr + "] [" + callback[item].Item2.address + "]");
                                            }
                                            else
                                            {
                                                if (!callback[item].Item2.pim)
                                                {
                                                    foreach (var proc in (callback[item].Item2.getsource() as List <Proc>))
                                                    {
                                                        proc.write_callback(callback[item].Item2);
                                                    }
                                                }
                                                else
                                                {
                                                    if (PIMConfigs.unit_type == PIM_Unit_Type.Processors)
                                                    {
                                                        foreach (var pimproc in (callback[item].Item2.getsource() as List <PIMProc>))
                                                        {
                                                            pimproc.write_callback(callback[item].Item2);
                                                        }
                                                    }
                                                    else
                                                    {
                                                        foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                                        {
                                                            pimunit.write_callback(callback[item].Item2);
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                        else
                                        {
                                            //error
                                            Environment.Exit(0);
                                        }
                                    }
                                    //if (Coherence.consistency == Consistency.SpinLock)
                                    //{
                                    //    if (callback[item].Item5)
                                    //    {
                                    //        Coherence.spin_lock.relese_lock(callback[item].Item4);
                                    //    }
                                    //}
end:
                                    callback.RemoveAt(item);
                                }

                                /*
                                 * zero the packet
                                 *
                                 */
                                zero_packet(ref packet);
                            }

                            if (stall_sig == hmc.num_links)
                            {
                                /*
                                 * if all links returned stalls,
                                 * then we're done receiving packets
                                 *
                                 */

                                if (Config.DEBUG_MEMORY)
                                {
                                    DEBUG.WriteLine("STALLED : STALLED IN RECEIVING");
                                }
                                current_statue = Macros.HMC_STALL;
                            }

                            stall_sig = 0;
                        }
                    }
                    else
                    {
                        //   hmc.hmcsim_clock();
                    }
                    hmc.hmcsim_clock();
                }
            }
            else
            {
                uint         cub             = 0;
                UInt64[]     packet          = new UInt64[Macros.HMC_MAX_UQ_PACKET];
                uint         d_length        = 0;
                UInt16       d_tag           = 0;
                uint         d_rtn_tag       = 0;
                uint         d_src_link      = 0;
                uint         d_rrp           = 0;
                uint         d_frp           = 0;
                uint         d_seq           = 0;
                uint         d_dinv          = 0;
                uint         d_errstat       = 0;
                uint         d_rtc           = 0;
                UInt32       d_crc           = 0;
                UInt64       d_response_head = 0;
                UInt64       d_response_tail = 0;
                hmc_response d_type          = hmc_response.MD_RD_RS;
                zero_packet(ref packet);
                for (int z = 0; z < hmc.num_links; z++)
                {
                    int res = hmc.hmcsim_recv(cub, (uint)z, ref packet);

                    if (res == Macros.HMC_STALL)
                    {
                        //stall_sig++;
                    }
                    else
                    {
                        /* successfully received a packet */
                        if (Config.DEBUG_MEMORY)
                        {
                            DEBUG.WriteLine("SUCCESS : RECEIVED A SUCCESSFUL PACKET RESPONSE");
                        }
                        hmc.hmcsim_decode_memresponse(
                            packet,
                            ref d_response_head,
                            ref d_response_tail,
                            ref d_type,
                            ref d_length,
                            ref d_tag,
                            ref d_rtn_tag,
                            ref d_src_link,
                            ref d_rrp,
                            ref d_frp,
                            ref d_seq,
                            ref d_dinv,
                            ref d_errstat,
                            ref d_rtc,
                            ref d_crc);
                        if (Config.DEBUG_MEMORY)
                        {
                            DEBUG.WriteLine("RECV tag=" + d_tag + "; rtn_tag=" + d_rtn_tag);
                        }



                        var item = callback.FindIndex(s => s.Item1 == d_tag);
                        if (item < 0)
                        {
                            //error
                            if (Config.DEBUG_MEMORY)
                            {
                                DEBUG.WriteLine("");
                            }
                        }

                        if (d_type == hmc_response.RD_RS)
                        {
                            if (callback[item].Item2.load)
                            {
                                foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                {
                                    pimunit.read_callback(callback[item].Item2);
                                }
                                goto endr;
                            }
                            if (!callback[item].Item2.pim)
                            {
                                foreach (var procs in (callback[item].Item2.getsource() as List <Proc>))
                                {
                                    procs.read_callback(callback[item].Item2);
                                }
                            }
                            else
                            {
                                if (PIMConfigs.unit_type == PIM_Unit_Type.Processors)
                                {
                                    foreach (var pimproc in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                    {
                                        (pimproc as PIMProc).read_callback(callback[item].Item2);
                                    }
                                }
                                else
                                {
                                    foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                    {
                                        pimunit.read_callback(callback[item].Item2);
                                    }
                                }
                            }
                        }
                        else
                        {
                            if (d_type == hmc_response.WR_RS)
                            {
                                if (callback[item].Item2.store)
                                {
                                    foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                    {
                                        pimunit.write_callback(callback[item].Item2);
                                    }
                                    goto endr;
                                }
                                if (callback[item].Item2.flush)
                                {
                                    Coherence.flush_queue.Remove(callback[item].Item2.block_addr);
                                    DEBUG.WriteLine("-- Flushed data : [" + callback[item].Item2.block_addr + "] [" + callback[item].Item2.address + "]");
                                }
                                else
                                {
                                    if (!callback[item].Item2.pim)
                                    {
                                        foreach (var proc in (callback[item].Item2.getsource() as List <Proc>))
                                        {
                                            proc.write_callback(callback[item].Item2);
                                        }
                                    }
                                    else
                                    {
                                        if (PIMConfigs.unit_type == PIM_Unit_Type.Processors)
                                        {
                                            foreach (var pimproc in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                            {
                                                (pimproc as PIMProc).write_callback(callback[item].Item2);
                                            }
                                        }
                                        else
                                        {
                                            foreach (var pimunit in (callback[item].Item2.getsource() as List <ComputationalUnit>))
                                            {
                                                pimunit.write_callback(callback[item].Item2);
                                            }
                                        }
                                    }
                                }
                            }
                            else
                            {
                                //error
                                Environment.Exit(0);
                            }
                        }
                        //if (Coherence.consistency == Consistency.SpinLock)
                        //{
                        //    if (callback[item].Item5)
                        //    {
                        //        Coherence.spin_lock.relese_lock(callback[item].Item4);
                        //    }
                        //}
endr:
                        callback.RemoveAt(item);
                        // all_recv++;
                    }

                    /*
                     * zero the packet
                     *
                     */
                    zero_packet(ref packet);
                }
                hmc.hmcsim_clock();
            }
        }