OpenASIP  2.0
ASpaceElement.icc
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2009 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 /**
25  * @file ASpaceElement.icc
26  *
27  * Inline definitions of ASpaceElement class.
28  *
29  * @author Mikael Lepistö 2003 (tmlepist-no.spam-cs.tut.fi)
30  *
31  * @note rating: yellow
32  */
33 
34 namespace TPEF {
35 
36 /**
37  * Returns bitwidth of minimum addressable unit.
38  *
39  * @return Bitwidth of minimum addressable unit.
40  */
41 inline Byte
42 ASpaceElement::MAU() const {
43  return mau_;
44 }
45 
46 /**
47  * Sets bitwidth of minimum addressable unit.
48  *
49  * @param aMAU Bitwidth to set.
50  */
51 inline void
52 ASpaceElement::setMAU(Byte aMAU) {
53  mau_ = aMAU;
54 }
55 
56 /**
57  * Returns aligment of natural word.
58  *
59  * @return Aligment in MAU units.
60  */
61 inline Byte
62 ASpaceElement::align() const {
63  return align_;
64 }
65 
66 /**
67  * Sets aligment.
68  *
69  * @param aAlign Aligment of address space in MAU units.
70  */
71 inline void
72 ASpaceElement::setAlign(Byte aAlign) {
73  align_ = aAlign;
74 }
75 
76 /**
77  * Returns word size.
78  *
79  * @return Word size in MAU units.
80  */
81 inline Byte
82 ASpaceElement::wordSize() const {
83  return wSize_;
84 }
85 
86 /**
87  * Sets word size.
88  *
89  * @param aWordSize Word size in MAU units.
90  */
91 inline void
92 ASpaceElement::setWordSize(Byte aWordSize) {
93  wSize_ = aWordSize;
94 }
95 
96 /**
97  * Sets name.
98  *
99  * @param aName Reference to string table element.
100  */
101 inline void
102 ASpaceElement::setName(const ReferenceManager::SafePointer* aName) {
103  name_ = aName;
104 }
105 
106 /**
107  * Sets name.
108  *
109  * @param aName Reference to string table element.
110  */
111 inline void
112 ASpaceElement::setName(Chunk* aName) {
113  name_ = ReferenceManager::SafePointer::replaceReference(name_, aName);
114 }
115 
116 /**
117  * Returns name.
118  *
119  * @return String table element of name.
120  */
121 inline Chunk*
122 ASpaceElement::name() const {
123  return dynamic_cast<Chunk*>(name_->pointer());
124 }
125 
126 }