![]() |
libFirm
|
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. | |
| 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. | |
| 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. | |
| 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. | |
| 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. | |
| int | is_Call (const ir_node *node) |
| Test if node is a Call. | |
| ir_node * | get_Call_mem (const ir_node *node) |
| Returns mem input of a Call node. | |
| void | set_Call_mem (ir_node *node, ir_node *mem) |
| Sets mem input of a Call node. | |
| ir_node * | get_Call_ptr (const ir_node *node) |
| Returns ptr input of a Call node. | |
| void | set_Call_ptr (ir_node *node, ir_node *ptr) |
| Sets ptr input of a Call node. | |
| int | get_Call_n_params (ir_node const *node) |
| Get the number of Call params. | |
| ir_node * | get_Call_param (ir_node const *node, int pos) |
Get the Call param with index pos. | |
| void | set_Call_param (ir_node *node, int pos, ir_node *param) |
Set the Call param with index pos. | |
| ir_node ** | get_Call_param_arr (ir_node *node) |
| Get an array of all Call params. | |
| ir_type * | get_Call_type (const ir_node *node) |
| Returns type attribute of a Call node. | |
| void | set_Call_type (ir_node *node, ir_type *type) |
| Sets type attribute of a Call node. | |
| ir_op * | get_op_Call (void) |
| Returns opcode for Call nodes. | |
Variables | |
| ir_op * | op_Call |
| Call opcode. | |
Calls other code. Control flow is transferred 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.
| int get_Call_n_params | ( | ir_node const * | node | ) |
Get the number of Call params.
| ir_op * get_op_Call | ( | void | ) |
Returns opcode for Call nodes.
| int is_Call | ( | const ir_node * | node | ) |
Test if node is a Call.
| 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) |
| 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) |
| 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) |
| 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) |