iew_impl.hh (2727:91e17c7ee622) iew_impl.hh (2731:822b96578fba)
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;

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

574
575template <class Impl>
576unsigned
577DefaultIEW<Impl>::validInstsFromRename()
578{
579 unsigned inst_count = 0;
580
581 for (int i=0; i<fromRename->size; i++) {
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;

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

574
575template <class Impl>
576unsigned
577DefaultIEW<Impl>::validInstsFromRename()
578{
579 unsigned inst_count = 0;
580
581 for (int i=0; i<fromRename->size; i++) {
582 if (!fromRename->insts[i]->squashed)
582 if (!fromRename->insts[i]->isSquashed())
583 inst_count++;
584 }
585
586 return inst_count;
587}
588
589template<class Impl>
590void

--- 923 unchanged lines hidden ---
583 inst_count++;
584 }
585
586 return inst_count;
587}
588
589template<class Impl>
590void

--- 923 unchanged lines hidden ---