OpenASIP  2.0
EditPolicyFactory.icc
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 EditPolicyFactory.icc
26  *
27  * Inline implementation of EditPolicyFactory class.
28  *
29  * @author Veli-Pekka Jääskeläinen 2005 (vjaaskel-no.spam-cs.tut.fi)
30  * @note rating: red
31  */
32 
33 #include "Application.hh"
34 
35 /**
36  * Creates edit policies for function units.
37  *
38  * @return Function unit edit policy.
39  */
40 inline EditPolicy*
41 EditPolicyFactory::createFUEditPolicy() {
42  return NULL;
43 }
44 
45 /**
46  * Creates edit policies for register files.
47  *
48  * @return Register file edit policy.
49  */
50 inline EditPolicy*
51 EditPolicyFactory::createRFEditPolicy() {
52  return NULL;
53 }
54 
55 /**
56  * Creates edit policies for immediate units.
57  *
58  * @return Immediate unit edit policy.
59  */
60 inline EditPolicy*
61 EditPolicyFactory::createIUEditPolicy() {
62  return NULL;
63 }
64 
65 /**
66  * Craetes edit policy for global control unit.
67  *
68  * @return Global control unit edit policy.
69  */
70 inline EditPolicy*
71 EditPolicyFactory::createGCUEditPolicy() {
72  return NULL;
73 }
74 
75 /**
76  * Craetes edit policies for function unit ports.
77  *
78  * @return Function unit port edit policy.
79  */
80 inline EditPolicy*
81 EditPolicyFactory::createFUPortEditPolicy() {
82  return NULL;
83 }
84 
85 /**
86  * Creates edit policies for register file ports.
87  *
88  * @return Register file port edit policy.
89  */
90 inline EditPolicy*
91 EditPolicyFactory::createRFPortEditPolicy() {
92  return NULL;
93 }
94 
95 /**
96  * Creates edit policies for immediate unit ports.
97  *
98  * @return Immediate unit port edit policy.
99  */
100 inline EditPolicy*
101 EditPolicyFactory::createIUPortEditPolicy() {
102  return NULL;
103 }
104 
105 /**
106  * Creates edit policies for special register ports of control units.
107  *
108  * @return Special register port edit policy.
109  */
110 inline EditPolicy*
111 EditPolicyFactory::createSRPortEditPolicy() {
112  return NULL;
113 }
114 
115 /**
116  * Creates edit policies for sockets.
117  *
118  * @return Socket edit policy.
119  */
120 inline EditPolicy*
121 EditPolicyFactory::createSocketEditPolicy() {
122  return NULL;
123 }
124 
125 /**
126  * Creates edit policies for bus sergments.
127  *
128  * @return Segment edit policy.
129  */
130 inline EditPolicy*
131 EditPolicyFactory::createSegmentEditPolicy() {
132  return NULL;
133 }
134 
135 /**
136  * Creates edit policies for bridges.
137  *
138  * @return Bridge edit policy.
139  */
140 inline EditPolicy*
141 EditPolicyFactory::createBridgeEditPolicy() {
142  return NULL;
143 }
144 
145 /**
146  * Creates edit policies for buses.
147  *
148  * @return Bus edit policy.
149  */
150 inline EditPolicy*
151 EditPolicyFactory::createBusEditPolicy() {
152  return NULL;
153 }
154 
155 /**
156  * Creates port edit policies for ports.
157  *
158  * @return Port edit policy.
159  */
160 inline EditPolicy*
161 EditPolicyFactory::createPortEditPolicy() {
162  return NULL;
163 }