OpenASIP 2.2
Loading...
Searching...
No Matches
RFEntry.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 RFEntry.cc
26 *
27 * Implementation of RFEntry 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 "RFEntry.hh"
36#include "RFArchitecture.hh"
37#include "RFImplementation.hh"
38#include "Application.hh"
39
40using std::string;
41
42namespace HDB {
43
44/**
45 * The constructor.
46 *
47 * Creates an empty RF entry without ID, architecture, implementation 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 has a hardware implementation.
70 *
71 * @return True if the entry has a hardware implementation, otherwise false.
72 */
73bool
75 return implementation_ != NULL;
76}
77
78
79/**
80 * Sets implementation for the entry.
81 *
82 * Deletes the old implementation if one exists.
83 *
84 * @param implementation The new implementation.
85 */
86void
93
94
95/**
96 * Returns the implementation of the entry.
97 *
98 * @return The implementation.
99 * @exception NotAvailable If there is no implementation.
100 */
103 if (!hasImplementation()) {
104 const string procName = "RFEntry::implementation";
105 throw NotAvailable(__FILE__, __LINE__, procName);
106 }
107
108 return *implementation_;
109}
110
111/**
112 * Tells whether the RF entry has an architecture.
113 *
114 * @return True if the RF entry has an architecture, otherwise false.
115 */
116bool
118 return architecture_ != NULL;
119}
120
121
122/**
123 * Sets new architecture for the entry.
124 *
125 * Deletes the old architecture if one exists.
126 *
127 * @param architecture The new architecture.
128 */
129void
131 if (hasArchitecture()) {
132 delete architecture_;
133 }
135}
136
137
138/**
139 * Returns the architecture of the entry.
140 *
141 * @return The architecture.
142 * @exception NotAvailable If the entry doesn't have an architecture.
143 */
146 if (!hasArchitecture()) {
147 const string procName = "RFEntry::architecture";
148 throw NotAvailable(__FILE__, __LINE__, procName);
149 }
150
151 return *architecture_;
152}
153}
IDF::MachineImplementation * implementation
the implementation definition of the estimated processor
void setImplementation(RFImplementation *implementation)
Definition RFEntry.cc:87
virtual bool hasImplementation() const
Definition RFEntry.cc:74
RFArchitecture & architecture() const
Definition RFEntry.cc:145
virtual bool hasArchitecture() const
Definition RFEntry.cc:117
RFImplementation & implementation() const
Definition RFEntry.cc:102
RFArchitecture * architecture_
Architecture of the entry.
Definition RFEntry.hh:62
void setArchitecture(RFArchitecture *architecture)
Definition RFEntry.cc:130
RFImplementation * implementation_
Implementation of the entry.
Definition RFEntry.hh:64
virtual ~RFEntry()
Definition RFEntry.cc:58