Deleted Added
sdiff udiff text old ( 5803:aae3d7089925 ) new ( 5890:bdef71accd68 )
full compact
1/*
2 * Copyright (c) 2001-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;

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

143 **************************************************************/
144
145 /** Returns the pointer to this SimpleThread's ThreadContext. Used
146 * when a ThreadContext must be passed to objects outside of the
147 * CPU.
148 */
149 ThreadContext *getTC() { return tc; }
150
151 void demapPage(Addr vaddr, uint64_t asn)
152 {
153 itb->demapPage(vaddr, asn);
154 dtb->demapPage(vaddr, asn);
155 }
156
157 void demapInstPage(Addr vaddr, uint64_t asn)
158 {

--- 254 unchanged lines hidden ---