libFirm
|
Calls other code. More...
Enumerations | |
enum | n_Call { n_Call_mem, n_Call_ptr, n_Call_max = n_Call_ptr } |
Input numbers for Call node. More... | |
enum | pn_Call { pn_Call_M, pn_Call_T_result, pn_Call_X_regular, pn_Call_X_except, pn_Call_max = pn_Call_X_except } |
Projection numbers for result of Call node (use for Proj nodes) More... | |
Functions | |
ir_entity * | get_Call_callee (const ir_node *call) |
Convenience function: Return method that will be called by a call. More... | |
ir_node * | new_rd_Call (dbg_info *dbgi, ir_node *block, ir_node *irn_mem, ir_node *irn_ptr, int arity, ir_node *const *in, ir_type *type) |
Construct a Call node. More... | |
ir_node * | new_r_Call (ir_node *block, ir_node *irn_mem, ir_node *irn_ptr, int arity, ir_node *const *in, ir_type *type) |
Construct a Call node. More... | |
ir_node * | new_d_Call (dbg_info *dbgi, ir_node *irn_mem, ir_node *irn_ptr, int arity, ir_node *const *in, ir_type *type) |
Construct a Call node. More... | |
ir_node * | new_Call (ir_node *irn_mem, ir_node *irn_ptr, int arity, ir_node *const *in, ir_type *type) |
Construct a Call node. More... | |
int | is_Call (const ir_node *node) |
Test if node is a Call. More... | |
ir_node * | get_Call_mem (const ir_node *node) |
Returns mem input of a Call node. More... | |
void | set_Call_mem (ir_node *node, ir_node *mem) |
Sets mem input of a Call node. More... | |
ir_node * | get_Call_ptr (const ir_node *node) |
Returns ptr input of a Call node. More... | |
void | set_Call_ptr (ir_node *node, ir_node *ptr) |
Sets ptr input of a Call node. More... | |
int | get_Call_n_params (ir_node const *node) |
Get the number of Call params. More... | |
ir_node * | get_Call_param (ir_node const *node, int pos) |
Get the Call param with index pos . More... | |
void | set_Call_param (ir_node *node, int pos, ir_node *param) |
Set the Call param with index pos . More... | |
ir_node ** | get_Call_param_arr (ir_node *node) |
Get an array of all Call params. More... | |
ir_type * | get_Call_type (const ir_node *node) |
Returns type attribute of a Call node. More... | |
void | set_Call_type (ir_node *node, ir_type *type) |
Sets type attribute of a Call node. More... | |
ir_op * | get_op_Call (void) |
Returns opcode for Call nodes. More... | |
Variables | |
ir_op * | op_Call |
Call opcode. More... | |
Calls other code.
Control flow is transfered to ptr, additional operands are passed to the called code. Called code usually performs a return operation. The operands of this return operation are the result of the Call node.
enum n_Call |
enum pn_Call |
Convenience function: Return method that will be called by a call.
This matches for an address at the Call ptr input, return the referenced entity if it has a method type.
Returns mem input of a Call node.
Definition at line 646 of file gen_irnode.c.
int get_Call_n_params | ( | ir_node const * | node | ) |
Get the number of Call params.
Definition at line 666 of file gen_irnode.c.
Get the Call param with index pos
.
Definition at line 671 of file gen_irnode.c.
Get an array of all Call params.
Definition at line 681 of file gen_irnode.c.
Returns ptr input of a Call node.
Definition at line 656 of file gen_irnode.c.
Returns type attribute of a Call node.
Definition at line 3059 of file gen_irnode.c.
ir_op* get_op_Call | ( | void | ) |
int is_Call | ( | const ir_node * | node | ) |
Test if node is a Call.
Definition at line 3054 of file gen_irnode.c.
ir_node* new_Call | ( | ir_node * | irn_mem, |
ir_node * | irn_ptr, | ||
int | arity, | ||
ir_node *const * | in, | ||
ir_type * | type | ||
) |
Construct a Call node.
irn_mem | mem |
irn_ptr | ptr |
arity | size of additional inputs array |
in | additional inputs |
type | type of the call (usually type of the called procedure) |
Definition at line 641 of file gen_irnode.c.
References new_d_Call().
ir_node* new_d_Call | ( | dbg_info * | dbgi, |
ir_node * | irn_mem, | ||
ir_node * | irn_ptr, | ||
int | arity, | ||
ir_node *const * | in, | ||
ir_type * | type | ||
) |
Construct a Call node.
dbgi | A pointer to debug information. |
irn_mem | mem |
irn_ptr | ptr |
arity | size of additional inputs array |
in | additional inputs |
type | type of the call (usually type of the called procedure) |
Definition at line 634 of file gen_irnode.c.
References current_ir_graph, get_cur_block(), IR_GRAPH_CONSTRAINT_CONSTRUCTION, irg_is_constrained(), and new_rd_Call().
Referenced by new_Call().
ir_node* new_r_Call | ( | ir_node * | block, |
ir_node * | irn_mem, | ||
ir_node * | irn_ptr, | ||
int | arity, | ||
ir_node *const * | in, | ||
ir_type * | type | ||
) |
Construct a Call node.
block | The IR block the node belongs to. |
irn_mem | mem |
irn_ptr | ptr |
arity | size of additional inputs array |
in | additional inputs |
type | type of the call (usually type of the called procedure) |
Definition at line 629 of file gen_irnode.c.
References new_rd_Call().
ir_node* new_rd_Call | ( | dbg_info * | dbgi, |
ir_node * | block, | ||
ir_node * | irn_mem, | ||
ir_node * | irn_ptr, | ||
int | arity, | ||
ir_node *const * | in, | ||
ir_type * | type | ||
) |
Construct a Call node.
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_mem | mem |
irn_ptr | ptr |
arity | size of additional inputs array |
in | additional inputs |
type | type of the call (usually type of the called procedure) |
Definition at line 605 of file gen_irnode.c.
References ALLOCAN, get_irn_irg(), get_unknown_type(), is_Method_type(), mode_T, new_ir_node(), op_Call, op_pin_state_pinned, optimize_node(), and verify_new_node().
Referenced by new_d_Call(), and new_r_Call().
Sets mem input of a Call node.
Definition at line 651 of file gen_irnode.c.
Set the Call param with index pos
.
Definition at line 676 of file gen_irnode.c.
Sets ptr input of a Call node.
Definition at line 661 of file gen_irnode.c.
Sets type attribute of a Call node.
Definition at line 3064 of file gen_irnode.c.
ir_op* op_Call |
Call opcode.
Definition at line 1032 of file nodes.h.
Referenced by get_op_Call(), and new_rd_Call().