scoreboard.hh (8229:78bf55f23338) scoreboard.hh (8232:b28d06a175be)
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;

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

32#ifndef __CPU_O3_SCOREBOARD_HH__
33#define __CPU_O3_SCOREBOARD_HH__
34
35#include <iostream>
36#include <utility>
37#include <vector>
38
39#include "base/trace.hh"
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;

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

32#ifndef __CPU_O3_SCOREBOARD_HH__
33#define __CPU_O3_SCOREBOARD_HH__
34
35#include <iostream>
36#include <utility>
37#include <vector>
38
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
47 * the fp registers.
48 * @todo: Fix up handling of the zero register in case the decoder does not

--- 84 unchanged lines hidden ---
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
46 * the fp registers.
47 * @todo: Fix up handling of the zero register in case the decoder does not

--- 84 unchanged lines hidden ---