OpenASIP  2.0
FUEntry.cc
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 FUEntry.cc
26  *
27  * Implementation of FUEntry class.
28  *
29  * @author Lasse Laasonen 2005 (lasse.laasonen-no.spam-tut.fi)
30  * @note rating: red
31  */
32 
33 #include <string>
34 
35 #include "FUEntry.hh"
36 #include "FUArchitecture.hh"
37 #include "FUImplementation.hh"
38 #include "Application.hh"
39 
40 using std::string;
41 
42 namespace HDB {
43 
44 /**
45  * The constructor.
46  *
47  * Creates an FU entry without ID, implementation, architecture and
48  * cost function.
49  */
51  HDBEntry(), architecture_(NULL), implementation_(NULL) {
52 }
53 
54 
55 /**
56  * The destructor.
57  */
59  if (hasArchitecture()) {
60  delete architecture_;
61  }
62  if (hasImplementation()) {
63  delete implementation_;
64  }
65 }
66 
67 
68 /**
69  * Tells whether the entry contains implementation data.
70  *
71  * @return True if the entry contains implementation data, otherwise false.
72  */
73 bool
75  return implementation_ != NULL;
76 }
77 
78 
79 /**
80  * Returns the implementation of the entry.
81  *
82  * @return The implementation.
83  * @exception NotAvailable If there is no implementation of the entry.
84  */
87  if (!hasImplementation()) {
88  const string procName = "FUEntry::implementation";
89  throw NotAvailable(__FILE__, __LINE__, procName);
90  }
91 
92  return *implementation_;
93 }
94 
95 /**
96  * Sets the given implementation for the entry.
97  *
98  * Deletes old implementation if one exists.
99  *
100  * @param implementation The implementation.
101  */
102 void
104  if (hasImplementation()) {
105  delete implementation_;
106  }
108 }
109 
110 
111 /**
112  * Tells whether the entry contains architecture data.
113  *
114  * @return True if the entry contains architecture data, otherwise false.
115  */
116 bool
118  return architecture_ != NULL;
119 }
120 
121 
122 /**
123  * Returns the architecture of the entry.
124  *
125  * @return Architecture of the entry.
126  * @exception NotAvailable If the entry doesn't have architecture.
127  */
130  if (!hasArchitecture()) {
131  const string procName = "FUEntry::architecture";
132  throw NotAvailable(__FILE__, __LINE__, procName);
133  }
134 
135  return *architecture_;
136 }
137 
138 /**
139  * Sets architecture of the entry.
140  *
141  * Deletes the old architecture if one exists.
142  *
143  * @param architecture The new architecture.
144  */
145 void
147  if (hasArchitecture()) {
148  delete architecture_;
149  }
151 }
152 }
HDB::FUArchitecture
Definition: FUArchitecture.hh:55
HDB
Definition: CostDatabase.hh:49
implementation
IDF::MachineImplementation * implementation
the implementation definition of the estimated processor
Definition: EstimatorCmdLineUI.cc:61
FUArchitecture.hh
HDB::HDBEntry
Definition: HDBEntry.hh:46
NotAvailable
Definition: Exception.hh:728
HDB::FUEntry::architecture_
FUArchitecture * architecture_
Architecture of the entry.
Definition: FUEntry.hh:64
HDB::FUEntry::FUEntry
FUEntry()
Definition: FUEntry.cc:50
HDB::FUEntry::hasArchitecture
virtual bool hasArchitecture() const
Definition: FUEntry.cc:117
HDB::FUEntry::architecture
FUArchitecture & architecture() const
Definition: FUEntry.cc:129
Application.hh
FUEntry.hh
FUImplementation.hh
HDB::FUImplementation
Definition: FUImplementation.hh:53
HDB::FUEntry::setImplementation
void setImplementation(FUImplementation *implementation)
Definition: FUEntry.cc:103
HDB::FUEntry::setArchitecture
void setArchitecture(FUArchitecture *architecture)
Definition: FUEntry.cc:146
HDB::FUEntry::hasImplementation
virtual bool hasImplementation() const
Definition: FUEntry.cc:74
HDB::FUEntry::~FUEntry
virtual ~FUEntry()
Definition: FUEntry.cc:58
HDB::FUEntry::implementation
FUImplementation & implementation() const
Definition: FUEntry.cc:86
HDB::FUEntry::implementation_
FUImplementation * implementation_
Implementation of the entry.
Definition: FUEntry.hh:66