libFirm
|
Functions | |
ir_node * | new_rd_Unknown (dbg_info *dbgi, ir_graph *irg, ir_mode *mode) |
Construct an Unknown node. | |
ir_node * | new_r_Unknown (ir_graph *irg, ir_mode *mode) |
Construct an Unknown node. | |
ir_node * | new_d_Unknown (dbg_info *dbgi, ir_mode *mode) |
Construct an Unknown node. | |
ir_node * | new_Unknown (ir_mode *mode) |
Construct an Unknown node. | |
int | is_Unknown (const ir_node *node) |
Test if node is a Unknown. | |
ir_op * | get_op_Unknown (void) |
Returns opcode for Unknown nodes. | |
Variables | |
ir_op * | op_Unknown |
Unknown opcode. | |
Returns an unknown (at compile- and runtime) value. It is a valid optimization to replace an Unknown by any other constant value.
Be careful when optimising Unknown values, you cannot simply replace Unknown+x or Unknown<x with a new Unknown node if there are multiple users of the original unknown node!
ir_op * get_op_Unknown | ( | void | ) |
Returns opcode for Unknown nodes.
int is_Unknown | ( | const ir_node * | node | ) |
Test if node is a Unknown.
Construct an Unknown node.
dbgi | A pointer to debug information. |
mode | mode of the operations result |
Construct an Unknown node.
irg | The IR graph the node belongs to. |
mode | mode of the operations result |
Construct an Unknown node.
dbgi | A pointer to debug information. |
irg | The IR graph the node belongs to. |
mode | mode of the operations result |
Construct an Unknown node.
mode | mode of the operations result |