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
cbfbedae
Commit
cbfbedae
authored
Aug 15, 2006
by
Christian Würdig
Browse files
added function to retrieve irn ops
parent
be7097d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/be/bearch.c
View file @
cbfbedae
...
...
@@ -87,6 +87,10 @@ get_irn_ops(const arch_env_t *env, const ir_node *irn)
return
fallback_irn_ops
;
}
const
arch_irn_ops_t
*
arch_get_irn_ops
(
const
arch_env_t
*
env
,
const
ir_node
*
irn
)
{
return
get_irn_ops
(
env
,
irn
);
}
const
arch_register_req_t
*
arch_get_register_req
(
const
arch_env_t
*
env
,
arch_register_req_t
*
req
,
const
ir_node
*
irn
,
int
pos
)
{
...
...
ir/be/bearch.h
View file @
cbfbedae
...
...
@@ -348,6 +348,8 @@ struct _arch_irn_ops_t {
const
arch_irn_ops_if_t
*
impl
;
};
extern
const
arch_irn_ops_t
*
arch_get_irn_ops
(
const
arch_env_t
*
env
,
const
ir_node
*
irn
);
extern
void
arch_set_frame_offset
(
const
arch_env_t
*
env
,
ir_node
*
irn
,
int
bias
);
extern
entity
*
arch_get_frame_entity
(
const
arch_env_t
*
env
,
ir_node
*
irn
);
...
...
Write
Preview
Supports
Markdown
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