tlb.hh revision 8922
14120Sgblack@eecs.umich.edu/*
24120Sgblack@eecs.umich.edu * Copyright (c) 2007 The Hewlett-Packard Development Company
34120Sgblack@eecs.umich.edu * All rights reserved.
44120Sgblack@eecs.umich.edu *
57087Snate@binkert.org * The license below extends only to copyright in the software and shall
67087Snate@binkert.org * not be construed as granting a license to any other intellectual
77087Snate@binkert.org * property including but not limited to intellectual property relating
87087Snate@binkert.org * to a hardware implementation of the functionality of the software
97087Snate@binkert.org * licensed hereunder.  You may use the software subject to the license
107087Snate@binkert.org * terms below provided that you ensure that this notice is replicated
117087Snate@binkert.org * unmodified and in its entirety in all distributions of the software,
127087Snate@binkert.org * modified or unmodified, in source code or in binary form.
134120Sgblack@eecs.umich.edu *
147087Snate@binkert.org * Redistribution and use in source and binary forms, with or without
157087Snate@binkert.org * modification, are permitted provided that the following conditions are
167087Snate@binkert.org * met: redistributions of source code must retain the above copyright
177087Snate@binkert.org * notice, this list of conditions and the following disclaimer;
187087Snate@binkert.org * redistributions in binary form must reproduce the above copyright
197087Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
207087Snate@binkert.org * documentation and/or other materials provided with the distribution;
217087Snate@binkert.org * neither the name of the copyright holders nor the names of its
224120Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
237087Snate@binkert.org * this software without specific prior written permission.
244120Sgblack@eecs.umich.edu *
254120Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
264120Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
274120Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
284120Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
294120Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
304120Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
314120Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
324120Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
334120Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
344120Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
354120Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
364120Sgblack@eecs.umich.edu *
374120Sgblack@eecs.umich.edu * Authors: Gabe Black
384120Sgblack@eecs.umich.edu */
394120Sgblack@eecs.umich.edu
404120Sgblack@eecs.umich.edu#ifndef __ARCH_X86_TLB_HH__
414120Sgblack@eecs.umich.edu#define __ARCH_X86_TLB_HH__
424120Sgblack@eecs.umich.edu
435124Sgblack@eecs.umich.edu#include <list>
448229Snate@binkert.org#include <string>
455237Sgblack@eecs.umich.edu#include <vector>
465124Sgblack@eecs.umich.edu
478229Snate@binkert.org#include "arch/x86/regs/segment.hh"
485124Sgblack@eecs.umich.edu#include "arch/x86/pagetable.hh"
495236Sgblack@eecs.umich.edu#include "mem/mem_object.hh"
505086Sgblack@eecs.umich.edu#include "mem/request.hh"
516022Sgblack@eecs.umich.edu#include "params/X86TLB.hh"
527878Sgblack@eecs.umich.edu#include "sim/fault_fwd.hh"
538229Snate@binkert.org#include "sim/sim_object.hh"
545358Sgblack@eecs.umich.edu#include "sim/tlb.hh"
555086Sgblack@eecs.umich.edu
565086Sgblack@eecs.umich.educlass ThreadContext;
575086Sgblack@eecs.umich.educlass Packet;
585086Sgblack@eecs.umich.edu
595086Sgblack@eecs.umich.edunamespace X86ISA
605086Sgblack@eecs.umich.edu{
615245Sgblack@eecs.umich.edu    class Walker;
625245Sgblack@eecs.umich.edu
635358Sgblack@eecs.umich.edu    class TLB : public BaseTLB
645086Sgblack@eecs.umich.edu    {
655124Sgblack@eecs.umich.edu      protected:
665895Sgblack@eecs.umich.edu        friend class Walker;
675236Sgblack@eecs.umich.edu
685360Sgblack@eecs.umich.edu        typedef std::list<TlbEntry *> EntryList;
695360Sgblack@eecs.umich.edu
705357Sgblack@eecs.umich.edu        uint32_t configAddress;
715237Sgblack@eecs.umich.edu
725124Sgblack@eecs.umich.edu      public:
735245Sgblack@eecs.umich.edu
745124Sgblack@eecs.umich.edu        typedef X86TLBParams Params;
755124Sgblack@eecs.umich.edu        TLB(const Params *p);
765086Sgblack@eecs.umich.edu
775124Sgblack@eecs.umich.edu        void dumpAll();
785124Sgblack@eecs.umich.edu
795124Sgblack@eecs.umich.edu        TlbEntry *lookup(Addr va, bool update_lru = true);
805124Sgblack@eecs.umich.edu
815357Sgblack@eecs.umich.edu        void setConfigAddress(uint32_t addr);
825357Sgblack@eecs.umich.edu
835360Sgblack@eecs.umich.edu      protected:
845360Sgblack@eecs.umich.edu
855360Sgblack@eecs.umich.edu        EntryList::iterator lookupIt(Addr va, bool update_lru = true);
865360Sgblack@eecs.umich.edu
878752Sgblack@eecs.umich.edu        Walker * walker;
885236Sgblack@eecs.umich.edu
897912Shestness@cs.utexas.edu      public:
907912Shestness@cs.utexas.edu        Walker *getWalker();
915236Sgblack@eecs.umich.edu
925242Sgblack@eecs.umich.edu        void invalidateAll();
935242Sgblack@eecs.umich.edu
945242Sgblack@eecs.umich.edu        void invalidateNonGlobal();
955242Sgblack@eecs.umich.edu
965358Sgblack@eecs.umich.edu        void demapPage(Addr va, uint64_t asn);
975242Sgblack@eecs.umich.edu
985124Sgblack@eecs.umich.edu      protected:
995124Sgblack@eecs.umich.edu        int size;
1005124Sgblack@eecs.umich.edu
1015124Sgblack@eecs.umich.edu        TlbEntry * tlb;
1025124Sgblack@eecs.umich.edu
1035124Sgblack@eecs.umich.edu        EntryList freeList;
1045124Sgblack@eecs.umich.edu        EntryList entryList;
1055124Sgblack@eecs.umich.edu
1066141Sgblack@eecs.umich.edu        Fault translateInt(RequestPtr req, ThreadContext *tc);
1076141Sgblack@eecs.umich.edu
1085895Sgblack@eecs.umich.edu        Fault translate(RequestPtr req, ThreadContext *tc,
1096023Snate@binkert.org                Translation *translation, Mode mode,
1105895Sgblack@eecs.umich.edu                bool &delayedResponse, bool timing);
1115140Sgblack@eecs.umich.edu
1125124Sgblack@eecs.umich.edu      public:
1135245Sgblack@eecs.umich.edu
1146023Snate@binkert.org        Fault translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode);
1156022Sgblack@eecs.umich.edu        void translateTiming(RequestPtr req, ThreadContext *tc,
1166023Snate@binkert.org                Translation *translation, Mode mode);
1178888Sgeoffrey.blake@arm.com        /** Stub function for compilation support of CheckerCPU. x86 ISA does
1188888Sgeoffrey.blake@arm.com         *  not support Checker model at the moment
1198888Sgeoffrey.blake@arm.com         */
1208888Sgeoffrey.blake@arm.com        Fault translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode);
1215245Sgblack@eecs.umich.edu
1226022Sgblack@eecs.umich.edu        TlbEntry * insert(Addr vpn, TlbEntry &entry);
1236022Sgblack@eecs.umich.edu
1245124Sgblack@eecs.umich.edu        // Checkpointing
1255124Sgblack@eecs.umich.edu        virtual void serialize(std::ostream &os);
1265124Sgblack@eecs.umich.edu        virtual void unserialize(Checkpoint *cp, const std::string &section);
1278864Snilay@cs.wisc.edu
1288922Swilliam.wang@arm.com        /**
1298922Swilliam.wang@arm.com         * Get the table walker master port. This is used for
1308922Swilliam.wang@arm.com         * migrating port connections during a CPU takeOverFrom()
1318922Swilliam.wang@arm.com         * call. For architectures that do not have a table walker,
1328922Swilliam.wang@arm.com         * NULL is returned, hence the use of a pointer rather than a
1338922Swilliam.wang@arm.com         * reference. For X86 this method will always return a valid
1348922Swilliam.wang@arm.com         * port pointer.
1358922Swilliam.wang@arm.com         *
1368922Swilliam.wang@arm.com         * @return A pointer to the walker master port
1378922Swilliam.wang@arm.com         */
1388922Swilliam.wang@arm.com        virtual MasterPort *getMasterPort();
1395124Sgblack@eecs.umich.edu    };
1405086Sgblack@eecs.umich.edu}
1415086Sgblack@eecs.umich.edu
1424120Sgblack@eecs.umich.edu#endif // __ARCH_X86_TLB_HH__
143