Deleted Added
sdiff udiff text old ( 9738:304a37519d11 ) new ( 9818:ebd7d3e04b5f )
full compact
1/*
2 * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

434TLB::getWalker()
435{
436 return walker;
437}
438
439void
440TLB::serialize(std::ostream &os)
441{
442}
443
444void
445TLB::unserialize(Checkpoint *cp, const std::string &section)
446{
447}
448
449BaseMasterPort *
450TLB::getMasterPort()
451{
452 return &walker->getMasterPort("port");
453}
454
455} // namespace X86ISA
456
457X86ISA::TLB *
458X86TLBParams::create()
459{
460 return new X86ISA::TLB(this);
461}