OpenASIP 2.2
Loading...
Searching...
No Matches
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
40class 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 */
46class Encoding {
47public:
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
70protected:
72 unsigned int encoding,
73 unsigned int extraBits,
77 void setEncoding(unsigned int encoding, unsigned int extraBits);
78
79private:
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
unsigned int encoding_
The encoding.
Definition Encoding.hh:81
static const std::string OSKEY_EXTRA_BITS
ObjectState attribute key for the number of extra bits.
Definition Encoding.hh:68
static const std::string OSNAME_ENCODING
ObjectState name for Encoding class.
Definition Encoding.hh:64
unsigned int extraBits() const
Definition Encoding.cc:119
virtual ObjectState * saveState() const
Definition Encoding.cc:141
InstructionField * parent() const
Definition Encoding.cc:97
InstructionField * parent_
The parent instruction field.
Definition Encoding.hh:85
static const std::string OSKEY_ENCODING
ObjectState attribute key for the encoding.
Definition Encoding.hh:66
virtual int width() const
Definition Encoding.cc:130
virtual ~Encoding()
Definition Encoding.cc:87
void setEncoding(unsigned int encoding, unsigned int extraBits)
Definition Encoding.cc:163
void setParent(InstructionField *parent)
Definition Encoding.cc:155
unsigned int extraBits_
The number of extra bits.
Definition Encoding.hh:83
virtual int bitPosition() const =0
unsigned int encoding() const
Definition Encoding.cc:108