OpenASIP  2.0
Encoding.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 Encoding.hh
26  *
27  * Declaration of Encoding class.
28  *
29  * @author Lasse Laasonen 2005 (lasse.laasonen-no.spam-tut.fi)
30  * @note rating: red
31  */
32 
33 #ifndef TTA_ENCODING_HH
34 #define TTA_ENCODING_HH
35 
36 #include <string>
37 #include "Exception.hh"
38 
39 class InstructionField;
40 class ObjectState;
41 
42 /**
43  * Represents an encoding of a source of destination within a move slot.
44  * This is a base class for different encodings.
45  */
46 class Encoding {
47 public:
48  virtual ~Encoding();
49 
50  InstructionField* parent() const;
51 
52  unsigned int encoding() const;
53  unsigned int extraBits() const;
54  virtual int width() const;
55 
56  /**
57  * Returns the position of the encoding within the parent field.
58  */
59  virtual int bitPosition() const = 0;
60 
61  virtual ObjectState* saveState() const;
62 
63  /// ObjectState name for Encoding class.
64  static const std::string OSNAME_ENCODING;
65  /// ObjectState attribute key for the encoding.
66  static const std::string OSKEY_ENCODING;
67  /// ObjectState attribute key for the number of extra bits.
68  static const std::string OSKEY_EXTRA_BITS;
69 
70 protected:
71  Encoding(
72  unsigned int encoding,
73  unsigned int extraBits,
77  void setEncoding(unsigned int encoding, unsigned int extraBits);
78 
79 private:
80  /// The encoding.
81  unsigned int encoding_;
82  /// The number of extra bits.
83  unsigned int extraBits_;
84  /// The parent instruction field.
86 };
87 
88 #endif
Encoding::OSNAME_ENCODING
static const std::string OSNAME_ENCODING
ObjectState name for Encoding class.
Definition: Encoding.hh:64
Exception.hh
Encoding::setEncoding
void setEncoding(unsigned int encoding, unsigned int extraBits)
Definition: Encoding.cc:163
Encoding::setParent
void setParent(InstructionField *parent)
Definition: Encoding.cc:155
Encoding::parent
InstructionField * parent() const
Definition: Encoding.cc:97
ObjectState
Definition: ObjectState.hh:59
InstructionField
Definition: InstructionField.hh:43
Encoding
Definition: Encoding.hh:46
Encoding::width
virtual int width() const
Definition: Encoding.cc:130
Encoding::OSKEY_ENCODING
static const std::string OSKEY_ENCODING
ObjectState attribute key for the encoding.
Definition: Encoding.hh:66
Encoding::encoding
unsigned int encoding() const
Definition: Encoding.cc:108
Encoding::OSKEY_EXTRA_BITS
static const std::string OSKEY_EXTRA_BITS
ObjectState attribute key for the number of extra bits.
Definition: Encoding.hh:68
Encoding::saveState
virtual ObjectState * saveState() const
Definition: Encoding.cc:141
Encoding::Encoding
Encoding(unsigned int encoding, unsigned int extraBits, InstructionField *parent)
Definition: Encoding.cc:53
Encoding::parent_
InstructionField * parent_
The parent instruction field.
Definition: Encoding.hh:85
Encoding::encoding_
unsigned int encoding_
The encoding.
Definition: Encoding.hh:81
Encoding::extraBits_
unsigned int extraBits_
The number of extra bits.
Definition: Encoding.hh:83
Encoding::bitPosition
virtual int bitPosition() const =0
Encoding::~Encoding
virtual ~Encoding()
Definition: Encoding.cc:87
Encoding::extraBits
unsigned int extraBits() const
Definition: Encoding.cc:119