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
f3916633
Commit
f3916633
authored
Jun 27, 2005
by
Götz Lindenmaier
Browse files
an accessor function returning predecessor blocks
[r6123]
parent
ca165a39
Changes
3
Hide whitespace changes
Inline
Side-by-side
ir/ir/irnode.c
View file @
f3916633
...
...
@@ -625,6 +625,11 @@ set_Block_cfgpred (ir_node *node, int pos, ir_node *pred) {
set_irn_n
(
node
,
pos
,
pred
);
}
ir_node
*
(
get_Block_cfgpred_block
)(
ir_node
*
node
,
int
pos
)
{
return
_get_Block_cfgpred_block
(
node
,
pos
);
}
bool
get_Block_matured
(
ir_node
*
node
)
{
assert
(
node
->
op
==
op_Block
);
...
...
ir/ir/irnode.h
View file @
f3916633
...
...
@@ -259,6 +259,18 @@ ir_node **get_Block_cfgpred_arr (ir_node *node);
int
get_Block_n_cfgpreds
(
ir_node
*
node
);
ir_node
*
get_Block_cfgpred
(
ir_node
*
node
,
int
pos
);
void
set_Block_cfgpred
(
ir_node
*
node
,
int
pos
,
ir_node
*
pred
);
/** Get the predecessor block.
*
* Returns the block corresonding to the predecessor pos of block.
*
* There are several ambiguities we resolve with this function:
* - The direct predecessor can be a Proj, which is not pinned.
* We walk from the predecessor to the next pinned node
* (skip_Proj) and return the block that node is in.
* - If we encounter the Bad node, this function does not return
* Start, but the Bad node.
*/
ir_node
*
get_Block_cfgpred_block
(
ir_node
*
node
,
int
pos
);
bool
get_Block_matured
(
ir_node
*
node
);
void
set_Block_matured
(
ir_node
*
node
,
bool
matured
);
...
...
ir/ir/irnode_t.h
View file @
f3916633
...
...
@@ -578,6 +578,25 @@ _get_Block_cfgpred (ir_node *node, int pos) {
return
_get_irn_n
(
node
,
pos
);
}
/* Get the predecessor block.
*
* Returns the block corresonding to the predecessor pos.
*
* There are several ambiguities we resolve with this function:
* - The direct predecessor can be a Proj, which is not pinned.
* We walk from the predecessor to the next pinned node
* (skip_Proj) and return the block that node is in.
* - If we encounter the Bad node, this function does not return
* Start, but the Bad node.
*/
static
INLINE
ir_node
*
_get_Block_cfgpred_block
(
ir_node
*
node
,
int
pos
)
{
ir_node
*
res
=
skip_Proj
(
get_Block_cfgpred
(
node
,
pos
));
if
(
!
is_Bad
(
res
))
res
=
get_nodes_block
(
res
);
return
res
;
}
static
INLINE
unsigned
long
_get_Block_block_visited
(
ir_node
*
node
)
{
assert
(
node
->
op
==
op_Block
);
...
...
@@ -675,6 +694,7 @@ static INLINE type *_get_irn_type(ir_node *node) {
#define is_Block(node) _is_Block(node)
#define get_Block_n_cfgpreds(node) _get_Block_n_cfgpreds(node)
#define get_Block_cfgpred(node, pos) _get_Block_cfgpred(node, pos)
#define get_Block_cfgpred_block(node, pos) _get_Block_cfgpred_block(node, pos)
#define get_Block_block_visited(node) _get_Block_block_visited(node)
#define set_Block_block_visited(node, visit) _set_Block_block_visited(node, visit)
#define mark_Block_block_visited(node) _mark_Block_block_visited(node)
...
...
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