|
ir_node * | new_rd_Or (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right) |
| Construct an Or node.
|
|
ir_node * | new_r_Or (ir_node *block, ir_node *irn_left, ir_node *irn_right) |
| Construct an Or node.
|
|
ir_node * | new_d_Or (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right) |
| Construct an Or node.
|
|
ir_node * | new_Or (ir_node *irn_left, ir_node *irn_right) |
| Construct an Or node.
|
|
int | is_Or (const ir_node *node) |
| Test if node is a Or.
|
|
ir_node * | get_Or_left (const ir_node *node) |
| Returns left input of an Or node.
|
|
void | set_Or_left (ir_node *node, ir_node *left) |
| Sets left input of an Or node.
|
|
ir_node * | get_Or_right (const ir_node *node) |
| Returns right input of an Or node.
|
|
void | set_Or_right (ir_node *node, ir_node *right) |
| Sets right input of an Or node.
|
|
ir_op * | get_op_Or (void) |
| Returns opcode for Or nodes.
|
|
returns the result of a bitwise or operation of its operands
◆ n_Or
Input numbers for Or node.
Enumerator |
---|
n_Or_left | first operand
|
n_Or_right | second operand
|
n_Or_max | |
Definition at line 2928 of file nodes.h.
◆ get_op_Or()
ir_op * get_op_Or |
( |
void | | ) |
|
Returns opcode for Or nodes.
◆ get_Or_left()
Returns left input of an Or node.
◆ get_Or_right()
Returns right input of an Or node.
◆ is_Or()
Test if node is a Or.
- Returns
- 1 if the node is a Or node, 0 otherwise
◆ new_d_Or()
Construct an Or node.
- Parameters
-
dbgi | A pointer to debug information. |
irn_left | left |
irn_right | right |
◆ new_Or()
Construct an Or node.
- Parameters
-
irn_left | left |
irn_right | right |
◆ new_r_Or()
Construct an Or node.
- Parameters
-
block | The IR block the node belongs to. |
irn_left | left |
irn_right | right |
◆ new_rd_Or()
Construct an Or node.
- Parameters
-
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_left | left |
irn_right | right |
◆ set_Or_left()
Sets left input of an Or node.
◆ set_Or_right()
Sets right input of an Or node.
◆ op_Or