|
ir_node * | new_rd_Eor (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right) |
| Construct an Eor node.
|
|
ir_node * | new_r_Eor (ir_node *block, ir_node *irn_left, ir_node *irn_right) |
| Construct an Eor node.
|
|
ir_node * | new_d_Eor (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right) |
| Construct an Eor node.
|
|
ir_node * | new_Eor (ir_node *irn_left, ir_node *irn_right) |
| Construct an Eor node.
|
|
int | is_Eor (const ir_node *node) |
| Test if node is a Eor.
|
|
ir_node * | get_Eor_left (const ir_node *node) |
| Returns left input of an Eor node.
|
|
void | set_Eor_left (ir_node *node, ir_node *left) |
| Sets left input of an Eor node.
|
|
ir_node * | get_Eor_right (const ir_node *node) |
| Returns right input of an Eor node.
|
|
void | set_Eor_right (ir_node *node, ir_node *right) |
| Sets right input of an Eor node.
|
|
ir_op * | get_op_Eor (void) |
| Returns opcode for Eor nodes.
|
|
returns the result of a bitwise exclusive or operation of its operands.
This is also known as the Xor operation.
◆ n_Eor
Input numbers for Eor node.
Enumerator |
---|
n_Eor_left | first operand
|
n_Eor_right | second operand
|
n_Eor_max | |
Definition at line 1849 of file nodes.h.
◆ get_Eor_left()
Returns left input of an Eor node.
◆ get_Eor_right()
Returns right input of an Eor node.
◆ get_op_Eor()
ir_op * get_op_Eor |
( |
void | | ) |
|
Returns opcode for Eor nodes.
◆ is_Eor()
Test if node is a Eor.
- Returns
- 1 if the node is a Eor node, 0 otherwise
◆ new_d_Eor()
Construct an Eor node.
- Parameters
-
dbgi | A pointer to debug information. |
irn_left | left |
irn_right | right |
◆ new_Eor()
Construct an Eor node.
- Parameters
-
irn_left | left |
irn_right | right |
◆ new_r_Eor()
Construct an Eor node.
- Parameters
-
block | The IR block the node belongs to. |
irn_left | left |
irn_right | right |
◆ new_rd_Eor()
Construct an Eor node.
- Parameters
-
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_left | left |
irn_right | right |
◆ set_Eor_left()
Sets left input of an Eor node.
◆ set_Eor_right()
Sets right input of an Eor node.
◆ op_Eor