|
ir_node * | new_rd_Mul (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right) |
| Construct a Mul node.
|
|
ir_node * | new_r_Mul (ir_node *block, ir_node *irn_left, ir_node *irn_right) |
| Construct a Mul node.
|
|
ir_node * | new_d_Mul (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right) |
| Construct a Mul node.
|
|
ir_node * | new_Mul (ir_node *irn_left, ir_node *irn_right) |
| Construct a Mul node.
|
|
int | is_Mul (const ir_node *node) |
| Test if node is a Mul.
|
|
ir_node * | get_Mul_left (const ir_node *node) |
| Returns left input of a Mul node.
|
|
void | set_Mul_left (ir_node *node, ir_node *left) |
| Sets left input of a Mul node.
|
|
ir_node * | get_Mul_right (const ir_node *node) |
| Returns right input of a Mul node.
|
|
void | set_Mul_right (ir_node *node, ir_node *right) |
| Sets right input of a Mul node.
|
|
ir_op * | get_op_Mul (void) |
| Returns opcode for Mul nodes.
|
|
returns the product of its operands
◆ n_Mul
Input numbers for Mul node.
Enumerator |
---|
n_Mul_left | first operand
|
n_Mul_right | second operand
|
n_Mul_max | |
Definition at line 2519 of file nodes.h.
◆ get_Mul_left()
Returns left input of a Mul node.
◆ get_Mul_right()
Returns right input of a Mul node.
◆ get_op_Mul()
ir_op * get_op_Mul |
( |
void | | ) |
|
Returns opcode for Mul nodes.
◆ is_Mul()
Test if node is a Mul.
- Returns
- 1 if the node is a Mul node, 0 otherwise
◆ new_d_Mul()
Construct a Mul node.
- Parameters
-
dbgi | A pointer to debug information. |
irn_left | left |
irn_right | right |
◆ new_Mul()
Construct a Mul node.
- Parameters
-
irn_left | left |
irn_right | right |
◆ new_r_Mul()
Construct a Mul node.
- Parameters
-
block | The IR block the node belongs to. |
irn_left | left |
irn_right | right |
◆ new_rd_Mul()
Construct a Mul node.
- Parameters
-
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_left | left |
irn_right | right |
◆ set_Mul_left()
Sets left input of a Mul node.
◆ set_Mul_right()
Sets right input of a Mul node.
◆ op_Mul