returns the difference of its operands
More...
Enumerations |
enum | n_Sub { n_Sub_left,
n_Sub_right,
n_Sub_max = n_Sub_right
} |
| Input numbers for Sub node. More...
|
Functions |
ir_node * | new_rd_Sub (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct a Sub node.
|
ir_node * | new_r_Sub (ir_node *block, ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct a Sub node.
|
ir_node * | new_d_Sub (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct a Sub node.
|
ir_node * | new_Sub (ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct a Sub node.
|
int | is_Sub (const ir_node *node) |
| Test if node is a Sub.
|
ir_node * | get_Sub_left (const ir_node *node) |
| Returns left input of a Sub node.
|
void | set_Sub_left (ir_node *node, ir_node *left) |
| Sets left input of a Sub node.
|
ir_node * | get_Sub_right (const ir_node *node) |
| Returns right input of a Sub node.
|
void | set_Sub_right (ir_node *node, ir_node *right) |
| Sets right input of a Sub node.
|
ir_op * | get_op_Sub (void) |
| Returns opcode for Sub nodes.
|
Detailed Description
returns the difference of its operands
Enumeration Type Documentation
Input numbers for Sub node.
Definition at line 3612 of file nodeops.h.
Function Documentation
ir_op* get_op_Sub |
( |
void |
| ) |
|
Returns opcode for Sub nodes.
Returns left input of a Sub node.
Returns right input of a Sub node.
Test if node is a Sub.
- Returns
- 1 if the node is a Sub node, 0 otherwise
Construct a Sub node.
- Parameters
-
dbgi | A pointer to debug information. |
irn_left | first operand |
irn_right | second operand |
mode | mode of the operations result |
Construct a Sub node.
- Parameters
-
block | The IR block the node belongs to. |
irn_left | first operand |
irn_right | second operand |
mode | mode of the operations result |
Construct a Sub node.
- Parameters
-
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_left | first operand |
irn_right | second operand |
mode | mode of the operations result |
Construct a Sub node.
- Parameters
-
irn_left | first operand |
irn_right | second operand |
mode | mode of the operations result |
Sets left input of a Sub node.
Sets right input of a Sub node.
Variable Documentation