X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firopt_t.h;h=af41f0208d4696e8fdc2c49febf1cbf8a82e6ba3;hb=357886575cb0becb5bd9be376fde49b57edd5385;hp=93a3ea18c0b24422c0dd50f5156b94153df98bbf;hpb=ce7643e41305a037d682b3087da7e1f927f84b5e;p=libfirm diff --git a/ir/ir/iropt_t.h b/ir/ir/iropt_t.h index 93a3ea18c..af41f0208 100644 --- a/ir/ir/iropt_t.h +++ b/ir/ir/iropt_t.h @@ -120,6 +120,11 @@ static inline ir_tarval *value_of(const ir_node *n) return value_of_ptr(n); } +/** + * returns true if a value becomes zero when converted to mode @p mode + */ +bool ir_zero_when_converted(const ir_node *node, ir_mode *dest_mode); + /** * Sets the default operations for an ir_op_ops. * @@ -131,29 +136,4 @@ static inline ir_tarval *value_of(const ir_node *n) */ ir_op_ops *firm_set_default_operations(unsigned code, ir_op_ops *ops); -/** NOTE: Survive DCE is considered a bad hack - don't use */ -typedef struct survive_dce_t survive_dce_t; - -/** - * Make a new Survive DCE environment. - * NOTE: Survive DCE is considered a bad hack - don't use - */ -survive_dce_t *new_survive_dce(void); - -/** - * Free a Survive DCE environment. - * NOTE: Survive DCE is considered a bad hack - don't use - */ -void free_survive_dce(survive_dce_t *sd); - -/** - * Register a node pointer to be patched upon DCE. - * When DCE occurs, the node pointer specified by @p place will be - * patched to the new address of the node it is pointing to. - * - * @param sd The Survive DCE environment. - * @param place The address of the node pointer. - */ -void survive_dce_register_irn(survive_dce_t *sd, ir_node **place); - #endif