cache.cc (10263:c00b5ba43967) cache.cc (10815:169af9a2779f)
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;

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

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"
42#include "mem/cache/cache_impl.hh"
43
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;

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

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"
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>;
50
51#endif //DOXYGEN_SHOULD_SKIP_THIS