OpenASIP
2.0
src
applibs
Scheduler
Algorithms
BFScheduleMove.hh
Go to the documentation of this file.
1
/*
2
Copyright (c) 2002-2014 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
/**
26
* @file BFScheduleMove.hh
27
*
28
* Declaration of BFScheduleMove.cc
29
*
30
* Base class of BF framework operrations which scheudle single move.
31
*
32
* @author Heikki Kultala 2014-2020(heikki.kultala-no.spam-tuni.fi)
33
* @note rating: red
34
*/
35
36
#ifndef BF_SCHEDULE_MOVE
37
#define BF_SCHEDULE_MOVE
38
39
#include "
BFOptimization.hh
"
40
41
class
MoveNode
;
42
43
class
BFScheduleMove
:
public
BFOptimization
{
44
public
:
45
BFScheduleMove
(
BF2Scheduler
& sched,
MoveNode
& mn)
46
:
BFOptimization
(sched),
47
mn_
(mn),
createdPrologMove_
(
false
) {}
48
virtual
void
undoOnlyMe
();
49
protected
:
50
MoveNode
&
mn_
;
51
bool
createdPrologMove_
;
52
};
53
54
class
BFSchedule
:
public
BFScheduleMove
{
55
public
:
56
BFSchedule
(
BF2Scheduler
& sched,
MoveNode
& mn,
int
cycle)
57
:
BFScheduleMove
(sched, mn) ,
cycle_
(cycle) {}
58
virtual
bool
operator()
();
59
protected
:
60
int
cycle_
;
61
};
62
63
#endif
BFScheduleMove
Definition:
BFScheduleMove.hh:43
MoveNode
Definition:
MoveNode.hh:65
BFOptimization
Definition:
BFOptimization.hh:73
BFScheduleMove::undoOnlyMe
virtual void undoOnlyMe()
Definition:
BFScheduleMove.cc:41
BFScheduleMove::createdPrologMove_
bool createdPrologMove_
Definition:
BFScheduleMove.hh:51
BFSchedule::BFSchedule
BFSchedule(BF2Scheduler &sched, MoveNode &mn, int cycle)
Definition:
BFScheduleMove.hh:56
BF2Scheduler
Definition:
BF2Scheduler.hh:74
BFScheduleMove::BFScheduleMove
BFScheduleMove(BF2Scheduler &sched, MoveNode &mn)
Definition:
BFScheduleMove.hh:45
false
find Finds info of the inner loops in the false
Definition:
InnerLoopFinder.cc:81
BFSchedule::operator()
virtual bool operator()()
Definition:
BFScheduleMove.cc:50
BFSchedule::cycle_
int cycle_
Definition:
BFScheduleMove.hh:60
BFScheduleMove::mn_
MoveNode & mn_
Definition:
BFScheduleMove.hh:50
BFOptimization.hh
BFSchedule
Definition:
BFScheduleMove.hh:54
Generated by
1.8.17