443a444,454
> bool
> InstructionQueue<Impl>::isDrained() const
> {
> bool drained = dependGraph.empty() && instsToExecute.empty();
> for (ThreadID tid = 0; tid < numThreads; ++tid)
> drained = drained && memDepUnit[tid].isDrained();
>
> return drained;
> }
>
> template <class Impl>