Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
eab5519a
Commit
eab5519a
authored
Apr 26, 2007
by
Michael Beck
Browse files
Fixed includes.
More doxygen comments added. [r13498]
parent
619ccad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irphase_t.h
View file @
eab5519a
...
...
@@ -14,21 +14,25 @@
#define _FIRM_IR_PHASE_T_H
#include "firm_types.h"
#include "obst
ack
.h"
#include "obst.h"
#include "irgraph_t.h"
#include "irtools.h"
#include "irtools.h"
/**
* For statistics: A type containing statistic data of a phase object.
*/
typedef
struct
{
unsigned
node_slots
;
unsigned
node_slots_used
;
unsigned
node_data_bytes
;
unsigned
node_map_bytes
;
unsigned
overall_bytes
;
unsigned
node_slots
;
/**< The number of allocated node slots. */
unsigned
node_slots_used
;
/**< The number of used node slots, ie. nodes that have node data. */
unsigned
node_map_bytes
;
/**< Number of used bytes for the node map. */
unsigned
overall_bytes
;
/**< Overall number of used bytes for the phase. */
}
phase_stat_t
;
/**
* Phase statistics.
* Collect Phase statistics.
*
* @param phase The phase.
* @param stat Will be filled with the statistical data.
*/
phase_stat_t
*
phase_stat
(
const
ir_phase
*
phase
,
phase_stat_t
*
stat
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment