cache.hh (3862:ec47e4243107) cache.hh (4190:5069dfa3d62e)
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;

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

326 {
327 }
328 };
329
330 /** Instantiates a basic cache object. */
331 Cache(const std::string &_name, Params &params);
332
333 virtual Port *getPort(const std::string &if_name, int idx = -1);
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;

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

326 {
327 }
328 };
329
330 /** Instantiates a basic cache object. */
331 Cache(const std::string &_name, Params &params);
332
333 virtual Port *getPort(const std::string &if_name, int idx = -1);
334 virtual void deletePortRefs(Port *p);
334
335 virtual void recvStatusChange(Port::Status status, bool isCpuSide);
336
337 void regStats();
338
339 /**
340 * Performs the access specified by the request.
341 * @param pkt The request to perform.

--- 98 unchanged lines hidden ---
335
336 virtual void recvStatusChange(Port::Status status, bool isCpuSide);
337
338 void regStats();
339
340 /**
341 * Performs the access specified by the request.
342 * @param pkt The request to perform.

--- 98 unchanged lines hidden ---