Deleted Added
sdiff udiff text old ( 3804:fa7a01dddc7a ) new ( 3806:65ae5388c059 )
full compact
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;

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

503 if (!priv && e->pte.priv()) {
504 writeSfr(tc, vaddr, write, ct, e->pte.sideffect(), PrivViolation, asi);
505 return new DataAccessException;
506 }
507
508 req->setPaddr(e->pte.paddr() & ~e->pte.size() |
509 req->getVaddr() & e->pte.size());
510 return NoFault;
511 /*** End of normal Path ***/
512
513handleMmuRegAccess:
514handleScratchRegAccess:
515 panic("How are we ever going to deal with this?\n");
516};
517
518void
519TLB::serialize(std::ostream &os)
520{
521 panic("Need to implement serialize tlb for SPARC\n");
522}
523
524void
525TLB::unserialize(Checkpoint *cp, const std::string &section)

--- 47 unchanged lines hidden ---