lsq_impl.hh (6221:58a3c04e6344) lsq_impl.hh (7823:dac01f14f20f)
1/*
2 * Copyright (c) 2005-2006 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;

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

50#endif
51}
52
53template <class Impl>
54Tick
55LSQ<Impl>::DcachePort::recvAtomic(PacketPtr pkt)
56{
57 panic("O3CPU model does not work with atomic mode!");
1/*
2 * Copyright (c) 2005-2006 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;

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

50#endif
51}
52
53template <class Impl>
54Tick
55LSQ<Impl>::DcachePort::recvAtomic(PacketPtr pkt)
56{
57 panic("O3CPU model does not work with atomic mode!");
58 return curTick;
58 return curTick();
59}
60
61template <class Impl>
62void
63LSQ<Impl>::DcachePort::recvFunctional(PacketPtr pkt)
64{
65 DPRINTF(LSQ, "LSQ doesn't update things on a recvFunctional.");
66}

--- 561 unchanged lines hidden ---
59}
60
61template <class Impl>
62void
63LSQ<Impl>::DcachePort::recvFunctional(PacketPtr pkt)
64{
65 DPRINTF(LSQ, "LSQ doesn't update things on a recvFunctional.");
66}

--- 561 unchanged lines hidden ---