Deleted Added
sdiff udiff text old ( 5014:f9667cf03d3f ) new ( 5019:2762e580f5db )
full compact
1/*
2 * Copyright (c) 2006 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;

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

40 Addr pageStart;
41 TlbEntry() {}
42 TlbEntry(Addr paddr) : pageStart(paddr) {}
43
44 void serialize(std::ostream &os);
45 void unserialize(Checkpoint *cp, const std::string &section);
46 };
47
48 class ITB : public GenericITB<>
49 {
50 public:
51 ITB(const std::string &name) : GenericITB<>(name)
52 {}
53 };
54
55 class DTB : public GenericDTB<>
56 {
57 public:
58 DTB(const std::string &name) : GenericDTB<>(name)
59 {}
60 };
61};
62
63#endif // __ARCH_MIPS_TLB_HH__