libFirm
Address node

Symbolic constant that represents the address of an entity (variable or method) More...

Functions

ir_nodenew_rd_Address (dbg_info *dbgi, ir_graph *irg, ir_entity *entity)
 Construct an Address node. More...
 
ir_nodenew_r_Address (ir_graph *irg, ir_entity *entity)
 Construct an Address node. More...
 
ir_nodenew_d_Address (dbg_info *dbgi, ir_entity *entity)
 Construct an Address node. More...
 
ir_nodenew_Address (ir_entity *entity)
 Construct an Address node. More...
 
int is_Address (const ir_node *node)
 Test if node is a Address. More...
 
ir_entityget_Address_entity (const ir_node *node)
 Returns entity attribute of an Address node. More...
 
void set_Address_entity (ir_node *node, ir_entity *entity)
 Sets entity attribute of an Address node. More...
 
ir_opget_op_Address (void)
 Returns opcode for Address nodes. More...
 

Variables

ir_opop_Address
 Address opcode. More...
 

Detailed Description

Symbolic constant that represents the address of an entity (variable or method)

Function Documentation

ir_entity* get_Address_entity ( const ir_node node)

Returns entity attribute of an Address node.

ir_op* get_op_Address ( void  )

Returns opcode for Address nodes.

int is_Address ( const ir_node node)

Test if node is a Address.

Returns
1 if the node is a Address node, 0 otherwise
ir_node* new_Address ( ir_entity entity)

Construct an Address node.

Parameters
entityentity to operate on
ir_node* new_d_Address ( dbg_info dbgi,
ir_entity entity 
)

Construct an Address node.

Parameters
dbgiA pointer to debug information.
entityentity to operate on
ir_node* new_r_Address ( ir_graph irg,
ir_entity entity 
)

Construct an Address node.

Parameters
irgThe IR graph the node belongs to.
entityentity to operate on
ir_node* new_rd_Address ( dbg_info dbgi,
ir_graph irg,
ir_entity entity 
)

Construct an Address node.

Parameters
dbgiA pointer to debug information.
irgThe IR graph the node belongs to.
entityentity to operate on
void set_Address_entity ( ir_node node,
ir_entity entity 
)

Sets entity attribute of an Address node.

Variable Documentation

ir_op* op_Address

Address opcode.

Definition at line 295 of file nodes.h.