Deleted Added
sdiff udiff text old ( 7087:fb8d5786ff30 ) new ( 7902:aafb4a7384d4 )
full compact
1/*
2 * Copyright (c) 2007 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

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

47TlbEntry::TlbEntry(Addr asn, Addr _vaddr, Addr _paddr) :
48 paddr(_paddr), vaddr(_vaddr), size(PageBytes), writable(true), user(true),
49 uncacheable(false), global(false), patBit(0), noExec(false)
50{}
51
52void
53TlbEntry::serialize(std::ostream &os)
54{
55}
56
57void
58TlbEntry::unserialize(Checkpoint *cp, const std::string &section)
59{
60}
61
62}