base.hh (5529:9ae69b9cd7fd) base.hh (5543:3af77710f397)
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;

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

222 Counter lastDcacheRetry;
223
224 virtual void serialize(std::ostream &os);
225 virtual void unserialize(Checkpoint *cp, const std::string &section);
226
227 // These functions are only used in CPU models that split
228 // effective address computation from the actual memory access.
229 void setEA(Addr EA) { panic("BaseSimpleCPU::setEA() not implemented\n"); }
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;

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

222 Counter lastDcacheRetry;
223
224 virtual void serialize(std::ostream &os);
225 virtual void unserialize(Checkpoint *cp, const std::string &section);
226
227 // These functions are only used in CPU models that split
228 // effective address computation from the actual memory access.
229 void setEA(Addr EA) { panic("BaseSimpleCPU::setEA() not implemented\n"); }
230 Addr getEA() { panic("BaseSimpleCPU::getEA() not implemented\n");
230 Addr getEA() { panic("BaseSimpleCPU::getEA() not implemented\n");
231 M5_DUMMY_RETURN}
232
233 void prefetch(Addr addr, unsigned flags)
234 {
235 // need to do this...
236 }
237
238 void writeHint(Addr addr, int size, unsigned flags)

--- 189 unchanged lines hidden ---
231 M5_DUMMY_RETURN}
232
233 void prefetch(Addr addr, unsigned flags)
234 {
235 // need to do this...
236 }
237
238 void writeHint(Addr addr, int size, unsigned flags)

--- 189 unchanged lines hidden ---