rob_impl.hh (9444:ab47fe7f03f0) rob_impl.hh (9550:e0e2c8f83d08)
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

399 }
400}
401
402
403template <class Impl>
404void
405ROB<Impl>::updateHead()
406{
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

399 }
400}
401
402
403template <class Impl>
404void
405ROB<Impl>::updateHead()
406{
407 DynInstPtr head_inst;
408 InstSeqNum lowest_num = 0;
409 bool first_valid = true;
410
411 // @todo: set ActiveThreads through ROB or CPU
412 list<ThreadID>::iterator threads = activeThreads->begin();
413 list<ThreadID>::iterator end = activeThreads->end();
414
415 while (threads != end) {

--- 148 unchanged lines hidden ---
407 InstSeqNum lowest_num = 0;
408 bool first_valid = true;
409
410 // @todo: set ActiveThreads through ROB or CPU
411 list<ThreadID>::iterator threads = activeThreads->begin();
412 list<ThreadID>::iterator end = activeThreads->end();
413
414 while (threads != end) {

--- 148 unchanged lines hidden ---