tlb.hh revision 8888
12SN/A/*
21762SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
292665Ssaidi@eecs.umich.edu *          Steve Reinhardt
302SN/A */
312SN/A
325569Snate@binkert.org#ifndef __ARCH_ALPHA_TLB_HH__
335569Snate@binkert.org#define __ARCH_ALPHA_TLB_HH__
342SN/A
352SN/A#include <map>
362SN/A
372432SN/A#include "arch/alpha/ev5.hh"
381147SN/A#include "arch/alpha/isa_traits.hh"
393453Sgblack@eecs.umich.edu#include "arch/alpha/pagetable.hh"
402984Sgblack@eecs.umich.edu#include "arch/alpha/utility.hh"
412984Sgblack@eecs.umich.edu#include "arch/alpha/vtophys.hh"
421147SN/A#include "base/statistics.hh"
432517SN/A#include "mem/request.hh"
446022Sgblack@eecs.umich.edu#include "params/AlphaTLB.hh"
457878Sgblack@eecs.umich.edu#include "sim/fault_fwd.hh"
465358Sgblack@eecs.umich.edu#include "sim/tlb.hh"
472SN/A
482680Sktlim@umich.educlass ThreadContext;
492SN/A
505569Snate@binkert.orgnamespace AlphaISA {
515569Snate@binkert.org
528737Skoansin.tan@gmail.comstruct TlbEntry;
535569Snate@binkert.org
545569Snate@binkert.orgclass TLB : public BaseTLB
552SN/A{
565569Snate@binkert.org  protected:
576022Sgblack@eecs.umich.edu    mutable Stats::Scalar fetch_hits;
586022Sgblack@eecs.umich.edu    mutable Stats::Scalar fetch_misses;
596022Sgblack@eecs.umich.edu    mutable Stats::Scalar fetch_acv;
606022Sgblack@eecs.umich.edu    mutable Stats::Formula fetch_accesses;
616022Sgblack@eecs.umich.edu    mutable Stats::Scalar read_hits;
626022Sgblack@eecs.umich.edu    mutable Stats::Scalar read_misses;
636022Sgblack@eecs.umich.edu    mutable Stats::Scalar read_acv;
646022Sgblack@eecs.umich.edu    mutable Stats::Scalar read_accesses;
656022Sgblack@eecs.umich.edu    mutable Stats::Scalar write_hits;
666022Sgblack@eecs.umich.edu    mutable Stats::Scalar write_misses;
676022Sgblack@eecs.umich.edu    mutable Stats::Scalar write_acv;
686022Sgblack@eecs.umich.edu    mutable Stats::Scalar write_accesses;
696022Sgblack@eecs.umich.edu    Stats::Formula data_hits;
706022Sgblack@eecs.umich.edu    Stats::Formula data_misses;
716022Sgblack@eecs.umich.edu    Stats::Formula data_acv;
726022Sgblack@eecs.umich.edu    Stats::Formula data_accesses;
736022Sgblack@eecs.umich.edu
746022Sgblack@eecs.umich.edu
755569Snate@binkert.org    typedef std::multimap<Addr, int> PageTable;
765569Snate@binkert.org    PageTable lookupTable;  // Quick lookup into page table
772SN/A
785569Snate@binkert.org    TlbEntry *table;        // the Page Table
795569Snate@binkert.org    int size;               // TLB Size
805569Snate@binkert.org    int nlu;                // not last used entry (for replacement)
815569Snate@binkert.org
825569Snate@binkert.org    void nextnlu() { if (++nlu >= size) nlu = 0; }
835569Snate@binkert.org    TlbEntry *lookup(Addr vpn, uint8_t asn);
845569Snate@binkert.org
855569Snate@binkert.org  public:
865569Snate@binkert.org    typedef AlphaTLBParams Params;
875569Snate@binkert.org    TLB(const Params *p);
885569Snate@binkert.org    virtual ~TLB();
895569Snate@binkert.org
906022Sgblack@eecs.umich.edu    virtual void regStats();
916022Sgblack@eecs.umich.edu
925569Snate@binkert.org    int getsize() const { return size; }
935569Snate@binkert.org
945569Snate@binkert.org    TlbEntry &index(bool advance = true);
955569Snate@binkert.org    void insert(Addr vaddr, TlbEntry &entry);
965569Snate@binkert.org
975569Snate@binkert.org    void flushAll();
985569Snate@binkert.org    void flushProcesses();
995569Snate@binkert.org    void flushAddr(Addr addr, uint8_t asn);
1005569Snate@binkert.org
1015569Snate@binkert.org    void
1025569Snate@binkert.org    demapPage(Addr vaddr, uint64_t asn)
1033453Sgblack@eecs.umich.edu    {
1045569Snate@binkert.org        assert(asn < (1 << 8));
1055569Snate@binkert.org        flushAddr(vaddr, asn);
1065569Snate@binkert.org    }
1072SN/A
1085569Snate@binkert.org    // static helper functions... really EV5 VM traits
1095569Snate@binkert.org    static bool
1105569Snate@binkert.org    validVirtualAddress(Addr vaddr)
1115569Snate@binkert.org    {
1125569Snate@binkert.org        // unimplemented bits must be all 0 or all 1
1135569Snate@binkert.org        Addr unimplBits = vaddr & VAddrUnImplMask;
1145569Snate@binkert.org        return unimplBits == 0 || unimplBits == VAddrUnImplMask;
1155569Snate@binkert.org    }
1162SN/A
1175569Snate@binkert.org    static Fault checkCacheability(RequestPtr &req, bool itb = false);
1182SN/A
1195569Snate@binkert.org    // Checkpointing
1205569Snate@binkert.org    virtual void serialize(std::ostream &os);
1215569Snate@binkert.org    virtual void unserialize(Checkpoint *cp, const std::string &section);
1222SN/A
1235569Snate@binkert.org    // Most recently used page table entries
1245569Snate@binkert.org    TlbEntry *EntryCache[3];
1255569Snate@binkert.org    inline void
1265569Snate@binkert.org    flushCache()
1275569Snate@binkert.org    {
1285569Snate@binkert.org        memset(EntryCache, 0, 3 * sizeof(TlbEntry*));
1295569Snate@binkert.org    }
1302SN/A
1315569Snate@binkert.org    inline TlbEntry *
1325569Snate@binkert.org    updateCache(TlbEntry *entry) {
1335569Snate@binkert.org        EntryCache[2] = EntryCache[1];
1345569Snate@binkert.org        EntryCache[1] = EntryCache[0];
1355569Snate@binkert.org        EntryCache[0] = entry;
1365569Snate@binkert.org        return entry;
1375569Snate@binkert.org    }
1382SN/A
1395569Snate@binkert.org  protected:
1406022Sgblack@eecs.umich.edu    Fault translateData(RequestPtr req, ThreadContext *tc, bool write);
1416022Sgblack@eecs.umich.edu    Fault translateInst(RequestPtr req, ThreadContext *tc);
1422SN/A
1435569Snate@binkert.org  public:
1446023Snate@binkert.org    Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
1455894Sgblack@eecs.umich.edu    void translateTiming(RequestPtr req, ThreadContext *tc,
1466023Snate@binkert.org                         Translation *translation, Mode mode);
1478888Sgeoffrey.blake@arm.com    /**
1488888Sgeoffrey.blake@arm.com     * translateFunctional stub function for future CheckerCPU support
1498888Sgeoffrey.blake@arm.com     */
1508888Sgeoffrey.blake@arm.com    Fault translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode);
1515569Snate@binkert.org};
1525004Sgblack@eecs.umich.edu
1535569Snate@binkert.org} // namespace AlphaISA
1542SN/A
1555569Snate@binkert.org#endif // __ARCH_ALPHA_TLB_HH__
156