store_set.hh (2980:eab855f06b79) store_set.hh (6214:1ec0ec8933ae)
1/*
2 * Copyright (c) 2004-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;

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

32#define __CPU_O3_STORE_SET_HH__
33
34#include <list>
35#include <map>
36#include <utility>
37#include <vector>
38
39#include "cpu/inst_seq.hh"
1/*
2 * Copyright (c) 2004-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;

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

32#define __CPU_O3_STORE_SET_HH__
33
34#include <list>
35#include <map>
36#include <utility>
37#include <vector>
38
39#include "cpu/inst_seq.hh"
40#include "sim/host.hh"
40#include "base/types.hh"
41
42struct ltseqnum {
43 bool operator()(const InstSeqNum &lhs, const InstSeqNum &rhs) const
44 {
45 return lhs > rhs;
46 }
47};
48

--- 99 unchanged lines hidden ---
41
42struct ltseqnum {
43 bool operator()(const InstSeqNum &lhs, const InstSeqNum &rhs) const
44 {
45 return lhs > rhs;
46 }
47};
48

--- 99 unchanged lines hidden ---