libFirm

returns the result of a bitwise exclusive or operation of its operands. More...

Enumerations

enum  n_Eor { n_Eor_left, n_Eor_right, n_Eor_max = n_Eor_right }
 Input numbers for Eor node. More...
 

Functions

ir_nodenew_rd_Eor (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right)
 Construct an Eor node. More...
 
ir_nodenew_r_Eor (ir_node *block, ir_node *irn_left, ir_node *irn_right)
 Construct an Eor node. More...
 
ir_nodenew_d_Eor (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right)
 Construct an Eor node. More...
 
ir_nodenew_Eor (ir_node *irn_left, ir_node *irn_right)
 Construct an Eor node. More...
 
int is_Eor (const ir_node *node)
 Test if node is a Eor. More...
 
ir_nodeget_Eor_left (const ir_node *node)
 Returns left input of an Eor node. More...
 
void set_Eor_left (ir_node *node, ir_node *left)
 Sets left input of an Eor node. More...
 
ir_nodeget_Eor_right (const ir_node *node)
 Returns right input of an Eor node. More...
 
void set_Eor_right (ir_node *node, ir_node *right)
 Sets right input of an Eor node. More...
 
ir_opget_op_Eor (void)
 Returns opcode for Eor nodes. More...
 

Variables

ir_opop_Eor
 Eor opcode. More...
 

Detailed Description

returns the result of a bitwise exclusive or operation of its operands.

This is also known as the Xor operation.

Enumeration Type Documentation

◆ n_Eor

enum 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.

Function Documentation

◆ get_Eor_left()

ir_node* get_Eor_left ( const ir_node node)

Returns left input of an Eor node.

◆ get_Eor_right()

ir_node* get_Eor_right ( const ir_node node)

Returns right input of an Eor node.

◆ get_op_Eor()

ir_op* get_op_Eor ( void  )

Returns opcode for Eor nodes.

◆ is_Eor()

int is_Eor ( const ir_node node)

Test if node is a Eor.

Returns
1 if the node is a Eor node, 0 otherwise

◆ new_d_Eor()

ir_node* new_d_Eor ( dbg_info dbgi,
ir_node irn_left,
ir_node irn_right 
)

Construct an Eor node.

Parameters
dbgiA pointer to debug information.
irn_leftleft
irn_rightright

◆ new_Eor()

ir_node* new_Eor ( ir_node irn_left,
ir_node irn_right 
)

Construct an Eor node.

Parameters
irn_leftleft
irn_rightright

◆ new_r_Eor()

ir_node* new_r_Eor ( ir_node block,
ir_node irn_left,
ir_node irn_right 
)

Construct an Eor node.

Parameters
blockThe IR block the node belongs to.
irn_leftleft
irn_rightright

◆ new_rd_Eor()

ir_node* new_rd_Eor ( dbg_info dbgi,
ir_node block,
ir_node irn_left,
ir_node irn_right 
)

Construct an Eor node.

Parameters
dbgiA pointer to debug information.
blockThe IR block the node belongs to.
irn_leftleft
irn_rightright

◆ set_Eor_left()

void set_Eor_left ( ir_node node,
ir_node left 
)

Sets left input of an Eor node.

◆ set_Eor_right()

void set_Eor_right ( ir_node node,
ir_node right 
)

Sets right input of an Eor node.

Variable Documentation

◆ op_Eor

ir_op* op_Eor

Eor opcode.

Definition at line 1906 of file nodes.h.