1 /* Copyright (C) 2012-2021 Free Software Foundation, Inc.
3 This file is part of GCC.
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 Under Section 7 of GPL version 3, you are granted additional
16 permissions described in the GCC Runtime Library Exception, version
17 3.1, as published by the Free Software Foundation.
19 You should have received a copy of the GNU General Public License and
20 a copy of the GCC Runtime Library Exception along with this program;
21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
22 <http://www.gnu.org/licenses/>. */
31 #include "vtv_utils.h"
33 #include <vtv_utils.h>
37 load8bytes (const void *p
)
40 memcpy (&result
, p
, 8);
44 /* Insert_only_hash_map maps keys to values. The implementation is a
45 basic hash table with open addressing. The keys are not "owned" by
46 the table; it only stores pointers to keys. The key type is
47 specified below (see insert_only_hash_map::key_type) and is,
48 roughly speaking, a string of any length with the string length and
49 a hash code stored at the front. The code here does not compute
50 any hash codes, but rather uses what's given. */
52 template<typename T
, typename Alloc
>
53 class insert_only_hash_map
56 typedef size_t size_type
;
58 typedef Alloc alloc_type
;
59 enum { min_capacity
= 4 };
61 enum { stats
= true };
63 enum { stats
= false };
66 /* Keys are a byte string (up to 2^32 - 1 long) plus a uint32_t
67 that's used as a hash code. The latter can encode arbitrary
68 information at the client's discretion, so, e.g., multiple keys
69 that are the same string still "differ" if the hash codes differ.
70 Keys are equal if the first 8 bytes are equal and the next n
79 equals (const key_type
*k
) const;
82 /* Create an empty map with a reasonable number of buckets for the
83 expected size. Returns NULL if the allocator fails. */
85 static insert_only_hash_map
*
86 create (size_type expected_size
);
88 /* The opposite of create(). Free the memory for the given map. */
91 destroy (insert_only_hash_map
*m
)
92 { Alloc().dealloc (m
, m
->size_in_bytes_
); }
94 /* Return a map identical to this except that *k is mapped to v.
95 Typcially it's done by modifying this in place, but if a resize
96 is necessary then this is deallocated and a new map is returned.
97 Requires k to be non-NULL. Does nothing and returns NULL if the
100 insert_only_hash_map
*
101 put (const key_type
*k
, const value_type
&v
)
102 { return this->put_internal (k
, v
, false); }
104 /* If *k is a key in this then set *v to point to the corresponding
105 value. Otherwise, do the equivalent of insert(k, value_type())
106 and, if that succeeds, set *v to point to the inserted value.
107 Requires k to be non-NULL. Does nothing and returns NULL if the
108 allocator fails. Typically returns this, but will return a new
109 insert_only_hash_map if a resize occurs. If the return value is
110 non-NULL, *v is set and it's valid until a resize of the map that
111 is the return value. */
113 insert_only_hash_map
*
114 find_or_add_key (const key_type
*k
, value_type
**v
);
116 /* Get the value corresponding to *k. Returns NULL if there is
117 none. Requires k to be non-NULL. The return value is valid
119 const value_type
*get (const key_type
*k
) const;
123 { return num_entries_
; }
127 { return this->size () == 0; }
130 bucket_count () const
131 { return num_buckets_
; }
134 typedef std::pair
<const key_type
*, value_type
> bucket_type
;
136 insert_only_hash_map
*put_internal (const key_type
*, const value_type
&,
139 /* This function determines when to resize the table. */
141 is_too_full (size_type entries
) const
142 { return entries
> (this->bucket_count () * 0.7); }
144 /* Return a copy with double the number of buckets. Returns NULL if
145 the allocator fails. Otherwise, calls destroy (this). */
146 insert_only_hash_map
*destructive_copy ();
148 /* Must be a power of 2 not less than min_capacity. */
149 size_type num_buckets_
;
150 size_type num_entries_
;
151 size_type size_in_bytes_
;
152 bucket_type buckets
[0]; /* Actual array size is num_buckets. */
155 template <typename T
, typename Alloc
>
156 insert_only_hash_map
<T
, Alloc
> *
157 insert_only_hash_map
<T
, Alloc
>::create (size_type expected_size
)
159 size_t cap
= min_capacity
;
160 while (expected_size
>= cap
)
164 size_t size_in_bytes
= sizeof (insert_only_hash_map
<T
, Alloc
>)
165 + cap
* sizeof (bucket_type
);
166 insert_only_hash_map
<T
, Alloc
>* result
=
167 static_cast <insert_only_hash_map
<T
, Alloc
>*> (Alloc ()
168 .alloc (size_in_bytes
));
171 result
->size_in_bytes_
= size_in_bytes
;
172 result
->num_buckets_
= cap
;
173 result
->num_entries_
= 0;
174 memset (result
->buckets
, 0, cap
* sizeof (bucket_type
));
179 template <typename T
, typename Alloc
>
180 insert_only_hash_map
<T
, Alloc
>*
181 insert_only_hash_map
<T
, Alloc
>::destructive_copy ()
183 insert_only_hash_map
* copy
= create (this->bucket_count ());
186 VTV_DEBUG_ASSERT (copy
->bucket_count () == 2 * this->bucket_count ());
187 for (size_type i
= 0; i
< this->bucket_count (); i
++)
188 if (this->buckets
[i
].first
!= NULL
)
189 copy
->put_internal (this->buckets
[i
].first
, this->buckets
[i
].second
,
191 VTV_DEBUG_ASSERT (copy
->size () == this->size ());
196 template <typename T
, typename Alloc
>
197 insert_only_hash_map
<T
, Alloc
>*
198 insert_only_hash_map
<T
, Alloc
>::find_or_add_key (const key_type
*k
,
201 /* Table size is always a power of 2. */
202 const size_type mask
= this->bucket_count () - 1;
203 size_type bucket_index
= k
->hash
& mask
;
207 bucket_type
&bucket
= this->buckets
[bucket_index
];
208 if (bucket
.first
== NULL
)
210 /* Key was not present. */
211 if (this->is_too_full (this->size () + 1))
213 insert_only_hash_map
<T
, Alloc
>* result
=
214 this->destructive_copy ();
215 return result
== NULL
217 : result
->find_or_add_key (k
, v
);
222 bucket
.second
= T ();
223 this->num_entries_
++;
228 else if (bucket
.first
->equals (k
))
230 /* Key was present. */
235 bucket_index
= (bucket_index
+ step
++) & mask
;
239 template <typename T
, typename Alloc
>
240 insert_only_hash_map
<T
, Alloc
>*
241 insert_only_hash_map
<T
, Alloc
>::put_internal (
242 const insert_only_hash_map::key_type
*k
,
243 const insert_only_hash_map::value_type
&v
,
244 bool unique_key_and_resize_not_needed
)
246 /* Table size is always a power of 2. */
247 const size_type mask
= this->bucket_count () - 1;
248 size_type bucket_index
= k
->hash
& mask
;
252 bucket_type
&bucket
= this->buckets
[bucket_index
];
253 if (bucket
.first
== NULL
)
255 /* Key was not present. */
256 if (!unique_key_and_resize_not_needed
257 && this->is_too_full (this->size () + 1))
259 insert_only_hash_map
<T
, Alloc
>* result
=
260 this->destructive_copy ();
261 return result
== NULL
263 : result
->put_internal (k
, v
, true);
269 this->num_entries_
++;
273 else if (!unique_key_and_resize_not_needed
&& bucket
.first
->equals (k
))
275 /* Key was present. Just change the value. */
280 bucket_index
= (bucket_index
+ step
++) & mask
;
284 template <typename T
, typename Alloc
>
285 inline const typename insert_only_hash_map
<T
, Alloc
>::value_type
*
286 insert_only_hash_map
<T
, Alloc
>::get (const insert_only_hash_map::key_type
*k
)
289 /* Table size is always a power of 2. */
290 const size_type mask
= this->bucket_count () - 1;
291 size_type bucket_index
= k
->hash
& mask
;
295 const bucket_type
&bucket
= this->buckets
[bucket_index
];
296 if (bucket
.first
== NULL
)
298 else if (bucket
.first
->equals (k
))
299 return &bucket
.second
;
301 bucket_index
= (bucket_index
+ step
++) & mask
;
305 template <typename T
, typename Alloc
>
307 insert_only_hash_map
<T
, Alloc
>::key_type::equals (
308 const typename insert_only_hash_map
<T
, Alloc
>::key_type
*k
) const
310 const char* x
= reinterpret_cast <const char *> (k
);
311 const char* y
= reinterpret_cast <const char *> (this);
312 return (load8bytes (x
) == load8bytes (y
)
313 && memcmp (x
+ 8, y
+ 8, this->n
) == 0);
316 #endif /* _VTV_MAP_H */