Backing in more changsets, getting closer to compile
base_cache.cc compiles, continuing on
src/SConscript:
Add in compilation flags for cache files
src/mem/cache/base_cache.cc:
src/mem/cache/base_cache.hh:
Back in more fixes, now base_cache compiles
src/mem/cache/cache.hh:
src/mem/cache/cache_blk.hh:
src/mem/cache/cache_impl.hh:
src/mem/cache/coherence/coherence_protocol.cc:
src/mem/cache/miss/blocking_buffer.cc:
src/mem/cache/miss/blocking_buffer.hh:
src/mem/cache/miss/miss_queue.cc:
src/mem/cache/miss/miss_queue.hh:
src/mem/cache/miss/mshr.cc:
src/mem/cache/miss/mshr.hh:
src/mem/cache/miss/mshr_queue.cc:
src/mem/cache/miss/mshr_queue.hh:
src/mem/cache/prefetch/base_prefetcher.cc:
src/mem/cache/tags/fa_lru.cc:
src/mem/cache/tags/iic.cc:
src/mem/cache/tags/lru.cc:
src/mem/cache/tags/split_lifo.cc:
src/mem/cache/tags/split_lru.cc:
src/mem/packet.cc:
src/mem/packet.hh:
src/mem/request.hh:
Backing in more changsets, getting closer to compile
--HG--
extra : convert_revision : ac2dcda39f8d27baffc4db1df17b9a1fcce5b6ed
This commit is contained in:
7
src/mem/cache/cache.hh
vendored
7
src/mem/cache/cache.hh
vendored
@@ -46,7 +46,6 @@
|
||||
|
||||
// forward declarations
|
||||
class Bus;
|
||||
class ExecContext;
|
||||
|
||||
/**
|
||||
* A template-policy based cache. The behavior of the cache can be altered by
|
||||
@@ -209,11 +208,11 @@ class Cache : public BaseCache
|
||||
/**
|
||||
* Aquash all requests associated with specified thread.
|
||||
* intended for use by I-cache.
|
||||
* @param thread_number The thread to squash.
|
||||
* @param req->getThreadNum()ber The thread to squash.
|
||||
*/
|
||||
void squash(int thread_number)
|
||||
void squash(int threadNum)
|
||||
{
|
||||
missQueue->squash(thread_number);
|
||||
missQueue->squash(threadNum);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user