Deleted Added
sdiff udiff text old ( 7767:bf5377d8f5c1 ) new ( 7854:3c6783497976 )
full compact
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;
9 * redistributions in binary form must reproduce the above copyright

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

1039
1040 inst->flattenDestReg(dest_idx, flat_dest_reg);
1041
1042 // Get the physical register that the destination will be
1043 // renamed to.
1044 rename_result = renameMap[tid]->rename(flat_dest_reg);
1045
1046 //Mark Scoreboard entry as not ready
1047 scoreboard->unsetReg(rename_result.first);
1048
1049 DPRINTF(Rename, "[tid:%u]: Renaming arch reg %i to physical "
1050 "reg %i.\n", tid, (int)flat_dest_reg,
1051 (int)rename_result.first);
1052
1053 // Record the rename information so that a history can be kept.
1054 RenameHistory hb_entry(inst->seqNum, flat_dest_reg,
1055 rename_result.first,

--- 325 unchanged lines hidden ---