regfile.hh revision 5543
11689SN/A/*
21689SN/A * Copyright (c) 2004-2005 The Regents of The University of Michigan
31689SN/A * All rights reserved.
41689SN/A *
51689SN/A * Redistribution and use in source and binary forms, with or without
61689SN/A * modification, are permitted provided that the following conditions are
71689SN/A * met: redistributions of source code must retain the above copyright
81689SN/A * notice, this list of conditions and the following disclaimer;
91689SN/A * redistributions in binary form must reproduce the above copyright
101689SN/A * notice, this list of conditions and the following disclaimer in the
111689SN/A * documentation and/or other materials provided with the distribution;
121689SN/A * neither the name of the copyright holders nor the names of its
131689SN/A * contributors may be used to endorse or promote products derived from
141689SN/A * this software without specific prior written permission.
151689SN/A *
161689SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
171689SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
181689SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
191689SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
201689SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
211689SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
221689SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
231689SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
241689SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
251689SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
261689SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Kevin Lim
292665Ssaidi@eecs.umich.edu *          Gabe Black
301689SN/A */
311689SN/A
322292SN/A#ifndef __CPU_O3_REGFILE_HH__
332292SN/A#define __CPU_O3_REGFILE_HH__
341060SN/A
352165SN/A#include "arch/isa_traits.hh"
365529Snate@binkert.org#include "arch/regfile.hh"
372669Sktlim@umich.edu#include "arch/types.hh"
381681SN/A#include "base/trace.hh"
391858SN/A#include "config/full_system.hh"
401717SN/A#include "cpu/o3/comm.hh"
411060SN/A
421858SN/A#if FULL_SYSTEM
433565Sgblack@eecs.umich.edu#include "arch/kernel_stats.hh"
441681SN/A#endif
451063SN/A
462292SN/A#include <vector>
471060SN/A
482292SN/A/**
492292SN/A * Simple physical register file class.
502669Sktlim@umich.edu * Right now this is specific to Alpha until we decide if/how to make things
512669Sktlim@umich.edu * generic enough to support other ISAs.
522292SN/A */
531061SN/Atemplate <class Impl>
541060SN/Aclass PhysRegFile
551060SN/A{
562107SN/A  protected:
572107SN/A    typedef TheISA::IntReg IntReg;
582107SN/A    typedef TheISA::FloatReg FloatReg;
592669Sktlim@umich.edu    typedef TheISA::FloatRegBits FloatRegBits;
602107SN/A    typedef TheISA::MiscRegFile MiscRegFile;
612159SN/A    typedef TheISA::MiscReg MiscReg;
622159SN/A
632669Sktlim@umich.edu    typedef union {
642669Sktlim@umich.edu        FloatReg d;
652669Sktlim@umich.edu        FloatRegBits q;
662669Sktlim@umich.edu    } PhysFloatReg;
671060SN/A
682292SN/A    // Note that most of the definitions of the IntReg, FloatReg, etc. exist
692292SN/A    // within the Impl/ISA class and not within this PhysRegFile class.
701060SN/A
712292SN/A    // Will make these registers public for now, but they probably should
722292SN/A    // be private eventually with some accessor functions.
731060SN/A  public:
742733Sktlim@umich.edu    typedef typename Impl::O3CPU O3CPU;
751060SN/A
762292SN/A    /**
772292SN/A     * Constructs a physical register file with the specified amount of
782292SN/A     * integer and floating point registers.
792292SN/A     */
804329Sktlim@umich.edu    PhysRegFile(O3CPU *_cpu, unsigned _numPhysicalIntRegs,
811060SN/A                unsigned _numPhysicalFloatRegs);
821060SN/A
831060SN/A    //Everything below should be pretty well identical to the normal
841060SN/A    //register file that exists within AlphaISA class.
851060SN/A    //The duplication is unfortunate but it's better than having
861060SN/A    //different ways to access certain registers.
871060SN/A
882292SN/A    /** Reads an integer register. */
891060SN/A    uint64_t readIntReg(PhysRegIndex reg_idx)
901060SN/A    {
911061SN/A        assert(reg_idx < numPhysicalIntRegs);
921061SN/A
931060SN/A        DPRINTF(IEW, "RegFile: Access to int register %i, has data "
942690Sktlim@umich.edu                "%#x\n", int(reg_idx), intRegFile[reg_idx]);
951060SN/A        return intRegFile[reg_idx];
961060SN/A    }
971060SN/A
982455SN/A    FloatReg readFloatReg(PhysRegIndex reg_idx, int width)
991060SN/A    {
1001060SN/A        // Remove the base Float reg dependency.
1011060SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
1021060SN/A
1031062SN/A        assert(reg_idx < numPhysicalFloatRegs + numPhysicalIntRegs);
1041061SN/A
1052669Sktlim@umich.edu        FloatReg floatReg = floatRegFile[reg_idx].d;
1061060SN/A
1072455SN/A        DPRINTF(IEW, "RegFile: Access to %d byte float register %i, has "
1082690Sktlim@umich.edu                "data %#x\n", int(reg_idx), floatRegFile[reg_idx].q);
1092455SN/A
1102455SN/A        return floatReg;
1111060SN/A    }
1121060SN/A
1132292SN/A    /** Reads a floating point register (double precision). */
1142455SN/A    FloatReg readFloatReg(PhysRegIndex reg_idx)
1151060SN/A    {
1161060SN/A        // Remove the base Float reg dependency.
1171060SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
1181060SN/A
1191062SN/A        assert(reg_idx < numPhysicalFloatRegs + numPhysicalIntRegs);
1201061SN/A
1212669Sktlim@umich.edu        FloatReg floatReg = floatRegFile[reg_idx].d;
1221060SN/A
1232455SN/A        DPRINTF(IEW, "RegFile: Access to float register %i, has "
1242690Sktlim@umich.edu                "data %#x\n", int(reg_idx), floatRegFile[reg_idx].q);
1252455SN/A
1262455SN/A        return floatReg;
1271060SN/A    }
1281060SN/A
1292292SN/A    /** Reads a floating point register as an integer. */
1302455SN/A    FloatRegBits readFloatRegBits(PhysRegIndex reg_idx, int width)
1311060SN/A    {
1321060SN/A        // Remove the base Float reg dependency.
1331060SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
1341060SN/A
1351062SN/A        assert(reg_idx < numPhysicalFloatRegs + numPhysicalIntRegs);
1361061SN/A
1372669Sktlim@umich.edu        FloatRegBits floatRegBits = floatRegFile[reg_idx].q;
1381060SN/A
1392690Sktlim@umich.edu        DPRINTF(IEW, "RegFile: Access to float register %i as int, "
1402690Sktlim@umich.edu                "has data %#x\n", int(reg_idx), (uint64_t)floatRegBits);
1412455SN/A
1422455SN/A        return floatRegBits;
1432455SN/A    }
1442455SN/A
1452455SN/A    FloatRegBits readFloatRegBits(PhysRegIndex reg_idx)
1462455SN/A    {
1472455SN/A        // Remove the base Float reg dependency.
1482455SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
1492455SN/A
1502455SN/A        assert(reg_idx < numPhysicalFloatRegs + numPhysicalIntRegs);
1512455SN/A
1522669Sktlim@umich.edu        FloatRegBits floatRegBits = floatRegFile[reg_idx].q;
1532455SN/A
1542455SN/A        DPRINTF(IEW, "RegFile: Access to float register %i as int, "
1552690Sktlim@umich.edu                "has data %#x\n", int(reg_idx), (uint64_t)floatRegBits);
1562455SN/A
1572455SN/A        return floatRegBits;
1581060SN/A    }
1591060SN/A
1602292SN/A    /** Sets an integer register to the given value. */
1611060SN/A    void setIntReg(PhysRegIndex reg_idx, uint64_t val)
1621060SN/A    {
1631061SN/A        assert(reg_idx < numPhysicalIntRegs);
1641061SN/A
1652690Sktlim@umich.edu        DPRINTF(IEW, "RegFile: Setting int register %i to %#x\n",
1661060SN/A                int(reg_idx), val);
1671060SN/A
1682292SN/A        if (reg_idx != TheISA::ZeroReg)
1692292SN/A            intRegFile[reg_idx] = val;
1701060SN/A    }
1711060SN/A
1722292SN/A    /** Sets a single precision floating point register to the given value. */
1732455SN/A    void setFloatReg(PhysRegIndex reg_idx, FloatReg val, int width)
1741060SN/A    {
1751060SN/A        // Remove the base Float reg dependency.
1761060SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
1771060SN/A
1784352Sgblack@eecs.umich.edu        assert(reg_idx < numPhysicalFloatRegs);
1791061SN/A
1802690Sktlim@umich.edu        DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
1812690Sktlim@umich.edu                int(reg_idx), (uint64_t)val);
1821060SN/A
1834642Sgblack@eecs.umich.edu#if THE_ISA == ALPHA_ISA
1842292SN/A        if (reg_idx != TheISA::ZeroReg)
1854642Sgblack@eecs.umich.edu#endif
1862690Sktlim@umich.edu            floatRegFile[reg_idx].d = val;
1871060SN/A    }
1881060SN/A
1892292SN/A    /** Sets a double precision floating point register to the given value. */
1902455SN/A    void setFloatReg(PhysRegIndex reg_idx, FloatReg val)
1911060SN/A    {
1921060SN/A        // Remove the base Float reg dependency.
1931060SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
1941060SN/A
1954352Sgblack@eecs.umich.edu        assert(reg_idx < numPhysicalFloatRegs);
1961061SN/A
1972690Sktlim@umich.edu        DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
1982690Sktlim@umich.edu                int(reg_idx), (uint64_t)val);
1991060SN/A
2004642Sgblack@eecs.umich.edu#if THE_ISA == ALPHA_ISA
2012292SN/A        if (reg_idx != TheISA::ZeroReg)
2024642Sgblack@eecs.umich.edu#endif
2032669Sktlim@umich.edu            floatRegFile[reg_idx].d = val;
2041060SN/A    }
2051060SN/A
2062292SN/A    /** Sets a floating point register to the given integer value. */
2072455SN/A    void setFloatRegBits(PhysRegIndex reg_idx, FloatRegBits val, int width)
2081060SN/A    {
2091060SN/A        // Remove the base Float reg dependency.
2101060SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
2111060SN/A
2124352Sgblack@eecs.umich.edu        assert(reg_idx < numPhysicalFloatRegs);
2131061SN/A
2142690Sktlim@umich.edu        DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
2152455SN/A                int(reg_idx), (uint64_t)val);
2161060SN/A
2172669Sktlim@umich.edu        floatRegFile[reg_idx].q = val;
2182455SN/A    }
2192455SN/A
2202455SN/A    void setFloatRegBits(PhysRegIndex reg_idx, FloatRegBits val)
2212455SN/A    {
2222455SN/A        // Remove the base Float reg dependency.
2232455SN/A        reg_idx = reg_idx - numPhysicalIntRegs;
2242455SN/A
2254352Sgblack@eecs.umich.edu        assert(reg_idx < numPhysicalFloatRegs);
2262455SN/A
2272690Sktlim@umich.edu        DPRINTF(IEW, "RegFile: Setting float register %i to %#x\n",
2282455SN/A                int(reg_idx), (uint64_t)val);
2292455SN/A
2302669Sktlim@umich.edu        floatRegFile[reg_idx].q = val;
2311060SN/A    }
2321060SN/A
2334172Ssaidi@eecs.umich.edu    MiscReg readMiscRegNoEffect(int misc_reg, unsigned thread_id)
2344172Ssaidi@eecs.umich.edu    {
2354172Ssaidi@eecs.umich.edu        return miscRegs[thread_id].readRegNoEffect(misc_reg);
2364172Ssaidi@eecs.umich.edu    }
2374172Ssaidi@eecs.umich.edu
2382669Sktlim@umich.edu    MiscReg readMiscReg(int misc_reg, unsigned thread_id)
2391060SN/A    {
2404352Sgblack@eecs.umich.edu        return miscRegs[thread_id].readReg(misc_reg, cpu->tcBase(thread_id));
2411060SN/A    }
2421060SN/A
2434352Sgblack@eecs.umich.edu    void setMiscRegNoEffect(int misc_reg,
2444352Sgblack@eecs.umich.edu            const MiscReg &val, unsigned thread_id)
2451060SN/A    {
2464172Ssaidi@eecs.umich.edu        miscRegs[thread_id].setRegNoEffect(misc_reg, val);
2471060SN/A    }
2481060SN/A
2494172Ssaidi@eecs.umich.edu    void setMiscReg(int misc_reg, const MiscReg &val,
2502292SN/A                               unsigned thread_id)
2511060SN/A    {
2524172Ssaidi@eecs.umich.edu        miscRegs[thread_id].setReg(misc_reg, val,
2532680Sktlim@umich.edu                                                    cpu->tcBase(thread_id));
2541060SN/A    }
2551060SN/A
2561060SN/A  public:
2571060SN/A    /** (signed) integer register file. */
2582690Sktlim@umich.edu    IntReg *intRegFile;
2591060SN/A
2601060SN/A    /** Floating point register file. */
2612690Sktlim@umich.edu    PhysFloatReg *floatRegFile;
2621060SN/A
2631060SN/A    /** Miscellaneous register file. */
2642292SN/A    MiscRegFile miscRegs[Impl::MaxThreads];
2651060SN/A
2661858SN/A#if FULL_SYSTEM
2671060SN/A  private:
2685543Ssaidi@eecs.umich.edu    int intrflag;                       // interrupt flag
2691681SN/A#endif
2701681SN/A
2711681SN/A  private:
2722292SN/A    /** CPU pointer. */
2732733Sktlim@umich.edu    O3CPU *cpu;
2741681SN/A
2751681SN/A  public:
2762292SN/A    /** Number of physical integer registers. */
2771060SN/A    unsigned numPhysicalIntRegs;
2782292SN/A    /** Number of physical floating point registers. */
2791060SN/A    unsigned numPhysicalFloatRegs;
2801060SN/A};
2811060SN/A
2821061SN/Atemplate <class Impl>
2834329Sktlim@umich.eduPhysRegFile<Impl>::PhysRegFile(O3CPU *_cpu, unsigned _numPhysicalIntRegs,
2841060SN/A                               unsigned _numPhysicalFloatRegs)
2854329Sktlim@umich.edu    : cpu(_cpu), numPhysicalIntRegs(_numPhysicalIntRegs),
2861060SN/A      numPhysicalFloatRegs(_numPhysicalFloatRegs)
2871060SN/A{
2882690Sktlim@umich.edu    intRegFile = new IntReg[numPhysicalIntRegs];
2892690Sktlim@umich.edu    floatRegFile = new PhysFloatReg[numPhysicalFloatRegs];
2901060SN/A
2912681Sktlim@umich.edu    for (int i = 0; i < Impl::MaxThreads; ++i) {
2922681Sktlim@umich.edu        miscRegs[i].clear();
2932681Sktlim@umich.edu    }
2942681Sktlim@umich.edu
2952690Sktlim@umich.edu    memset(intRegFile, 0, sizeof(IntReg) * numPhysicalIntRegs);
2962690Sktlim@umich.edu    memset(floatRegFile, 0, sizeof(PhysFloatReg) * numPhysicalFloatRegs);
2971060SN/A}
2981060SN/A
2992292SN/A#endif
300