timing.hh (7944:1daf51f62013) timing.hh (7945:32758425de8c)
1/*
2 * Copyright (c) 2002-2005 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;

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

104
105 public:
106 FetchTranslation(TimingSimpleCPU *_cpu)
107 : cpu(_cpu)
108 {}
109
110 void
111 markDelayed()
1/*
2 * Copyright (c) 2002-2005 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;

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

104
105 public:
106 FetchTranslation(TimingSimpleCPU *_cpu)
107 : cpu(_cpu)
108 {}
109
110 void
111 markDelayed()
112 {}
112 {
113 assert(cpu->_status == Running);
114 cpu->_status = ITBWaitResponse;
115 }
113
114 void
115 finish(Fault fault, RequestPtr req, ThreadContext *tc,
116 BaseTLB::Mode mode)
117 {
118 cpu->sendFetch(fault, req, tc);
119 }
120 };

--- 187 unchanged lines hidden ---
116
117 void
118 finish(Fault fault, RequestPtr req, ThreadContext *tc,
119 BaseTLB::Mode mode)
120 {
121 cpu->sendFetch(fault, req, tc);
122 }
123 };

--- 187 unchanged lines hidden ---