Deleted Added
sdiff udiff text old ( 7897:d9e8b1fd1a9f ) new ( 8230:845c8eb5ac49 )
full compact
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;

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

31
32#ifndef __CPU_O3_ROB_HH__
33#define __CPU_O3_ROB_HH__
34
35#include <string>
36#include <utility>
37#include <vector>
38
39#include "arch/registers.hh"
40#include "base/types.hh"
41#include "config/the_isa.hh"
42
43/**
44 * ROB class. The ROB is largely what drives squashing.
45 */
46template <class Impl>
47class ROB
48{

--- 279 unchanged lines hidden ---