base.cc (6658:f4de76601762) base.cc (7045:e21fe6a62b1c)
1/*
2 * Copyright (c) 2002-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;

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

200 thread->unserialize(cp, csprintf("%s.xc.0", section));
201}
202
203void
204change_thread_state(ThreadID tid, int activate, int priority)
205{
206}
207
1/*
2 * Copyright (c) 2002-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;

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

200 thread->unserialize(cp, csprintf("%s.xc.0", section));
201}
202
203void
204change_thread_state(ThreadID tid, int activate, int priority)
205{
206}
207
208void
209BaseSimpleCPU::prefetch(Addr addr, unsigned flags)
210{
211 if (traceData) {
212 traceData->setAddr(addr);
213 }
214
215 // need to do this...
216}
217
218void
219BaseSimpleCPU::writeHint(Addr addr, int size, unsigned flags)
220{
221 if (traceData) {
222 traceData->setAddr(addr);
223 }
224
225 // need to do this...
226}
227
228
208Fault
209BaseSimpleCPU::copySrcTranslate(Addr src)
210{
211#if 0
212 static bool no_warn = true;
213 unsigned blk_size =
214 (dcacheInterface) ? dcacheInterface->getBlockSize() : 64;
215 // Only support block sizes of 64 atm.

--- 326 unchanged lines hidden ---
229Fault
230BaseSimpleCPU::copySrcTranslate(Addr src)
231{
232#if 0
233 static bool no_warn = true;
234 unsigned blk_size =
235 (dcacheInterface) ? dcacheInterface->getBlockSize() : 64;
236 // Only support block sizes of 64 atm.

--- 326 unchanged lines hidden ---