commit.hh (7720:65d338a8dba4) commit.hh (7784:e7649570ff3a)
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;

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

240 void squashAll(ThreadID tid);
241
242 /** Handles squashing due to a trap. */
243 void squashFromTrap(ThreadID tid);
244
245 /** Handles squashing due to an TC write. */
246 void squashFromTC(ThreadID tid);
247
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;

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

240 void squashAll(ThreadID tid);
241
242 /** Handles squashing due to a trap. */
243 void squashFromTrap(ThreadID tid);
244
245 /** Handles squashing due to an TC write. */
246 void squashFromTC(ThreadID tid);
247
248 /** Handles squashing from instruction with SquashAfter set.
249 * This differs from the other squashes as it squashes following
250 * instructions instead of the current instruction and doesn't
251 * clean up various status bits about traps/tc writes pending.
252 */
253 void squashAfter(ThreadID tid, uint64_t squash_after_seq_num);
254
248#if FULL_SYSTEM
249 /** Handles processing an interrupt. */
250 void handleInterrupt();
251#endif // FULL_SYSTEM
252
253 /** Commits as many instructions as possible. */
254 void commitInsts();
255

--- 203 unchanged lines hidden ---
255#if FULL_SYSTEM
256 /** Handles processing an interrupt. */
257 void handleInterrupt();
258#endif // FULL_SYSTEM
259
260 /** Commits as many instructions as possible. */
261 void commitInsts();
262

--- 203 unchanged lines hidden ---