Deleted Added
sdiff udiff text old ( 10333:6be8945d226b ) new ( 10510:7e54a9a9f6b2 )
full compact
1/*
2 * Copyright (c) 2011-2014 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

436InstructionQueue<Impl>::setTimeBuffer(TimeBuffer<TimeStruct> *tb_ptr)
437{
438 timeBuffer = tb_ptr;
439
440 fromCommit = timeBuffer->getWire(-commitToIEWDelay);
441}
442
443template <class Impl>
444void
445InstructionQueue<Impl>::drainSanityCheck() const
446{
447 assert(dependGraph.empty());
448 assert(instsToExecute.empty());
449 for (ThreadID tid = 0; tid < numThreads; ++tid)
450 memDepUnit[tid].drainSanityCheck();
451}

--- 1111 unchanged lines hidden ---