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