OpenASIP  2.0
DataSymElement.hh
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 DataSymElement.hh
26  *
27  * Declaration of DataSymElement class.
28  *
29  * @author Mikael Lepistö 2004 (tmlepist-no.spam-cs.tut.fi)
30  *
31  * @note rating: yellow
32  */
33 
34 #ifndef TTA_DATA_SYM_ELEMENT_HH
35 #define TTA_DATA_SYM_ELEMENT_HH
36 
37 #include "SymbolElement.hh"
38 
39 namespace TPEF {
40 
41 class DataSymElement : public SymbolElement {
42  public:
44  virtual ~DataSymElement();
45 
46  virtual SymbolType type() const;
47 
48  Chunk* reference() const;
49  void setReference(Chunk* aReference);
50  void setReference(const ReferenceManager::SafePointer* aReference);
51 
52  Word size() const;
53  void setSize(Word aSize);
54 
55  private:
56  /// Referred object.
58  /// Size of referred object in MAUs.
59  Word size_;
60 };
61 }
62 
63 #endif
TPEF::DataSymElement::setReference
void setReference(Chunk *aReference)
Definition: DataSymElement.cc:81
TPEF::DataSymElement::size_
Word size_
Size of referred object in MAUs.
Definition: DataSymElement.hh:59
TPEF::SymbolElement::SymbolType
SymbolType
Type of symbol element.
Definition: SymbolElement.hh:66
TPEF::DataSymElement::reference_
const ReferenceManager::SafePointer * reference_
Referred object.
Definition: DataSymElement.hh:57
TPEF::DataSymElement::reference
Chunk * reference() const
Definition: DataSymElement.cc:71
TPEF::ReferenceManager::SafePointer
Definition: SafePointer.hh:188
TPEF::SymbolElement
Definition: SymbolElement.hh:52
TPEF::DataSymElement
Definition: DataSymElement.hh:41
TPEF::DataSymElement::type
virtual SymbolType type() const
Definition: DataSymElement.cc:61
TPEF::DataSymElement::~DataSymElement
virtual ~DataSymElement()
Definition: DataSymElement.cc:52
TPEF::DataSymElement::setSize
void setSize(Word aSize)
Definition: DataSymElement.cc:112
SymbolElement.hh
TPEF::DataSymElement::size
Word size() const
Definition: DataSymElement.cc:102
TPEF::DataSymElement::DataSymElement
DataSymElement()
Definition: DataSymElement.cc:43
TPEF::Chunk
Definition: Chunk.hh:45
TPEF
Definition: Assembler.hh:43