OpenASIP  2.0
SchedulerPass.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 SchedulerPass.cc
26  *
27  * Definition of SchedulerPass class.
28  *
29  * @author Pekka Jääskeläinen 2006 (pjaaskel-no.spam-cs.tut.fi)
30  * @note rating: red
31  */
32 
33 #include "SchedulerPass.hh"
34 
35 /**
36  * Constructor.
37  *
38  * @param data The container that stores data passed between scheduler passes.
39  */
41  data_(&data) {
42 }
43 
44 /**
45  * Returns the inter-pass data container that can be used by the pass.
46  *
47  * The object is a generic container for data passed between
48  * scheduler passes.
49  *
50  * @param data The data object.
51  */
54  return *data_;
55 }
56 
57 /**
58  * A short description of the pass, usually the optimization name,
59  * such as "basic block scheduler".
60  *
61  * @return The description as a string.
62  */
63 std::string
65  return "";
66 }
67 
68 /**
69  * Optional longer description of the pass.
70  *
71  * This description can include usage instructions, details of choice of
72  * algorithmic details, etc.
73  *
74  * @return The description as a string.
75  */
76 std::string
78  return "";
79 }
SchedulerPass.hh
SchedulerPass::SchedulerPass
SchedulerPass(InterPassData &data)
Definition: SchedulerPass.cc:40
InterPassData
Definition: InterPassData.hh:48
SchedulerPass::longDescription
virtual std::string longDescription() const
Definition: SchedulerPass.cc:77
SchedulerPass::data_
InterPassData * data_
arbitrary data stored by different passes for inter-pass communication
Definition: SchedulerPass.hh:55
SchedulerPass::interPassData
InterPassData & interPassData()
Definition: SchedulerPass.cc:53
SchedulerPass::shortDescription
virtual std::string shortDescription() const =0
Definition: SchedulerPass.cc:64