This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix t/comp/parser_run.t for EBCDIC
[perl5.git] / hv.c
CommitLineData
a0d0e21e 1/* hv.c
79072805 2 *
1129b882
NC
3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
79072805
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
a0d0e21e
LW
9 */
10
11/*
4ac71550
TC
12 * I sit beside the fire and think
13 * of all that I have seen.
14 * --Bilbo
15 *
16 * [p.278 of _The Lord of the Rings_, II/iii: "The Ring Goes South"]
79072805
LW
17 */
18
d5afce77
RB
19/*
20=head1 Hash Manipulation Functions
db4fbf16
FC
21A HV structure represents a Perl hash. It consists mainly of an array
22of pointers, each of which points to a linked list of HE structures. The
166f8a29 23array is indexed by the hash function of the key, so each linked list
db4fbf16 24represents all the hash entries with the same hash value. Each HE contains
166f8a29
DM
25a pointer to the actual value, plus a pointer to a HEK structure which
26holds the key and hash value.
27
28=cut
29
d5afce77
RB
30*/
31
79072805 32#include "EXTERN.h"
864dbfa3 33#define PERL_IN_HV_C
3d78eb94 34#define PERL_HASH_INTERNAL_ACCESS
79072805
LW
35#include "perl.h"
36
6f019ba7
YO
37/* we split when we collide and we have a load factor over 0.667.
38 * NOTE if you change this formula so we split earlier than previously
39 * you MUST change the logic in hv_ksplit()
40 */
41#define DO_HSPLIT(xhv) ( ((xhv)->xhv_keys + ((xhv)->xhv_keys >> 1)) > (xhv)->xhv_max )
9faf471a 42#define HV_FILL_THRESHOLD 31
fdcd69b6 43
d75ce684 44static const char S_strtab_error[]
5d2b1485
NC
45 = "Cannot modify shared string table in hv_%s";
46
c941fb51
NC
47#ifdef PURIFY
48
49#define new_HE() (HE*)safemalloc(sizeof(HE))
50#define del_HE(p) safefree((char*)p)
51
52#else
53
76e3520e 54STATIC HE*
cea2e8a9 55S_new_he(pTHX)
4633a7c4
LW
56{
57 HE* he;
0bd48802 58 void ** const root = &PL_body_roots[HE_SVSLOT];
6a93a7e5 59
6a93a7e5 60 if (!*root)
1e30fcd5 61 Perl_more_bodies(aTHX_ HE_SVSLOT, sizeof(HE), PERL_ARENA_SIZE);
10edeb5d 62 he = (HE*) *root;
ce3e5c45 63 assert(he);
6a93a7e5 64 *root = HeNEXT(he);
333f433b 65 return he;
4633a7c4
LW
66}
67
c941fb51
NC
68#define new_HE() new_he()
69#define del_HE(p) \
70 STMT_START { \
6a93a7e5
NC
71 HeNEXT(p) = (HE*)(PL_body_roots[HE_SVSLOT]); \
72 PL_body_roots[HE_SVSLOT] = p; \
c941fb51 73 } STMT_END
d33b2eba 74
d33b2eba 75
d33b2eba
GS
76
77#endif
78
76e3520e 79STATIC HEK *
5f66b61c 80S_save_hek_flags(const char *str, I32 len, U32 hash, int flags)
bbce6d69 81{
35a4481c 82 const int flags_masked = flags & HVhek_MASK;
bbce6d69 83 char *k;
eb578fdb 84 HEK *hek;
1c846c1f 85
7918f24d 86 PERL_ARGS_ASSERT_SAVE_HEK_FLAGS;
ea3ffa52
TC
87
88 Newx(k, HEK_BASESIZE + len + 2, char);
bbce6d69 89 hek = (HEK*)k;
ff68c719 90 Copy(str, HEK_KEY(hek), len, char);
e05949c7 91 HEK_KEY(hek)[len] = 0;
ff68c719 92 HEK_LEN(hek) = len;
93 HEK_HASH(hek) = hash;
45e34800 94 HEK_FLAGS(hek) = (unsigned char)flags_masked | HVhek_UNSHARED;
dcf933a4
NC
95
96 if (flags & HVhek_FREEKEY)
97 Safefree(str);
bbce6d69 98 return hek;
99}
100
4a31713e 101/* free the pool of temporary HE/HEK pairs returned by hv_fetch_ent
dd28f7bb
DM
102 * for tied hashes */
103
104void
105Perl_free_tied_hv_pool(pTHX)
106{
dd28f7bb
DM
107 HE *he = PL_hv_fetch_ent_mh;
108 while (he) {
9d4ba2ae 109 HE * const ohe = he;
dd28f7bb 110 Safefree(HeKEY_hek(he));
dd28f7bb
DM
111 he = HeNEXT(he);
112 del_HE(ohe);
113 }
4608196e 114 PL_hv_fetch_ent_mh = NULL;
dd28f7bb
DM
115}
116
d18c6117 117#if defined(USE_ITHREADS)
0bff533c
NC
118HEK *
119Perl_hek_dup(pTHX_ HEK *source, CLONE_PARAMS* param)
120{
566771cc 121 HEK *shared;
9d4ba2ae 122
7918f24d 123 PERL_ARGS_ASSERT_HEK_DUP;
9d4ba2ae 124 PERL_UNUSED_ARG(param);
0bff533c 125
566771cc
NC
126 if (!source)
127 return NULL;
128
129 shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
0bff533c
NC
130 if (shared) {
131 /* We already shared this hash key. */
454f1e26 132 (void)share_hek_hek(shared);
0bff533c
NC
133 }
134 else {
658b4a4a 135 shared
6e838c70
NC
136 = share_hek_flags(HEK_KEY(source), HEK_LEN(source),
137 HEK_HASH(source), HEK_FLAGS(source));
658b4a4a 138 ptr_table_store(PL_ptr_table, source, shared);
0bff533c 139 }
658b4a4a 140 return shared;
0bff533c
NC
141}
142
d18c6117 143HE *
5c4138a0 144Perl_he_dup(pTHX_ const HE *e, bool shared, CLONE_PARAMS* param)
d18c6117
GS
145{
146 HE *ret;
147
7918f24d
NC
148 PERL_ARGS_ASSERT_HE_DUP;
149
d18c6117 150 if (!e)
4608196e 151 return NULL;
7766f137
GS
152 /* look for it in the table first */
153 ret = (HE*)ptr_table_fetch(PL_ptr_table, e);
154 if (ret)
155 return ret;
156
157 /* create anew and remember what it is */
d33b2eba 158 ret = new_HE();
7766f137
GS
159 ptr_table_store(PL_ptr_table, e, ret);
160
d2d73c3e 161 HeNEXT(ret) = he_dup(HeNEXT(e),shared, param);
dd28f7bb
DM
162 if (HeKLEN(e) == HEf_SVKEY) {
163 char *k;
ad64d0ec 164 Newx(k, HEK_BASESIZE + sizeof(const SV *), char);
dd28f7bb 165 HeKEY_hek(ret) = (HEK*)k;
a09252eb 166 HeKEY_sv(ret) = sv_dup_inc(HeKEY_sv(e), param);
dd28f7bb 167 }
c21d1a0f 168 else if (shared) {
0bff533c
NC
169 /* This is hek_dup inlined, which seems to be important for speed
170 reasons. */
1b6737cc 171 HEK * const source = HeKEY_hek(e);
658b4a4a 172 HEK *shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
c21d1a0f
NC
173
174 if (shared) {
175 /* We already shared this hash key. */
454f1e26 176 (void)share_hek_hek(shared);
c21d1a0f
NC
177 }
178 else {
658b4a4a 179 shared
6e838c70
NC
180 = share_hek_flags(HEK_KEY(source), HEK_LEN(source),
181 HEK_HASH(source), HEK_FLAGS(source));
658b4a4a 182 ptr_table_store(PL_ptr_table, source, shared);
c21d1a0f 183 }
658b4a4a 184 HeKEY_hek(ret) = shared;
c21d1a0f 185 }
d18c6117 186 else
19692e8d
NC
187 HeKEY_hek(ret) = save_hek_flags(HeKEY(e), HeKLEN(e), HeHASH(e),
188 HeKFLAGS(e));
a09252eb 189 HeVAL(ret) = sv_dup_inc(HeVAL(e), param);
d18c6117
GS
190 return ret;
191}
192#endif /* USE_ITHREADS */
193
1b1f1335 194static void
2393f1b9
JH
195S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen,
196 const char *msg)
1b1f1335 197{
1b6737cc 198 SV * const sv = sv_newmortal();
7918f24d
NC
199
200 PERL_ARGS_ASSERT_HV_NOTALLOWED;
201
19692e8d 202 if (!(flags & HVhek_FREEKEY)) {
1b1f1335
NIS
203 sv_setpvn(sv, key, klen);
204 }
205 else {
206 /* Need to free saved eventually assign to mortal SV */
34c3c4e3 207 /* XXX is this line an error ???: SV *sv = sv_newmortal(); */
1b1f1335
NIS
208 sv_usepvn(sv, (char *) key, klen);
209 }
19692e8d 210 if (flags & HVhek_UTF8) {
1b1f1335
NIS
211 SvUTF8_on(sv);
212 }
be2597df 213 Perl_croak(aTHX_ msg, SVfARG(sv));
1b1f1335
NIS
214}
215
fde52b5c 216/* (klen == HEf_SVKEY) is special for MAGICAL hv entries, meaning key slot
217 * contains an SV* */
218
34a6f7b4
NC
219/*
220=for apidoc hv_store
221
a05d6c5d
TC
222Stores an SV in a hash. The hash key is specified as C<key> and the
223absolute value of C<klen> is the length of the key. If C<klen> is
224negative the key is assumed to be in UTF-8-encoded Unicode. The
225C<hash> parameter is the precomputed hash value; if it is zero then
226Perl will compute it.
227
228The return value will be
796b6530 229C<NULL> if the operation failed or if the value did not need to be actually
34a6f7b4
NC
230stored within the hash (as in the case of tied hashes). Otherwise it can
231be dereferenced to get the original C<SV*>. Note that the caller is
232responsible for suitably incrementing the reference count of C<val> before
796b6530
KW
233the call, and decrementing it if the function returned C<NULL>. Effectively
234a successful C<hv_store> takes ownership of one reference to C<val>. This is
34a6f7b4 235usually what you want; a newly created SV has a reference count of one, so
796b6530 236if all your code does is create SVs then store them in a hash, C<hv_store>
34a6f7b4 237will own the only reference to the new SV, and your code doesn't need to do
796b6530
KW
238anything further to tidy up. C<hv_store> is not implemented as a call to
239C<hv_store_ent>, and does not create a temporary SV for the key, so if your
240key data is not already in SV form then use C<hv_store> in preference to
241C<hv_store_ent>.
34a6f7b4
NC
242
243See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
244information on how to use this function on tied hashes.
245
34a6f7b4
NC
246=for apidoc hv_store_ent
247
248Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
249parameter is the precomputed hash value; if it is zero then Perl will
250compute it. The return value is the new hash entry so created. It will be
796b6530 251C<NULL> if the operation failed or if the value did not need to be actually
34a6f7b4
NC
252stored within the hash (as in the case of tied hashes). Otherwise the
253contents of the return value can be accessed using the C<He?> macros
254described here. Note that the caller is responsible for suitably
255incrementing the reference count of C<val> before the call, and
256decrementing it if the function returned NULL. Effectively a successful
796b6530 257C<hv_store_ent> takes ownership of one reference to C<val>. This is
34a6f7b4 258usually what you want; a newly created SV has a reference count of one, so
796b6530 259if all your code does is create SVs then store them in a hash, C<hv_store>
34a6f7b4 260will own the only reference to the new SV, and your code doesn't need to do
796b6530 261anything further to tidy up. Note that C<hv_store_ent> only reads the C<key>;
34a6f7b4 262unlike C<val> it does not take ownership of it, so maintaining the correct
796b6530
KW
263reference count on C<key> is entirely the caller's responsibility. C<hv_store>
264is not implemented as a call to C<hv_store_ent>, and does not create a temporary
34a6f7b4 265SV for the key, so if your key data is not already in SV form then use
796b6530 266C<hv_store> in preference to C<hv_store_ent>.
34a6f7b4
NC
267
268See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
269information on how to use this function on tied hashes.
270
34a6f7b4
NC
271=for apidoc hv_exists
272
273Returns a boolean indicating whether the specified hash key exists. The
a05d6c5d
TC
274absolute value of C<klen> is the length of the key. If C<klen> is
275negative the key is assumed to be in UTF-8-encoded Unicode.
34a6f7b4 276
954c1994
GS
277=for apidoc hv_fetch
278
a05d6c5d
TC
279Returns the SV which corresponds to the specified key in the hash.
280The absolute value of C<klen> is the length of the key. If C<klen> is
281negative the key is assumed to be in UTF-8-encoded Unicode. If
43d3b06a
KW
282C<lval> is set then the fetch will be part of a store. This means that if
283there is no value in the hash associated with the given key, then one is
284created and a pointer to it is returned. The C<SV*> it points to can be
285assigned to. But always check that the
a05d6c5d 286return value is non-null before dereferencing it to an C<SV*>.
954c1994 287
96f1132b 288See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994
GS
289information on how to use this function on tied hashes.
290
34a6f7b4
NC
291=for apidoc hv_exists_ent
292
db4fbf16
FC
293Returns a boolean indicating whether
294the specified hash key exists. C<hash>
34a6f7b4
NC
295can be a valid precomputed hash value, or 0 to ask for it to be
296computed.
297
298=cut
299*/
300
d1be9408 301/* returns an HE * structure with the all fields set */
fde52b5c 302/* note that hent_val will be a mortal sv for MAGICAL hashes */
954c1994
GS
303/*
304=for apidoc hv_fetch_ent
305
306Returns the hash entry which corresponds to the specified key in the hash.
307C<hash> must be a valid precomputed hash number for the given C<key>, or 0
308if you want the function to compute it. IF C<lval> is set then the fetch
309will be part of a store. Make sure the return value is non-null before
b24b84ef 310accessing it. The return value when C<hv> is a tied hash is a pointer to a
954c1994 311static location, so be sure to make a copy of the structure if you need to
1c846c1f 312store it somewhere.
954c1994 313
96f1132b 314See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994
GS
315information on how to use this function on tied hashes.
316
317=cut
318*/
319
a038e571
NC
320/* Common code for hv_delete()/hv_exists()/hv_fetch()/hv_store() */
321void *
322Perl_hv_common_key_len(pTHX_ HV *hv, const char *key, I32 klen_i32,
323 const int action, SV *val, const U32 hash)
324{
325 STRLEN klen;
326 int flags;
327
7918f24d
NC
328 PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN;
329
a038e571
NC
330 if (klen_i32 < 0) {
331 klen = -klen_i32;
332 flags = HVhek_UTF8;
333 } else {
334 klen = klen_i32;
335 flags = 0;
336 }
337 return hv_common(hv, NULL, key, klen, flags, action, val, hash);
338}
339
63c89345 340void *
d3ba3f5c 341Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
5aaab254 342 int flags, int action, SV *val, U32 hash)
113738bb 343{
27da23d5 344 dVAR;
b2c64049 345 XPVHV* xhv;
b2c64049
NC
346 HE *entry;
347 HE **oentry;
fde52b5c 348 SV *sv;
da58a35d 349 bool is_utf8;
6f019ba7 350 bool in_collision;
113738bb 351 int masked_flags;
3c84c864 352 const int return_svp = action & HV_FETCH_JUST_SV;
34dadc62 353 HEK *keysv_hek = NULL;
fde52b5c 354
355 if (!hv)
a4fc7abc 356 return NULL;
e4787c0c 357 if (SvTYPE(hv) == (svtype)SVTYPEMASK)
8265e3d1
NC
358 return NULL;
359
360 assert(SvTYPE(hv) == SVt_PVHV);
fde52b5c 361
bdee33e4 362 if (SvSMAGICAL(hv) && SvGMAGICAL(hv) && !(action & HV_DISABLE_UVAR_XKEY)) {
fda2d18a 363 MAGIC* mg;
ad64d0ec 364 if ((mg = mg_find((const SV *)hv, PERL_MAGIC_uvar))) {
fda2d18a
NC
365 struct ufuncs * const uf = (struct ufuncs *)mg->mg_ptr;
366 if (uf->uf_set == NULL) {
367 SV* obj = mg->mg_obj;
368
369 if (!keysv) {
59cd0e26
NC
370 keysv = newSVpvn_flags(key, klen, SVs_TEMP |
371 ((flags & HVhek_UTF8)
372 ? SVf_UTF8 : 0));
fda2d18a
NC
373 }
374
375 mg->mg_obj = keysv; /* pass key */
376 uf->uf_index = action; /* pass action */
ad64d0ec 377 magic_getuvar(MUTABLE_SV(hv), mg);
fda2d18a
NC
378 keysv = mg->mg_obj; /* may have changed */
379 mg->mg_obj = obj;
380
381 /* If the key may have changed, then we need to invalidate
382 any passed-in computed hash value. */
383 hash = 0;
384 }
385 }
bdee33e4 386 }
113738bb 387 if (keysv) {
e593d2fe
AE
388 if (flags & HVhek_FREEKEY)
389 Safefree(key);
5c144d81 390 key = SvPV_const(keysv, klen);
113738bb 391 is_utf8 = (SvUTF8(keysv) != 0);
44b87b50
NC
392 if (SvIsCOW_shared_hash(keysv)) {
393 flags = HVhek_KEYCANONICAL | (is_utf8 ? HVhek_UTF8 : 0);
394 } else {
0ddecb91 395 flags = is_utf8 ? HVhek_UTF8 : 0;
44b87b50 396 }
113738bb 397 } else {
8298454c 398 is_utf8 = cBOOL(flags & HVhek_UTF8);
113738bb 399 }
113738bb 400
9dbc5603 401 if (action & HV_DELETE) {
3c84c864 402 return (void *) hv_delete_common(hv, keysv, key, klen,
0ddecb91 403 flags, action, hash);
9dbc5603
NC
404 }
405
b2c64049 406 xhv = (XPVHV*)SvANY(hv);
7f66fda2 407 if (SvMAGICAL(hv)) {
6136c704 408 if (SvRMAGICAL(hv) && !(action & (HV_FETCH_ISSTORE|HV_FETCH_ISEXISTS))) {
ad64d0ec
NC
409 if (mg_find((const SV *)hv, PERL_MAGIC_tied)
410 || SvGMAGICAL((const SV *)hv))
e62cc96a 411 {
3c84c864 412 /* FIXME should be able to skimp on the HE/HEK here when
7f66fda2 413 HV_FETCH_JUST_SV is true. */
7f66fda2 414 if (!keysv) {
740cce10
NC
415 keysv = newSVpvn_utf8(key, klen, is_utf8);
416 } else {
7f66fda2 417 keysv = newSVsv(keysv);
113738bb 418 }
44a2ac75 419 sv = sv_newmortal();
ad64d0ec 420 mg_copy(MUTABLE_SV(hv), sv, (char *)keysv, HEf_SVKEY);
7f66fda2
NC
421
422 /* grab a fake HE/HEK pair from the pool or make a new one */
423 entry = PL_hv_fetch_ent_mh;
424 if (entry)
425 PL_hv_fetch_ent_mh = HeNEXT(entry);
426 else {
427 char *k;
428 entry = new_HE();
ad64d0ec 429 Newx(k, HEK_BASESIZE + sizeof(const SV *), char);
7f66fda2
NC
430 HeKEY_hek(entry) = (HEK*)k;
431 }
4608196e 432 HeNEXT(entry) = NULL;
7f66fda2
NC
433 HeSVKEY_set(entry, keysv);
434 HeVAL(entry) = sv;
435 sv_upgrade(sv, SVt_PVLV);
436 LvTYPE(sv) = 'T';
437 /* so we can free entry when freeing sv */
ad64d0ec 438 LvTARG(sv) = MUTABLE_SV(entry);
7f66fda2
NC
439
440 /* XXX remove at some point? */
441 if (flags & HVhek_FREEKEY)
442 Safefree(key);
443
3c84c864
NC
444 if (return_svp) {
445 return entry ? (void *) &HeVAL(entry) : NULL;
446 }
447 return (void *) entry;
113738bb 448 }
7f66fda2 449#ifdef ENV_IS_CASELESS
ad64d0ec 450 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
7f66fda2
NC
451 U32 i;
452 for (i = 0; i < klen; ++i)
453 if (isLOWER(key[i])) {
086cb327
NC
454 /* Would be nice if we had a routine to do the
455 copy and upercase in a single pass through. */
0bd48802 456 const char * const nkey = strupr(savepvn(key,klen));
086cb327
NC
457 /* Note that this fetch is for nkey (the uppercased
458 key) whereas the store is for key (the original) */
63c89345
NC
459 void *result = hv_common(hv, NULL, nkey, klen,
460 HVhek_FREEKEY, /* free nkey */
461 0 /* non-LVAL fetch */
3c84c864
NC
462 | HV_DISABLE_UVAR_XKEY
463 | return_svp,
63c89345
NC
464 NULL /* no value */,
465 0 /* compute hash */);
26488bcf 466 if (!result && (action & HV_FETCH_LVALUE)) {
086cb327
NC
467 /* This call will free key if necessary.
468 Do it this way to encourage compiler to tail
469 call optimise. */
63c89345
NC
470 result = hv_common(hv, keysv, key, klen, flags,
471 HV_FETCH_ISSTORE
3c84c864
NC
472 | HV_DISABLE_UVAR_XKEY
473 | return_svp,
63c89345 474 newSV(0), hash);
086cb327
NC
475 } else {
476 if (flags & HVhek_FREEKEY)
477 Safefree(key);
478 }
63c89345 479 return result;
7f66fda2 480 }
902173a3 481 }
7f66fda2
NC
482#endif
483 } /* ISFETCH */
484 else if (SvRMAGICAL(hv) && (action & HV_FETCH_ISEXISTS)) {
ad64d0ec
NC
485 if (mg_find((const SV *)hv, PERL_MAGIC_tied)
486 || SvGMAGICAL((const SV *)hv)) {
b2c64049
NC
487 /* I don't understand why hv_exists_ent has svret and sv,
488 whereas hv_exists only had one. */
9d4ba2ae 489 SV * const svret = sv_newmortal();
b2c64049 490 sv = sv_newmortal();
7f66fda2
NC
491
492 if (keysv || is_utf8) {
493 if (!keysv) {
740cce10 494 keysv = newSVpvn_utf8(key, klen, TRUE);
7f66fda2
NC
495 } else {
496 keysv = newSVsv(keysv);
497 }
ad64d0ec 498 mg_copy(MUTABLE_SV(hv), sv, (char *)sv_2mortal(keysv), HEf_SVKEY);
b2c64049 499 } else {
ad64d0ec 500 mg_copy(MUTABLE_SV(hv), sv, key, klen);
7f66fda2 501 }
b2c64049
NC
502 if (flags & HVhek_FREEKEY)
503 Safefree(key);
c818886e
JH
504 {
505 MAGIC * const mg = mg_find(sv, PERL_MAGIC_tiedelem);
506 if (mg)
507 magic_existspack(svret, mg);
508 }
7f66fda2
NC
509 /* This cast somewhat evil, but I'm merely using NULL/
510 not NULL to return the boolean exists.
511 And I know hv is not NULL. */
f4c975aa 512 return SvTRUE_NN(svret) ? (void *)hv : NULL;
e7152ba2 513 }
7f66fda2 514#ifdef ENV_IS_CASELESS
ad64d0ec 515 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
7f66fda2 516 /* XXX This code isn't UTF8 clean. */
a15d23f8 517 char * const keysave = (char * const)key;
b2c64049
NC
518 /* Will need to free this, so set FREEKEY flag. */
519 key = savepvn(key,klen);
520 key = (const char*)strupr((char*)key);
6136c704 521 is_utf8 = FALSE;
7f66fda2 522 hash = 0;
8b4f7dd5 523 keysv = 0;
b2c64049
NC
524
525 if (flags & HVhek_FREEKEY) {
526 Safefree(keysave);
527 }
528 flags |= HVhek_FREEKEY;
7f66fda2 529 }
902173a3 530#endif
7f66fda2 531 } /* ISEXISTS */
b2c64049
NC
532 else if (action & HV_FETCH_ISSTORE) {
533 bool needs_copy;
534 bool needs_store;
535 hv_magic_check (hv, &needs_copy, &needs_store);
536 if (needs_copy) {
9a9b5ec9 537 const bool save_taint = TAINT_get;
b2c64049
NC
538 if (keysv || is_utf8) {
539 if (!keysv) {
740cce10 540 keysv = newSVpvn_utf8(key, klen, TRUE);
b2c64049 541 }
284167a5
S
542 if (TAINTING_get)
543 TAINT_set(SvTAINTED(keysv));
b2c64049 544 keysv = sv_2mortal(newSVsv(keysv));
ad64d0ec 545 mg_copy(MUTABLE_SV(hv), val, (char*)keysv, HEf_SVKEY);
b2c64049 546 } else {
ad64d0ec 547 mg_copy(MUTABLE_SV(hv), val, key, klen);
b2c64049
NC
548 }
549
550 TAINT_IF(save_taint);
9a9b5ec9
DM
551#ifdef NO_TAINT_SUPPORT
552 PERL_UNUSED_VAR(save_taint);
553#endif
1baaf5d7 554 if (!needs_store) {
b2c64049
NC
555 if (flags & HVhek_FREEKEY)
556 Safefree(key);
4608196e 557 return NULL;
b2c64049
NC
558 }
559#ifdef ENV_IS_CASELESS
ad64d0ec 560 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
b2c64049
NC
561 /* XXX This code isn't UTF8 clean. */
562 const char *keysave = key;
563 /* Will need to free this, so set FREEKEY flag. */
564 key = savepvn(key,klen);
565 key = (const char*)strupr((char*)key);
6136c704 566 is_utf8 = FALSE;
b2c64049 567 hash = 0;
8b4f7dd5 568 keysv = 0;
b2c64049
NC
569
570 if (flags & HVhek_FREEKEY) {
571 Safefree(keysave);
572 }
573 flags |= HVhek_FREEKEY;
574 }
575#endif
576 }
577 } /* ISSTORE */
7f66fda2 578 } /* SvMAGICAL */
fde52b5c 579
7b2c381c 580 if (!HvARRAY(hv)) {
b2c64049 581 if ((action & (HV_FETCH_LVALUE | HV_FETCH_ISSTORE))
fde52b5c 582#ifdef DYNAMIC_ENV_FETCH /* if it's an %ENV lookup, we may get it on the fly */
ad64d0ec
NC
583 || (SvRMAGICAL((const SV *)hv)
584 && mg_find((const SV *)hv, PERL_MAGIC_env))
fde52b5c 585#endif
d58e6666
NC
586 ) {
587 char *array;
a02a5408 588 Newxz(array,
cbec9347 589 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
d58e6666
NC
590 char);
591 HvARRAY(hv) = (HE**)array;
592 }
7f66fda2
NC
593#ifdef DYNAMIC_ENV_FETCH
594 else if (action & HV_FETCH_ISEXISTS) {
595 /* for an %ENV exists, if we do an insert it's by a recursive
596 store call, so avoid creating HvARRAY(hv) right now. */
597 }
598#endif
113738bb
NC
599 else {
600 /* XXX remove at some point? */
601 if (flags & HVhek_FREEKEY)
602 Safefree(key);
603
3c84c864 604 return NULL;
113738bb 605 }
fde52b5c 606 }
607
37ae23ff 608 if (is_utf8 && !(flags & HVhek_KEYCANONICAL)) {
41d88b63 609 char * const keysave = (char *)key;
f9a63242 610 key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
19692e8d 611 if (is_utf8)
c1fe5510
NC
612 flags |= HVhek_UTF8;
613 else
614 flags &= ~HVhek_UTF8;
7f66fda2
NC
615 if (key != keysave) {
616 if (flags & HVhek_FREEKEY)
617 Safefree(keysave);
19692e8d 618 flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
527df579
NC
619 /* If the caller calculated a hash, it was on the sequence of
620 octets that are the UTF-8 form. We've now changed the sequence
621 of octets stored to that of the equivalent byte representation,
622 so the hash we need is different. */
623 hash = 0;
7f66fda2 624 }
19692e8d 625 }
f9a63242 626
34dadc62
DM
627 if (keysv && (SvIsCOW_shared_hash(keysv))) {
628 if (HvSHAREKEYS(hv))
629 keysv_hek = SvSHARED_HEK_FROM_PV(SvPVX_const(keysv));
630 hash = SvSHARED_HASH(keysv);
7dc86639 631 }
34dadc62
DM
632 else if (!hash)
633 PERL_HASH(hash, key, klen);
effa1e2d 634
113738bb
NC
635 masked_flags = (flags & HVhek_MASK);
636
7f66fda2 637#ifdef DYNAMIC_ENV_FETCH
4608196e 638 if (!HvARRAY(hv)) entry = NULL;
7f66fda2
NC
639 else
640#endif
b2c64049 641 {
7b2c381c 642 entry = (HvARRAY(hv))[hash & (I32) HvMAX(hv)];
b2c64049 643 }
34dadc62
DM
644
645 if (!entry)
646 goto not_found;
647
648 if (keysv_hek) {
649 /* keysv is actually a HEK in disguise, so we can match just by
650 * comparing the HEK pointers in the HE chain. There is a slight
651 * caveat: on something like "\x80", which has both plain and utf8
652 * representations, perl's hashes do encoding-insensitive lookups,
653 * but preserve the encoding of the stored key. Thus a particular
654 * key could map to two different HEKs in PL_strtab. We only
655 * conclude 'not found' if all the flags are the same; otherwise
656 * we fall back to a full search (this should only happen in rare
657 * cases).
658 */
659 int keysv_flags = HEK_FLAGS(keysv_hek);
660 HE *orig_entry = entry;
661
662 for (; entry; entry = HeNEXT(entry)) {
663 HEK *hek = HeKEY_hek(entry);
664 if (hek == keysv_hek)
665 goto found;
666 if (HEK_FLAGS(hek) != keysv_flags)
667 break; /* need to do full match */
668 }
669 if (!entry)
670 goto not_found;
671 /* failed on shortcut - do full search loop */
672 entry = orig_entry;
673 }
674
0298d7b9 675 for (; entry; entry = HeNEXT(entry)) {
fde52b5c 676 if (HeHASH(entry) != hash) /* strings can't be equal */
677 continue;
eb160463 678 if (HeKLEN(entry) != (I32)klen)
fde52b5c 679 continue;
34dadc62 680 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 681 continue;
113738bb 682 if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
c3654f1a 683 continue;
b2c64049 684
34dadc62 685 found:
b2c64049
NC
686 if (action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE)) {
687 if (HeKFLAGS(entry) != masked_flags) {
688 /* We match if HVhek_UTF8 bit in our flags and hash key's
689 match. But if entry was set previously with HVhek_WASUTF8
690 and key now doesn't (or vice versa) then we should change
691 the key's flag, as this is assignment. */
692 if (HvSHAREKEYS(hv)) {
693 /* Need to swap the key we have for a key with the flags we
694 need. As keys are shared we can't just write to the
695 flag, so we share the new one, unshare the old one. */
6136c704 696 HEK * const new_hek = share_hek_flags(key, klen, hash,
6e838c70 697 masked_flags);
b2c64049
NC
698 unshare_hek (HeKEY_hek(entry));
699 HeKEY_hek(entry) = new_hek;
700 }
5d2b1485
NC
701 else if (hv == PL_strtab) {
702 /* PL_strtab is usually the only hash without HvSHAREKEYS,
703 so putting this test here is cheap */
704 if (flags & HVhek_FREEKEY)
705 Safefree(key);
706 Perl_croak(aTHX_ S_strtab_error,
707 action & HV_FETCH_LVALUE ? "fetch" : "store");
708 }
b2c64049
NC
709 else
710 HeKFLAGS(entry) = masked_flags;
711 if (masked_flags & HVhek_ENABLEHVKFLAGS)
712 HvHASKFLAGS_on(hv);
713 }
714 if (HeVAL(entry) == &PL_sv_placeholder) {
715 /* yes, can store into placeholder slot */
716 if (action & HV_FETCH_LVALUE) {
717 if (SvMAGICAL(hv)) {
718 /* This preserves behaviour with the old hv_fetch
719 implementation which at this point would bail out
720 with a break; (at "if we find a placeholder, we
721 pretend we haven't found anything")
722
723 That break mean that if a placeholder were found, it
724 caused a call into hv_store, which in turn would
725 check magic, and if there is no magic end up pretty
726 much back at this point (in hv_store's code). */
727 break;
728 }
486ec47a 729 /* LVAL fetch which actually needs a store. */
561b68a9 730 val = newSV(0);
ca732855 731 HvPLACEHOLDERS(hv)--;
b2c64049
NC
732 } else {
733 /* store */
734 if (val != &PL_sv_placeholder)
ca732855 735 HvPLACEHOLDERS(hv)--;
b2c64049
NC
736 }
737 HeVAL(entry) = val;
738 } else if (action & HV_FETCH_ISSTORE) {
cefd5c7c 739 SvREFCNT_dec(HeVAL(entry));
b2c64049
NC
740 HeVAL(entry) = val;
741 }
27bcc0a7 742 } else if (HeVAL(entry) == &PL_sv_placeholder) {
b2c64049
NC
743 /* if we find a placeholder, we pretend we haven't found
744 anything */
8aacddc1 745 break;
b2c64049 746 }
113738bb
NC
747 if (flags & HVhek_FREEKEY)
748 Safefree(key);
3c84c864 749 if (return_svp) {
b66176f0 750 return (void *) &HeVAL(entry);
3c84c864 751 }
fde52b5c 752 return entry;
753 }
34dadc62
DM
754
755 not_found:
fde52b5c 756#ifdef DYNAMIC_ENV_FETCH /* %ENV lookup? If so, try to fetch the value now */
0ed29950 757 if (!(action & HV_FETCH_ISSTORE)
ad64d0ec
NC
758 && SvRMAGICAL((const SV *)hv)
759 && mg_find((const SV *)hv, PERL_MAGIC_env)) {
a6c40364 760 unsigned long len;
9d4ba2ae 761 const char * const env = PerlEnv_ENVgetenv_len(key,&len);
a6c40364
GS
762 if (env) {
763 sv = newSVpvn(env,len);
764 SvTAINTED_on(sv);
d3ba3f5c 765 return hv_common(hv, keysv, key, klen, flags,
3c84c864
NC
766 HV_FETCH_ISSTORE|HV_DISABLE_UVAR_XKEY|return_svp,
767 sv, hash);
a6c40364 768 }
fde52b5c 769 }
770#endif
7f66fda2
NC
771
772 if (!entry && SvREADONLY(hv) && !(action & HV_FETCH_ISEXISTS)) {
c445ea15 773 hv_notallowed(flags, key, klen,
147e3846 774 "Attempt to access disallowed key '%" SVf "' in"
c8cd6465 775 " a restricted hash");
1b1f1335 776 }
b2c64049
NC
777 if (!(action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE))) {
778 /* Not doing some form of store, so return failure. */
779 if (flags & HVhek_FREEKEY)
780 Safefree(key);
3c84c864 781 return NULL;
b2c64049 782 }
113738bb 783 if (action & HV_FETCH_LVALUE) {
df5f182b 784 val = action & HV_FETCH_EMPTY_HE ? NULL : newSV(0);
b2c64049
NC
785 if (SvMAGICAL(hv)) {
786 /* At this point the old hv_fetch code would call to hv_store,
787 which in turn might do some tied magic. So we need to make that
788 magic check happen. */
789 /* gonna assign to this, so it better be there */
fda2d18a
NC
790 /* If a fetch-as-store fails on the fetch, then the action is to
791 recurse once into "hv_store". If we didn't do this, then that
792 recursive call would call the key conversion routine again.
793 However, as we replace the original key with the converted
794 key, this would result in a double conversion, which would show
e987ad1c
FC
795 up as a bug if the conversion routine is not idempotent.
796 Hence the use of HV_DISABLE_UVAR_XKEY. */
d3ba3f5c 797 return hv_common(hv, keysv, key, klen, flags,
3c84c864
NC
798 HV_FETCH_ISSTORE|HV_DISABLE_UVAR_XKEY|return_svp,
799 val, hash);
b2c64049
NC
800 /* XXX Surely that could leak if the fetch-was-store fails?
801 Just like the hv_fetch. */
113738bb
NC
802 }
803 }
804
b2c64049
NC
805 /* Welcome to hv_store... */
806
7b2c381c 807 if (!HvARRAY(hv)) {
b2c64049
NC
808 /* Not sure if we can get here. I think the only case of oentry being
809 NULL is for %ENV with dynamic env fetch. But that should disappear
810 with magic in the previous code. */
d58e6666 811 char *array;
a02a5408 812 Newxz(array,
b2c64049 813 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
d58e6666
NC
814 char);
815 HvARRAY(hv) = (HE**)array;
b2c64049
NC
816 }
817
7b2c381c 818 oentry = &(HvARRAY(hv))[hash & (I32) xhv->xhv_max];
ab4af705 819
b2c64049
NC
820 entry = new_HE();
821 /* share_hek_flags will do the free for us. This might be considered
822 bad API design. */
823 if (HvSHAREKEYS(hv))
6e838c70 824 HeKEY_hek(entry) = share_hek_flags(key, klen, hash, flags);
5d2b1485
NC
825 else if (hv == PL_strtab) {
826 /* PL_strtab is usually the only hash without HvSHAREKEYS, so putting
827 this test here is cheap */
828 if (flags & HVhek_FREEKEY)
829 Safefree(key);
830 Perl_croak(aTHX_ S_strtab_error,
831 action & HV_FETCH_LVALUE ? "fetch" : "store");
832 }
b2c64049
NC
833 else /* gotta do the real thing */
834 HeKEY_hek(entry) = save_hek_flags(key, klen, hash, flags);
835 HeVAL(entry) = val;
3078e109 836
6a5b4183 837#ifdef PERL_HASH_RANDOMIZE_KEYS
3078e109
YO
838 /* This logic semi-randomizes the insert order in a bucket.
839 * Either we insert into the top, or the slot below the top,
d5fc06cb
YO
840 * making it harder to see if there is a collision. We also
841 * reset the iterator randomizer if there is one.
3078e109 842 */
6f019ba7 843 in_collision = *oentry != NULL;
6a5b4183
YO
844 if ( *oentry && PL_HASH_RAND_BITS_ENABLED) {
845 PL_hash_rand_bits++;
846 PL_hash_rand_bits= ROTL_UV(PL_hash_rand_bits,1);
847 if ( PL_hash_rand_bits & 1 ) {
848 HeNEXT(entry) = HeNEXT(*oentry);
849 HeNEXT(*oentry) = entry;
850 } else {
851 HeNEXT(entry) = *oentry;
852 *oentry = entry;
853 }
854 } else
855#endif
856 {
3078e109
YO
857 HeNEXT(entry) = *oentry;
858 *oentry = entry;
3078e109 859 }
6a5b4183 860#ifdef PERL_HASH_RANDOMIZE_KEYS
3a714294 861 if (SvOOK(hv)) {
ff20b672
YO
862 /* Currently this makes various tests warn in annoying ways.
863 * So Silenced for now. - Yves | bogus end of comment =>* /
864 if (HvAUX(hv)->xhv_riter != -1) {
865 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
866 "[TESTING] Inserting into a hash during each() traversal results in undefined behavior"
867 pTHX__FORMAT
868 pTHX__VALUE);
869 }
870 */
6a5b4183
YO
871 if (PL_HASH_RAND_BITS_ENABLED) {
872 if (PL_HASH_RAND_BITS_ENABLED == 1)
873 PL_hash_rand_bits += (PTRV)entry + 1; /* we don't bother to use ptr_hash here */
874 PL_hash_rand_bits= ROTL_UV(PL_hash_rand_bits,1);
875 }
3a714294
YO
876 HvAUX(hv)->xhv_rand= (U32)PL_hash_rand_bits;
877 }
6a5b4183 878#endif
b2c64049
NC
879
880 if (val == &PL_sv_placeholder)
ca732855 881 HvPLACEHOLDERS(hv)++;
b2c64049
NC
882 if (masked_flags & HVhek_ENABLEHVKFLAGS)
883 HvHASKFLAGS_on(hv);
884
8e317198 885 xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
6f019ba7 886 if ( in_collision && DO_HSPLIT(xhv) ) {
adf6906b 887 const STRLEN oldsize = xhv->xhv_max + 1;
81a3ba35 888 const U32 items = (U32)HvPLACEHOLDERS_get(hv);
adf6906b 889
81a3ba35 890 if (items /* hash has placeholders */
1eaee784
NC
891 && !SvREADONLY(hv) /* but is not a restricted hash */) {
892 /* If this hash previously was a "restricted hash" and had
893 placeholders, but the "restricted" flag has been turned off,
894 then the placeholders no longer serve any useful purpose.
895 However, they have the downsides of taking up RAM, and adding
896 extra steps when finding used values. It's safe to clear them
897 at this point, even though Storable rebuilds restricted hashes by
0ca1b5c3 898 putting in all the placeholders (first) before turning on the
1eaee784
NC
899 readonly flag, because Storable always pre-splits the hash.
900 If we're lucky, then we may clear sufficient placeholders to
901 avoid needing to split the hash at all. */
81a3ba35 902 clear_placeholders(hv, items);
1eaee784
NC
903 if (DO_HSPLIT(xhv))
904 hsplit(hv, oldsize, oldsize * 2);
905 } else
906 hsplit(hv, oldsize, oldsize * 2);
fde52b5c 907 }
b2c64049 908
3c84c864
NC
909 if (return_svp) {
910 return entry ? (void *) &HeVAL(entry) : NULL;
911 }
912 return (void *) entry;
fde52b5c 913}
914
864dbfa3 915STATIC void
b0e6ae5b 916S_hv_magic_check(HV *hv, bool *needs_copy, bool *needs_store)
d0066dc7 917{
a3b680e6 918 const MAGIC *mg = SvMAGIC(hv);
7918f24d
NC
919
920 PERL_ARGS_ASSERT_HV_MAGIC_CHECK;
921
d0066dc7
OT
922 *needs_copy = FALSE;
923 *needs_store = TRUE;
924 while (mg) {
925 if (isUPPER(mg->mg_type)) {
926 *needs_copy = TRUE;
d60c5a05 927 if (mg->mg_type == PERL_MAGIC_tied) {
d0066dc7 928 *needs_store = FALSE;
4ab2a30b 929 return; /* We've set all there is to set. */
d0066dc7
OT
930 }
931 }
932 mg = mg->mg_moremagic;
933 }
934}
935
954c1994 936/*
a3bcc51e
TP
937=for apidoc hv_scalar
938
8bf4c401
YO
939Evaluates the hash in scalar context and returns the result.
940
941When the hash is tied dispatches through to the SCALAR method,
942otherwise returns a mortal SV containing the number of keys
943in the hash.
944
945Note, prior to 5.25 this function returned what is now
946returned by the hv_bucket_ratio() function.
a3bcc51e
TP
947
948=cut
949*/
950
951SV *
952Perl_hv_scalar(pTHX_ HV *hv)
953{
a3bcc51e 954 SV *sv;
823a54a3 955
7918f24d
NC
956 PERL_ARGS_ASSERT_HV_SCALAR;
957
823a54a3 958 if (SvRMAGICAL(hv)) {
ad64d0ec 959 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_tied);
823a54a3
AL
960 if (mg)
961 return magic_scalarpack(hv, mg);
962 }
a3bcc51e
TP
963
964 sv = sv_newmortal();
8bf4c401
YO
965 sv_setuv(sv, HvUSEDKEYS(hv));
966
967 return sv;
968}
969
af3b1cba
DM
970
971/*
8dc9003f
DM
972hv_pushkv(): push all the keys and/or values of a hash onto the stack.
973The rough Perl equivalents:
974 () = %hash;
975 () = keys %hash;
976 () = values %hash;
977
af3b1cba 978Resets the hash's iterator.
8dc9003f
DM
979
980flags : 1 = push keys
981 2 = push values
982 1|2 = push keys and values
983 XXX use symbolic flag constants at some point?
984I might unroll the non-tied hv_iternext() in here at some point - DAPM
af3b1cba
DM
985*/
986
987void
8dc9003f 988Perl_hv_pushkv(pTHX_ HV *hv, U32 flags)
af3b1cba
DM
989{
990 HE *entry;
61084eef
CB
991 bool tied = SvRMAGICAL(hv) && (mg_find(MUTABLE_SV(hv), PERL_MAGIC_tied)
992#ifdef DYNAMIC_ENV_FETCH /* might not know number of keys yet */
993 || mg_find(MUTABLE_SV(hv), PERL_MAGIC_env)
994#endif
995 );
af3b1cba
DM
996 dSP;
997
998 PERL_ARGS_ASSERT_HV_PUSHKV;
8dc9003f 999 assert(flags); /* must be pushing at least one of keys and values */
af3b1cba
DM
1000
1001 (void)hv_iterinit(hv);
1002
1003 if (tied) {
8dc9003f 1004 SSize_t ext = (flags == 3) ? 2 : 1;
af3b1cba 1005 while ((entry = hv_iternext(hv))) {
8dc9003f
DM
1006 EXTEND(SP, ext);
1007 if (flags & 1)
1008 PUSHs(hv_iterkeysv(entry));
1009 if (flags & 2)
1010 PUSHs(hv_iterval(hv, entry));
af3b1cba
DM
1011 }
1012 }
1013 else {
87c9dcef 1014 Size_t nkeys = HvUSEDKEYS(hv);
8dc9003f
DM
1015 SSize_t ext;
1016
1017 if (!nkeys)
1018 return;
1019
87c9dcef
DM
1020 /* 2*nkeys() should never be big enough to truncate or wrap */
1021 assert(nkeys <= (SSize_t_MAX >> 1));
8dc9003f 1022 ext = nkeys * ((flags == 3) ? 2 : 1);
87c9dcef
DM
1023
1024 EXTEND_MORTAL(nkeys);
8dc9003f 1025 EXTEND(SP, ext);
af3b1cba
DM
1026
1027 while ((entry = hv_iternext(hv))) {
8dc9003f
DM
1028 if (flags & 1) {
1029 SV *keysv = newSVhek(HeKEY_hek(entry));
1030 SvTEMP_on(keysv);
1031 PL_tmps_stack[++PL_tmps_ix] = keysv;
1032 PUSHs(keysv);
1033 }
1034 if (flags & 2)
1035 PUSHs(HeVAL(entry));
af3b1cba
DM
1036 }
1037 }
1038
1039 PUTBACK;
1040}
1041
1042
8bf4c401 1043/*
7d7345cf 1044=for apidoc hv_bucket_ratio
8bf4c401
YO
1045
1046If the hash is tied dispatches through to the SCALAR tied method,
1047otherwise if the hash contains no keys returns 0, otherwise returns
1048a mortal sv containing a string specifying the number of used buckets,
1049followed by a slash, followed by the number of available buckets.
1050
1051This function is expensive, it must scan all of the buckets
1052to determine which are used, and the count is NOT cached.
1053In a large hash this could be a lot of buckets.
1054
1055=cut
1056*/
1057
1058SV *
1059Perl_hv_bucket_ratio(pTHX_ HV *hv)
1060{
1061 SV *sv;
1062
1063 PERL_ARGS_ASSERT_HV_BUCKET_RATIO;
1064
1065 if (SvRMAGICAL(hv)) {
1066 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_tied);
1067 if (mg)
1068 return magic_scalarpack(hv, mg);
1069 }
1070
725c44f9
DM
1071 if (HvUSEDKEYS((HV *)hv)) {
1072 sv = sv_newmortal();
a3bcc51e
TP
1073 Perl_sv_setpvf(aTHX_ sv, "%ld/%ld",
1074 (long)HvFILL(hv), (long)HvMAX(hv) + 1);
725c44f9 1075 }
a3bcc51e 1076 else
725c44f9 1077 sv = &PL_sv_zero;
a3bcc51e
TP
1078
1079 return sv;
1080}
1081
1082/*
954c1994
GS
1083=for apidoc hv_delete
1084
a05d6c5d
TC
1085Deletes a key/value pair in the hash. The value's SV is removed from
1086the hash, made mortal, and returned to the caller. The absolute
1087value of C<klen> is the length of the key. If C<klen> is negative the
1088key is assumed to be in UTF-8-encoded Unicode. The C<flags> value
796b6530
KW
1089will normally be zero; if set to C<G_DISCARD> then C<NULL> will be returned.
1090C<NULL> will also be returned if the key is not found.
954c1994 1091
954c1994
GS
1092=for apidoc hv_delete_ent
1093
3025a2e4
CS
1094Deletes a key/value pair in the hash. The value SV is removed from the hash,
1095made mortal, and returned to the caller. The C<flags> value will normally be
796b6530
KW
1096zero; if set to C<G_DISCARD> then C<NULL> will be returned. C<NULL> will also
1097be returned if the key is not found. C<hash> can be a valid precomputed hash
3025a2e4 1098value, or 0 to ask for it to be computed.
954c1994
GS
1099
1100=cut
1101*/
1102
8f8d40ab 1103STATIC SV *
cd6d36ac
NC
1104S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
1105 int k_flags, I32 d_flags, U32 hash)
f1317c8d 1106{
27da23d5 1107 dVAR;
eb578fdb
KW
1108 XPVHV* xhv;
1109 HE *entry;
1110 HE **oentry;
34dadc62 1111 HE **first_entry;
8298454c 1112 bool is_utf8 = cBOOL(k_flags & HVhek_UTF8);
7a9669ca 1113 int masked_flags;
34dadc62
DM
1114 HEK *keysv_hek = NULL;
1115 U8 mro_changes = 0; /* 1 = isa; 2 = package moved */
1116 SV *sv;
1117 GV *gv = NULL;
1118 HV *stash = NULL;
1c846c1f 1119
fde52b5c 1120 if (SvRMAGICAL(hv)) {
0a0bb7c7
OT
1121 bool needs_copy;
1122 bool needs_store;
1123 hv_magic_check (hv, &needs_copy, &needs_store);
1124
f1317c8d 1125 if (needs_copy) {
6136c704 1126 SV *sv;
63c89345
NC
1127 entry = (HE *) hv_common(hv, keysv, key, klen,
1128 k_flags & ~HVhek_FREEKEY,
1129 HV_FETCH_LVALUE|HV_DISABLE_UVAR_XKEY,
1130 NULL, hash);
7a9669ca 1131 sv = entry ? HeVAL(entry) : NULL;
f1317c8d
NC
1132 if (sv) {
1133 if (SvMAGICAL(sv)) {
1134 mg_clear(sv);
1135 }
1136 if (!needs_store) {
1137 if (mg_find(sv, PERL_MAGIC_tiedelem)) {
1138 /* No longer an element */
1139 sv_unmagic(sv, PERL_MAGIC_tiedelem);
1140 return sv;
1141 }
a0714e2c 1142 return NULL; /* element cannot be deleted */
f1317c8d 1143 }
902173a3 1144#ifdef ENV_IS_CASELESS
ad64d0ec 1145 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
8167a60a 1146 /* XXX This code isn't UTF8 clean. */
59cd0e26 1147 keysv = newSVpvn_flags(key, klen, SVs_TEMP);
8167a60a
NC
1148 if (k_flags & HVhek_FREEKEY) {
1149 Safefree(key);
1150 }
1151 key = strupr(SvPVX(keysv));
1152 is_utf8 = 0;
1153 k_flags = 0;
1154 hash = 0;
7f66fda2 1155 }
510ac311 1156#endif
2fd1c6b8 1157 }
2fd1c6b8 1158 }
fde52b5c 1159 }
cbec9347 1160 xhv = (XPVHV*)SvANY(hv);
7b2c381c 1161 if (!HvARRAY(hv))
a0714e2c 1162 return NULL;
fde52b5c 1163
6b230254 1164 if (is_utf8 && !(k_flags & HVhek_KEYCANONICAL)) {
c445ea15 1165 const char * const keysave = key;
b464bac0 1166 key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
cd6d36ac 1167
19692e8d 1168 if (is_utf8)
cd6d36ac
NC
1169 k_flags |= HVhek_UTF8;
1170 else
1171 k_flags &= ~HVhek_UTF8;
7f66fda2
NC
1172 if (key != keysave) {
1173 if (k_flags & HVhek_FREEKEY) {
1174 /* This shouldn't happen if our caller does what we expect,
1175 but strictly the API allows it. */
1176 Safefree(keysave);
1177 }
1178 k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
1179 }
ad64d0ec 1180 HvHASKFLAGS_on(MUTABLE_SV(hv));
19692e8d 1181 }
f9a63242 1182
34dadc62
DM
1183 if (keysv && (SvIsCOW_shared_hash(keysv))) {
1184 if (HvSHAREKEYS(hv))
1185 keysv_hek = SvSHARED_HEK_FROM_PV(SvPVX_const(keysv));
1186 hash = SvSHARED_HASH(keysv);
7dc86639 1187 }
34dadc62
DM
1188 else if (!hash)
1189 PERL_HASH(hash, key, klen);
fde52b5c 1190
7a9669ca
NC
1191 masked_flags = (k_flags & HVhek_MASK);
1192
9faf471a 1193 first_entry = oentry = &(HvARRAY(hv))[hash & (I32) HvMAX(hv)];
fde52b5c 1194 entry = *oentry;
0c3bb3c2 1195
34dadc62
DM
1196 if (!entry)
1197 goto not_found;
1198
1199 if (keysv_hek) {
1200 /* keysv is actually a HEK in disguise, so we can match just by
1201 * comparing the HEK pointers in the HE chain. There is a slight
1202 * caveat: on something like "\x80", which has both plain and utf8
1203 * representations, perl's hashes do encoding-insensitive lookups,
1204 * but preserve the encoding of the stored key. Thus a particular
1205 * key could map to two different HEKs in PL_strtab. We only
1206 * conclude 'not found' if all the flags are the same; otherwise
1207 * we fall back to a full search (this should only happen in rare
1208 * cases).
1209 */
1210 int keysv_flags = HEK_FLAGS(keysv_hek);
1211
1212 for (; entry; oentry = &HeNEXT(entry), entry = *oentry) {
1213 HEK *hek = HeKEY_hek(entry);
1214 if (hek == keysv_hek)
1215 goto found;
1216 if (HEK_FLAGS(hek) != keysv_flags)
1217 break; /* need to do full match */
1218 }
1219 if (!entry)
1220 goto not_found;
1221 /* failed on shortcut - do full search loop */
1222 oentry = first_entry;
1223 entry = *oentry;
1224 }
1225
1226 for (; entry; oentry = &HeNEXT(entry), entry = *oentry) {
fde52b5c 1227 if (HeHASH(entry) != hash) /* strings can't be equal */
1228 continue;
eb160463 1229 if (HeKLEN(entry) != (I32)klen)
fde52b5c 1230 continue;
34dadc62 1231 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 1232 continue;
7a9669ca 1233 if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
c3654f1a 1234 continue;
8aacddc1 1235
34dadc62 1236 found:
5d2b1485
NC
1237 if (hv == PL_strtab) {
1238 if (k_flags & HVhek_FREEKEY)
1239 Safefree(key);
1240 Perl_croak(aTHX_ S_strtab_error, "delete");
1241 }
1242
8aacddc1 1243 /* if placeholder is here, it's already been deleted.... */
6136c704
AL
1244 if (HeVAL(entry) == &PL_sv_placeholder) {
1245 if (k_flags & HVhek_FREEKEY)
1246 Safefree(key);
1247 return NULL;
8aacddc1 1248 }
0ffdaf1a 1249 if (SvREADONLY(hv) && HeVAL(entry) && SvREADONLY(HeVAL(entry))) {
d4c19fe8 1250 hv_notallowed(k_flags, key, klen,
147e3846 1251 "Attempt to delete readonly key '%" SVf "' from"
c8cd6465 1252 " a restricted hash");
8aacddc1 1253 }
b84d0860
NC
1254 if (k_flags & HVhek_FREEKEY)
1255 Safefree(key);
8aacddc1 1256
35759254 1257 /* If this is a stash and the key ends with ::, then someone is
0c3bb3c2 1258 * deleting a package.
0c3bb3c2 1259 */
78b79c77 1260 if (HeVAL(entry) && HvENAME_get(hv)) {
0290c710 1261 gv = (GV *)HeVAL(entry);
35759254 1262 if (keysv) key = SvPV(keysv, klen);
1f656fcf
FC
1263 if ((
1264 (klen > 1 && key[klen-2] == ':' && key[klen-1] == ':')
1265 ||
1266 (klen == 1 && key[0] == ':')
1267 )
e0a52395 1268 && (klen != 6 || hv!=PL_defstash || memNE(key,"main::",6))
0290c710 1269 && SvTYPE(gv) == SVt_PVGV && (stash = GvHV((GV *)gv))
0c3bb3c2 1270 && HvENAME_get(stash)) {
0290c710
FC
1271 /* A previous version of this code checked that the
1272 * GV was still in the symbol table by fetching the
1273 * GV with its name. That is not necessary (and
1274 * sometimes incorrect), as HvENAME cannot be set
1275 * on hv if it is not in the symtab. */
f3d2f32d 1276 mro_changes = 2;
0c3bb3c2
FC
1277 /* Hang on to it for a bit. */
1278 SvREFCNT_inc_simple_void_NN(
0290c710 1279 sv_2mortal((SV *)gv)
35759254
FC
1280 );
1281 }
b59bf0b2 1282 else if (memEQs(key, klen, "ISA") && GvAV(gv)) {
6146d9e1
TC
1283 AV *isa = GvAV(gv);
1284 MAGIC *mg = mg_find((SV*)isa, PERL_MAGIC_isa);
1285
f3d2f32d 1286 mro_changes = 1;
6146d9e1
TC
1287 if (mg) {
1288 if (mg->mg_obj == (SV*)gv) {
1289 /* This is the only stash this ISA was used for.
1290 * The isaelem magic asserts if there's no
1291 * isa magic on the array, so explicitly
1292 * remove the magic on both the array and its
1293 * elements. @ISA shouldn't be /too/ large.
1294 */
1295 SV **svp, **end;
1296 strip_magic:
1297 svp = AvARRAY(isa);
1298 end = svp + AvFILLp(isa)+1;
1299 while (svp < end) {
1300 if (*svp)
1301 mg_free_type(*svp, PERL_MAGIC_isaelem);
1302 ++svp;
1303 }
1304 mg_free_type((SV*)GvAV(gv), PERL_MAGIC_isa);
1305 }
1306 else {
1307 /* mg_obj is an array of stashes
1308 Note that the array doesn't keep a reference
1309 count on the stashes.
1310 */
1311 AV *av = (AV*)mg->mg_obj;
1312 SV **svp, **arrayp;
1313 SSize_t index;
1314 SSize_t items;
1315
1316 assert(SvTYPE(mg->mg_obj) == SVt_PVAV);
1317
1318 /* remove the stash from the magic array */
1319 arrayp = svp = AvARRAY(av);
1320 items = AvFILLp(av) + 1;
1321 if (items == 1) {
1322 assert(*arrayp == (SV *)gv);
1323 mg->mg_obj = NULL;
1324 /* avoid a double free on the last stash */
1325 AvFILLp(av) = -1;
1326 /* The magic isn't MGf_REFCOUNTED, so release
1327 * the array manually.
1328 */
1329 SvREFCNT_dec_NN(av);
1330 goto strip_magic;
1331 }
1332 else {
1333 while (items--) {
1334 if (*svp == (SV*)gv)
1335 break;
1336 ++svp;
1337 }
1338 index = svp - arrayp;
1339 assert(index >= 0 && index <= AvFILLp(av));
1340 if (index < AvFILLp(av)) {
1341 arrayp[index] = arrayp[AvFILLp(av)];
1342 }
1343 arrayp[AvFILLp(av)] = NULL;
1344 --AvFILLp(av);
1345 }
1346 }
1347 }
1348 }
35759254
FC
1349 }
1350
8571a3cc
FC
1351 sv = d_flags & G_DISCARD ? HeVAL(entry) : sv_2mortal(HeVAL(entry));
1352 HeVAL(entry) = &PL_sv_placeholder;
5743f2a3
FC
1353 if (sv) {
1354 /* deletion of method from stash */
1355 if (isGV(sv) && isGV_with_GP(sv) && GvCVu(sv)
1356 && HvENAME_get(hv))
1357 mro_method_changed_in(hv);
5743f2a3 1358 }
8aacddc1
NIS
1359
1360 /*
1361 * If a restricted hash, rather than really deleting the entry, put
1362 * a placeholder there. This marks the key as being "approved", so
1363 * we can still access via not-really-existing key without raising
1364 * an error.
1365 */
f50383f5 1366 if (SvREADONLY(hv))
8aacddc1
NIS
1367 /* We'll be saving this slot, so the number of allocated keys
1368 * doesn't go down, but the number placeholders goes up */
ca732855 1369 HvPLACEHOLDERS(hv)++;
f50383f5 1370 else {
a26e96df 1371 *oentry = HeNEXT(entry);
b79f7545 1372 if (SvOOK(hv) && entry == HvAUX(hv)->xhv_eiter /* HvEITER(hv) */)
8aacddc1 1373 HvLAZYDEL_on(hv);
ae199939
TH
1374 else {
1375 if (SvOOK(hv) && HvLAZYDEL(hv) &&
1376 entry == HeNEXT(HvAUX(hv)->xhv_eiter))
1377 HeNEXT(HvAUX(hv)->xhv_eiter) = HeNEXT(entry);
8aacddc1 1378 hv_free_ent(hv, entry);
ae199939 1379 }
4c7185a0 1380 xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
574c8022 1381 if (xhv->xhv_keys == 0)
19692e8d 1382 HvHASKFLAGS_off(hv);
8aacddc1 1383 }
0c3bb3c2 1384
3b2cd809
FC
1385 if (d_flags & G_DISCARD) {
1386 SvREFCNT_dec(sv);
1387 sv = NULL;
1388 }
1389
f3d2f32d
FC
1390 if (mro_changes == 1) mro_isa_changed_in(hv);
1391 else if (mro_changes == 2)
afdbe55d 1392 mro_package_moved(NULL, stash, gv, 1);
0c3bb3c2 1393
79072805
LW
1394 return sv;
1395 }
34dadc62
DM
1396
1397 not_found:
8aacddc1 1398 if (SvREADONLY(hv)) {
d4c19fe8 1399 hv_notallowed(k_flags, key, klen,
147e3846 1400 "Attempt to delete disallowed key '%" SVf "' from"
c8cd6465 1401 " a restricted hash");
8aacddc1
NIS
1402 }
1403
19692e8d 1404 if (k_flags & HVhek_FREEKEY)
f9a63242 1405 Safefree(key);
a0714e2c 1406 return NULL;
79072805
LW
1407}
1408
32dfa2a7 1409
76e3520e 1410STATIC void
adf6906b 1411S_hsplit(pTHX_ HV *hv, STRLEN const oldsize, STRLEN newsize)
79072805 1412{
7663aa67 1413 STRLEN i = 0;
7b2c381c 1414 char *a = (char*) HvARRAY(hv);
eb578fdb 1415 HE **aep;
79072805 1416
32dfa2a7
YO
1417 bool do_aux= (
1418 /* already have an HvAUX(hv) so we have to move it */
1419 SvOOK(hv) ||
1420 /* no HvAUX() but array we are going to allocate is large enough
1421 * there is no point in saving the space for the iterator, and
1422 * speeds up later traversals. */
1423 ( ( hv != PL_strtab ) && ( newsize >= PERL_HV_ALLOC_AUX_SIZE ) )
1424 );
7918f24d 1425
32dfa2a7 1426 PERL_ARGS_ASSERT_HSPLIT;
18026298 1427
3280af22 1428 PL_nomemok = TRUE;
b79f7545 1429 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
32dfa2a7
YO
1430 + (do_aux ? sizeof(struct xpvhv_aux) : 0), char);
1431 PL_nomemok = FALSE;
422a93e5 1432 if (!a) {
422a93e5
GA
1433 return;
1434 }
32dfa2a7 1435
6a5b4183 1436#ifdef PERL_HASH_RANDOMIZE_KEYS
3078e109
YO
1437 /* the idea of this is that we create a "random" value by hashing the address of
1438 * the array, we then use the low bit to decide if we insert at the top, or insert
1439 * second from top. After each such insert we rotate the hashed value. So we can
1440 * use the same hashed value over and over, and in normal build environments use
1441 * very few ops to do so. ROTL32() should produce a single machine operation. */
6a5b4183
YO
1442 if (PL_HASH_RAND_BITS_ENABLED) {
1443 if (PL_HASH_RAND_BITS_ENABLED == 1)
1444 PL_hash_rand_bits += ptr_hash((PTRV)a);
1445 PL_hash_rand_bits = ROTL_UV(PL_hash_rand_bits,1);
1446 }
1447#endif
32dfa2a7
YO
1448 HvARRAY(hv) = (HE**) a;
1449 HvMAX(hv) = newsize - 1;
1450 /* before we zero the newly added memory, we
1451 * need to deal with the aux struct that may be there
1452 * or have been allocated by us*/
1453 if (do_aux) {
3078e109
YO
1454 struct xpvhv_aux *const dest
1455 = (struct xpvhv_aux*) &a[newsize * sizeof(HE*)];
32dfa2a7
YO
1456 if (SvOOK(hv)) {
1457 /* alread have an aux, copy the old one in place. */
1458 Move(&a[oldsize * sizeof(HE*)], dest, 1, struct xpvhv_aux);
1459 /* we reset the iterator's xhv_rand as well, so they get a totally new ordering */
6a5b4183 1460#ifdef PERL_HASH_RANDOMIZE_KEYS
32dfa2a7 1461 dest->xhv_rand = (U32)PL_hash_rand_bits;
6a5b4183 1462#endif
32dfa2a7
YO
1463 } else {
1464 /* no existing aux structure, but we allocated space for one
f6bab5f6 1465 * so initialize it properly. This unrolls hv_auxinit() a bit,
32dfa2a7
YO
1466 * since we have to do the realloc anyway. */
1467 /* first we set the iterator's xhv_rand so it can be copied into lastrand below */
1468#ifdef PERL_HASH_RANDOMIZE_KEYS
1469 dest->xhv_rand = (U32)PL_hash_rand_bits;
1470#endif
1471 /* this is the "non realloc" part of the hv_auxinit() */
1472 (void)hv_auxinit_internal(dest);
1473 /* Turn on the OOK flag */
1474 SvOOK_on(hv);
1475 }
b79f7545 1476 }
32dfa2a7 1477 /* now we can safely clear the second half */
72311751 1478 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
79072805 1479
68303b5c
NC
1480 if (!HvTOTALKEYS(hv)) /* skip rest if no entries */
1481 return;
1482
32dfa2a7 1483 newsize--;
68303b5c 1484 aep = (HE**)a;
7663aa67 1485 do {
c23dc12b
NC
1486 HE **oentry = aep + i;
1487 HE *entry = aep[i];
4b5190b5 1488
a50a3493 1489 if (!entry) /* non-existent */
79072805 1490 continue;
4c9d89c5 1491 do {
c23dc12b
NC
1492 U32 j = (HeHASH(entry) & newsize);
1493 if (j != (U32)i) {
fde52b5c 1494 *oentry = HeNEXT(entry);
6a5b4183
YO
1495#ifdef PERL_HASH_RANDOMIZE_KEYS
1496 /* if the target cell is empty or PL_HASH_RAND_BITS_ENABLED is false
1497 * insert to top, otherwise rotate the bucket rand 1 bit,
1498 * and use the new low bit to decide if we insert at top,
1499 * or next from top. IOW, we only rotate on a collision.*/
1500 if (aep[j] && PL_HASH_RAND_BITS_ENABLED) {
3f49e765 1501 PL_hash_rand_bits+= ROTL32(HeHASH(entry), 17);
6a5b4183
YO
1502 PL_hash_rand_bits= ROTL_UV(PL_hash_rand_bits,1);
1503 if (PL_hash_rand_bits & 1) {
1504 HeNEXT(entry)= HeNEXT(aep[j]);
1505 HeNEXT(aep[j])= entry;
1506 } else {
1507 /* Note, this is structured in such a way as the optimizer
1508 * should eliminate the duplicated code here and below without
1509 * us needing to explicitly use a goto. */
1510 HeNEXT(entry) = aep[j];
1511 aep[j] = entry;
1512 }
1513 } else
1514#endif
1515 {
1516 /* see comment above about duplicated code */
3078e109
YO
1517 HeNEXT(entry) = aep[j];
1518 aep[j] = entry;
3078e109 1519 }
79072805 1520 }
4b5190b5 1521 else {
fde52b5c 1522 oentry = &HeNEXT(entry);
4b5190b5 1523 }
4c9d89c5
NC
1524 entry = *oentry;
1525 } while (entry);
7663aa67 1526 } while (i++ < oldsize);
79072805
LW
1527}
1528
72940dca 1529void
864dbfa3 1530Perl_hv_ksplit(pTHX_ HV *hv, IV newmax)
72940dca 1531{
eb578fdb 1532 XPVHV* xhv = (XPVHV*)SvANY(hv);
6f019ba7 1533 const I32 oldsize = (I32) xhv->xhv_max+1; /* HvMAX(hv)+1 */
eb578fdb 1534 I32 newsize;
6f019ba7
YO
1535 I32 wantsize;
1536 I32 trysize;
eb578fdb 1537 char *a;
72940dca 1538
7918f24d
NC
1539 PERL_ARGS_ASSERT_HV_KSPLIT;
1540
6f019ba7
YO
1541 wantsize = (I32) newmax; /* possible truncation here */
1542 if (wantsize != newmax)
72940dca 1543 return;
6f019ba7
YO
1544
1545 wantsize= wantsize + (wantsize >> 1); /* wantsize *= 1.5 */
1546 if (wantsize < newmax) /* overflow detection */
1547 return;
1548
1549 newsize = oldsize;
1550 while (wantsize > newsize) {
1551 trysize = newsize << 1;
1552 if (trysize > newsize) {
1553 newsize = trysize;
1554 } else {
1555 /* we overflowed */
1556 return;
1557 }
72940dca 1558 }
6f019ba7
YO
1559
1560 if (newsize <= oldsize)
1561 return; /* overflow detection */
72940dca 1562
7b2c381c 1563 a = (char *) HvARRAY(hv);
e8c10cf3
NC
1564 if (a) {
1565 hsplit(hv, oldsize, newsize);
1566 } else {
0df05616 1567 Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
6f019ba7 1568 xhv->xhv_max = newsize - 1;
0df05616 1569 HvARRAY(hv) = (HE **) a;
72940dca 1570 }
1571}
1572
f6bb1c88
YO
1573/* IMO this should also handle cases where hv_max is smaller than hv_keys
1574 * as tied hashes could play silly buggers and mess us around. We will
1575 * do the right thing during hv_store() afterwards, but still - Yves */
1576#define HV_SET_MAX_ADJUSTED_FOR_KEYS(hv,hv_max,hv_keys) STMT_START {\
1577 /* Can we use fewer buckets? (hv_max is always 2^n-1) */ \
1578 if (hv_max < PERL_HASH_DEFAULT_HvMAX) { \
1579 hv_max = PERL_HASH_DEFAULT_HvMAX; \
1580 } else { \
1581 while (hv_max > PERL_HASH_DEFAULT_HvMAX && hv_max + 1 >= hv_keys * 2) \
1582 hv_max = hv_max / 2; \
1583 } \
1584 HvMAX(hv) = hv_max; \
1585} STMT_END
1586
1587
b3ac6de7 1588HV *
864dbfa3 1589Perl_newHVhv(pTHX_ HV *ohv)
b3ac6de7 1590{
749123ff 1591 dVAR;
9d4ba2ae 1592 HV * const hv = newHV();
f4431c56 1593 STRLEN hv_max;
4beac62f 1594
3f4d1d78 1595 if (!ohv || (!HvTOTALKEYS(ohv) && !SvMAGICAL((const SV *)ohv)))
4beac62f 1596 return hv;
4beac62f 1597 hv_max = HvMAX(ohv);
b3ac6de7 1598
ad64d0ec 1599 if (!SvMAGICAL((const SV *)ohv)) {
b56ba0bf 1600 /* It's an ordinary hash, so copy it fast. AMS 20010804 */
eb160463 1601 STRLEN i;
a3b680e6 1602 const bool shared = !!HvSHAREKEYS(ohv);
aec46f14 1603 HE **ents, ** const oents = (HE **)HvARRAY(ohv);
ff875642 1604 char *a;
a02a5408 1605 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(hv_max+1), char);
ff875642 1606 ents = (HE**)a;
b56ba0bf
AMS
1607
1608 /* In each bucket... */
1609 for (i = 0; i <= hv_max; i++) {
6136c704 1610 HE *prev = NULL;
aec46f14 1611 HE *oent = oents[i];
b56ba0bf
AMS
1612
1613 if (!oent) {
1614 ents[i] = NULL;
1615 continue;
1616 }
1617
1618 /* Copy the linked list of entries. */
aec46f14 1619 for (; oent; oent = HeNEXT(oent)) {
a3b680e6
AL
1620 const U32 hash = HeHASH(oent);
1621 const char * const key = HeKEY(oent);
1622 const STRLEN len = HeKLEN(oent);
1623 const int flags = HeKFLAGS(oent);
6136c704 1624 HE * const ent = new_HE();
c3acb9e0 1625 SV *const val = HeVAL(oent);
b56ba0bf 1626
c3acb9e0 1627 HeVAL(ent) = SvIMMORTAL(val) ? val : newSVsv(val);
19692e8d 1628 HeKEY_hek(ent)
6e838c70 1629 = shared ? share_hek_flags(key, len, hash, flags)
19692e8d 1630 : save_hek_flags(key, len, hash, flags);
b56ba0bf
AMS
1631 if (prev)
1632 HeNEXT(prev) = ent;
1633 else
1634 ents[i] = ent;
1635 prev = ent;
1636 HeNEXT(ent) = NULL;
1637 }
1638 }
1639
1640 HvMAX(hv) = hv_max;
8aacddc1 1641 HvTOTALKEYS(hv) = HvTOTALKEYS(ohv);
b56ba0bf 1642 HvARRAY(hv) = ents;
aec46f14 1643 } /* not magical */
b56ba0bf
AMS
1644 else {
1645 /* Iterate over ohv, copying keys and values one at a time. */
b3ac6de7 1646 HE *entry;
bfcb3514
NC
1647 const I32 riter = HvRITER_get(ohv);
1648 HE * const eiter = HvEITER_get(ohv);
f6bb1c88 1649 STRLEN hv_keys = HvTOTALKEYS(ohv);
b56ba0bf 1650
f6bb1c88 1651 HV_SET_MAX_ADJUSTED_FOR_KEYS(hv,hv_max,hv_keys);
b56ba0bf 1652
4a76a316 1653 hv_iterinit(ohv);
e16e2ff8 1654 while ((entry = hv_iternext_flags(ohv, 0))) {
3f4d1d78
FC
1655 SV *val = hv_iterval(ohv,entry);
1656 SV * const keysv = HeSVKEY(entry);
1657 val = SvIMMORTAL(val) ? val : newSVsv(val);
1658 if (keysv)
1659 (void)hv_store_ent(hv, keysv, val, 0);
1660 else
1661 (void)hv_store_flags(hv, HeKEY(entry), HeKLEN(entry), val,
c3acb9e0 1662 HeHASH(entry), HeKFLAGS(entry));
b3ac6de7 1663 }
bfcb3514
NC
1664 HvRITER_set(ohv, riter);
1665 HvEITER_set(ohv, eiter);
b3ac6de7 1666 }
1c846c1f 1667
b3ac6de7
IZ
1668 return hv;
1669}
1670
defdfed5
Z
1671/*
1672=for apidoc Am|HV *|hv_copy_hints_hv|HV *ohv
1673
2d7f6611 1674A specialised version of L</newHVhv> for copying C<%^H>. C<ohv> must be
defdfed5
Z
1675a pointer to a hash (which may have C<%^H> magic, but should be generally
1676non-magical), or C<NULL> (interpreted as an empty hash). The content
2d7f6611 1677of C<ohv> is copied to a new hash, which has the C<%^H>-specific magic
defdfed5
Z
1678added to it. A pointer to the new hash is returned.
1679
1680=cut
1681*/
1682
5b9c0671
NC
1683HV *
1684Perl_hv_copy_hints_hv(pTHX_ HV *const ohv)
1685{
1686 HV * const hv = newHV();
5b9c0671 1687
cb1f05e8 1688 if (ohv) {
5b9c0671 1689 STRLEN hv_max = HvMAX(ohv);
f6bb1c88 1690 STRLEN hv_keys = HvTOTALKEYS(ohv);
5b9c0671
NC
1691 HE *entry;
1692 const I32 riter = HvRITER_get(ohv);
1693 HE * const eiter = HvEITER_get(ohv);
1694
0db511c0
FC
1695 ENTER;
1696 SAVEFREESV(hv);
1697
f6bb1c88 1698 HV_SET_MAX_ADJUSTED_FOR_KEYS(hv,hv_max,hv_keys);
5b9c0671
NC
1699
1700 hv_iterinit(ohv);
1701 while ((entry = hv_iternext_flags(ohv, 0))) {
cb1f05e8 1702 SV *const sv = newSVsv(hv_iterval(ohv,entry));
7ef9d42c
FC
1703 SV *heksv = HeSVKEY(entry);
1704 if (!heksv && sv) heksv = newSVhek(HeKEY_hek(entry));
95cf2368 1705 if (sv) sv_magic(sv, NULL, PERL_MAGIC_hintselem,
e3b1b6b1 1706 (char *)heksv, HEf_SVKEY);
7ef9d42c
FC
1707 if (heksv == HeSVKEY(entry))
1708 (void)hv_store_ent(hv, heksv, sv, 0);
1709 else {
1710 (void)hv_common(hv, heksv, HeKEY(entry), HeKLEN(entry),
1711 HeKFLAGS(entry), HV_FETCH_ISSTORE|HV_FETCH_JUST_SV, sv, HeHASH(entry));
a03199ea 1712 SvREFCNT_dec_NN(heksv);
7ef9d42c 1713 }
5b9c0671
NC
1714 }
1715 HvRITER_set(ohv, riter);
1716 HvEITER_set(ohv, eiter);
0db511c0
FC
1717
1718 SvREFCNT_inc_simple_void_NN(hv);
1719 LEAVE;
5b9c0671
NC
1720 }
1721 hv_magic(hv, NULL, PERL_MAGIC_hints);
1722 return hv;
1723}
f6bb1c88 1724#undef HV_SET_MAX_ADJUSTED_FOR_KEYS
5b9c0671 1725
e0171a1a
DM
1726/* like hv_free_ent, but returns the SV rather than freeing it */
1727STATIC SV*
5aaab254 1728S_hv_free_ent_ret(pTHX_ HV *hv, HE *entry)
79072805 1729{
16bdeea2
GS
1730 SV *val;
1731
e0171a1a 1732 PERL_ARGS_ASSERT_HV_FREE_ENT_RET;
7918f24d 1733
16bdeea2 1734 val = HeVAL(entry);
68dc0745 1735 if (HeKLEN(entry) == HEf_SVKEY) {
1736 SvREFCNT_dec(HeKEY_sv(entry));
8aacddc1 1737 Safefree(HeKEY_hek(entry));
44a8e56a 1738 }
1739 else if (HvSHAREKEYS(hv))
68dc0745 1740 unshare_hek(HeKEY_hek(entry));
fde52b5c 1741 else
68dc0745 1742 Safefree(HeKEY_hek(entry));
d33b2eba 1743 del_HE(entry);
e0171a1a
DM
1744 return val;
1745}
1746
1747
1748void
5aaab254 1749Perl_hv_free_ent(pTHX_ HV *hv, HE *entry)
e0171a1a 1750{
e0171a1a
DM
1751 SV *val;
1752
1753 PERL_ARGS_ASSERT_HV_FREE_ENT;
1754
1755 if (!entry)
1756 return;
1757 val = hv_free_ent_ret(hv, entry);
272e8453 1758 SvREFCNT_dec(val);
79072805
LW
1759}
1760
f1c32fec 1761
79072805 1762void
5aaab254 1763Perl_hv_delayfree_ent(pTHX_ HV *hv, HE *entry)
79072805 1764{
7918f24d
NC
1765 PERL_ARGS_ASSERT_HV_DELAYFREE_ENT;
1766
68dc0745 1767 if (!entry)
79072805 1768 return;
bc4947fc
NC
1769 /* SvREFCNT_inc to counter the SvREFCNT_dec in hv_free_ent */
1770 sv_2mortal(SvREFCNT_inc(HeVAL(entry))); /* free between statements */
68dc0745 1771 if (HeKLEN(entry) == HEf_SVKEY) {
bc4947fc 1772 sv_2mortal(SvREFCNT_inc(HeKEY_sv(entry)));
44a8e56a 1773 }
bc4947fc 1774 hv_free_ent(hv, entry);
79072805
LW
1775}
1776
954c1994
GS
1777/*
1778=for apidoc hv_clear
1779
c2217cd3 1780Frees the all the elements of a hash, leaving it empty.
8b9a1153
FC
1781The XS equivalent of C<%hash = ()>. See also L</hv_undef>.
1782
a4395eba
DM
1783See L</av_clear> for a note about the hash possibly being invalid on
1784return.
954c1994
GS
1785
1786=cut
1787*/
1788
79072805 1789void
864dbfa3 1790Perl_hv_clear(pTHX_ HV *hv)
79072805 1791{
27da23d5 1792 dVAR;
be988557
DM
1793 SSize_t orig_ix;
1794
eb578fdb 1795 XPVHV* xhv;
79072805
LW
1796 if (!hv)
1797 return;
49293501 1798
ecae49c0
NC
1799 DEBUG_A(Perl_hv_assert(aTHX_ hv));
1800
34c3c4e3
DM
1801 xhv = (XPVHV*)SvANY(hv);
1802
be988557
DM
1803 /* avoid hv being freed when calling destructors below */
1804 EXTEND_MORTAL(1);
1805 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple_NN(hv);
1806 orig_ix = PL_tmps_ix;
7b2c381c 1807 if (SvREADONLY(hv) && HvARRAY(hv) != NULL) {
34c3c4e3 1808 /* restricted hash: convert all keys to placeholders */
b464bac0
AL
1809 STRLEN i;
1810 for (i = 0; i <= xhv->xhv_max; i++) {
7b2c381c 1811 HE *entry = (HvARRAY(hv))[i];
3a676441
JH
1812 for (; entry; entry = HeNEXT(entry)) {
1813 /* not already placeholder */
7996736c 1814 if (HeVAL(entry) != &PL_sv_placeholder) {
a03199ea 1815 if (HeVAL(entry)) {
0ffdaf1a 1816 if (SvREADONLY(HeVAL(entry))) {
a03199ea
DD
1817 SV* const keysv = hv_iterkeysv(entry);
1818 Perl_croak_nocontext(
147e3846 1819 "Attempt to delete readonly key '%" SVf "' from a restricted hash",
a03199ea
DD
1820 (void*)keysv);
1821 }
1822 SvREFCNT_dec_NN(HeVAL(entry));
3a676441 1823 }
7996736c 1824 HeVAL(entry) = &PL_sv_placeholder;
ca732855 1825 HvPLACEHOLDERS(hv)++;
3a676441 1826 }
34c3c4e3
DM
1827 }
1828 }
49293501 1829 }
afbbf215 1830 else {
b6bb1ecb 1831 hv_free_entries(hv);
afbbf215 1832 HvPLACEHOLDERS_set(hv, 0);
49293501 1833
afbbf215
DM
1834 if (SvRMAGICAL(hv))
1835 mg_clear(MUTABLE_SV(hv));
574c8022 1836
afbbf215 1837 HvHASKFLAGS_off(hv);
afbbf215 1838 }
b79f7545 1839 if (SvOOK(hv)) {
00169e2c 1840 if(HvENAME_get(hv))
dd69841b 1841 mro_isa_changed_in(hv);
bfcb3514
NC
1842 HvEITER_set(hv, NULL);
1843 }
be988557
DM
1844 /* disarm hv's premature free guard */
1845 if (LIKELY(PL_tmps_ix == orig_ix))
1846 PL_tmps_ix--;
1847 else
1848 PL_tmps_stack[orig_ix] = &PL_sv_undef;
1849 SvREFCNT_dec_NN(hv);
79072805
LW
1850}
1851
3540d4ce
AB
1852/*
1853=for apidoc hv_clear_placeholders
1854
1855Clears any placeholders from a hash. If a restricted hash has any of its keys
1856marked as readonly and the key is subsequently deleted, the key is not actually
796b6530 1857deleted but is marked by assigning it a value of C<&PL_sv_placeholder>. This tags
3540d4ce 1858it so it will be ignored by future operations such as iterating over the hash,
4cdaeff7 1859but will still allow the hash to have a value reassigned to the key at some
3540d4ce 1860future point. This function clears any such placeholder keys from the hash.
796b6530
KW
1861See C<L<Hash::Util::lock_keys()|Hash::Util/lock_keys>> for an example of its
1862use.
3540d4ce
AB
1863
1864=cut
1865*/
1866
1867void
1868Perl_hv_clear_placeholders(pTHX_ HV *hv)
1869{
b3ca2e83
NC
1870 const U32 items = (U32)HvPLACEHOLDERS_get(hv);
1871
7918f24d
NC
1872 PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS;
1873
b3ca2e83
NC
1874 if (items)
1875 clear_placeholders(hv, items);
1876}
1877
1878static void
1879S_clear_placeholders(pTHX_ HV *hv, U32 items)
1880{
1881 dVAR;
b464bac0 1882 I32 i;
d3677389 1883
7918f24d
NC
1884 PERL_ARGS_ASSERT_CLEAR_PLACEHOLDERS;
1885
d3677389
NC
1886 if (items == 0)
1887 return;
1888
b464bac0 1889 i = HvMAX(hv);
d3677389
NC
1890 do {
1891 /* Loop down the linked list heads */
d3677389 1892 HE **oentry = &(HvARRAY(hv))[i];
cf6db12b 1893 HE *entry;
d3677389 1894
cf6db12b 1895 while ((entry = *oentry)) {
d3677389
NC
1896 if (HeVAL(entry) == &PL_sv_placeholder) {
1897 *oentry = HeNEXT(entry);
2e58978b 1898 if (entry == HvEITER_get(hv))
d3677389 1899 HvLAZYDEL_on(hv);
ae199939
TH
1900 else {
1901 if (SvOOK(hv) && HvLAZYDEL(hv) &&
1902 entry == HeNEXT(HvAUX(hv)->xhv_eiter))
1903 HeNEXT(HvAUX(hv)->xhv_eiter) = HeNEXT(entry);
d3677389 1904 hv_free_ent(hv, entry);
ae199939 1905 }
d3677389
NC
1906
1907 if (--items == 0) {
1908 /* Finished. */
5d27ee4a
DD
1909 I32 placeholders = HvPLACEHOLDERS_get(hv);
1910 HvTOTALKEYS(hv) -= (IV)placeholders;
1911 /* HvUSEDKEYS expanded */
1912 if ((HvTOTALKEYS(hv) - placeholders) == 0)
d3677389 1913 HvHASKFLAGS_off(hv);
5d88ecd7 1914 HvPLACEHOLDERS_set(hv, 0);
d3677389
NC
1915 return;
1916 }
213ce8b3
NC
1917 } else {
1918 oentry = &HeNEXT(entry);
d3677389
NC
1919 }
1920 }
1921 } while (--i >= 0);
1922 /* You can't get here, hence assertion should always fail. */
1923 assert (items == 0);
661d43c4 1924 NOT_REACHED; /* NOTREACHED */
3540d4ce
AB
1925}
1926
76e3520e 1927STATIC void
b6bb1ecb 1928S_hv_free_entries(pTHX_ HV *hv)
79072805 1929{
e0171a1a 1930 STRLEN index = 0;
7d6175ef 1931 XPVHV * const xhv = (XPVHV*)SvANY(hv);
6d1c68e6 1932 SV *sv;
3abe233e 1933
367fba63 1934 PERL_ARGS_ASSERT_HV_FREE_ENTRIES;
7918f24d 1935
6d1c68e6
FC
1936 while ((sv = Perl_hfree_next_entry(aTHX_ hv, &index))||xhv->xhv_keys) {
1937 SvREFCNT_dec(sv);
e0171a1a
DM
1938 }
1939}
23976bdd 1940
b79f7545 1941
e0171a1a 1942/* hfree_next_entry()
b6bb1ecb 1943 * For use only by S_hv_free_entries() and sv_clear().
e0171a1a 1944 * Delete the next available HE from hv and return the associated SV.
7d6175ef
FC
1945 * Returns null on empty hash. Nevertheless null is not a reliable
1946 * indicator that the hash is empty, as the deleted entry may have a
1947 * null value.
e0171a1a
DM
1948 * indexp is a pointer to the current index into HvARRAY. The index should
1949 * initially be set to 0. hfree_next_entry() may update it. */
1950
1951SV*
1952Perl_hfree_next_entry(pTHX_ HV *hv, STRLEN *indexp)
1953{
1954 struct xpvhv_aux *iter;
1955 HE *entry;
1956 HE ** array;
1957#ifdef DEBUGGING
1958 STRLEN orig_index = *indexp;
1959#endif
1960
1961 PERL_ARGS_ASSERT_HFREE_NEXT_ENTRY;
1962
9faf471a
NC
1963 if (SvOOK(hv) && ((iter = HvAUX(hv)))) {
1964 if ((entry = iter->xhv_eiter)) {
1965 /* the iterator may get resurrected after each
1966 * destructor call, so check each time */
1967 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1968 HvLAZYDEL_off(hv);
1969 hv_free_ent(hv, entry);
1970 /* warning: at this point HvARRAY may have been
1971 * re-allocated, HvMAX changed etc */
1972 }
339441ef 1973 iter = HvAUX(hv); /* may have been realloced */
9faf471a
NC
1974 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
1975 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
6a5b4183 1976#ifdef PERL_HASH_RANDOMIZE_KEYS
9faf471a 1977 iter->xhv_last_rand = iter->xhv_rand;
6a5b4183 1978#endif
9faf471a 1979 }
e0171a1a
DM
1980 }
1981
00a1a643
DM
1982 if (!((XPVHV*)SvANY(hv))->xhv_keys)
1983 return NULL;
1984
e0171a1a
DM
1985 array = HvARRAY(hv);
1986 assert(array);
1987 while ( ! ((entry = array[*indexp])) ) {
1988 if ((*indexp)++ >= HvMAX(hv))
1989 *indexp = 0;
1990 assert(*indexp != orig_index);
1991 }
1992 array[*indexp] = HeNEXT(entry);
1993 ((XPVHV*) SvANY(hv))->xhv_keys--;
1994
1995 if ( PL_phase != PERL_PHASE_DESTRUCT && HvENAME(hv)
1996 && HeVAL(entry) && isGV(HeVAL(entry))
1997 && GvHV(HeVAL(entry)) && HvENAME(GvHV(HeVAL(entry)))
1998 ) {
1999 STRLEN klen;
2000 const char * const key = HePV(entry,klen);
2001 if ((klen > 1 && key[klen-1]==':' && key[klen-2]==':')
2002 || (klen == 1 && key[0] == ':')) {
2003 mro_package_moved(
2004 NULL, GvHV(HeVAL(entry)),
2005 (GV *)HeVAL(entry), 0
2006 );
2007 }
2008 }
2009 return hv_free_ent_ret(hv, entry);
79072805
LW
2010}
2011
e0171a1a 2012
954c1994
GS
2013/*
2014=for apidoc hv_undef
2015
8b9a1153 2016Undefines the hash. The XS equivalent of C<undef(%hash)>.
c2217cd3 2017
796b6530 2018As well as freeing all the elements of the hash (like C<hv_clear()>), this
c2217cd3 2019also frees any auxiliary data and storage associated with the hash.
8b9a1153 2020
a4395eba
DM
2021See L</av_clear> for a note about the hash possibly being invalid on
2022return.
954c1994
GS
2023
2024=cut
2025*/
2026
79072805 2027void
8581adba 2028Perl_hv_undef_flags(pTHX_ HV *hv, U32 flags)
79072805 2029{
eb578fdb 2030 XPVHV* xhv;
8a50cd03 2031 bool save;
6f15e0a5 2032 SSize_t orig_ix = PL_tmps_ix; /* silence compiler warning about unitialized vars */
86f55936 2033
79072805
LW
2034 if (!hv)
2035 return;
be988557 2036 save = cBOOL(SvREFCNT(hv));
ecae49c0 2037 DEBUG_A(Perl_hv_assert(aTHX_ hv));
cbec9347 2038 xhv = (XPVHV*)SvANY(hv);
dd69841b 2039
b6bb1ecb 2040 /* The name must be deleted before the call to hv_free_entries so that
745edda6
FC
2041 CVs are anonymised properly. But the effective name must be pre-
2042 served until after that call (and only deleted afterwards if the
2043 call originated from sv_clear). For stashes with one name that is
2044 both the canonical name and the effective name, hv_name_set has to
2045 allocate an array for storing the effective name. We can skip that
2046 during global destruction, as it does not matter where the CVs point
2047 if they will be freed anyway. */
b6bb1ecb 2048 /* note that the code following prior to hv_free_entries is duplicated
104d7b69 2049 * in sv_clear(), and changes here should be done there too */
0ca9877d 2050 if (PL_phase != PERL_PHASE_DESTRUCT && HvNAME(hv)) {
103f5a36
NC
2051 if (PL_stashcache) {
2052 DEBUG_o(Perl_deb(aTHX_ "hv_undef_flags clearing PL_stashcache for '%"
147e3846 2053 HEKf "'\n", HEKfARG(HvNAME_HEK(hv))));
0ca9877d 2054 (void)hv_deletehek(PL_stashcache, HvNAME_HEK(hv), G_DISCARD);
103f5a36 2055 }
bd61b366 2056 hv_name_set(hv, NULL, 0, 0);
85e6fe83 2057 }
8505eec0 2058 if (save) {
be988557
DM
2059 /* avoid hv being freed when calling destructors below */
2060 EXTEND_MORTAL(1);
2061 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple_NN(hv);
2062 orig_ix = PL_tmps_ix;
8505eec0 2063 }
b6bb1ecb 2064 hv_free_entries(hv);
47f1cf77 2065 if (SvOOK(hv)) {
47f1cf77 2066 struct mro_meta *meta;
0ca9877d 2067 const char *name;
745edda6 2068
0ca9877d 2069 if (HvENAME_get(hv)) {
5f243b5f 2070 if (PL_phase != PERL_PHASE_DESTRUCT)
745edda6 2071 mro_isa_changed_in(hv);
103f5a36
NC
2072 if (PL_stashcache) {
2073 DEBUG_o(Perl_deb(aTHX_ "hv_undef_flags clearing PL_stashcache for effective name '%"
147e3846 2074 HEKf "'\n", HEKfARG(HvENAME_HEK(hv))));
0ca9877d 2075 (void)hv_deletehek(PL_stashcache, HvENAME_HEK(hv), G_DISCARD);
103f5a36 2076 }
745edda6
FC
2077 }
2078
2079 /* If this call originated from sv_clear, then we must check for
2080 * effective names that need freeing, as well as the usual name. */
2081 name = HvNAME(hv);
339441ef 2082 if (flags & HV_NAME_SETALL ? !!HvAUX(hv)->xhv_name_u.xhvnameu_name : !!name) {
103f5a36
NC
2083 if (name && PL_stashcache) {
2084 DEBUG_o(Perl_deb(aTHX_ "hv_undef_flags clearing PL_stashcache for name '%"
147e3846 2085 HEKf "'\n", HEKfARG(HvNAME_HEK(hv))));
0ca9877d 2086 (void)hv_deletehek(PL_stashcache, HvNAME_HEK(hv), G_DISCARD);
103f5a36 2087 }
745edda6 2088 hv_name_set(hv, NULL, 0, flags);
47f1cf77 2089 }
339441ef 2090 if((meta = HvAUX(hv)->xhv_mro_meta)) {
47f1cf77 2091 if (meta->mro_linear_all) {
d4f87935
FC
2092 SvREFCNT_dec_NN(meta->mro_linear_all);
2093 /* mro_linear_current is just acting as a shortcut pointer,
2094 hence the else. */
2095 }
2096 else
47f1cf77
FC
2097 /* Only the current MRO is stored, so this owns the data.
2098 */
2099 SvREFCNT_dec(meta->mro_linear_current);
9bfbb681 2100 SvREFCNT_dec(meta->mro_nextmethod);
47f1cf77 2101 SvREFCNT_dec(meta->isa);
1a33a059 2102 SvREFCNT_dec(meta->super);
47f1cf77 2103 Safefree(meta);
339441ef 2104 HvAUX(hv)->xhv_mro_meta = NULL;
47f1cf77 2105 }
339441ef 2106 if (!HvAUX(hv)->xhv_name_u.xhvnameu_name && ! HvAUX(hv)->xhv_backreferences)
745edda6 2107 SvFLAGS(hv) &= ~SVf_OOK;
745edda6
FC
2108 }
2109 if (!SvOOK(hv)) {
2110 Safefree(HvARRAY(hv));
f6bb1c88 2111 xhv->xhv_max = PERL_HASH_DEFAULT_HvMAX; /* HvMAX(hv) = 7 (it's a normal hash) */
745edda6 2112 HvARRAY(hv) = 0;
2d0d1ecc 2113 }
5bec93be
DM
2114 /* if we're freeing the HV, the SvMAGIC field has been reused for
2115 * other purposes, and so there can't be any placeholder magic */
2116 if (SvREFCNT(hv))
2117 HvPLACEHOLDERS_set(hv, 0);
a0d0e21e
LW
2118
2119 if (SvRMAGICAL(hv))
ad64d0ec 2120 mg_clear(MUTABLE_SV(hv));
be988557
DM
2121
2122 if (save) {
2123 /* disarm hv's premature free guard */
2124 if (LIKELY(PL_tmps_ix == orig_ix))
2125 PL_tmps_ix--;
2126 else
2127 PL_tmps_stack[orig_ix] = &PL_sv_undef;
2128 SvREFCNT_dec_NN(hv);
2129 }
79072805
LW
2130}
2131
4d0fbddd
NC
2132/*
2133=for apidoc hv_fill
2134
8bf4c401
YO
2135Returns the number of hash buckets that happen to be in use.
2136
2137This function is wrapped by the macro C<HvFILL>.
4d0fbddd 2138
8bf4c401
YO
2139As of perl 5.25 this function is used only for debugging
2140purposes, and the number of used hash buckets is not
2141in any way cached, thus this function can be costly
2142to execute as it must iterate over all the buckets in the
2143hash.
4d0fbddd
NC
2144
2145=cut
2146*/
2147
2148STRLEN
9faf471a 2149Perl_hv_fill(pTHX_ HV *const hv)
4d0fbddd
NC
2150{
2151 STRLEN count = 0;
2152 HE **ents = HvARRAY(hv);
2153
e9b8343f 2154 PERL_UNUSED_CONTEXT;
4d0fbddd
NC
2155 PERL_ARGS_ASSERT_HV_FILL;
2156
553215cc
NC
2157 /* No keys implies no buckets used.
2158 One key can only possibly mean one bucket used. */
2159 if (HvTOTALKEYS(hv) < 2)
2160 return HvTOTALKEYS(hv);
2161
4d0fbddd 2162 if (ents) {
8bf4c401
YO
2163 /* I wonder why we count down here...
2164 * Is it some micro-optimisation?
2165 * I would have thought counting up was better.
2166 * - Yves
2167 */
fcd24582
NC
2168 HE *const *const last = ents + HvMAX(hv);
2169 count = last + 1 - ents;
4d0fbddd
NC
2170
2171 do {
fcd24582
NC
2172 if (!*ents)
2173 --count;
2174 } while (++ents <= last);
4d0fbddd
NC
2175 }
2176 return count;
2177}
2178
0e0ab621
YO
2179/* hash a pointer to a U32 - Used in the hash traversal randomization
2180 * and bucket order randomization code
2181 *
2182 * this code was derived from Sereal, which was derived from autobox.
2183 */
2184
2185PERL_STATIC_INLINE U32 S_ptr_hash(PTRV u) {
2186#if PTRSIZE == 8
2187 /*
2188 * This is one of Thomas Wang's hash functions for 64-bit integers from:
2189 * http://www.concentric.net/~Ttwang/tech/inthash.htm
2190 */
2191 u = (~u) + (u << 18);
2192 u = u ^ (u >> 31);
2193 u = u * 21;
2194 u = u ^ (u >> 11);
2195 u = u + (u << 6);
2196 u = u ^ (u >> 22);
2197#else
2198 /*
2199 * This is one of Bob Jenkins' hash functions for 32-bit integers
2200 * from: http://burtleburtle.net/bob/hash/integer.html
2201 */
2202 u = (u + 0x7ed55d16) + (u << 12);
2203 u = (u ^ 0xc761c23c) ^ (u >> 19);
2204 u = (u + 0x165667b1) + (u << 5);
2205 u = (u + 0xd3a2646c) ^ (u << 9);
2206 u = (u + 0xfd7046c5) + (u << 3);
2207 u = (u ^ 0xb55a4f09) ^ (u >> 16);
2208#endif
2209 return (U32)u;
2210}
2211
bea177f3
YO
2212static struct xpvhv_aux*
2213S_hv_auxinit_internal(struct xpvhv_aux *iter) {
2214 PERL_ARGS_ASSERT_HV_AUXINIT_INTERNAL;
2215 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
2216 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
2217#ifdef PERL_HASH_RANDOMIZE_KEYS
2218 iter->xhv_last_rand = iter->xhv_rand;
2219#endif
bea177f3
YO
2220 iter->xhv_name_u.xhvnameu_name = 0;
2221 iter->xhv_name_count = 0;
2222 iter->xhv_backreferences = 0;
2223 iter->xhv_mro_meta = NULL;
2224 iter->xhv_aux_flags = 0;
2225 return iter;
2226}
2227
0e0ab621 2228
b464bac0 2229static struct xpvhv_aux*
0e0ab621 2230S_hv_auxinit(pTHX_ HV *hv) {
bfcb3514 2231 struct xpvhv_aux *iter;
b79f7545 2232 char *array;
bfcb3514 2233
7918f24d
NC
2234 PERL_ARGS_ASSERT_HV_AUXINIT;
2235
0e0ab621
YO
2236 if (!SvOOK(hv)) {
2237 if (!HvARRAY(hv)) {
2238 Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
2239 + sizeof(struct xpvhv_aux), char);
2240 } else {
2241 array = (char *) HvARRAY(hv);
2242 Renew(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
2243 + sizeof(struct xpvhv_aux), char);
2244 }
2245 HvARRAY(hv) = (HE**)array;
2246 SvOOK_on(hv);
a7b39f85 2247 iter = HvAUX(hv);
6a5b4183
YO
2248#ifdef PERL_HASH_RANDOMIZE_KEYS
2249 if (PL_HASH_RAND_BITS_ENABLED) {
2250 /* mix in some new state to PL_hash_rand_bits to "randomize" the traversal order*/
2251 if (PL_HASH_RAND_BITS_ENABLED == 1)
2252 PL_hash_rand_bits += ptr_hash((PTRV)array);
2253 PL_hash_rand_bits = ROTL_UV(PL_hash_rand_bits,1);
2254 }
a7b39f85 2255 iter->xhv_rand = (U32)PL_hash_rand_bits;
6a5b4183 2256#endif
a7b39f85
YO
2257 } else {
2258 iter = HvAUX(hv);
b79f7545 2259 }
bfcb3514 2260
bea177f3 2261 return hv_auxinit_internal(iter);
bfcb3514
NC
2262}
2263
954c1994
GS
2264/*
2265=for apidoc hv_iterinit
2266
2267Prepares a starting point to traverse a hash table. Returns the number of
fe7d7ed3
MH
2268keys in the hash, including placeholders (i.e. the same as C<HvTOTALKEYS(hv)>).
2269The return value is currently only meaningful for hashes without tie magic.
954c1994
GS
2270
2271NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
2272hash buckets that happen to be in use. If you still need that esoteric
b24b84ef 2273value, you can get it through the macro C<HvFILL(hv)>.
954c1994 2274
e16e2ff8 2275
954c1994
GS
2276=cut
2277*/
2278
79072805 2279I32
864dbfa3 2280Perl_hv_iterinit(pTHX_ HV *hv)
79072805 2281{
7918f24d
NC
2282 PERL_ARGS_ASSERT_HV_ITERINIT;
2283
b79f7545 2284 if (SvOOK(hv)) {
339441ef 2285 struct xpvhv_aux * iter = HvAUX(hv);
0bd48802 2286 HE * const entry = iter->xhv_eiter; /* HvEITER(hv) */
bfcb3514
NC
2287 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
2288 HvLAZYDEL_off(hv);
2289 hv_free_ent(hv, entry);
2290 }
339441ef 2291 iter = HvAUX(hv); /* may have been reallocated */
bfcb3514 2292 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
4608196e 2293 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
6a5b4183 2294#ifdef PERL_HASH_RANDOMIZE_KEYS
a7b39f85 2295 iter->xhv_last_rand = iter->xhv_rand;
6a5b4183 2296#endif
bfcb3514 2297 } else {
6136c704 2298 hv_auxinit(hv);
72940dca 2299 }
44a2ac75 2300
8bf4c401 2301 /* note this includes placeholders! */
5d88ecd7 2302 return HvTOTALKEYS(hv);
79072805 2303}
bfcb3514
NC
2304
2305I32 *
2306Perl_hv_riter_p(pTHX_ HV *hv) {
2307 struct xpvhv_aux *iter;
2308
7918f24d
NC
2309 PERL_ARGS_ASSERT_HV_RITER_P;
2310
6136c704 2311 iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
bfcb3514
NC
2312 return &(iter->xhv_riter);
2313}
2314
2315HE **
2316Perl_hv_eiter_p(pTHX_ HV *hv) {
2317 struct xpvhv_aux *iter;
2318
7918f24d
NC
2319 PERL_ARGS_ASSERT_HV_EITER_P;
2320
6136c704 2321 iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
bfcb3514
NC
2322 return &(iter->xhv_eiter);
2323}
2324
2325void
2326Perl_hv_riter_set(pTHX_ HV *hv, I32 riter) {
2327 struct xpvhv_aux *iter;
2328
7918f24d
NC
2329 PERL_ARGS_ASSERT_HV_RITER_SET;
2330
b79f7545
NC
2331 if (SvOOK(hv)) {
2332 iter = HvAUX(hv);
2333 } else {
bfcb3514
NC
2334 if (riter == -1)
2335 return;
2336
6136c704 2337 iter = hv_auxinit(hv);
bfcb3514
NC
2338 }
2339 iter->xhv_riter = riter;
2340}
2341
2342void
6a5b4183
YO
2343Perl_hv_rand_set(pTHX_ HV *hv, U32 new_xhv_rand) {
2344 struct xpvhv_aux *iter;
2345
2346 PERL_ARGS_ASSERT_HV_RAND_SET;
2347
2348#ifdef PERL_HASH_RANDOMIZE_KEYS
6a5b4183
YO
2349 if (SvOOK(hv)) {
2350 iter = HvAUX(hv);
2351 } else {
2352 iter = hv_auxinit(hv);
2353 }
2354 iter->xhv_rand = new_xhv_rand;
2355#else
2356 Perl_croak(aTHX_ "This Perl has not been built with support for randomized hash key traversal but something called Perl_hv_rand_set().");
2357#endif
2358}
2359
2360void
bfcb3514
NC
2361Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter) {
2362 struct xpvhv_aux *iter;
2363
7918f24d
NC
2364 PERL_ARGS_ASSERT_HV_EITER_SET;
2365
b79f7545
NC
2366 if (SvOOK(hv)) {
2367 iter = HvAUX(hv);
2368 } else {
bfcb3514
NC
2369 /* 0 is the default so don't go malloc()ing a new structure just to
2370 hold 0. */
2371 if (!eiter)
2372 return;
2373
6136c704 2374 iter = hv_auxinit(hv);
bfcb3514
NC
2375 }
2376 iter->xhv_eiter = eiter;
2377}
2378
bfcb3514 2379void
4164be69 2380Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags)
bfcb3514 2381{
97aff369 2382 dVAR;
b79f7545 2383 struct xpvhv_aux *iter;
7423f6db 2384 U32 hash;
78b79c77 2385 HEK **spot;
46c461b5 2386
7918f24d 2387 PERL_ARGS_ASSERT_HV_NAME_SET;
bfcb3514 2388
4164be69 2389 if (len > I32_MAX)
147e3846 2390 Perl_croak(aTHX_ "panic: hv name too long (%" UVuf ")", (UV) len);
4164be69 2391
b79f7545
NC
2392 if (SvOOK(hv)) {
2393 iter = HvAUX(hv);
15d9236d 2394 if (iter->xhv_name_u.xhvnameu_name) {
b7247a80 2395 if(iter->xhv_name_count) {
745edda6 2396 if(flags & HV_NAME_SETALL) {
15d9236d 2397 HEK ** const name = HvAUX(hv)->xhv_name_u.xhvnameu_names;
78b79c77
FC
2398 HEK **hekp = name + (
2399 iter->xhv_name_count < 0
2400 ? -iter->xhv_name_count
2401 : iter->xhv_name_count
2402 );
2403 while(hekp-- > name+1)
b7247a80 2404 unshare_hek_or_pvn(*hekp, 0, 0, 0);
78b79c77
FC
2405 /* The first elem may be null. */
2406 if(*name) unshare_hek_or_pvn(*name, 0, 0, 0);
b7247a80 2407 Safefree(name);
339441ef 2408 iter = HvAUX(hv); /* may been realloced */
15d9236d 2409 spot = &iter->xhv_name_u.xhvnameu_name;
78b79c77
FC
2410 iter->xhv_name_count = 0;
2411 }
2412 else {
78b79c77
FC
2413 if(iter->xhv_name_count > 0) {
2414 /* shift some things over */
15d9236d
NC
2415 Renew(
2416 iter->xhv_name_u.xhvnameu_names, iter->xhv_name_count + 1, HEK *
4c2bfb4f 2417 );
15d9236d 2418 spot = iter->xhv_name_u.xhvnameu_names;
4c2bfb4f 2419 spot[iter->xhv_name_count] = spot[1];
78b79c77 2420 spot[1] = spot[0];
4c2bfb4f 2421 iter->xhv_name_count = -(iter->xhv_name_count + 1);
78b79c77 2422 }
15d9236d 2423 else if(*(spot = iter->xhv_name_u.xhvnameu_names)) {
78b79c77
FC
2424 unshare_hek_or_pvn(*spot, 0, 0, 0);
2425 }
2426 }
2427 }
745edda6 2428 else if (flags & HV_NAME_SETALL) {
15d9236d 2429 unshare_hek_or_pvn(iter->xhv_name_u.xhvnameu_name, 0, 0, 0);
339441ef 2430 iter = HvAUX(hv); /* may been realloced */
15d9236d 2431 spot = &iter->xhv_name_u.xhvnameu_name;
b7247a80 2432 }
745edda6 2433 else {
15d9236d
NC
2434 HEK * const existing_name = iter->xhv_name_u.xhvnameu_name;
2435 Newx(iter->xhv_name_u.xhvnameu_names, 2, HEK *);
745edda6 2436 iter->xhv_name_count = -2;
15d9236d 2437 spot = iter->xhv_name_u.xhvnameu_names;
745edda6
FC
2438 spot[1] = existing_name;
2439 }
7423f6db 2440 }
15d9236d 2441 else { spot = &iter->xhv_name_u.xhvnameu_name; iter->xhv_name_count = 0; }
16580ff5 2442 } else {
bfcb3514
NC
2443 if (name == 0)
2444 return;
2445
6136c704 2446 iter = hv_auxinit(hv);
15d9236d 2447 spot = &iter->xhv_name_u.xhvnameu_name;
bfcb3514 2448 }
7423f6db 2449 PERL_HASH(hash, name, len);
c60dbbc3 2450 *spot = name ? share_hek(name, flags & SVf_UTF8 ? -(I32)len : (I32)len, hash) : NULL;
4643eb69
BF
2451}
2452
2453/*
2454This is basically sv_eq_flags() in sv.c, but we avoid the magic
2455and bytes checking.
2456*/
2457
2458STATIC I32
2459hek_eq_pvn_flags(pTHX_ const HEK *hek, const char* pv, const I32 pvlen, const U32 flags) {
2460 if ( (HEK_UTF8(hek) ? 1 : 0) != (flags & SVf_UTF8 ? 1 : 0) ) {
2461 if (flags & SVf_UTF8)
2462 return (bytes_cmp_utf8(
2463 (const U8*)HEK_KEY(hek), HEK_LEN(hek),
2464 (const U8*)pv, pvlen) == 0);
2465 else
2466 return (bytes_cmp_utf8(
2467 (const U8*)pv, pvlen,
2468 (const U8*)HEK_KEY(hek), HEK_LEN(hek)) == 0);
2469 }
2470 else
d35fec6c 2471 return HEK_LEN(hek) == pvlen && ((HEK_KEY(hek) == pv)
4643eb69 2472 || memEQ(HEK_KEY(hek), pv, pvlen));
bfcb3514
NC
2473}
2474
99206677
FC
2475/*
2476=for apidoc hv_ename_add
2477
db4fbf16 2478Adds a name to a stash's internal list of effective names. See
fbe13c60 2479C<L</hv_ename_delete>>.
99206677
FC
2480
2481This is called when a stash is assigned to a new location in the symbol
2482table.
2483
2484=cut
2485*/
2486
ee72b38d 2487void
27a1175b 2488Perl_hv_ename_add(pTHX_ HV *hv, const char *name, U32 len, U32 flags)
ee72b38d
FC
2489{
2490 dVAR;
2491 struct xpvhv_aux *aux = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
2492 U32 hash;
2493
78b79c77 2494 PERL_ARGS_ASSERT_HV_ENAME_ADD;
ee72b38d
FC
2495
2496 if (len > I32_MAX)
147e3846 2497 Perl_croak(aTHX_ "panic: hv name too long (%" UVuf ")", (UV) len);
ee72b38d
FC
2498
2499 PERL_HASH(hash, name, len);
2500
ee72b38d 2501 if (aux->xhv_name_count) {
78b79c77 2502 I32 count = aux->xhv_name_count;
3d50185d
FC
2503 HEK ** const xhv_name = aux->xhv_name_u.xhvnameu_names + (count<0);
2504 HEK **hekp = xhv_name + (count < 0 ? -count - 1 : count);
ee72b38d 2505 while (hekp-- > xhv_name)
3d50185d
FC
2506 {
2507 assert(*hekp);
ee72b38d 2508 if (
4643eb69
BF
2509 (HEK_UTF8(*hekp) || (flags & SVf_UTF8))
2510 ? hek_eq_pvn_flags(aTHX_ *hekp, name, (I32)len, flags)
2511 : (HEK_LEN(*hekp) == (I32)len && memEQ(HEK_KEY(*hekp), name, len))
2512 ) {
78b79c77
FC
2513 if (hekp == xhv_name && count < 0)
2514 aux->xhv_name_count = -count;
2515 return;
2516 }
3d50185d 2517 }
78b79c77
FC
2518 if (count < 0) aux->xhv_name_count--, count = -count;
2519 else aux->xhv_name_count++;
15d9236d 2520 Renew(aux->xhv_name_u.xhvnameu_names, count + 1, HEK *);
c60dbbc3 2521 (aux->xhv_name_u.xhvnameu_names)[count] = share_hek(name, (flags & SVf_UTF8 ? -(I32)len : (I32)len), hash);
ee72b38d
FC
2522 }
2523 else {
15d9236d 2524 HEK *existing_name = aux->xhv_name_u.xhvnameu_name;
ee72b38d 2525 if (
4643eb69
BF
2526 existing_name && (
2527 (HEK_UTF8(existing_name) || (flags & SVf_UTF8))
2528 ? hek_eq_pvn_flags(aTHX_ existing_name, name, (I32)len, flags)
2529 : (HEK_LEN(existing_name) == (I32)len && memEQ(HEK_KEY(existing_name), name, len))
2530 )
ee72b38d 2531 ) return;
15d9236d 2532 Newx(aux->xhv_name_u.xhvnameu_names, 2, HEK *);
78b79c77 2533 aux->xhv_name_count = existing_name ? 2 : -2;
15d9236d 2534 *aux->xhv_name_u.xhvnameu_names = existing_name;
c60dbbc3 2535 (aux->xhv_name_u.xhvnameu_names)[1] = share_hek(name, (flags & SVf_UTF8 ? -(I32)len : (I32)len), hash);
ee72b38d
FC
2536 }
2537}
2538
99206677
FC
2539/*
2540=for apidoc hv_ename_delete
2541
db4fbf16 2542Removes a name from a stash's internal list of effective names. If this is
99206677
FC
2543the name returned by C<HvENAME>, then another name in the list will take
2544its place (C<HvENAME> will use it).
2545
2546This is called when a stash is deleted from the symbol table.
2547
2548=cut
2549*/
2550
ee72b38d 2551void
27a1175b 2552Perl_hv_ename_delete(pTHX_ HV *hv, const char *name, U32 len, U32 flags)
ee72b38d 2553{
ee72b38d
FC
2554 struct xpvhv_aux *aux;
2555
78b79c77 2556 PERL_ARGS_ASSERT_HV_ENAME_DELETE;
ee72b38d
FC
2557
2558 if (len > I32_MAX)
147e3846 2559 Perl_croak(aTHX_ "panic: hv name too long (%" UVuf ")", (UV) len);
ee72b38d
FC
2560
2561 if (!SvOOK(hv)) return;
2562
2563 aux = HvAUX(hv);
15d9236d 2564 if (!aux->xhv_name_u.xhvnameu_name) return;
ee72b38d
FC
2565
2566 if (aux->xhv_name_count) {
15d9236d 2567 HEK ** const namep = aux->xhv_name_u.xhvnameu_names;
78b79c77
FC
2568 I32 const count = aux->xhv_name_count;
2569 HEK **victim = namep + (count < 0 ? -count : count);
2570 while (victim-- > namep + 1)
ee72b38d 2571 if (
4643eb69
BF
2572 (HEK_UTF8(*victim) || (flags & SVf_UTF8))
2573 ? hek_eq_pvn_flags(aTHX_ *victim, name, (I32)len, flags)
2574 : (HEK_LEN(*victim) == (I32)len && memEQ(HEK_KEY(*victim), name, len))
ee72b38d
FC
2575 ) {
2576 unshare_hek_or_pvn(*victim, 0, 0, 0);
339441ef 2577 aux = HvAUX(hv); /* may been realloced */
78b79c77
FC
2578 if (count < 0) ++aux->xhv_name_count;
2579 else --aux->xhv_name_count;
2580 if (
2581 (aux->xhv_name_count == 1 || aux->xhv_name_count == -1)
2582 && !*namep
2583 ) { /* if there are none left */
ee72b38d 2584 Safefree(namep);
15d9236d 2585 aux->xhv_name_u.xhvnameu_names = NULL;
78b79c77 2586 aux->xhv_name_count = 0;
ee72b38d
FC
2587 }
2588 else {
2589 /* Move the last one back to fill the empty slot. It
2590 does not matter what order they are in. */
78b79c77 2591 *victim = *(namep + (count < 0 ? -count : count) - 1);
ee72b38d
FC
2592 }
2593 return;
2594 }
78b79c77 2595 if (
60a26c79 2596 count > 0 && ((HEK_UTF8(*namep) || (flags & SVf_UTF8))
4643eb69
BF
2597 ? hek_eq_pvn_flags(aTHX_ *namep, name, (I32)len, flags)
2598 : (HEK_LEN(*namep) == (I32)len && memEQ(HEK_KEY(*namep), name, len))
60a26c79 2599 )
78b79c77
FC
2600 ) {
2601 aux->xhv_name_count = -count;
2602 }
ee72b38d
FC
2603 }
2604 else if(
4643eb69
BF
2605 (HEK_UTF8(aux->xhv_name_u.xhvnameu_name) || (flags & SVf_UTF8))
2606 ? hek_eq_pvn_flags(aTHX_ aux->xhv_name_u.xhvnameu_name, name, (I32)len, flags)
2607 : (HEK_LEN(aux->xhv_name_u.xhvnameu_name) == (I32)len &&
2608 memEQ(HEK_KEY(aux->xhv_name_u.xhvnameu_name), name, len))
ee72b38d 2609 ) {
15d9236d
NC
2610 HEK * const namehek = aux->xhv_name_u.xhvnameu_name;
2611 Newx(aux->xhv_name_u.xhvnameu_names, 1, HEK *);
2612 *aux->xhv_name_u.xhvnameu_names = namehek;
3f783763 2613 aux->xhv_name_count = -1;
ee72b38d
FC
2614 }
2615}
2616
86f55936
NC
2617AV **
2618Perl_hv_backreferences_p(pTHX_ HV *hv) {
7918f24d 2619 PERL_ARGS_ASSERT_HV_BACKREFERENCES_P;
8fbcb657 2620 /* See also Perl_sv_get_backrefs in sv.c where this logic is unrolled */
34f2dd85
YO
2621 {
2622 struct xpvhv_aux * const iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
2623 return &(iter->xhv_backreferences);
2624 }
86f55936
NC
2625}
2626
09aad8f0
DM
2627void
2628Perl_hv_kill_backrefs(pTHX_ HV *hv) {
2629 AV *av;
2630
2631 PERL_ARGS_ASSERT_HV_KILL_BACKREFS;
2632
2633 if (!SvOOK(hv))
2634 return;
2635
2636 av = HvAUX(hv)->xhv_backreferences;
2637
2638 if (av) {
2639 HvAUX(hv)->xhv_backreferences = 0;
2640 Perl_sv_kill_backrefs(aTHX_ MUTABLE_SV(hv), av);
5648c0ae 2641 if (SvTYPE(av) == SVt_PVAV)
0c920c9b 2642 SvREFCNT_dec_NN(av);
09aad8f0
DM
2643 }
2644}
2645
954c1994 2646/*
7a7b9979
NC
2647hv_iternext is implemented as a macro in hv.h
2648
954c1994
GS
2649=for apidoc hv_iternext
2650
fbe13c60 2651Returns entries from a hash iterator. See C<L</hv_iterinit>>.
954c1994 2652
fe7bca90
NC
2653You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
2654iterator currently points to, without losing your place or invalidating your
2655iterator. Note that in this case the current entry is deleted from the hash
2656with your iterator holding the last reference to it. Your iterator is flagged
2657to free the entry on the next call to C<hv_iternext>, so you must not discard
2658your iterator immediately else the entry will leak - call C<hv_iternext> to
2659trigger the resource deallocation.
2660
fe7bca90
NC
2661=for apidoc hv_iternext_flags
2662
fbe13c60
KW
2663Returns entries from a hash iterator. See C<L</hv_iterinit>> and
2664C<L</hv_iternext>>.
796b6530 2665The C<flags> value will normally be zero; if C<HV_ITERNEXT_WANTPLACEHOLDERS> is
fe7bca90 2666set the placeholders keys (for restricted hashes) will be returned in addition
72d33970 2667to normal keys. By default placeholders are automatically skipped over.
7996736c 2668Currently a placeholder is implemented with a value that is
990c89d7 2669C<&PL_sv_placeholder>. Note that the implementation of placeholders and
fe7bca90
NC
2670restricted hashes may change, and the implementation currently is
2671insufficiently abstracted for any change to be tidy.
e16e2ff8 2672
fe7bca90 2673=cut
e16e2ff8
NC
2674*/
2675
2676HE *
2677Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags)
2678{
27da23d5 2679 dVAR;
eb578fdb
KW
2680 XPVHV* xhv;
2681 HE *entry;
a0d0e21e 2682 HE *oldentry;
463ee0b2 2683 MAGIC* mg;
bfcb3514 2684 struct xpvhv_aux *iter;
79072805 2685
7918f24d
NC
2686 PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS;
2687
cbec9347 2688 xhv = (XPVHV*)SvANY(hv);
bfcb3514 2689
b79f7545 2690 if (!SvOOK(hv)) {
bfcb3514 2691 /* Too many things (well, pp_each at least) merrily assume that you can
caee4c53 2692 call hv_iternext without calling hv_iterinit, so we'll have to deal
bfcb3514
NC
2693 with it. */
2694 hv_iterinit(hv);
bfcb3514 2695 }
b79f7545 2696 iter = HvAUX(hv);
bfcb3514
NC
2697
2698 oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
e62cc96a 2699 if (SvMAGICAL(hv) && SvRMAGICAL(hv)) {
ad64d0ec 2700 if ( ( mg = mg_find((const SV *)hv, PERL_MAGIC_tied) ) ) {
e62cc96a
YO
2701 SV * const key = sv_newmortal();
2702 if (entry) {
2703 sv_setsv(key, HeSVKEY_force(entry));
2704 SvREFCNT_dec(HeSVKEY(entry)); /* get rid of previous key */
895cdc83 2705 HeSVKEY_set(entry, NULL);
e62cc96a
YO
2706 }
2707 else {
2708 char *k;
2709 HEK *hek;
2710
2711 /* one HE per MAGICAL hash */
2712 iter->xhv_eiter = entry = new_HE(); /* HvEITER(hv) = new_HE() */
895cdc83 2713 HvLAZYDEL_on(hv); /* make sure entry gets freed */
e62cc96a 2714 Zero(entry, 1, HE);
ad64d0ec 2715 Newxz(k, HEK_BASESIZE + sizeof(const SV *), char);
e62cc96a
YO
2716 hek = (HEK*)k;
2717 HeKEY_hek(entry) = hek;
2718 HeKLEN(entry) = HEf_SVKEY;
2719 }
ad64d0ec 2720 magic_nextpack(MUTABLE_SV(hv),mg,key);
e62cc96a
YO
2721 if (SvOK(key)) {
2722 /* force key to stay around until next time */
2723 HeSVKEY_set(entry, SvREFCNT_inc_simple_NN(key));
2724 return entry; /* beware, hent_val is not set */
2725 }
ef8d46e8 2726 SvREFCNT_dec(HeVAL(entry));
e62cc96a
YO
2727 Safefree(HeKEY_hek(entry));
2728 del_HE(entry);
339441ef 2729 iter = HvAUX(hv); /* may been realloced */
e62cc96a 2730 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
895cdc83 2731 HvLAZYDEL_off(hv);
e62cc96a 2732 return NULL;
81714fb9 2733 }
79072805 2734 }
7ee146b1 2735#if defined(DYNAMIC_ENV_FETCH) && !defined(__riscos__) /* set up %ENV for iteration */
ad64d0ec
NC
2736 if (!entry && SvRMAGICAL((const SV *)hv)
2737 && mg_find((const SV *)hv, PERL_MAGIC_env)) {
f675dbe5 2738 prime_env_iter();
03026e68
JM
2739#ifdef VMS
2740 /* The prime_env_iter() on VMS just loaded up new hash values
2741 * so the iteration count needs to be reset back to the beginning
2742 */
2743 hv_iterinit(hv);
2744 iter = HvAUX(hv);
2745 oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
2746#endif
2747 }
f675dbe5 2748#endif
463ee0b2 2749
bfaf5b52 2750 /* hv_iterinit now ensures this. */
b79f7545
NC
2751 assert (HvARRAY(hv));
2752
015a5f36 2753 /* At start of hash, entry is NULL. */
fde52b5c 2754 if (entry)
8aacddc1 2755 {
fde52b5c 2756 entry = HeNEXT(entry);
e16e2ff8
NC
2757 if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2758 /*
2759 * Skip past any placeholders -- don't want to include them in
2760 * any iteration.
2761 */
7996736c 2762 while (entry && HeVAL(entry) == &PL_sv_placeholder) {
e16e2ff8
NC
2763 entry = HeNEXT(entry);
2764 }
8aacddc1
NIS
2765 }
2766 }
6a5b4183
YO
2767
2768#ifdef PERL_HASH_RANDOMIZE_KEYS
a7b39f85
YO
2769 if (iter->xhv_last_rand != iter->xhv_rand) {
2770 if (iter->xhv_riter != -1) {
2771 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
2772 "Use of each() on hash after insertion without resetting hash iterator results in undefined behavior"
2773 pTHX__FORMAT
2774 pTHX__VALUE);
2775 }
339441ef 2776 iter = HvAUX(hv); /* may been realloced */
a7b39f85
YO
2777 iter->xhv_last_rand = iter->xhv_rand;
2778 }
6a5b4183 2779#endif
015a5f36 2780
9eb4ebd1
NC
2781 /* Skip the entire loop if the hash is empty. */
2782 if ((flags & HV_ITERNEXT_WANTPLACEHOLDERS)
2783 ? HvTOTALKEYS(hv) : HvUSEDKEYS(hv)) {
900ac051
MM
2784 while (!entry) {
2785 /* OK. Come to the end of the current list. Grab the next one. */
2786
2787 iter->xhv_riter++; /* HvRITER(hv)++ */
2788 if (iter->xhv_riter > (I32)xhv->xhv_max /* HvRITER(hv) > HvMAX(hv) */) {
2789 /* There is no next one. End of the hash. */
2790 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
6a5b4183
YO
2791#ifdef PERL_HASH_RANDOMIZE_KEYS
2792 iter->xhv_last_rand = iter->xhv_rand; /* reset xhv_last_rand so we can detect inserts during traversal */
2793#endif
900ac051
MM
2794 break;
2795 }
6a5b4183 2796 entry = (HvARRAY(hv))[ PERL_HASH_ITER_BUCKET(iter) & xhv->xhv_max ];
8aacddc1 2797
900ac051
MM
2798 if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2799 /* If we have an entry, but it's a placeholder, don't count it.
2800 Try the next. */
2801 while (entry && HeVAL(entry) == &PL_sv_placeholder)
2802 entry = HeNEXT(entry);
2803 }
2804 /* Will loop again if this linked list starts NULL
2805 (for HV_ITERNEXT_WANTPLACEHOLDERS)
2806 or if we run through it and find only placeholders. */
015a5f36 2807 }
fde52b5c 2808 }
a7b39f85
YO
2809 else {
2810 iter->xhv_riter = -1;
6a5b4183 2811#ifdef PERL_HASH_RANDOMIZE_KEYS
a7b39f85 2812 iter->xhv_last_rand = iter->xhv_rand;
6a5b4183 2813#endif
a7b39f85 2814 }
79072805 2815
72940dca 2816 if (oldentry && HvLAZYDEL(hv)) { /* was deleted earlier? */
2817 HvLAZYDEL_off(hv);
68dc0745 2818 hv_free_ent(hv, oldentry);
72940dca 2819 }
a0d0e21e 2820
339441ef 2821 iter = HvAUX(hv); /* may been realloced */
bfcb3514 2822 iter->xhv_eiter = entry; /* HvEITER(hv) = entry */
79072805
LW
2823 return entry;
2824}
2825
954c1994
GS
2826/*
2827=for apidoc hv_iterkey
2828
2829Returns the key from the current position of the hash iterator. See
fbe13c60 2830C<L</hv_iterinit>>.
954c1994
GS
2831
2832=cut
2833*/
2834
79072805 2835char *
5aaab254 2836Perl_hv_iterkey(pTHX_ HE *entry, I32 *retlen)
79072805 2837{
7918f24d
NC
2838 PERL_ARGS_ASSERT_HV_ITERKEY;
2839
fde52b5c 2840 if (HeKLEN(entry) == HEf_SVKEY) {
fb73857a 2841 STRLEN len;
0bd48802 2842 char * const p = SvPV(HeKEY_sv(entry), len);
fb73857a 2843 *retlen = len;
2844 return p;
fde52b5c 2845 }
2846 else {
2847 *retlen = HeKLEN(entry);
2848 return HeKEY(entry);
2849 }
2850}
2851
2852/* unlike hv_iterval(), this always returns a mortal copy of the key */
954c1994
GS
2853/*
2854=for apidoc hv_iterkeysv
2855
2856Returns the key as an C<SV*> from the current position of the hash
2857iterator. The return value will always be a mortal copy of the key. Also
fbe13c60 2858see C<L</hv_iterinit>>.
954c1994
GS
2859
2860=cut
2861*/
2862
fde52b5c 2863SV *
5aaab254 2864Perl_hv_iterkeysv(pTHX_ HE *entry)
fde52b5c 2865{
7918f24d
NC
2866 PERL_ARGS_ASSERT_HV_ITERKEYSV;
2867
c1b02ed8 2868 return sv_2mortal(newSVhek(HeKEY_hek(entry)));
79072805
LW
2869}
2870
954c1994
GS
2871/*
2872=for apidoc hv_iterval
2873
2874Returns the value from the current position of the hash iterator. See
fbe13c60 2875C<L</hv_iterkey>>.
954c1994
GS
2876
2877=cut
2878*/
2879
79072805 2880SV *
5aaab254 2881Perl_hv_iterval(pTHX_ HV *hv, HE *entry)
79072805 2882{
7918f24d
NC
2883 PERL_ARGS_ASSERT_HV_ITERVAL;
2884
8990e307 2885 if (SvRMAGICAL(hv)) {
ad64d0ec 2886 if (mg_find((const SV *)hv, PERL_MAGIC_tied)) {
c4420975 2887 SV* const sv = sv_newmortal();
bbce6d69 2888 if (HeKLEN(entry) == HEf_SVKEY)
ad64d0ec 2889 mg_copy(MUTABLE_SV(hv), sv, (char*)HeKEY_sv(entry), HEf_SVKEY);
a3b680e6 2890 else
ad64d0ec 2891 mg_copy(MUTABLE_SV(hv), sv, HeKEY(entry), HeKLEN(entry));
463ee0b2
LW
2892 return sv;
2893 }
79072805 2894 }
fde52b5c 2895 return HeVAL(entry);
79072805
LW
2896}
2897
954c1994
GS
2898/*
2899=for apidoc hv_iternextsv
2900
2901Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
2902operation.
2903
2904=cut
2905*/
2906
a0d0e21e 2907SV *
864dbfa3 2908Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen)
a0d0e21e 2909{
0bd48802
AL
2910 HE * const he = hv_iternext_flags(hv, 0);
2911
7918f24d
NC
2912 PERL_ARGS_ASSERT_HV_ITERNEXTSV;
2913
0bd48802 2914 if (!he)
a0d0e21e
LW
2915 return NULL;
2916 *key = hv_iterkey(he, retlen);
2917 return hv_iterval(hv, he);
2918}
2919
954c1994 2920/*
bc5cdc23
NC
2921
2922Now a macro in hv.h
2923
954c1994
GS
2924=for apidoc hv_magic
2925
fbe13c60 2926Adds magic to a hash. See C<L</sv_magic>>.
954c1994
GS
2927
2928=cut
2929*/
2930
bbce6d69 2931/* possibly free a shared string if no one has access to it
fde52b5c 2932 * len and hash must both be valid for str.
2933 */
bbce6d69 2934void
864dbfa3 2935Perl_unsharepvn(pTHX_ const char *str, I32 len, U32 hash)
fde52b5c 2936{
19692e8d
NC
2937 unshare_hek_or_pvn (NULL, str, len, hash);
2938}
2939
2940
2941void
2942Perl_unshare_hek(pTHX_ HEK *hek)
2943{
bf11fd37 2944 assert(hek);
19692e8d
NC
2945 unshare_hek_or_pvn(hek, NULL, 0, 0);
2946}
2947
2948/* possibly free a shared string if no one has access to it
2949 hek if non-NULL takes priority over the other 3, else str, len and hash
2950 are used. If so, len and hash must both be valid for str.
2951 */
df132699 2952STATIC void
97ddebaf 2953S_unshare_hek_or_pvn(pTHX_ const HEK *hek, const char *str, I32 len, U32 hash)
19692e8d 2954{
eb578fdb 2955 XPVHV* xhv;
20454177 2956 HE *entry;
eb578fdb 2957 HE **oentry;
c3654f1a 2958 bool is_utf8 = FALSE;
19692e8d 2959 int k_flags = 0;
aec46f14 2960 const char * const save = str;
cbbf8932 2961 struct shared_he *he = NULL;
c3654f1a 2962
19692e8d 2963 if (hek) {
cbae3960
NC
2964 /* Find the shared he which is just before us in memory. */
2965 he = (struct shared_he *)(((char *)hek)
2966 - STRUCT_OFFSET(struct shared_he,
2967 shared_he_hek));
2968
2969 /* Assert that the caller passed us a genuine (or at least consistent)
2970 shared hek */
2971 assert (he->shared_he_he.hent_hek == hek);
29404ae0 2972
de616631
NC
2973 if (he->shared_he_he.he_valu.hent_refcount - 1) {
2974 --he->shared_he_he.he_valu.hent_refcount;
29404ae0
NC
2975 return;
2976 }
29404ae0 2977
19692e8d
NC
2978 hash = HEK_HASH(hek);
2979 } else if (len < 0) {
2980 STRLEN tmplen = -len;
2981 is_utf8 = TRUE;
2982 /* See the note in hv_fetch(). --jhi */
2983 str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2984 len = tmplen;
2985 if (is_utf8)
2986 k_flags = HVhek_UTF8;
2987 if (str != save)
2988 k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
c3654f1a 2989 }
1c846c1f 2990
de616631 2991 /* what follows was the moral equivalent of:
6b88bc9c 2992 if ((Svp = hv_fetch(PL_strtab, tmpsv, FALSE, hash))) {
a0714e2c 2993 if (--*Svp == NULL)
6b88bc9c 2994 hv_delete(PL_strtab, str, len, G_DISCARD, hash);
bbce6d69 2995 } */
cbec9347 2996 xhv = (XPVHV*)SvANY(PL_strtab);
fde52b5c 2997 /* assert(xhv_array != 0) */
9de10d5c 2998 oentry = &(HvARRAY(PL_strtab))[hash & (I32) HvMAX(PL_strtab)];
6c1b96a1
NC
2999 if (he) {
3000 const HE *const he_he = &(he->shared_he_he);
45d1cc86 3001 for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
35ab5632
NC
3002 if (entry == he_he)
3003 break;
19692e8d
NC
3004 }
3005 } else {
35a4481c 3006 const int flags_masked = k_flags & HVhek_MASK;
45d1cc86 3007 for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
19692e8d
NC
3008 if (HeHASH(entry) != hash) /* strings can't be equal */
3009 continue;
3010 if (HeKLEN(entry) != len)
3011 continue;
3012 if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
3013 continue;
3014 if (HeKFLAGS(entry) != flags_masked)
3015 continue;
19692e8d
NC
3016 break;
3017 }
3018 }
3019
35ab5632
NC
3020 if (entry) {
3021 if (--entry->he_valu.hent_refcount == 0) {
19692e8d 3022 *oentry = HeNEXT(entry);
cbae3960 3023 Safefree(entry);
4c7185a0 3024 xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
19692e8d 3025 }
fde52b5c 3026 }
19692e8d 3027
9b387841
NC
3028 if (!entry)
3029 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
12578ffb 3030 "Attempt to free nonexistent shared string '%s'%s"
9b387841
NC
3031 pTHX__FORMAT,
3032 hek ? HEK_KEY(hek) : str,
3033 ((k_flags & HVhek_UTF8) ? " (utf8)" : "") pTHX__VALUE);
19692e8d
NC
3034 if (k_flags & HVhek_FREEKEY)
3035 Safefree(str);
fde52b5c 3036}
3037
bbce6d69 3038/* get a (constant) string ptr from the global string table
3039 * string will get added if it is not already there.
fde52b5c 3040 * len and hash must both be valid for str.
3041 */
bbce6d69 3042HEK *
b02f3645 3043Perl_share_hek(pTHX_ const char *str, SSize_t len, U32 hash)
fde52b5c 3044{
da58a35d 3045 bool is_utf8 = FALSE;
19692e8d 3046 int flags = 0;
aec46f14 3047 const char * const save = str;
da58a35d 3048
7918f24d
NC
3049 PERL_ARGS_ASSERT_SHARE_HEK;
3050
da58a35d 3051 if (len < 0) {
77caf834 3052 STRLEN tmplen = -len;
da58a35d 3053 is_utf8 = TRUE;
77caf834
JH
3054 /* See the note in hv_fetch(). --jhi */
3055 str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
3056 len = tmplen;
19692e8d
NC
3057 /* If we were able to downgrade here, then than means that we were passed
3058 in a key which only had chars 0-255, but was utf8 encoded. */
3059 if (is_utf8)
3060 flags = HVhek_UTF8;
3061 /* If we found we were able to downgrade the string to bytes, then
3062 we should flag that it needs upgrading on keys or each. Also flag
3063 that we need share_hek_flags to free the string. */
4643eb69 3064 if (str != save) {
c2587955 3065 dVAR;
4643eb69 3066 PERL_HASH(hash, str, len);
19692e8d 3067 flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
4643eb69 3068 }
19692e8d
NC
3069 }
3070
6e838c70 3071 return share_hek_flags (str, len, hash, flags);
19692e8d
NC
3072}
3073
6e838c70 3074STATIC HEK *
b02f3645 3075S_share_hek_flags(pTHX_ const char *str, STRLEN len, U32 hash, int flags)
19692e8d 3076{
eb578fdb 3077 HE *entry;
35a4481c 3078 const int flags_masked = flags & HVhek_MASK;
263cb4a6 3079 const U32 hindex = hash & (I32) HvMAX(PL_strtab);
eb578fdb 3080 XPVHV * const xhv = (XPVHV*)SvANY(PL_strtab);
7918f24d
NC
3081
3082 PERL_ARGS_ASSERT_SHARE_HEK_FLAGS;
bbce6d69 3083
b02f3645
AC
3084 if (UNLIKELY(len > (STRLEN) I32_MAX)) {
3085 Perl_croak_nocontext("Sorry, hash keys must be smaller than 2**31 bytes");
3086 }
3087
fde52b5c 3088 /* what follows is the moral equivalent of:
1c846c1f 3089
6b88bc9c 3090 if (!(Svp = hv_fetch(PL_strtab, str, len, FALSE)))
a0714e2c 3091 hv_store(PL_strtab, str, len, NULL, hash);
fdcd69b6
NC
3092
3093 Can't rehash the shared string table, so not sure if it's worth
3094 counting the number of entries in the linked list
bbce6d69 3095 */
7918f24d 3096
fde52b5c 3097 /* assert(xhv_array != 0) */
263cb4a6
NC
3098 entry = (HvARRAY(PL_strtab))[hindex];
3099 for (;entry; entry = HeNEXT(entry)) {
fde52b5c 3100 if (HeHASH(entry) != hash) /* strings can't be equal */
3101 continue;
b02f3645 3102 if (HeKLEN(entry) != (SSize_t) len)
fde52b5c 3103 continue;
1c846c1f 3104 if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
fde52b5c 3105 continue;
19692e8d 3106 if (HeKFLAGS(entry) != flags_masked)
c3654f1a 3107 continue;
fde52b5c 3108 break;
3109 }
263cb4a6
NC
3110
3111 if (!entry) {
45d1cc86
NC
3112 /* What used to be head of the list.
3113 If this is NULL, then we're the first entry for this slot, which
3114 means we need to increate fill. */
cbae3960
NC
3115 struct shared_he *new_entry;
3116 HEK *hek;
3117 char *k;
263cb4a6
NC
3118 HE **const head = &HvARRAY(PL_strtab)[hindex];
3119 HE *const next = *head;
cbae3960
NC
3120
3121 /* We don't actually store a HE from the arena and a regular HEK.
3122 Instead we allocate one chunk of memory big enough for both,
3123 and put the HEK straight after the HE. This way we can find the
f52337cf 3124 HE directly from the HEK.
cbae3960
NC
3125 */
3126
a02a5408 3127 Newx(k, STRUCT_OFFSET(struct shared_he,
cbae3960
NC
3128 shared_he_hek.hek_key[0]) + len + 2, char);
3129 new_entry = (struct shared_he *)k;
3130 entry = &(new_entry->shared_he_he);
3131 hek = &(new_entry->shared_he_hek);
3132
3133 Copy(str, HEK_KEY(hek), len, char);
3134 HEK_KEY(hek)[len] = 0;
3135 HEK_LEN(hek) = len;
3136 HEK_HASH(hek) = hash;
3137 HEK_FLAGS(hek) = (unsigned char)flags_masked;
3138
3139 /* Still "point" to the HEK, so that other code need not know what
3140 we're up to. */
3141 HeKEY_hek(entry) = hek;
de616631 3142 entry->he_valu.hent_refcount = 0;
263cb4a6
NC
3143 HeNEXT(entry) = next;
3144 *head = entry;
cbae3960 3145
4c7185a0 3146 xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
263cb4a6 3147 if (!next) { /* initial entry? */
8e317198 3148 } else if ( DO_HSPLIT(xhv) ) {
adf6906b
NC
3149 const STRLEN oldsize = xhv->xhv_max + 1;
3150 hsplit(PL_strtab, oldsize, oldsize * 2);
bbce6d69 3151 }
3152 }
3153
de616631 3154 ++entry->he_valu.hent_refcount;
19692e8d
NC
3155
3156 if (flags & HVhek_FREEKEY)
f9a63242 3157 Safefree(str);
19692e8d 3158
6e838c70 3159 return HeKEY_hek(entry);
fde52b5c 3160}
ecae49c0 3161
6174b39a 3162SSize_t *
ca732855
NC
3163Perl_hv_placeholders_p(pTHX_ HV *hv)
3164{
ad64d0ec 3165 MAGIC *mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
ca732855 3166
7918f24d
NC
3167 PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P;
3168
ca732855 3169 if (!mg) {
ad64d0ec 3170 mg = sv_magicext(MUTABLE_SV(hv), 0, PERL_MAGIC_rhash, 0, 0, 0);
ca732855
NC
3171
3172 if (!mg) {
3173 Perl_die(aTHX_ "panic: hv_placeholders_p");
3174 }
3175 }
3176 return &(mg->mg_len);
3177}
3178
3179
3180I32
0c289d13 3181Perl_hv_placeholders_get(pTHX_ const HV *hv)
ca732855 3182{
0c289d13 3183 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
ca732855 3184
7918f24d 3185 PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET;
23491f1d 3186 PERL_UNUSED_CONTEXT;
7918f24d 3187
ca732855
NC
3188 return mg ? mg->mg_len : 0;
3189}
3190
3191void
ac1e784a 3192Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph)
ca732855 3193{
ad64d0ec 3194 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
ca732855 3195
7918f24d
NC
3196 PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET;
3197
ca732855
NC
3198 if (mg) {
3199 mg->mg_len = ph;
3200 } else if (ph) {
ad64d0ec 3201 if (!sv_magicext(MUTABLE_SV(hv), 0, PERL_MAGIC_rhash, 0, 0, ph))
ca732855
NC
3202 Perl_die(aTHX_ "panic: hv_placeholders_set");
3203 }
3204 /* else we don't need to add magic to record 0 placeholders. */
3205}
ecae49c0 3206
2a49f0f5 3207STATIC SV *
7b0bddfa
NC
3208S_refcounted_he_value(pTHX_ const struct refcounted_he *he)
3209{
0b2d3faa 3210 dVAR;
7b0bddfa 3211 SV *value;
7918f24d
NC
3212
3213 PERL_ARGS_ASSERT_REFCOUNTED_HE_VALUE;
3214
7b0bddfa
NC
3215 switch(he->refcounted_he_data[0] & HVrhek_typemask) {
3216 case HVrhek_undef:
3217 value = newSV(0);
3218 break;
3219 case HVrhek_delete:
3220 value = &PL_sv_placeholder;
3221 break;
3222 case HVrhek_IV:
44ebaf21
NC
3223 value = newSViv(he->refcounted_he_val.refcounted_he_u_iv);
3224 break;
3225 case HVrhek_UV:
3226 value = newSVuv(he->refcounted_he_val.refcounted_he_u_uv);
7b0bddfa
NC
3227 break;
3228 case HVrhek_PV:
44ebaf21 3229 case HVrhek_PV_UTF8:
7b0bddfa
NC
3230 /* Create a string SV that directly points to the bytes in our
3231 structure. */
b9f83d2f 3232 value = newSV_type(SVt_PV);
7b0bddfa
NC
3233 SvPV_set(value, (char *) he->refcounted_he_data + 1);
3234 SvCUR_set(value, he->refcounted_he_val.refcounted_he_u_len);
3235 /* This stops anything trying to free it */
3236 SvLEN_set(value, 0);
3237 SvPOK_on(value);
3238 SvREADONLY_on(value);
44ebaf21 3239 if ((he->refcounted_he_data[0] & HVrhek_typemask) == HVrhek_PV_UTF8)
7b0bddfa
NC
3240 SvUTF8_on(value);
3241 break;
3242 default:
147e3846 3243 Perl_croak(aTHX_ "panic: refcounted_he_value bad flags %" UVxf,
20439bc7 3244 (UV)he->refcounted_he_data[0]);
7b0bddfa
NC
3245 }
3246 return value;
3247}
3248
ecae49c0 3249/*
20439bc7 3250=for apidoc m|HV *|refcounted_he_chain_2hv|const struct refcounted_he *c|U32 flags
8dff4fc5 3251
20439bc7
Z
3252Generates and returns a C<HV *> representing the content of a
3253C<refcounted_he> chain.
2d7f6611 3254C<flags> is currently unused and must be zero.
8dff4fc5
BM
3255
3256=cut
3257*/
3258HV *
20439bc7 3259Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *chain, U32 flags)
8dff4fc5 3260{
20439bc7
Z
3261 dVAR;
3262 HV *hv;
3263 U32 placeholders, max;
b3ca2e83 3264
20439bc7 3265 if (flags)
147e3846 3266 Perl_croak(aTHX_ "panic: refcounted_he_chain_2hv bad flags %" UVxf,
20439bc7 3267 (UV)flags);
b3ca2e83 3268
b3ca2e83
NC
3269 /* We could chase the chain once to get an idea of the number of keys,
3270 and call ksplit. But for now we'll make a potentially inefficient
3271 hash with only 8 entries in its array. */
20439bc7
Z
3272 hv = newHV();
3273 max = HvMAX(hv);
b3ca2e83
NC
3274 if (!HvARRAY(hv)) {
3275 char *array;
3276 Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(max + 1), char);
3277 HvARRAY(hv) = (HE**)array;
3278 }
3279
20439bc7 3280 placeholders = 0;
b3ca2e83 3281 while (chain) {
cbb1fbea 3282#ifdef USE_ITHREADS
b6bbf3fa 3283 U32 hash = chain->refcounted_he_hash;
cbb1fbea
NC
3284#else
3285 U32 hash = HEK_HASH(chain->refcounted_he_hek);
3286#endif
b3ca2e83
NC
3287 HE **oentry = &((HvARRAY(hv))[hash & max]);
3288 HE *entry = *oentry;
b6bbf3fa 3289 SV *value;
cbb1fbea 3290
b3ca2e83
NC
3291 for (; entry; entry = HeNEXT(entry)) {
3292 if (HeHASH(entry) == hash) {
9f769845
NC
3293 /* We might have a duplicate key here. If so, entry is older
3294 than the key we've already put in the hash, so if they are
3295 the same, skip adding entry. */
3296#ifdef USE_ITHREADS
3297 const STRLEN klen = HeKLEN(entry);
3298 const char *const key = HeKEY(entry);
3299 if (klen == chain->refcounted_he_keylen
3300 && (!!HeKUTF8(entry)
3301 == !!(chain->refcounted_he_data[0] & HVhek_UTF8))
3302 && memEQ(key, REF_HE_KEY(chain), klen))
3303 goto next_please;
3304#else
3305 if (HeKEY_hek(entry) == chain->refcounted_he_hek)
3306 goto next_please;
3307 if (HeKLEN(entry) == HEK_LEN(chain->refcounted_he_hek)
3308 && HeKUTF8(entry) == HEK_UTF8(chain->refcounted_he_hek)
3309 && memEQ(HeKEY(entry), HEK_KEY(chain->refcounted_he_hek),
3310 HeKLEN(entry)))
3311 goto next_please;
3312#endif
b3ca2e83
NC
3313 }
3314 }
3315 assert (!entry);
3316 entry = new_HE();
3317
cbb1fbea
NC
3318#ifdef USE_ITHREADS
3319 HeKEY_hek(entry)
7b0bddfa 3320 = share_hek_flags(REF_HE_KEY(chain),
b6bbf3fa
NC
3321 chain->refcounted_he_keylen,
3322 chain->refcounted_he_hash,
3323 (chain->refcounted_he_data[0]
3324 & (HVhek_UTF8|HVhek_WASUTF8)));
cbb1fbea 3325#else
71ad1b0c 3326 HeKEY_hek(entry) = share_hek_hek(chain->refcounted_he_hek);
cbb1fbea 3327#endif
7b0bddfa
NC
3328 value = refcounted_he_value(chain);
3329 if (value == &PL_sv_placeholder)
b3ca2e83 3330 placeholders++;
b6bbf3fa 3331 HeVAL(entry) = value;
b3ca2e83
NC
3332
3333 /* Link it into the chain. */
3334 HeNEXT(entry) = *oentry;
b3ca2e83
NC
3335 *oentry = entry;
3336
3337 HvTOTALKEYS(hv)++;
3338
3339 next_please:
71ad1b0c 3340 chain = chain->refcounted_he_next;
b3ca2e83
NC
3341 }
3342
3343 if (placeholders) {
3344 clear_placeholders(hv, placeholders);
3345 HvTOTALKEYS(hv) -= placeholders;
3346 }
3347
3348 /* We could check in the loop to see if we encounter any keys with key
3349 flags, but it's probably not worth it, as this per-hash flag is only
3350 really meant as an optimisation for things like Storable. */
3351 HvHASKFLAGS_on(hv);
def9038f 3352 DEBUG_A(Perl_hv_assert(aTHX_ hv));
b3ca2e83
NC
3353
3354 return hv;
3355}
3356
20439bc7
Z
3357/*
3358=for apidoc m|SV *|refcounted_he_fetch_pvn|const struct refcounted_he *chain|const char *keypv|STRLEN keylen|U32 hash|U32 flags
3359
3360Search along a C<refcounted_he> chain for an entry with the key specified
2d7f6611 3361by C<keypv> and C<keylen>. If C<flags> has the C<REFCOUNTED_HE_KEY_UTF8>
20439bc7 3362bit set, the key octets are interpreted as UTF-8, otherwise they
2d7f6611 3363are interpreted as Latin-1. C<hash> is a precomputed hash of the key
20439bc7
Z
3364string, or zero if it has not been precomputed. Returns a mortal scalar
3365representing the value associated with the key, or C<&PL_sv_placeholder>
3366if there is no value associated with the key.
3367
3368=cut
3369*/
3370
7b0bddfa 3371SV *
20439bc7
Z
3372Perl_refcounted_he_fetch_pvn(pTHX_ const struct refcounted_he *chain,
3373 const char *keypv, STRLEN keylen, U32 hash, U32 flags)
7b0bddfa 3374{
0b2d3faa 3375 dVAR;
20439bc7
Z
3376 U8 utf8_flag;
3377 PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PVN;
7b0bddfa 3378
94250aee 3379 if (flags & ~(REFCOUNTED_HE_KEY_UTF8|REFCOUNTED_HE_EXISTS))
147e3846 3380 Perl_croak(aTHX_ "panic: refcounted_he_fetch_pvn bad flags %" UVxf,
20439bc7
Z
3381 (UV)flags);
3382 if (!chain)
71622e40 3383 goto ret;
20439bc7
Z
3384 if (flags & REFCOUNTED_HE_KEY_UTF8) {
3385 /* For searching purposes, canonicalise to Latin-1 where possible. */
3386 const char *keyend = keypv + keylen, *p;
3387 STRLEN nonascii_count = 0;
3388 for (p = keypv; p != keyend; p++) {
e8e5e5b3
KW
3389 if (! UTF8_IS_INVARIANT(*p)) {
3390 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, keyend)) {
20439bc7 3391 goto canonicalised_key;
e8e5e5b3 3392 }
20439bc7 3393 nonascii_count++;
e8e5e5b3 3394 p++;
20439bc7 3395 }
cd1d2f8a 3396 }
20439bc7
Z
3397 if (nonascii_count) {
3398 char *q;
3399 const char *p = keypv, *keyend = keypv + keylen;
3400 keylen -= nonascii_count;
3401 Newx(q, keylen, char);
3402 SAVEFREEPV(q);
3403 keypv = q;
3404 for (; p != keyend; p++, q++) {
3405 U8 c = (U8)*p;
e8e5e5b3
KW
3406 if (UTF8_IS_INVARIANT(c)) {
3407 *q = (char) c;
3408 }
3409 else {
3410 p++;
a62b247b 3411 *q = (char) EIGHT_BIT_UTF8_TO_NATIVE(c, *p);
e8e5e5b3 3412 }
cd1d2f8a
NC
3413 }
3414 }
20439bc7
Z
3415 flags &= ~REFCOUNTED_HE_KEY_UTF8;
3416 canonicalised_key: ;
3417 }
3418 utf8_flag = (flags & REFCOUNTED_HE_KEY_UTF8) ? HVhek_UTF8 : 0;
3419 if (!hash)
3420 PERL_HASH(hash, keypv, keylen);
7b0bddfa 3421
20439bc7
Z
3422 for (; chain; chain = chain->refcounted_he_next) {
3423 if (
7b0bddfa 3424#ifdef USE_ITHREADS
20439bc7
Z
3425 hash == chain->refcounted_he_hash &&
3426 keylen == chain->refcounted_he_keylen &&
3427 memEQ(REF_HE_KEY(chain), keypv, keylen) &&
3428 utf8_flag == (chain->refcounted_he_data[0] & HVhek_UTF8)
7b0bddfa 3429#else
20439bc7
Z
3430 hash == HEK_HASH(chain->refcounted_he_hek) &&
3431 keylen == (STRLEN)HEK_LEN(chain->refcounted_he_hek) &&
3432 memEQ(HEK_KEY(chain->refcounted_he_hek), keypv, keylen) &&
3433 utf8_flag == (HEK_FLAGS(chain->refcounted_he_hek) & HVhek_UTF8)
7b0bddfa 3434#endif
ef8156f5
NC
3435 ) {
3436 if (flags & REFCOUNTED_HE_EXISTS)
3437 return (chain->refcounted_he_data[0] & HVrhek_typemask)
3438 == HVrhek_delete
3439 ? NULL : &PL_sv_yes;
3440 return sv_2mortal(refcounted_he_value(chain));
3441 }
94250aee 3442 }
71622e40 3443 ret:
94250aee 3444 return flags & REFCOUNTED_HE_EXISTS ? NULL : &PL_sv_placeholder;
20439bc7 3445}
7b0bddfa 3446
20439bc7
Z
3447/*
3448=for apidoc m|SV *|refcounted_he_fetch_pv|const struct refcounted_he *chain|const char *key|U32 hash|U32 flags
7b0bddfa 3449
20439bc7
Z
3450Like L</refcounted_he_fetch_pvn>, but takes a nul-terminated string
3451instead of a string/length pair.
3452
3453=cut
3454*/
3455
3456SV *
3457Perl_refcounted_he_fetch_pv(pTHX_ const struct refcounted_he *chain,
3458 const char *key, U32 hash, U32 flags)
3459{
3460 PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_PV;
3461 return refcounted_he_fetch_pvn(chain, key, strlen(key), hash, flags);
7b0bddfa
NC
3462}
3463
b3ca2e83 3464/*
20439bc7
Z
3465=for apidoc m|SV *|refcounted_he_fetch_sv|const struct refcounted_he *chain|SV *key|U32 hash|U32 flags
3466
3467Like L</refcounted_he_fetch_pvn>, but takes a Perl scalar instead of a
3468string/length pair.
3469
3470=cut
3471*/
b3ca2e83 3472
20439bc7
Z
3473SV *
3474Perl_refcounted_he_fetch_sv(pTHX_ const struct refcounted_he *chain,
3475 SV *key, U32 hash, U32 flags)
3476{
3477 const char *keypv;
3478 STRLEN keylen;
3479 PERL_ARGS_ASSERT_REFCOUNTED_HE_FETCH_SV;
3480 if (flags & REFCOUNTED_HE_KEY_UTF8)
147e3846 3481 Perl_croak(aTHX_ "panic: refcounted_he_fetch_sv bad flags %" UVxf,
20439bc7
Z
3482 (UV)flags);
3483 keypv = SvPV_const(key, keylen);
3484 if (SvUTF8(key))
3485 flags |= REFCOUNTED_HE_KEY_UTF8;
3486 if (!hash && SvIsCOW_shared_hash(key))
3487 hash = SvSHARED_HASH(key);
3488 return refcounted_he_fetch_pvn(chain, keypv, keylen, hash, flags);
3489}
3490
3491/*
3492=for apidoc m|struct refcounted_he *|refcounted_he_new_pvn|struct refcounted_he *parent|const char *keypv|STRLEN keylen|U32 hash|SV *value|U32 flags
3493
3494Creates a new C<refcounted_he>. This consists of a single key/value
3495pair and a reference to an existing C<refcounted_he> chain (which may
3496be empty), and thus forms a longer chain. When using the longer chain,
3497the new key/value pair takes precedence over any entry for the same key
3498further along the chain.
3499
2d7f6611 3500The new key is specified by C<keypv> and C<keylen>. If C<flags> has
20439bc7 3501the C<REFCOUNTED_HE_KEY_UTF8> bit set, the key octets are interpreted
2d7f6611 3502as UTF-8, otherwise they are interpreted as Latin-1. C<hash> is
20439bc7
Z
3503a precomputed hash of the key string, or zero if it has not been
3504precomputed.
3505
2d7f6611 3506C<value> is the scalar value to store for this key. C<value> is copied
20439bc7
Z
3507by this function, which thus does not take ownership of any reference
3508to it, and later changes to the scalar will not be reflected in the
3509value visible in the C<refcounted_he>. Complex types of scalar will not
3510be stored with referential integrity, but will be coerced to strings.
2d7f6611 3511C<value> may be either null or C<&PL_sv_placeholder> to indicate that no
20439bc7
Z
3512value is to be associated with the key; this, as with any non-null value,
3513takes precedence over the existence of a value for the key further along
3514the chain.
3515
2d7f6611 3516C<parent> points to the rest of the C<refcounted_he> chain to be
20439bc7 3517attached to the new C<refcounted_he>. This function takes ownership
2d7f6611 3518of one reference to C<parent>, and returns one reference to the new
20439bc7 3519C<refcounted_he>.
b3ca2e83
NC
3520
3521=cut
3522*/
3523
3524struct refcounted_he *
20439bc7
Z
3525Perl_refcounted_he_new_pvn(pTHX_ struct refcounted_he *parent,
3526 const char *keypv, STRLEN keylen, U32 hash, SV *value, U32 flags)
3527{
7a89be66 3528 dVAR;
b6bbf3fa 3529 STRLEN value_len = 0;
95b63a38 3530 const char *value_p = NULL;
20439bc7 3531 bool is_pv;
b6bbf3fa 3532 char value_type;
20439bc7
Z
3533 char hekflags;
3534 STRLEN key_offset = 1;
3535 struct refcounted_he *he;
3536 PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PVN;
b6bbf3fa 3537
20439bc7
Z
3538 if (!value || value == &PL_sv_placeholder) {
3539 value_type = HVrhek_delete;
3540 } else if (SvPOK(value)) {
b6bbf3fa
NC
3541 value_type = HVrhek_PV;
3542 } else if (SvIOK(value)) {
ad64d0ec 3543 value_type = SvUOK((const SV *)value) ? HVrhek_UV : HVrhek_IV;
b6bbf3fa
NC
3544 } else if (!SvOK(value)) {
3545 value_type = HVrhek_undef;
3546 } else {
3547 value_type = HVrhek_PV;
3548 }
20439bc7
Z
3549 is_pv = value_type == HVrhek_PV;
3550 if (is_pv) {
012da8e5
NC
3551 /* Do it this way so that the SvUTF8() test is after the SvPV, in case
3552 the value is overloaded, and doesn't yet have the UTF-8flag set. */
b6bbf3fa 3553 value_p = SvPV_const(value, value_len);
012da8e5
NC
3554 if (SvUTF8(value))
3555 value_type = HVrhek_PV_UTF8;
20439bc7
Z
3556 key_offset = value_len + 2;
3557 }
3558 hekflags = value_type;
3559
3560 if (flags & REFCOUNTED_HE_KEY_UTF8) {
3561 /* Canonicalise to Latin-1 where possible. */
3562 const char *keyend = keypv + keylen, *p;
3563 STRLEN nonascii_count = 0;
3564 for (p = keypv; p != keyend; p++) {
e8e5e5b3
KW
3565 if (! UTF8_IS_INVARIANT(*p)) {
3566 if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, keyend)) {
20439bc7 3567 goto canonicalised_key;
e8e5e5b3 3568 }
20439bc7 3569 nonascii_count++;
e8e5e5b3 3570 p++;
20439bc7
Z
3571 }
3572 }
3573 if (nonascii_count) {
3574 char *q;
3575 const char *p = keypv, *keyend = keypv + keylen;
3576 keylen -= nonascii_count;
3577 Newx(q, keylen, char);
3578 SAVEFREEPV(q);
3579 keypv = q;
3580 for (; p != keyend; p++, q++) {
3581 U8 c = (U8)*p;
e8e5e5b3
KW
3582 if (UTF8_IS_INVARIANT(c)) {
3583 *q = (char) c;
3584 }
3585 else {
3586 p++;
a62b247b 3587 *q = (char) EIGHT_BIT_UTF8_TO_NATIVE(c, *p);
e8e5e5b3 3588 }
20439bc7
Z
3589 }
3590 }
3591 flags &= ~REFCOUNTED_HE_KEY_UTF8;
3592 canonicalised_key: ;
b6bbf3fa 3593 }
20439bc7
Z
3594 if (flags & REFCOUNTED_HE_KEY_UTF8)
3595 hekflags |= HVhek_UTF8;
3596 if (!hash)
3597 PERL_HASH(hash, keypv, keylen);
012da8e5 3598
0de694c5 3599#ifdef USE_ITHREADS
10edeb5d
JH
3600 he = (struct refcounted_he*)
3601 PerlMemShared_malloc(sizeof(struct refcounted_he) - 1
20439bc7 3602 + keylen
20439bc7 3603 + key_offset);
0de694c5
NC
3604#else
3605 he = (struct refcounted_he*)
3606 PerlMemShared_malloc(sizeof(struct refcounted_he) - 1
3607 + key_offset);
3608#endif
b3ca2e83 3609
71ad1b0c 3610 he->refcounted_he_next = parent;
b6bbf3fa 3611
012da8e5 3612 if (is_pv) {
20439bc7 3613 Copy(value_p, he->refcounted_he_data + 1, value_len + 1, char);
b6bbf3fa 3614 he->refcounted_he_val.refcounted_he_u_len = value_len;
b6bbf3fa 3615 } else if (value_type == HVrhek_IV) {
20439bc7 3616 he->refcounted_he_val.refcounted_he_u_iv = SvIVX(value);
012da8e5 3617 } else if (value_type == HVrhek_UV) {
20439bc7 3618 he->refcounted_he_val.refcounted_he_u_uv = SvUVX(value);
b6bbf3fa
NC
3619 }
3620
cbb1fbea 3621#ifdef USE_ITHREADS
b6bbf3fa 3622 he->refcounted_he_hash = hash;
20439bc7
Z
3623 he->refcounted_he_keylen = keylen;
3624 Copy(keypv, he->refcounted_he_data + key_offset, keylen, char);
cbb1fbea 3625#else
20439bc7 3626 he->refcounted_he_hek = share_hek_flags(keypv, keylen, hash, hekflags);
cbb1fbea 3627#endif
b6bbf3fa 3628
20439bc7 3629 he->refcounted_he_data[0] = hekflags;
b3ca2e83
NC
3630 he->refcounted_he_refcnt = 1;
3631
3632 return he;
3633}
3634
3635/*
20439bc7 3636=for apidoc m|struct refcounted_he *|refcounted_he_new_pv|struct refcounted_he *parent|const char *key|U32 hash|SV *value|U32 flags
b3ca2e83 3637
20439bc7
Z
3638Like L</refcounted_he_new_pvn>, but takes a nul-terminated string instead
3639of a string/length pair.
3640
3641=cut
3642*/
3643
3644struct refcounted_he *
3645Perl_refcounted_he_new_pv(pTHX_ struct refcounted_he *parent,
3646 const char *key, U32 hash, SV *value, U32 flags)
3647{
3648 PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_PV;
3649 return refcounted_he_new_pvn(parent, key, strlen(key), hash, value, flags);
3650}
3651
3652/*
3653=for apidoc m|struct refcounted_he *|refcounted_he_new_sv|struct refcounted_he *parent|SV *key|U32 hash|SV *value|U32 flags
3654
3655Like L</refcounted_he_new_pvn>, but takes a Perl scalar instead of a
3656string/length pair.
3657
3658=cut
3659*/
3660
3661struct refcounted_he *
3662Perl_refcounted_he_new_sv(pTHX_ struct refcounted_he *parent,
3663 SV *key, U32 hash, SV *value, U32 flags)
3664{
3665 const char *keypv;
3666 STRLEN keylen;
3667 PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_SV;
3668 if (flags & REFCOUNTED_HE_KEY_UTF8)
147e3846 3669 Perl_croak(aTHX_ "panic: refcounted_he_new_sv bad flags %" UVxf,
20439bc7
Z
3670 (UV)flags);
3671 keypv = SvPV_const(key, keylen);
3672 if (SvUTF8(key))
3673 flags |= REFCOUNTED_HE_KEY_UTF8;
3674 if (!hash && SvIsCOW_shared_hash(key))
3675 hash = SvSHARED_HASH(key);
3676 return refcounted_he_new_pvn(parent, keypv, keylen, hash, value, flags);
3677}
3678
3679/*
3680=for apidoc m|void|refcounted_he_free|struct refcounted_he *he
3681
3682Decrements the reference count of a C<refcounted_he> by one. If the
3683reference count reaches zero the structure's memory is freed, which
3684(recursively) causes a reduction of its parent C<refcounted_he>'s
3685reference count. It is safe to pass a null pointer to this function:
3686no action occurs in this case.
b3ca2e83
NC
3687
3688=cut
3689*/
3690
3691void
3692Perl_refcounted_he_free(pTHX_ struct refcounted_he *he) {
20b7effb 3693#ifdef USE_ITHREADS
53d44271 3694 dVAR;
20b7effb 3695#endif
57ca3b03
AL
3696 PERL_UNUSED_CONTEXT;
3697
b3ca2e83
NC
3698 while (he) {
3699 struct refcounted_he *copy;
cbb1fbea 3700 U32 new_count;
b3ca2e83 3701
cbb1fbea
NC
3702 HINTS_REFCNT_LOCK;
3703 new_count = --he->refcounted_he_refcnt;
3704 HINTS_REFCNT_UNLOCK;
3705
3706 if (new_count) {
b3ca2e83 3707 return;
cbb1fbea 3708 }
b3ca2e83 3709
b6bbf3fa 3710#ifndef USE_ITHREADS
71ad1b0c 3711 unshare_hek_or_pvn (he->refcounted_he_hek, 0, 0, 0);
cbb1fbea 3712#endif
b3ca2e83 3713 copy = he;
71ad1b0c 3714 he = he->refcounted_he_next;
b6bbf3fa 3715 PerlMemShared_free(copy);
b3ca2e83
NC
3716 }
3717}
3718
20439bc7
Z
3719/*
3720=for apidoc m|struct refcounted_he *|refcounted_he_inc|struct refcounted_he *he
3721
3722Increment the reference count of a C<refcounted_he>. The pointer to the
3723C<refcounted_he> is also returned. It is safe to pass a null pointer
3724to this function: no action occurs and a null pointer is returned.
3725
3726=cut
3727*/
3728
3729struct refcounted_he *
3730Perl_refcounted_he_inc(pTHX_ struct refcounted_he *he)
3731{
20b7effb 3732#ifdef USE_ITHREADS
09ddd873 3733 dVAR;
20b7effb 3734#endif
dc3bf405 3735 PERL_UNUSED_CONTEXT;
20439bc7
Z
3736 if (he) {
3737 HINTS_REFCNT_LOCK;
3738 he->refcounted_he_refcnt++;
3739 HINTS_REFCNT_UNLOCK;
3740 }
3741 return he;
3742}
3743
8375c93e 3744/*
aebc0cbe 3745=for apidoc cop_fetch_label
8375c93e
RU
3746
3747Returns the label attached to a cop.
3748The flags pointer may be set to C<SVf_UTF8> or 0.
3749
3750=cut
3751*/
3752
47550813
NC
3753/* pp_entereval is aware that labels are stored with a key ':' at the top of
3754 the linked list. */
dca6062a 3755const char *
aebc0cbe 3756Perl_cop_fetch_label(pTHX_ COP *const cop, STRLEN *len, U32 *flags) {
d6747b7a
NC
3757 struct refcounted_he *const chain = cop->cop_hints_hash;
3758
aebc0cbe 3759 PERL_ARGS_ASSERT_COP_FETCH_LABEL;
dc3bf405 3760 PERL_UNUSED_CONTEXT;
d6747b7a 3761
dca6062a
NC
3762 if (!chain)
3763 return NULL;
3764#ifdef USE_ITHREADS
3765 if (chain->refcounted_he_keylen != 1)
3766 return NULL;
3767 if (*REF_HE_KEY(chain) != ':')
3768 return NULL;
3769#else
3770 if ((STRLEN)HEK_LEN(chain->refcounted_he_hek) != 1)
3771 return NULL;
3772 if (*HEK_KEY(chain->refcounted_he_hek) != ':')
3773 return NULL;
3774#endif
012da8e5
NC
3775 /* Stop anyone trying to really mess us up by adding their own value for
3776 ':' into %^H */
3777 if ((chain->refcounted_he_data[0] & HVrhek_typemask) != HVrhek_PV
3778 && (chain->refcounted_he_data[0] & HVrhek_typemask) != HVrhek_PV_UTF8)
3779 return NULL;
3780
dca6062a
NC
3781 if (len)
3782 *len = chain->refcounted_he_val.refcounted_he_u_len;
3783 if (flags) {
3784 *flags = ((chain->refcounted_he_data[0] & HVrhek_typemask)
3785 == HVrhek_PV_UTF8) ? SVf_UTF8 : 0;
3786 }
3787 return chain->refcounted_he_data + 1;
3788}
3789
8375c93e 3790/*
aebc0cbe 3791=for apidoc cop_store_label
8375c93e 3792
72d33970
FC
3793Save a label into a C<cop_hints_hash>.
3794You need to set flags to C<SVf_UTF8>
4a4088c4 3795for a UTF-8 label.
8375c93e
RU
3796
3797=cut
3798*/
3799
a77ac40c 3800void
aebc0cbe 3801Perl_cop_store_label(pTHX_ COP *const cop, const char *label, STRLEN len,
a77ac40c 3802 U32 flags)
012da8e5 3803{
20439bc7 3804 SV *labelsv;
aebc0cbe 3805 PERL_ARGS_ASSERT_COP_STORE_LABEL;
547bb267 3806
a77ac40c 3807 if (flags & ~(SVf_UTF8))
aebc0cbe 3808 Perl_croak(aTHX_ "panic: cop_store_label illegal flag bits 0x%" UVxf,
a77ac40c 3809 (UV)flags);
a3179684 3810 labelsv = newSVpvn_flags(label, len, SVs_TEMP);
20439bc7
Z
3811 if (flags & SVf_UTF8)
3812 SvUTF8_on(labelsv);
a77ac40c 3813 cop->cop_hints_hash
20439bc7 3814 = refcounted_he_new_pvs(cop->cop_hints_hash, ":", labelsv, 0);
012da8e5
NC
3815}
3816
b3ca2e83 3817/*
ecae49c0
NC
3818=for apidoc hv_assert
3819
3820Check that a hash is in an internally consistent state.
3821
3822=cut
3823*/
3824
943795c2
NC
3825#ifdef DEBUGGING
3826
ecae49c0
NC
3827void
3828Perl_hv_assert(pTHX_ HV *hv)
3829{
57ca3b03
AL
3830 dVAR;
3831 HE* entry;
3832 int withflags = 0;
3833 int placeholders = 0;
3834 int real = 0;
3835 int bad = 0;
3836 const I32 riter = HvRITER_get(hv);
3837 HE *eiter = HvEITER_get(hv);
3838
7918f24d
NC
3839 PERL_ARGS_ASSERT_HV_ASSERT;
3840
57ca3b03
AL
3841 (void)hv_iterinit(hv);
3842
3843 while ((entry = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))) {
3844 /* sanity check the values */
3845 if (HeVAL(entry) == &PL_sv_placeholder)
3846 placeholders++;
3847 else
3848 real++;
3849 /* sanity check the keys */
3850 if (HeSVKEY(entry)) {
6f207bd3 3851 NOOP; /* Don't know what to check on SV keys. */
57ca3b03
AL
3852 } else if (HeKUTF8(entry)) {
3853 withflags++;
3854 if (HeKWASUTF8(entry)) {
3855 PerlIO_printf(Perl_debug_log,
d2a455e7 3856 "hash key has both WASUTF8 and UTF8: '%.*s'\n",
57ca3b03
AL
3857 (int) HeKLEN(entry), HeKEY(entry));
3858 bad = 1;
3859 }
3860 } else if (HeKWASUTF8(entry))
3861 withflags++;
3862 }
ad64d0ec 3863 if (!SvTIED_mg((const SV *)hv, PERL_MAGIC_tied)) {
57ca3b03
AL
3864 static const char bad_count[] = "Count %d %s(s), but hash reports %d\n";
3865 const int nhashkeys = HvUSEDKEYS(hv);
3866 const int nhashplaceholders = HvPLACEHOLDERS_get(hv);
3867
3868 if (nhashkeys != real) {
3869 PerlIO_printf(Perl_debug_log, bad_count, real, "keys", nhashkeys );
3870 bad = 1;
3871 }
3872 if (nhashplaceholders != placeholders) {
3873 PerlIO_printf(Perl_debug_log, bad_count, placeholders, "placeholder", nhashplaceholders );
3874 bad = 1;
3875 }
3876 }
3877 if (withflags && ! HvHASKFLAGS(hv)) {
3878 PerlIO_printf(Perl_debug_log,
3879 "Hash has HASKFLAGS off but I count %d key(s) with flags\n",
3880 withflags);
3881 bad = 1;
3882 }
3883 if (bad) {
ad64d0ec 3884 sv_dump(MUTABLE_SV(hv));
57ca3b03
AL
3885 }
3886 HvRITER_set(hv, riter); /* Restore hash iterator state */
3887 HvEITER_set(hv, eiter);
ecae49c0 3888}
af3babe4 3889
943795c2
NC
3890#endif
3891
af3babe4 3892/*
14d04a33 3893 * ex: set ts=8 sts=4 sw=4 et:
37442d52 3894 */