OpenASIP 2.2
Loading...
Searching...
No Matches
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
34namespace TPEF {
35
36/**
37 * Returns bitwidth of minimum addressable unit.
38 *
39 * @return Bitwidth of minimum addressable unit.
40 */
41inline Byte
42ASpaceElement::MAU() const {
43 return mau_;
44}
45
46/**
47 * Sets bitwidth of minimum addressable unit.
48 *
49 * @param aMAU Bitwidth to set.
50 */
51inline void
52ASpaceElement::setMAU(Byte aMAU) {
53 mau_ = aMAU;
54}
55
56/**
57 * Returns aligment of natural word.
58 *
59 * @return Aligment in MAU units.
60 */
61inline Byte
62ASpaceElement::align() const {
63 return align_;
64}
65
66/**
67 * Sets aligment.
68 *
69 * @param aAlign Aligment of address space in MAU units.
70 */
71inline void
72ASpaceElement::setAlign(Byte aAlign) {
73 align_ = aAlign;
74}
75
76/**
77 * Returns word size.
78 *
79 * @return Word size in MAU units.
80 */
81inline Byte
82ASpaceElement::wordSize() const {
83 return wSize_;
84}
85
86/**
87 * Sets word size.
88 *
89 * @param aWordSize Word size in MAU units.
90 */
91inline void
92ASpaceElement::setWordSize(Byte aWordSize) {
93 wSize_ = aWordSize;
94}
95
96/**
97 * Sets name.
98 *
99 * @param aName Reference to string table element.
100 */
101inline void
102ASpaceElement::setName(const ReferenceManager::SafePointer* aName) {
103 name_ = aName;
104}
105
106/**
107 * Sets name.
108 *
109 * @param aName Reference to string table element.
110 */
111inline void
112ASpaceElement::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 */
121inline Chunk*
122ASpaceElement::name() const {
123 return dynamic_cast<Chunk*>(name_->pointer());
124}
125
126}