OpenASIP  2.0
CFGStatistics.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 CFGStatistics.cc
26  *
27  * Implementation of prototype class that collects statistics about
28  * control flow graph.
29  *
30  * @author Vladimir Guzma 2007 (vladimir.guzma-no.spam-tut.fi)
31  * @note rating: red
32  */
33 
34 #include "CFGStatistics.hh"
35 /**
36  * Constructor, creates statistics structure with zero content.
37  */
39  BasicBlockStatistics(),
40  normalBBCount_(0),
41  maxMoveCount_(0),
42  maxImmediateCount_(0),
43  maxInstructionCount_(0),
44  maxBypassCount_(0) {
45 }
46 
47 /**
48  * To remove compile warning.
49  */
51 }
52 
53 /**
54  * Returns maximum move count from statistics object.
55  * @return count of moves of largest BB
56  */
57 int
59  return maxMoveCount_;
60 }
61 /**
62  * Returns immediate count from statistics object for largest BB.
63  * @return count of immediates stored in object
64  */
65 int
67  return maxImmediateCount_;
68 }
69 /**
70  * Returns instruction count from statistics object for largest BB.
71  * @return count of instructions stored in object
72  */
73 int
75  return maxInstructionCount_;
76 }
77 /**
78  * Returns bypassed move count from statistics object for largest BB.
79  * @return count of bypassed moves stored in object
80  */
81 int
83  return maxBypassCount_;
84 }
85 
86 /**
87  * Returns the number of basic blocks in procedure.
88  */
89 int
91  return normalBBCount_;
92 }
93 /**
94  * Sets the move count in statistic object.
95  *
96  * @param count number of moves to store in object
97  */
98 void
100  maxMoveCount_ = count;
101 }
102 /**
103  * Sets the immediate count in statistic object.
104  *
105  * @param count number of immediates to store in object
106  */
107 
108 void
110  maxImmediateCount_ = count;
111 }
112 /**
113  * Sets the instruction count in statistic object.
114  *
115  * @param count number of instructions to store in object
116  */
117 
118 void
120  maxInstructionCount_ = count;
121 }
122 /**
123  * Sets the bypassed move count in statistic object.
124  *
125  * @param count number of bypassed moves to store in object
126  */
127 void
129  maxBypassCount_ = count;
130 }
131 
132 /**
133  * Sets count of basic blocks in procedure into statistics object.
134  *
135  * @param count number of basic blocks in procedure.
136  */
137 void
139  normalBBCount_ = count;
140 }
CFGStatistics::maxBypassedCount
virtual int maxBypassedCount() const
Definition: CFGStatistics.cc:82
CFGStatistics::maxMoveCount
virtual int maxMoveCount() const
Definition: CFGStatistics.cc:58
CFGStatistics::maxInstructionCount_
int maxInstructionCount_
Definition: CFGStatistics.hh:63
CFGStatistics::maxMoveCount_
int maxMoveCount_
Definition: CFGStatistics.hh:61
CFGStatistics::maxInstructionCount
virtual int maxInstructionCount() const
Definition: CFGStatistics.cc:74
CFGStatistics::setNormalBBCount
virtual void setNormalBBCount(int)
Definition: CFGStatistics.cc:138
CFGStatistics::normalBBCount
virtual int normalBBCount() const
Definition: CFGStatistics.cc:90
CFGStatistics::CFGStatistics
CFGStatistics()
Definition: CFGStatistics.cc:38
CFGStatistics::maxImmediateCount_
int maxImmediateCount_
Definition: CFGStatistics.hh:62
CFGStatistics::~CFGStatistics
virtual ~CFGStatistics()
Definition: CFGStatistics.cc:50
CFGStatistics::setMaxInstructionCount
virtual void setMaxInstructionCount(int)
Definition: CFGStatistics.cc:119
CFGStatistics::setMaxImmediateCount
virtual void setMaxImmediateCount(int)
Definition: CFGStatistics.cc:109
CFGStatistics::maxImmediateCount
virtual int maxImmediateCount() const
Definition: CFGStatistics.cc:66
CFGStatistics::maxBypassCount_
int maxBypassCount_
Definition: CFGStatistics.hh:64
CFGStatistics::normalBBCount_
int normalBBCount_
Definition: CFGStatistics.hh:60
CFGStatistics::setMaxBypassedCount
virtual void setMaxBypassedCount(int)
Definition: CFGStatistics.cc:128
CFGStatistics.hh
CFGStatistics::setMaxMoveCount
virtual void setMaxMoveCount(int)
Definition: CFGStatistics.cc:99