fetch_impl.hh (5018:21795007349e) fetch_impl.hh (5489:94a7bb476fca)
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;

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

162 fatal("Invalid Fetch Policy. Options Are: {SingleThread,"
163 " RoundRobin,LSQcount,IQcount}\n");
164 }
165
166 // Get the size of an instruction.
167 instSize = sizeof(TheISA::MachInst);
168
169 // Name is finally available, so create the port.
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;

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

162 fatal("Invalid Fetch Policy. Options Are: {SingleThread,"
163 " RoundRobin,LSQcount,IQcount}\n");
164 }
165
166 // Get the size of an instruction.
167 instSize = sizeof(TheISA::MachInst);
168
169 // Name is finally available, so create the port.
170 icachePort = new IcachePort(this);
170 icachePort = new IcachePort(this, cpu);
171
172 icachePort->snoopRangeSent = false;
173
174#if USE_CHECKER
175 if (cpu->checker) {
176 cpu->checker->setIcachePort(icachePort);
177 }
178#endif

--- 1262 unchanged lines hidden ---
171
172 icachePort->snoopRangeSent = false;
173
174#if USE_CHECKER
175 if (cpu->checker) {
176 cpu->checker->setIcachePort(icachePort);
177 }
178#endif

--- 1262 unchanged lines hidden ---