iew_impl.hh (2843:19c4c6c2b5b1) iew_impl.hh (2863:2592e056dc5c)
1/*
2 * Copyright (c) 2004-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;

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

349void
350DefaultIEW<Impl>::setScoreboard(Scoreboard *sb_ptr)
351{
352 DPRINTF(IEW, "Setting scoreboard pointer.\n");
353 scoreboard = sb_ptr;
354}
355
356template <class Impl>
1/*
2 * Copyright (c) 2004-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;

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

349void
350DefaultIEW<Impl>::setScoreboard(Scoreboard *sb_ptr)
351{
352 DPRINTF(IEW, "Setting scoreboard pointer.\n");
353 scoreboard = sb_ptr;
354}
355
356template <class Impl>
357void
357bool
358DefaultIEW<Impl>::drain()
359{
360 // IEW is ready to drain at any time.
361 cpu->signalDrained();
358DefaultIEW<Impl>::drain()
359{
360 // IEW is ready to drain at any time.
361 cpu->signalDrained();
362 return true;
362}
363
364template <class Impl>
365void
366DefaultIEW<Impl>::resume()
367{
368}
369

--- 1159 unchanged lines hidden ---
363}
364
365template <class Impl>
366void
367DefaultIEW<Impl>::resume()
368{
369}
370

--- 1159 unchanged lines hidden ---