Copies a block of memory with statically known size/type.
More...
Functions |
ir_node * | new_rd_CopyB (dbg_info *dbgi, ir_node *block, ir_node *irn_mem, ir_node *irn_dst, ir_node *irn_src, ir_type *type) |
| Construct a CopyB node.
|
ir_node * | new_r_CopyB (ir_node *block, ir_node *irn_mem, ir_node *irn_dst, ir_node *irn_src, ir_type *type) |
| Construct a CopyB node.
|
ir_node * | new_d_CopyB (dbg_info *dbgi, ir_node *irn_mem, ir_node *irn_dst, ir_node *irn_src, ir_type *type) |
| Construct a CopyB node.
|
ir_node * | new_CopyB (ir_node *irn_mem, ir_node *irn_dst, ir_node *irn_src, ir_type *type) |
| Construct a CopyB node.
|
int | is_CopyB (const ir_node *node) |
| Test if node is a CopyB.
|
ir_node * | get_CopyB_mem (const ir_node *node) |
| Returns mem input of a CopyB node.
|
void | set_CopyB_mem (ir_node *node, ir_node *mem) |
| Sets mem input of a CopyB node.
|
ir_node * | get_CopyB_dst (const ir_node *node) |
| Returns dst input of a CopyB node.
|
void | set_CopyB_dst (ir_node *node, ir_node *dst) |
| Sets dst input of a CopyB node.
|
ir_node * | get_CopyB_src (const ir_node *node) |
| Returns src input of a CopyB node.
|
void | set_CopyB_src (ir_node *node, ir_node *src) |
| Sets src input of a CopyB node.
|
ir_type * | get_CopyB_type (const ir_node *node) |
| Returns type attribute of a CopyB node.
|
void | set_CopyB_type (ir_node *node, ir_type *type) |
| Sets type attribute of a CopyB node.
|
ir_op * | get_op_CopyB (void) |
| Returns opcode for CopyB nodes.
|
Detailed Description
Copies a block of memory with statically known size/type.
Enumeration Type Documentation
Input numbers for CopyB node.
Definition at line 1320 of file nodeops.h.
Projection numbers for result of CopyB node (use for Proj nodes)
- Enumerator:
pn_CopyB_M |
memory result
|
pn_CopyB_X_regular |
control flow when no exception occurs
|
pn_CopyB_X_except |
control flow when exception occured
|
Definition at line 1331 of file nodeops.h.
Function Documentation
Returns dst input of a CopyB node.
Returns mem input of a CopyB node.
Returns src input of a CopyB node.
Returns type attribute of a CopyB node.
ir_op* get_op_CopyB |
( |
void |
| ) |
|
Returns opcode for CopyB nodes.
int is_CopyB |
( |
const ir_node * |
node | ) |
|
Test if node is a CopyB.
- Returns
- 1 if the node is a CopyB node, 0 otherwise
Construct a CopyB node.
- Parameters
-
irn_mem | memory dependency |
irn_dst | destination address |
irn_src | source address |
type | type of copied data |
Construct a CopyB node.
- Parameters
-
dbgi | A pointer to debug information. |
irn_mem | memory dependency |
irn_dst | destination address |
irn_src | source address |
type | type of copied data |
Construct a CopyB node.
- Parameters
-
block | The IR block the node belongs to. |
irn_mem | memory dependency |
irn_dst | destination address |
irn_src | source address |
type | type of copied data |
Construct a CopyB node.
- Parameters
-
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_mem | memory dependency |
irn_dst | destination address |
irn_src | source address |
type | type of copied data |
Sets dst input of a CopyB node.
Sets mem input of a CopyB node.
Sets src input of a CopyB node.
Sets type attribute of a CopyB node.
Variable Documentation