* hash-traits.h (struct typed_delete_remove): New function.
(typed_delete_remove ::remove): Likewise.
* tree-ssa-loop-ivopts.c (struct iv_common_cand): Replace
auto_vec with vec.
(record_common_cand): Replace XNEW with operator new.
From-SVN: r231448
+2015-12-09 Martin Liska <mliska@suse.cz>
+
+ * hash-traits.h (struct typed_delete_remove): New function.
+ (typed_delete_remove ::remove): Likewise.
+ * tree-ssa-loop-ivopts.c (struct iv_common_cand): Replace
+ auto_vec with vec.
+ (record_common_cand): Replace XNEW with operator new.
+
2015-12-09 Martin Liska <mliska@suse.cz>
* tree-if-conv.c (ifcvt_local_dce): Replace vec with auto_vec.
free (p);
}
+/* Helpful type for removing with delete. */
+
+template <typename Type>
+struct typed_delete_remove
+{
+ static inline void remove (Type *p);
+};
+
+
+/* Remove with delete. */
+
+template <typename Type>
+inline void
+typed_delete_remove <Type>::remove (Type *p)
+{
+ delete p;
+}
/* Helpful type for a no-op remove. */
template <typename T>
struct free_ptr_hash : pointer_hash <T>, typed_free_remove <T> {};
+/* Traits for pointer elements that should be freed via delete operand when an
+ element is deleted. */
+
+template <typename T>
+struct delete_ptr_hash : pointer_hash <T>, typed_delete_remove <T> {};
+
/* Traits for elements that point to gc memory. The pointed-to data
must be kept across collections. */
tree base;
tree step;
/* IV uses from which this common candidate is derived. */
- vec<iv_use *> uses;
+ auto_vec<iv_use *> uses;
hashval_t hash;
};
/* Hashtable helpers. */
-struct iv_common_cand_hasher : free_ptr_hash <iv_common_cand>
+struct iv_common_cand_hasher : delete_ptr_hash <iv_common_cand>
{
static inline hashval_t hash (const iv_common_cand *);
static inline bool equal (const iv_common_cand *, const iv_common_cand *);
slot = data->iv_common_cand_tab->find_slot (&ent, INSERT);
if (*slot == NULL)
{
- *slot = XNEW (struct iv_common_cand);
+ *slot = new iv_common_cand ();
(*slot)->base = base;
(*slot)->step = step;
(*slot)->uses.create (8);