scoreboard.hh (2935:d1223a6c9156) scoreboard.hh (2980:eab855f06b79)
1/*
2 * Copyright (c) 2005-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;

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

30 */
31
32#ifndef __CPU_O3_SCOREBOARD_HH__
33#define __CPU_O3_SCOREBOARD_HH__
34
35#include <iostream>
36#include <utility>
37#include <vector>
1/*
2 * Copyright (c) 2005-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;

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

30 */
31
32#ifndef __CPU_O3_SCOREBOARD_HH__
33#define __CPU_O3_SCOREBOARD_HH__
34
35#include <iostream>
36#include <utility>
37#include <vector>
38#include "arch/isa_traits.hh"
39#include "base/trace.hh"
40#include "base/traceflags.hh"
41#include "cpu/o3/comm.hh"
42
43/**
44 * Implements a simple scoreboard to track which registers are ready.
45 * This class assumes that the fp registers start, index wise, right after
46 * the integer registers. The misc. registers start, index wise, right after

--- 71 unchanged lines hidden ---
38#include "base/trace.hh"
39#include "base/traceflags.hh"
40#include "cpu/o3/comm.hh"
41
42/**
43 * Implements a simple scoreboard to track which registers are ready.
44 * This class assumes that the fp registers start, index wise, right after
45 * the integer registers. The misc. registers start, index wise, right after

--- 71 unchanged lines hidden ---