returns the result of a bitwise or operation of its operands
More...
Enumerations |
enum | n_Or { n_Or_left,
n_Or_right,
n_Or_max = n_Or_right
} |
| Input numbers for Or node. More...
|
Functions |
ir_node * | new_rd_Or (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct an Or node.
|
ir_node * | new_r_Or (ir_node *block, ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct an Or node.
|
ir_node * | new_d_Or (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| Construct an Or node.
|
ir_node * | new_Or (ir_node *irn_left, ir_node *irn_right, ir_mode *mode) |
| 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.
|
Detailed Description
returns the result of a bitwise or operation of its operands
Enumeration Type Documentation
Input numbers for Or node.
Definition at line 2663 of file nodeops.h.
Function Documentation
ir_op* get_op_Or |
( |
void |
| ) |
|
Returns opcode for Or nodes.
Returns left input of an Or node.
Returns right input of an Or node.
Test if node is a Or.
- Returns
- 1 if the node is a Or node, 0 otherwise
Construct an Or node.
- Parameters
-
dbgi | A pointer to debug information. |
irn_left | first operand |
irn_right | second operand |
mode | mode of the operations result |
Construct an Or node.
- Parameters
-
irn_left | first operand |
irn_right | second operand |
mode | mode of the operations result |
Construct an Or 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 an Or 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 |
Sets left input of an Or node.
Sets right input of an Or node.
Variable Documentation