Address.cc (6154:6bb54dcb940e) Address.cc (7039:bc0b6ea676b5)
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;

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

22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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
30/*
31 * $Id$
32 */
33
34#include "mem/ruby/common/Address.hh"
35
29#include "mem/ruby/common/Address.hh"
30
36void Address::output(ostream& out) const
31void
32Address::output(ostream& out) const
37{
33{
38 // Note: this outputs addresses in the form "ffff", not "0xffff".
39 // This code should always be able to write out addresses in a
40 // format that can be read in by the below input() method. Please
41 // don't change this without talking to Milo first.
42 out << hex << m_address << dec;
34 // Note: this outputs addresses in the form "ffff", not "0xffff".
35 // This code should always be able to write out addresses in a
36 // format that can be read in by the below input() method. Please
37 // don't change this without talking to Milo first.
38 out << hex << m_address << dec;
43}
44
39}
40
45void Address::input(istream& in)
41void
42Address::input(istream& in)
46{
43{
47 // Note: this only works with addresses in the form "ffff", not
48 // "0xffff". This code should always be able to read in addresses
49 // written out by the above output() method. Please don't change
50 // this without talking to Milo first.
51 in >> hex >> m_address >> dec;
44 // Note: this only works with addresses in the form "ffff", not
45 // "0xffff". This code should always be able to read in addresses
46 // written out by the above output() method. Please don't change
47 // this without talking to Milo first.
48 in >> hex >> m_address >> dec;
52}
53
54Address::Address(const Address& obj)
55{
49}
50
51Address::Address(const Address& obj)
52{
56 m_address = obj.m_address;
53 m_address = obj.m_address;
57}
58
54}
55
59Address& Address::operator=(const Address& obj)
56Address&
57Address::operator=(const Address& obj)
60{
58{
61 if (this == &obj) {
62 // assert(false);
63 } else {
64 m_address = obj.m_address;
65 }
66 return *this;
59 if (this == &obj) {
60 // assert(false);
61 } else {
62 m_address = obj.m_address;
63 }
64 return *this;
67}
68
65}
66