OpenASIP  2.0
ImmediateSlotField.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 ImmediateSlotField.hh
26  *
27  * Declaration of ImmediateSlotField class.
28  *
29  * @author Lasse Laasonen 2005 (lasse.laasonen-no.spam-tut.fi)
30  * @note rating: red
31  */
32 
33 #ifndef TTA_IMMEDIATE_SLOT_FIELD_HH
34 #define TTA_IMMEDIATE_SLOT_FIELD_HH
35 
36 #include "InstructionField.hh"
37 
38 class BinaryEncoding;
39 
40 /**
41  * ImmediateSlotField represents a dedicated immediate slot in TTA
42  * instruction.
43  */
45 public:
47  const std::string& name, int width, BinaryEncoding& parent);
49  virtual ~ImmediateSlotField();
50 
51  BinaryEncoding* parent() const;
52  std::string name() const;
53  void setName(const std::string& name);
54 
55  virtual int childFieldCount() const;
56  virtual int width() const;
57  void setWidth(int width);
58 
59  virtual ObjectState* saveState() const;
60  virtual void loadState(const ObjectState* state);
61 
62  /// ObjectState name for immediate slot field.
63  static const std::string OSNAME_IMMEDIATE_SLOT_FIELD;
64  /// ObjectState attribute key for the name of the immediate slot.
65  static const std::string OSKEY_NAME;
66  /// ObjectState attribute key for the width of the field.
67  static const std::string OSKEY_WIDTH;
68 
69 private:
70  /// Name of the immediate slot.
71  std::string name_;
72  /// The bit width of the field.
73  int width_;
74 };
75 
76 #endif
BinaryEncoding
Definition: BinaryEncoding.hh:61
InstructionField.hh
ImmediateSlotField::saveState
virtual ObjectState * saveState() const
Definition: ImmediateSlotField.cc:193
ImmediateSlotField::OSNAME_IMMEDIATE_SLOT_FIELD
static const std::string OSNAME_IMMEDIATE_SLOT_FIELD
ObjectState name for immediate slot field.
Definition: ImmediateSlotField.hh:63
ObjectState
Definition: ObjectState.hh:59
ImmediateSlotField::ImmediateSlotField
ImmediateSlotField(const std::string &name, int width, BinaryEncoding &parent)
Definition: ImmediateSlotField.cc:57
ImmediateSlotField
Definition: ImmediateSlotField.hh:44
InstructionField
Definition: InstructionField.hh:43
ImmediateSlotField::setWidth
void setWidth(int width)
Definition: ImmediateSlotField.cc:179
ImmediateSlotField::loadState
virtual void loadState(const ObjectState *state)
Definition: ImmediateSlotField.cc:210
ImmediateSlotField::parent
BinaryEncoding * parent() const
Definition: ImmediateSlotField.cc:105
ImmediateSlotField::OSKEY_NAME
static const std::string OSKEY_NAME
ObjectState attribute key for the name of the immediate slot.
Definition: ImmediateSlotField.hh:65
ImmediateSlotField::childFieldCount
virtual int childFieldCount() const
Definition: ImmediateSlotField.cc:156
ImmediateSlotField::OSKEY_WIDTH
static const std::string OSKEY_WIDTH
ObjectState attribute key for the width of the field.
Definition: ImmediateSlotField.hh:67
ImmediateSlotField::width
virtual int width() const
Definition: ImmediateSlotField.cc:167
ImmediateSlotField::setName
void setName(const std::string &name)
Definition: ImmediateSlotField.cc:137
ImmediateSlotField::name
std::string name() const
Definition: ImmediateSlotField.cc:123
ImmediateSlotField::name_
std::string name_
Name of the immediate slot.
Definition: ImmediateSlotField.hh:71
ImmediateSlotField::~ImmediateSlotField
virtual ~ImmediateSlotField()
Definition: ImmediateSlotField.cc:91
ImmediateSlotField::width_
int width_
The bit width of the field.
Definition: ImmediateSlotField.hh:73