Deleted Added
sdiff udiff text old ( 6658:f4de76601762 ) new ( 6818:5a0e3a283826 )
full compact
1/*
2 * Copyright (c) 2003 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;

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

217 pTable.clear();
218
219 while(i < count) {
220 paramIn(cp, csprintf("%s.Entry%d", process->name(), i), "vaddr", vaddr);
221 entry = new TheISA::TlbEntry();
222 entry->unserialize(cp, csprintf("%s.Entry%d", process->name(), i));
223 pTable[vaddr] = *entry;
224 ++i;
225 }
226}
227