tlb.cc (8888:befcf4d79fc1) tlb.cc (9738:304a37519d11)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 593 unchanged lines hidden (view full) ---

602
603Fault
604TLB::translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode)
605{
606 panic("Not implemented\n");
607 return NoFault;
608}
609
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 593 unchanged lines hidden (view full) ---

602
603Fault
604TLB::translateFunctional(RequestPtr req, ThreadContext *tc, Mode mode)
605{
606 panic("Not implemented\n");
607 return NoFault;
608}
609
610Fault
611TLB::finalizePhysical(RequestPtr req, ThreadContext *tc, Mode mode) const
612{
613 return NoFault;
614}
615
610} // namespace AlphaISA
611
612AlphaISA::TLB *
613AlphaTLBParams::create()
614{
615 return new AlphaISA::TLB(this);
616}
616} // namespace AlphaISA
617
618AlphaISA::TLB *
619AlphaTLBParams::create()
620{
621 return new AlphaISA::TLB(this);
622}