* tree-cfg.h (should_remove_lhs_p): New predicate.
* cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
* gimplify.c (gimplify_modify_expr): Likewise.
* tree-cfg.c (verify_gimple_call): Likewise.
* tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
* gimple-fold.c: Include "tree-cfg.h".
(gimple_fold_call): Use should_remove_lhs_p.
From-SVN: r236637
+2016-05-24 Marek Polacek <polacek@redhat.com>
+
+ * tree-cfg.h (should_remove_lhs_p): New predicate.
+ * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Use it.
+ * gimplify.c (gimplify_modify_expr): Likewise.
+ * tree-cfg.c (verify_gimple_call): Likewise.
+ * tree-cfgcleanup.c (fixup_noreturn_call): Likewise.
+ * gimple-fold.c: Include "tree-cfg.h".
+ (gimple_fold_call): Use should_remove_lhs_p.
+
2016-05-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/71253
}
/* If the call becomes noreturn, remove the LHS if possible. */
- if (lhs
- && (gimple_call_flags (new_stmt) & ECF_NORETURN)
- && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST
- && !TREE_ADDRESSABLE (TREE_TYPE (lhs)))
+ if (gimple_call_noreturn_p (new_stmt) && should_remove_lhs_p (lhs))
{
if (TREE_CODE (lhs) == SSA_NAME)
{
#include "optabs-query.h"
#include "omp-low.h"
#include "ipa-chkp.h"
+#include "tree-cfg.h"
/* Return true when DECL can be referenced from current unit.
== void_type_node))
gimple_call_set_fntype (stmt, TREE_TYPE (fndecl));
/* If the call becomes noreturn, remove the lhs. */
- if (lhs
- && (gimple_call_flags (stmt) & ECF_NORETURN)
+ if (gimple_call_noreturn_p (stmt)
&& (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (stmt)))
- || ((TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs)))
- == INTEGER_CST)
- && !TREE_ADDRESSABLE (TREE_TYPE (lhs)))))
+ || should_remove_lhs_p (lhs)))
{
if (TREE_CODE (lhs) == SSA_NAME)
{
}
}
notice_special_calls (call_stmt);
- if (!gimple_call_noreturn_p (call_stmt)
- || TREE_ADDRESSABLE (TREE_TYPE (*to_p))
- || TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (*to_p))) != INTEGER_CST)
+ if (!gimple_call_noreturn_p (call_stmt) || !should_remove_lhs_p (*to_p))
gimple_call_set_lhs (call_stmt, *to_p);
else if (TREE_CODE (*to_p) == SSA_NAME)
/* The above is somewhat premature, avoid ICEing later for a
return true;
}
- if (lhs
- && gimple_call_ctrl_altering_p (stmt)
+ if (gimple_call_ctrl_altering_p (stmt)
&& gimple_call_noreturn_p (stmt)
- && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST
- && !TREE_ADDRESSABLE (TREE_TYPE (lhs)))
+ && should_remove_lhs_p (lhs))
{
error ("LHS in noreturn call");
return true;
extern bool extract_true_false_controlled_edges (basic_block, basic_block,
edge *, edge *);
+/* Return true if the LHS of a call should be removed. */
+
+inline bool
+should_remove_lhs_p (tree lhs)
+{
+ return (lhs
+ && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST
+ && !TREE_ADDRESSABLE (TREE_TYPE (lhs)));
+}
+
#endif /* _TREE_CFG_H */
temporaries of variable-sized types is not supported. Also don't
do this with TREE_ADDRESSABLE types, as assign_temp will abort. */
tree lhs = gimple_call_lhs (stmt);
- if (lhs && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST
- && !TREE_ADDRESSABLE (TREE_TYPE (lhs)))
+ if (should_remove_lhs_p (lhs))
{
gimple_call_set_lhs (stmt, NULL_TREE);