libFirm
Rotl node

Returns its first operand bits rotated left by the amount in the 2nd operand. More...

Enumerations

enum  n_Rotl { n_Rotl_left, n_Rotl_right, n_Rotl_max = n_Rotl_right }
 Input numbers for Rotl node. More...

Functions

ir_nodenew_rd_Rotl (dbg_info *dbgi, ir_node *block, ir_node *irn_left, ir_node *irn_right, ir_mode *mode)
 Construct a Rotl node.
ir_nodenew_r_Rotl (ir_node *block, ir_node *irn_left, ir_node *irn_right, ir_mode *mode)
 Construct a Rotl node.
ir_nodenew_d_Rotl (dbg_info *dbgi, ir_node *irn_left, ir_node *irn_right, ir_mode *mode)
 Construct a Rotl node.
ir_nodenew_Rotl (ir_node *irn_left, ir_node *irn_right, ir_mode *mode)
 Construct a Rotl node.
int is_Rotl (const ir_node *node)
 Test if node is a Rotl.
ir_nodeget_Rotl_left (const ir_node *node)
 Returns left input of a Rotl node.
void set_Rotl_left (ir_node *node, ir_node *left)
 Sets left input of a Rotl node.
ir_nodeget_Rotl_right (const ir_node *node)
 Returns right input of a Rotl node.
void set_Rotl_right (ir_node *node, ir_node *right)
 Sets right input of a Rotl node.
ir_opget_op_Rotl (void)
 Returns opcode for Rotl nodes.

Variables

ir_opop_Rotl
 Rotl opcode.

Detailed Description

Returns its first operand bits rotated left by the amount in the 2nd operand.

Enumeration Type Documentation

enum n_Rotl

Input numbers for Rotl node.

Definition at line 3070 of file nodeops.h.

Function Documentation

ir_op* get_op_Rotl ( void  )

Returns opcode for Rotl nodes.

ir_node* get_Rotl_left ( const ir_node node)

Returns left input of a Rotl node.

ir_node* get_Rotl_right ( const ir_node node)

Returns right input of a Rotl node.

int is_Rotl ( const ir_node node)

Test if node is a Rotl.

Returns
1 if the node is a Rotl node, 0 otherwise
ir_node* new_d_Rotl ( dbg_info dbgi,
ir_node irn_left,
ir_node irn_right,
ir_mode mode 
)

Construct a Rotl node.

Parameters
dbgiA pointer to debug information.
irn_leftfirst operand
irn_rightsecond operand
modemode of the operations result
ir_node* new_r_Rotl ( ir_node block,
ir_node irn_left,
ir_node irn_right,
ir_mode mode 
)

Construct a Rotl node.

Parameters
blockThe IR block the node belongs to.
irn_leftfirst operand
irn_rightsecond operand
modemode of the operations result
ir_node* new_rd_Rotl ( dbg_info dbgi,
ir_node block,
ir_node irn_left,
ir_node irn_right,
ir_mode mode 
)

Construct a Rotl node.

Parameters
dbgiA pointer to debug information.
blockThe IR block the node belongs to.
irn_leftfirst operand
irn_rightsecond operand
modemode of the operations result
ir_node* new_Rotl ( ir_node irn_left,
ir_node irn_right,
ir_mode mode 
)

Construct a Rotl node.

Parameters
irn_leftfirst operand
irn_rightsecond operand
modemode of the operations result
void set_Rotl_left ( ir_node node,
ir_node left 
)

Sets left input of a Rotl node.

void set_Rotl_right ( ir_node node,
ir_node right 
)

Sets right input of a Rotl node.

Variable Documentation

ir_op* op_Rotl

Rotl opcode.

Definition at line 308 of file opcodes.h.