tlb.cc (5566:3440c9ad49b4) tlb.cc (5568:d14250d688d2)
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;

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

617 TlbEntry *entry = &table[nlu];
618
619 if (advance)
620 nextnlu();
621
622 return *entry;
623}
624
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;

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

617 TlbEntry *entry = &table[nlu];
618
619 if (advance)
620 nextnlu();
621
622 return *entry;
623}
624
625/* end namespace AlphaISA */ }
625} // namespace AlphaISA
626
627AlphaISA::ITB *
628AlphaITBParams::create()
629{
630 return new AlphaISA::ITB(this);
631}
632
633AlphaISA::DTB *
634AlphaDTBParams::create()
635{
636 return new AlphaISA::DTB(this);
637}
626
627AlphaISA::ITB *
628AlphaITBParams::create()
629{
630 return new AlphaISA::ITB(this);
631}
632
633AlphaISA::DTB *
634AlphaDTBParams::create()
635{
636 return new AlphaISA::DTB(this);
637}