OpenASIP 2.2
Loading...
Searching...
No Matches
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 */
52
53/**
54 * Returns maximum move count from statistics object.
55 * @return count of moves of largest BB
56 */
57int
61/**
62 * Returns immediate count from statistics object for largest BB.
63 * @return count of immediates stored in object
64 */
65int
69/**
70 * Returns instruction count from statistics object for largest BB.
71 * @return count of instructions stored in object
72 */
73int
77/**
78 * Returns bypassed move count from statistics object for largest BB.
79 * @return count of bypassed moves stored in object
80 */
81int
85
86/**
87 * Returns the number of basic blocks in procedure.
88 */
89int
93/**
94 * Sets the move count in statistic object.
95 *
96 * @param count number of moves to store in object
97 */
98void
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
108void
112/**
113 * Sets the instruction count in statistic object.
114 *
115 * @param count number of instructions to store in object
116 */
117
118void
122/**
123 * Sets the bypassed move count in statistic object.
124 *
125 * @param count number of bypassed moves to store in object
126 */
127void
131
132/**
133 * Sets count of basic blocks in procedure into statistics object.
134 *
135 * @param count number of basic blocks in procedure.
136 */
137void
139 normalBBCount_ = count;
140}
virtual int normalBBCount() const
virtual void setMaxMoveCount(int)
virtual void setMaxImmediateCount(int)
virtual int maxImmediateCount() const
virtual int maxMoveCount() const
virtual void setMaxInstructionCount(int)
virtual int maxBypassedCount() const
virtual int maxInstructionCount() const
virtual ~CFGStatistics()
virtual void setNormalBBCount(int)
virtual void setMaxBypassedCount(int)