libFirm 1.20
|
Converts values between modes. More...
Enumerations | |
enum | n_Conv { n_Conv_op, n_Conv_max = n_Conv_op } |
Input numbers for Conv node. More... | |
Functions | |
ir_node * | new_rd_strictConv (dbg_info *db, ir_node *block, ir_node *op, ir_mode *mode) |
Constructor for a strictConv node. | |
ir_node * | new_r_strictConv (ir_node *block, ir_node *op, ir_mode *mode) |
Constructor for a strictConv node. | |
ir_node * | new_d_strictConv (dbg_info *db, ir_node *op, ir_mode *mode) |
Constructor for a strict Conv node. | |
ir_node * | new_strictConv (ir_node *op, ir_mode *mode) |
Constructor for a strict Conv node. | |
int | is_strictConv (const ir_node *node) |
Returns true if a node is a Conv node with strict attribute set. | |
ir_node * | new_rd_Conv (dbg_info *dbgi, ir_node *block, ir_node *irn_op, ir_mode *mode) |
Construct a Conv node. | |
ir_node * | new_r_Conv (ir_node *block, ir_node *irn_op, ir_mode *mode) |
Construct a Conv node. | |
ir_node * | new_d_Conv (dbg_info *dbgi, ir_node *irn_op, ir_mode *mode) |
Construct a Conv node. | |
ir_node * | new_Conv (ir_node *irn_op, ir_mode *mode) |
Construct a Conv node. | |
int | is_Conv (const ir_node *node) |
Test if node is a Conv. | |
ir_node * | get_Conv_op (const ir_node *node) |
Returns op input of a Conv node. | |
void | set_Conv_op (ir_node *node, ir_node *op) |
Sets op input of a Conv node. | |
int | get_Conv_strict (const ir_node *node) |
Returns strict attribute of a Conv node. | |
void | set_Conv_strict (ir_node *node, int strict) |
Sets strict attribute of a Conv node. | |
ir_op * | get_op_Conv (void) |
Returns opcode for Conv nodes. | |
Variables | |
ir_op * | op_Conv |
Conv opcode. |
Converts values between modes.
int get_Conv_strict | ( | const ir_node * | node | ) |
Returns strict attribute of a Conv node.
ir_op* get_op_Conv | ( | void | ) |
Returns opcode for Conv nodes.
int is_Conv | ( | const ir_node * | node | ) |
Test if node is a Conv.
int is_strictConv | ( | const ir_node * | node | ) |
Returns true if a node is a Conv node with strict attribute set.
Construct a Conv node.
irn_op | operand |
mode | mode of the operations result |
Construct a Conv node.
dbgi | A pointer to debug information. |
irn_op | operand |
mode | mode of the operations result |
Constructor for a strict Conv node.
db | A pointer for debug information. |
op | The operand. |
mode | The mode of this the operand muss be converted . |
Construct a Conv node.
block | The IR block the node belongs to. |
irn_op | operand |
mode | mode of the operations result |
Constructor for a strictConv node.
block | The IR block the node belongs to. |
op | The operand. |
mode | The mode of this the operand muss be converted . |
Construct a Conv node.
dbgi | A pointer to debug information. |
block | The IR block the node belongs to. |
irn_op | operand |
mode | mode of the operations result |
Constructor for a strictConv node.
db | A pointer for debug information. |
block | The IR block the node belongs to. |
op | The operand. |
mode | The mode of this the operand muss be converted . |
Constructor for a strict Conv node.
op | The operand. |
mode | The mode of this the operand muss be converted . |
void set_Conv_strict | ( | ir_node * | node, |
int | strict | ||
) |
Sets strict attribute of a Conv node.