WireBuffer.cc (11116:d6fb95dbf3e2) WireBuffer.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2010 Advanced Micro Devices, Inc.
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Author: Lisa Hsu
29 *
30 */
31
1/*
2 * Copyright (c) 2010 Advanced Micro Devices, Inc.
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Author: Lisa Hsu
29 *
30 */
31
32#include "mem/ruby/structures/WireBuffer.hh"
33
32#include <algorithm>
33#include <functional>
34
35#include "base/cprintf.hh"
36#include "base/stl_helpers.hh"
34#include <algorithm>
35#include <functional>
36
37#include "base/cprintf.hh"
38#include "base/stl_helpers.hh"
37#include "mem/ruby/structures/WireBuffer.hh"
38#include "mem/ruby/system/RubySystem.hh"
39
40using namespace std;
41
42// Output operator definition
43
44ostream&
45operator<<(ostream& out, const WireBuffer& obj)

--- 103 unchanged lines hidden ---
39#include "mem/ruby/system/RubySystem.hh"
40
41using namespace std;
42
43// Output operator definition
44
45ostream&
46operator<<(ostream& out, const WireBuffer& obj)

--- 103 unchanged lines hidden ---