mem_dep_unit.cc (2817:273f7fb94f83) mem_dep_unit.cc (2818:a2b6429690b6)
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;

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

28 * Authors: Kevin Lim
29 */
30
31#include "cpu/o3/isa_specific.hh"
32#include "cpu/o3/store_set.hh"
33#include "cpu/o3/mem_dep_unit_impl.hh"
34
35// Force instantation of memory dependency unit using store sets and
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;

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

28 * Authors: Kevin Lim
29 */
30
31#include "cpu/o3/isa_specific.hh"
32#include "cpu/o3/store_set.hh"
33#include "cpu/o3/mem_dep_unit_impl.hh"
34
35// Force instantation of memory dependency unit using store sets and
36// AlphaSimpleImpl.
37template class MemDepUnit<StoreSet, AlphaSimpleImpl>;
36// O3CPUImpl.
37template class MemDepUnit<StoreSet, O3CPUImpl>;
38
39#ifdef DEBUG
40template <>
41int
38
39#ifdef DEBUG
40template <>
41int
42MemDepUnit<StoreSet, AlphaSimpleImpl>::MemDepEntry::memdep_count = 0;
42MemDepUnit<StoreSet, O3CPUImpl>::MemDepEntry::memdep_count = 0;
43template <>
44int
43template <>
44int
45MemDepUnit<StoreSet, AlphaSimpleImpl>::MemDepEntry::memdep_insert = 0;
45MemDepUnit<StoreSet, O3CPUImpl>::MemDepEntry::memdep_insert = 0;
46template <>
47int
46template <>
47int
48MemDepUnit<StoreSet, AlphaSimpleImpl>::MemDepEntry::memdep_erase = 0;
48MemDepUnit<StoreSet, O3CPUImpl>::MemDepEntry::memdep_erase = 0;
49#endif
49#endif