summaryrefslogtreecommitdiff
path: root/gcc/graphite-htab.h
diff options
context:
space:
mode:
authortbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-09 03:06:09 +0000
committertbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-09 03:06:09 +0000
commit5358b1527ccc2548290d0340ed3270b0f68e2b33 (patch)
treefe302b0afef5f45efd91e938d8c2eb16e20e1d0a /gcc/graphite-htab.h
parentf414e3532e4b9b2e6adeb505a68994006a3369df (diff)
downloadgcc-5358b1527ccc2548290d0340ed3270b0f68e2b33.tar.gz
convert some hash_table to hash_map
gcc/ * graphite-htab.h: Use hash_map instead of hash_table. * graphite-clast-to-gimple.c: Adjust. * passes.c: Use hash_map instead of hash_table. * sese.c: Likewise. * sese.h: Remove now unused code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212382 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-htab.h')
-rw-r--r--gcc/graphite-htab.h30
1 files changed, 10 insertions, 20 deletions
diff --git a/gcc/graphite-htab.h b/gcc/graphite-htab.h
index 69fd05a965a..b1fd81e3013 100644
--- a/gcc/graphite-htab.h
+++ b/gcc/graphite-htab.h
@@ -21,43 +21,33 @@ along with GCC; see the file COPYING3. If not see
#ifndef GCC_GRAPHITE_HTAB_H
#define GCC_GRAPHITE_HTAB_H
-#include "hash-table.h"
-
-/* Stores BB's related PBB. */
-
-struct bb_pbb_def
-{
- basic_block bb;
- poly_bb_p pbb;
-};
+#include "hash-map.h"
/* Hashtable helpers. */
-struct bb_pbb_hasher : typed_free_remove <bb_pbb_def>
+struct bb_pbb_hasher : default_hashmap_traits
{
- typedef bb_pbb_def value_type;
- typedef bb_pbb_def compare_type;
- static inline hashval_t hash (const value_type *);
- static inline bool equal (const value_type *, const compare_type *);
+ static inline hashval_t hash (const basic_block);
+ static inline bool equal_keys (const basic_block, const basic_block);
};
-/* Hash function for data base element BB_PBB. */
+/* Hash function. */
inline hashval_t
-bb_pbb_hasher::hash (const value_type *bb_pbb)
+bb_pbb_hasher::hash (const basic_block bb)
{
- return (hashval_t)(bb_pbb->bb->index);
+ return (hashval_t)(bb->index);
}
/* Compare data base element PB1 and PB2. */
inline bool
-bb_pbb_hasher::equal (const value_type *bp1, const compare_type *bp2)
+bb_pbb_hasher::equal_keys (const basic_block a, const basic_block b)
{
- return (bp1->bb->index == bp2->bb->index);
+ return (a->index == b->index);
}
-typedef hash_table<bb_pbb_hasher> bb_pbb_htab_type;
+typedef hash_map<basic_block, poly_bb_p, bb_pbb_hasher> bb_pbb_htab_type;
poly_bb_p find_pbb_via_hash (bb_pbb_htab_type *, basic_block);
bool loop_is_parallel_p (loop_p, bb_pbb_htab_type *, int);