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