libFirm
Return node

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_nodenew_rd_Return (dbg_info *dbgi, ir_node *block, ir_node *irn_mem, int arity, ir_node *const *in)
 Construct a Return node. More...
 
ir_nodenew_r_Return (ir_node *block, ir_node *irn_mem, int arity, ir_node *const *in)
 Construct a Return node. More...
 
ir_nodenew_d_Return (dbg_info *dbgi, ir_node *irn_mem, int arity, ir_node *const *in)
 Construct a Return node. More...
 
ir_nodenew_Return (ir_node *irn_mem, int arity, ir_node *const *in)
 Construct a Return node. More...
 
int is_Return (const ir_node *node)
 Test if node is a Return. More...
 
ir_nodeget_Return_mem (const ir_node *node)
 Returns mem input of a Return node. More...
 
void set_Return_mem (ir_node *node, ir_node *mem)
 Sets mem input of a Return node. More...
 
int get_Return_n_ress (ir_node const *node)
 Get the number of Return ress. More...
 
ir_nodeget_Return_res (ir_node const *node, int pos)
 Get the Return res with index pos. More...
 
void set_Return_res (ir_node *node, int pos, ir_node *res)
 Set the Return res with index pos. More...
 
ir_node ** get_Return_res_arr (ir_node *node)
 Get an array of all Return ress. More...
 
ir_opget_op_Return (void)
 Returns opcode for Return nodes. More...
 

Variables

ir_opop_Return
 Return opcode. More...
 

Detailed Description

Returns from the current function.

Takes memory and return values as operands.

Enumeration Type Documentation

◆ n_Return

enum n_Return

Input numbers for Return node.

Enumerator
n_Return_mem 

memory dependency

n_Return_max 

Definition at line 3307 of file nodes.h.

Function Documentation

◆ get_op_Return()

ir_op* get_op_Return ( void  )

Returns opcode for Return nodes.

◆ get_Return_mem()

ir_node* get_Return_mem ( const ir_node node)

Returns mem input of a Return node.

◆ get_Return_n_ress()

int get_Return_n_ress ( ir_node const *  node)

Get the number of Return ress.

◆ get_Return_res()

ir_node* get_Return_res ( ir_node const *  node,
int  pos 
)

Get the Return res with index pos.

◆ get_Return_res_arr()

ir_node** get_Return_res_arr ( ir_node node)

Get an array of all Return ress.

◆ is_Return()

int is_Return ( const ir_node node)

Test if node is a Return.

Returns
1 if the node is a Return node, 0 otherwise

◆ new_d_Return()

ir_node* new_d_Return ( dbg_info dbgi,
ir_node irn_mem,
int  arity,
ir_node *const *  in 
)

Construct a Return node.

Parameters
dbgiA pointer to debug information.
irn_memmem
aritysize of additional inputs array
inadditional inputs

◆ new_r_Return()

ir_node* new_r_Return ( ir_node block,
ir_node irn_mem,
int  arity,
ir_node *const *  in 
)

Construct a Return node.

Parameters
blockThe IR block the node belongs to.
irn_memmem
aritysize of additional inputs array
inadditional inputs

◆ new_rd_Return()

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.

Parameters
dbgiA pointer to debug information.
blockThe IR block the node belongs to.
irn_memmem
aritysize of additional inputs array
inadditional inputs

◆ new_Return()

ir_node* new_Return ( ir_node irn_mem,
int  arity,
ir_node *const *  in 
)

Construct a Return node.

Parameters
irn_memmem
aritysize of additional inputs array
inadditional inputs

◆ set_Return_mem()

void set_Return_mem ( ir_node node,
ir_node mem 
)

Sets mem input of a Return node.

◆ set_Return_res()

void set_Return_res ( ir_node node,
int  pos,
ir_node res 
)

Set the Return res with index pos.

Variable Documentation

◆ op_Return

ir_op* op_Return

Return opcode.

Definition at line 3371 of file nodes.h.