cache.cc (9795:a31d1a0888a2) | cache.cc (10263:c00b5ba43967) |
---|---|
1/* 2 * Copyright (c) 2004-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; --- 24 unchanged lines hidden (view full) --- 33 34/** 35 * @file 36 * Cache template instantiations. 37 */ 38 39#include "mem/cache/tags/fa_lru.hh" 40#include "mem/cache/tags/lru.hh" | 1/* 2 * Copyright (c) 2004-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; --- 24 unchanged lines hidden (view full) --- 33 34/** 35 * @file 36 * Cache template instantiations. 37 */ 38 39#include "mem/cache/tags/fa_lru.hh" 40#include "mem/cache/tags/lru.hh" |
41#include "mem/cache/tags/random_repl.hh" |
|
41#include "mem/cache/cache_impl.hh" 42 43// Template Instantiations 44#ifndef DOXYGEN_SHOULD_SKIP_THIS 45 46template class Cache<FALRU>; 47template class Cache<LRU>; | 42#include "mem/cache/cache_impl.hh" 43 44// Template Instantiations 45#ifndef DOXYGEN_SHOULD_SKIP_THIS 46 47template class Cache<FALRU>; 48template class Cache<LRU>; |
49template class Cache<RandomRepl>; |
|
48 49#endif //DOXYGEN_SHOULD_SKIP_THIS | 50 51#endif //DOXYGEN_SHOULD_SKIP_THIS |