libFirm
|
Returns from the current function. More...
Enumerations | |
enum | n_Return { n_Return_mem, n_Return_max = n_Return_mem } |
Input numbers for Return node. More... |
Functions | |
ir_node ** | get_Return_res_arr (ir_node *node) |
Returns return value inputs of Return node node as array. | |
size_t | get_Return_n_ress (const ir_node *node) |
Returns number of return value inputs of Return node node . | |
ir_node * | get_Return_res (const ir_node *node, int pos) |
Returns return value input pos of Return node node . | |
void | set_Return_res (ir_node *node, int pos, ir_node *res) |
Sets return value input pos of Return node node to value res . | |
ir_node * | new_rd_Return (dbg_info *dbgi, ir_node *block, ir_node *irn_mem, int arity, ir_node *const *in) |
Construct a Return node. | |
ir_node * | new_r_Return (ir_node *block, ir_node *irn_mem, int arity, ir_node *const *in) |
Construct a Return node. | |
ir_node * | new_d_Return (dbg_info *dbgi, ir_node *irn_mem, int arity, ir_node *const *in) |
Construct a Return node. | |
ir_node * | new_Return (ir_node *irn_mem, int arity, ir_node *const *in) |
Construct a Return node. | |
int | is_Return (const ir_node *node) |
Test if node is a Return. | |
ir_node * | get_Return_mem (const ir_node *node) |
Returns mem input of a Return node. | |
void | set_Return_mem (ir_node *node, ir_node *mem) |
Sets mem input of a Return node. | |
ir_op * | get_op_Return (void) |
Returns opcode for Return nodes. |
Variables | |
ir_op * | op_Return |
Return opcode. |
Returns from the current function.
Takes memory and return values as operands.
ir_op* get_op_Return | ( | void | ) |
Returns opcode for Return nodes.
size_t get_Return_n_ress | ( | const ir_node * | node | ) |
Returns number of return value inputs of Return node node
.
Returns return value input pos
of Return node node
.
Returns return value inputs of Return node node
as array.
int is_Return | ( | const ir_node * | node | ) |
Test if node is a Return.
Construct a Return node.
dbgi | A pointer to debug information. |
irn_mem | memory dependency |
arity | size of additional inputs array |
in | additional inputs |
Construct a Return node.
block | The IR block the node belongs to. |
irn_mem | memory dependency |
arity | size of additional inputs array |
in | additional inputs |
ir_node* new_rd_Return | ( | dbg_info * | dbgi, |
ir_node * | block, | ||
ir_node * | irn_mem, | ||
int | arity, | ||
ir_node *const * | in | ||
) |
Construct a Return node.
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_mem | memory dependency |
arity | size of additional inputs array |
in | additional inputs |
Construct a Return node.
irn_mem | memory dependency |
arity | size of additional inputs array |
in | additional inputs |
Sets return value input pos
of Return node node
to value res
.