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
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.
12 * I sit beside the fire and think
13 * of all that I have seen.
16 * [p.278 of _The Lord of the Rings_, II/iii: "The Ring Goes South"]
20 =head1 Hash Manipulation Functions
22 A HV structure represents a Perl hash. It consists mainly of an array
23 of pointers, each of which points to a linked list of HE structures. The
24 array is indexed by the hash function of the key, so each linked list
25 represents all the hash entries with the same hash value. Each HE contains
26 a pointer to the actual value, plus a pointer to a HEK structure which
27 holds the key and hash value.
35 #define PERL_HASH_INTERNAL_ACCESS
38 #define HV_MAX_LENGTH_BEFORE_SPLIT 14
40 static const char S_strtab_error[]
41 = "Cannot modify shared string table in hv_%s";
47 /* We could generate this at compile time via (another) auxiliary C
49 const size_t arena_size = Perl_malloc_good_size(PERL_ARENA_SIZE);
50 HE* he = (HE*) Perl_get_arena(aTHX_ arena_size, HE_SVSLOT);
51 HE * const heend = &he[arena_size / sizeof(HE) - 1];
53 PL_body_roots[HE_SVSLOT] = he;
55 HeNEXT(he) = (HE*)(he + 1);
63 #define new_HE() (HE*)safemalloc(sizeof(HE))
64 #define del_HE(p) safefree((char*)p)
73 void ** const root = &PL_body_roots[HE_SVSLOT];
83 #define new_HE() new_he()
86 HeNEXT(p) = (HE*)(PL_body_roots[HE_SVSLOT]); \
87 PL_body_roots[HE_SVSLOT] = p; \
95 S_save_hek_flags(const char *str, I32 len, U32 hash, int flags)
97 const int flags_masked = flags & HVhek_MASK;
101 PERL_ARGS_ASSERT_SAVE_HEK_FLAGS;
103 Newx(k, HEK_BASESIZE + len + 2, char);
105 Copy(str, HEK_KEY(hek), len, char);
106 HEK_KEY(hek)[len] = 0;
108 HEK_HASH(hek) = hash;
109 HEK_FLAGS(hek) = (unsigned char)flags_masked | HVhek_UNSHARED;
111 if (flags & HVhek_FREEKEY)
116 /* free the pool of temporary HE/HEK pairs returned by hv_fetch_ent
120 Perl_free_tied_hv_pool(pTHX)
123 HE *he = PL_hv_fetch_ent_mh;
126 Safefree(HeKEY_hek(he));
130 PL_hv_fetch_ent_mh = NULL;
133 #if defined(USE_ITHREADS)
135 Perl_hek_dup(pTHX_ HEK *source, CLONE_PARAMS* param)
139 PERL_ARGS_ASSERT_HEK_DUP;
140 PERL_UNUSED_ARG(param);
145 shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
147 /* We already shared this hash key. */
148 (void)share_hek_hek(shared);
152 = share_hek_flags(HEK_KEY(source), HEK_LEN(source),
153 HEK_HASH(source), HEK_FLAGS(source));
154 ptr_table_store(PL_ptr_table, source, shared);
160 Perl_he_dup(pTHX_ const HE *e, bool shared, CLONE_PARAMS* param)
164 PERL_ARGS_ASSERT_HE_DUP;
168 /* look for it in the table first */
169 ret = (HE*)ptr_table_fetch(PL_ptr_table, e);
173 /* create anew and remember what it is */
175 ptr_table_store(PL_ptr_table, e, ret);
177 HeNEXT(ret) = he_dup(HeNEXT(e),shared, param);
178 if (HeKLEN(e) == HEf_SVKEY) {
180 Newx(k, HEK_BASESIZE + sizeof(const SV *), char);
181 HeKEY_hek(ret) = (HEK*)k;
182 HeKEY_sv(ret) = SvREFCNT_inc(sv_dup(HeKEY_sv(e), param));
185 /* This is hek_dup inlined, which seems to be important for speed
187 HEK * const source = HeKEY_hek(e);
188 HEK *shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
191 /* We already shared this hash key. */
192 (void)share_hek_hek(shared);
196 = share_hek_flags(HEK_KEY(source), HEK_LEN(source),
197 HEK_HASH(source), HEK_FLAGS(source));
198 ptr_table_store(PL_ptr_table, source, shared);
200 HeKEY_hek(ret) = shared;
203 HeKEY_hek(ret) = save_hek_flags(HeKEY(e), HeKLEN(e), HeHASH(e),
205 HeVAL(ret) = SvREFCNT_inc(sv_dup(HeVAL(e), param));
208 #endif /* USE_ITHREADS */
211 S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen,
214 SV * const sv = sv_newmortal();
216 PERL_ARGS_ASSERT_HV_NOTALLOWED;
218 if (!(flags & HVhek_FREEKEY)) {
219 sv_setpvn(sv, key, klen);
222 /* Need to free saved eventually assign to mortal SV */
223 /* XXX is this line an error ???: SV *sv = sv_newmortal(); */
224 sv_usepvn(sv, (char *) key, klen);
226 if (flags & HVhek_UTF8) {
229 Perl_croak(aTHX_ msg, SVfARG(sv));
232 /* (klen == HEf_SVKEY) is special for MAGICAL hv entries, meaning key slot
238 Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is
239 the length of the key. The C<hash> parameter is the precomputed hash
240 value; if it is zero then Perl will compute it. The return value will be
241 NULL if the operation failed or if the value did not need to be actually
242 stored within the hash (as in the case of tied hashes). Otherwise it can
243 be dereferenced to get the original C<SV*>. Note that the caller is
244 responsible for suitably incrementing the reference count of C<val> before
245 the call, and decrementing it if the function returned NULL. Effectively
246 a successful hv_store takes ownership of one reference to C<val>. This is
247 usually what you want; a newly created SV has a reference count of one, so
248 if all your code does is create SVs then store them in a hash, hv_store
249 will own the only reference to the new SV, and your code doesn't need to do
250 anything further to tidy up. hv_store is not implemented as a call to
251 hv_store_ent, and does not create a temporary SV for the key, so if your
252 key data is not already in SV form then use hv_store in preference to
255 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
256 information on how to use this function on tied hashes.
258 =for apidoc hv_store_ent
260 Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
261 parameter is the precomputed hash value; if it is zero then Perl will
262 compute it. The return value is the new hash entry so created. It will be
263 NULL if the operation failed or if the value did not need to be actually
264 stored within the hash (as in the case of tied hashes). Otherwise the
265 contents of the return value can be accessed using the C<He?> macros
266 described here. Note that the caller is responsible for suitably
267 incrementing the reference count of C<val> before the call, and
268 decrementing it if the function returned NULL. Effectively a successful
269 hv_store_ent takes ownership of one reference to C<val>. This is
270 usually what you want; a newly created SV has a reference count of one, so
271 if all your code does is create SVs then store them in a hash, hv_store
272 will own the only reference to the new SV, and your code doesn't need to do
273 anything further to tidy up. Note that hv_store_ent only reads the C<key>;
274 unlike C<val> it does not take ownership of it, so maintaining the correct
275 reference count on C<key> is entirely the caller's responsibility. hv_store
276 is not implemented as a call to hv_store_ent, and does not create a temporary
277 SV for the key, so if your key data is not already in SV form then use
278 hv_store in preference to hv_store_ent.
280 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
281 information on how to use this function on tied hashes.
283 =for apidoc hv_exists
285 Returns a boolean indicating whether the specified hash key exists. The
286 C<klen> is the length of the key.
290 Returns the SV which corresponds to the specified key in the hash. The
291 C<klen> is the length of the key. If C<lval> is set then the fetch will be
292 part of a store. Check that the return value is non-null before
293 dereferencing it to an C<SV*>.
295 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
296 information on how to use this function on tied hashes.
298 =for apidoc hv_exists_ent
300 Returns a boolean indicating whether the specified hash key exists. C<hash>
301 can be a valid precomputed hash value, or 0 to ask for it to be
307 /* returns an HE * structure with the all fields set */
308 /* note that hent_val will be a mortal sv for MAGICAL hashes */
310 =for apidoc hv_fetch_ent
312 Returns the hash entry which corresponds to the specified key in the hash.
313 C<hash> must be a valid precomputed hash number for the given C<key>, or 0
314 if you want the function to compute it. IF C<lval> is set then the fetch
315 will be part of a store. Make sure the return value is non-null before
316 accessing it. The return value when C<tb> is a tied hash is a pointer to a
317 static location, so be sure to make a copy of the structure if you need to
320 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
321 information on how to use this function on tied hashes.
326 /* Common code for hv_delete()/hv_exists()/hv_fetch()/hv_store() */
328 Perl_hv_common_key_len(pTHX_ HV *hv, const char *key, I32 klen_i32,
329 const int action, SV *val, const U32 hash)
334 PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN;
343 return hv_common(hv, NULL, key, klen, flags, action, val, hash);
347 Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
348 int flags, int action, SV *val, register U32 hash)
357 const int return_svp = action & HV_FETCH_JUST_SV;
361 if (SvTYPE(hv) == SVTYPEMASK)
364 assert(SvTYPE(hv) == SVt_PVHV);
366 if (SvSMAGICAL(hv) && SvGMAGICAL(hv) && !(action & HV_DISABLE_UVAR_XKEY)) {
368 if ((mg = mg_find((const SV *)hv, PERL_MAGIC_uvar))) {
369 struct ufuncs * const uf = (struct ufuncs *)mg->mg_ptr;
370 if (uf->uf_set == NULL) {
371 SV* obj = mg->mg_obj;
374 keysv = newSVpvn_flags(key, klen, SVs_TEMP |
375 ((flags & HVhek_UTF8)
379 mg->mg_obj = keysv; /* pass key */
380 uf->uf_index = action; /* pass action */
381 magic_getuvar(MUTABLE_SV(hv), mg);
382 keysv = mg->mg_obj; /* may have changed */
385 /* If the key may have changed, then we need to invalidate
386 any passed-in computed hash value. */
392 if (flags & HVhek_FREEKEY)
394 key = SvPV_const(keysv, klen);
395 is_utf8 = (SvUTF8(keysv) != 0);
396 if (SvIsCOW_shared_hash(keysv)) {
397 flags = HVhek_KEYCANONICAL | (is_utf8 ? HVhek_UTF8 : 0);
402 is_utf8 = ((flags & HVhek_UTF8) ? TRUE : FALSE);
405 if (action & HV_DELETE) {
406 return (void *) hv_delete_common(hv, keysv, key, klen,
407 flags | (is_utf8 ? HVhek_UTF8 : 0),
411 xhv = (XPVHV*)SvANY(hv);
413 if (SvRMAGICAL(hv) && !(action & (HV_FETCH_ISSTORE|HV_FETCH_ISEXISTS))) {
414 if (mg_find((const SV *)hv, PERL_MAGIC_tied)
415 || SvGMAGICAL((const SV *)hv))
417 /* FIXME should be able to skimp on the HE/HEK here when
418 HV_FETCH_JUST_SV is true. */
420 keysv = newSVpvn_utf8(key, klen, is_utf8);
422 keysv = newSVsv(keysv);
425 mg_copy(MUTABLE_SV(hv), sv, (char *)keysv, HEf_SVKEY);
427 /* grab a fake HE/HEK pair from the pool or make a new one */
428 entry = PL_hv_fetch_ent_mh;
430 PL_hv_fetch_ent_mh = HeNEXT(entry);
434 Newx(k, HEK_BASESIZE + sizeof(const SV *), char);
435 HeKEY_hek(entry) = (HEK*)k;
437 HeNEXT(entry) = NULL;
438 HeSVKEY_set(entry, keysv);
440 sv_upgrade(sv, SVt_PVLV);
442 /* so we can free entry when freeing sv */
443 LvTARG(sv) = MUTABLE_SV(entry);
445 /* XXX remove at some point? */
446 if (flags & HVhek_FREEKEY)
450 return entry ? (void *) &HeVAL(entry) : NULL;
452 return (void *) entry;
454 #ifdef ENV_IS_CASELESS
455 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
457 for (i = 0; i < klen; ++i)
458 if (isLOWER(key[i])) {
459 /* Would be nice if we had a routine to do the
460 copy and upercase in a single pass through. */
461 const char * const nkey = strupr(savepvn(key,klen));
462 /* Note that this fetch is for nkey (the uppercased
463 key) whereas the store is for key (the original) */
464 void *result = hv_common(hv, NULL, nkey, klen,
465 HVhek_FREEKEY, /* free nkey */
466 0 /* non-LVAL fetch */
467 | HV_DISABLE_UVAR_XKEY
470 0 /* compute hash */);
471 if (!result && (action & HV_FETCH_LVALUE)) {
472 /* This call will free key if necessary.
473 Do it this way to encourage compiler to tail
475 result = hv_common(hv, keysv, key, klen, flags,
477 | HV_DISABLE_UVAR_XKEY
481 if (flags & HVhek_FREEKEY)
489 else if (SvRMAGICAL(hv) && (action & HV_FETCH_ISEXISTS)) {
490 if (mg_find((const SV *)hv, PERL_MAGIC_tied)
491 || SvGMAGICAL((const SV *)hv)) {
492 /* I don't understand why hv_exists_ent has svret and sv,
493 whereas hv_exists only had one. */
494 SV * const svret = sv_newmortal();
497 if (keysv || is_utf8) {
499 keysv = newSVpvn_utf8(key, klen, TRUE);
501 keysv = newSVsv(keysv);
503 mg_copy(MUTABLE_SV(hv), sv, (char *)sv_2mortal(keysv), HEf_SVKEY);
505 mg_copy(MUTABLE_SV(hv), sv, key, klen);
507 if (flags & HVhek_FREEKEY)
509 magic_existspack(svret, mg_find(sv, PERL_MAGIC_tiedelem));
510 /* This cast somewhat evil, but I'm merely using NULL/
511 not NULL to return the boolean exists.
512 And I know hv is not NULL. */
513 return SvTRUE(svret) ? (void *)hv : NULL;
515 #ifdef ENV_IS_CASELESS
516 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
517 /* XXX This code isn't UTF8 clean. */
518 char * const keysave = (char * const)key;
519 /* Will need to free this, so set FREEKEY flag. */
520 key = savepvn(key,klen);
521 key = (const char*)strupr((char*)key);
526 if (flags & HVhek_FREEKEY) {
529 flags |= HVhek_FREEKEY;
533 else if (action & HV_FETCH_ISSTORE) {
536 hv_magic_check (hv, &needs_copy, &needs_store);
538 const bool save_taint = PL_tainted;
539 if (keysv || is_utf8) {
541 keysv = newSVpvn_utf8(key, klen, TRUE);
544 PL_tainted = SvTAINTED(keysv);
545 keysv = sv_2mortal(newSVsv(keysv));
546 mg_copy(MUTABLE_SV(hv), val, (char*)keysv, HEf_SVKEY);
548 mg_copy(MUTABLE_SV(hv), val, key, klen);
551 TAINT_IF(save_taint);
553 if (flags & HVhek_FREEKEY)
557 #ifdef ENV_IS_CASELESS
558 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
559 /* XXX This code isn't UTF8 clean. */
560 const char *keysave = key;
561 /* Will need to free this, so set FREEKEY flag. */
562 key = savepvn(key,klen);
563 key = (const char*)strupr((char*)key);
568 if (flags & HVhek_FREEKEY) {
571 flags |= HVhek_FREEKEY;
579 if ((action & (HV_FETCH_LVALUE | HV_FETCH_ISSTORE))
580 #ifdef DYNAMIC_ENV_FETCH /* if it's an %ENV lookup, we may get it on the fly */
581 || (SvRMAGICAL((const SV *)hv)
582 && mg_find((const SV *)hv, PERL_MAGIC_env))
587 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
589 HvARRAY(hv) = (HE**)array;
591 #ifdef DYNAMIC_ENV_FETCH
592 else if (action & HV_FETCH_ISEXISTS) {
593 /* for an %ENV exists, if we do an insert it's by a recursive
594 store call, so avoid creating HvARRAY(hv) right now. */
598 /* XXX remove at some point? */
599 if (flags & HVhek_FREEKEY)
606 if (is_utf8 & !(flags & HVhek_KEYCANONICAL)) {
607 char * const keysave = (char *)key;
608 key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
612 flags &= ~HVhek_UTF8;
613 if (key != keysave) {
614 if (flags & HVhek_FREEKEY)
616 flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
617 /* If the caller calculated a hash, it was on the sequence of
618 octets that are the UTF-8 form. We've now changed the sequence
619 of octets stored to that of the equivalent byte representation,
620 so the hash we need is different. */
626 PERL_HASH_INTERNAL(hash, key, klen);
627 /* We don't have a pointer to the hv, so we have to replicate the
628 flag into every HEK, so that hv_iterkeysv can see it. */
629 /* And yes, you do need this even though you are not "storing" because
630 you can flip the flags below if doing an lval lookup. (And that
631 was put in to give the semantics Andreas was expecting.) */
632 flags |= HVhek_REHASH;
634 if (keysv && (SvIsCOW_shared_hash(keysv))) {
635 hash = SvSHARED_HASH(keysv);
637 PERL_HASH(hash, key, klen);
641 masked_flags = (flags & HVhek_MASK);
643 #ifdef DYNAMIC_ENV_FETCH
644 if (!HvARRAY(hv)) entry = NULL;
648 entry = (HvARRAY(hv))[hash & (I32) HvMAX(hv)];
650 for (; entry; entry = HeNEXT(entry)) {
651 if (HeHASH(entry) != hash) /* strings can't be equal */
653 if (HeKLEN(entry) != (I32)klen)
655 if (HeKEY(entry) != key && memNE(HeKEY(entry),key,klen)) /* is this it? */
657 if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
660 if (action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE)) {
661 if (HeKFLAGS(entry) != masked_flags) {
662 /* We match if HVhek_UTF8 bit in our flags and hash key's
663 match. But if entry was set previously with HVhek_WASUTF8
664 and key now doesn't (or vice versa) then we should change
665 the key's flag, as this is assignment. */
666 if (HvSHAREKEYS(hv)) {
667 /* Need to swap the key we have for a key with the flags we
668 need. As keys are shared we can't just write to the
669 flag, so we share the new one, unshare the old one. */
670 HEK * const new_hek = share_hek_flags(key, klen, hash,
672 unshare_hek (HeKEY_hek(entry));
673 HeKEY_hek(entry) = new_hek;
675 else if (hv == PL_strtab) {
676 /* PL_strtab is usually the only hash without HvSHAREKEYS,
677 so putting this test here is cheap */
678 if (flags & HVhek_FREEKEY)
680 Perl_croak(aTHX_ S_strtab_error,
681 action & HV_FETCH_LVALUE ? "fetch" : "store");
684 HeKFLAGS(entry) = masked_flags;
685 if (masked_flags & HVhek_ENABLEHVKFLAGS)
688 if (HeVAL(entry) == &PL_sv_placeholder) {
689 /* yes, can store into placeholder slot */
690 if (action & HV_FETCH_LVALUE) {
692 /* This preserves behaviour with the old hv_fetch
693 implementation which at this point would bail out
694 with a break; (at "if we find a placeholder, we
695 pretend we haven't found anything")
697 That break mean that if a placeholder were found, it
698 caused a call into hv_store, which in turn would
699 check magic, and if there is no magic end up pretty
700 much back at this point (in hv_store's code). */
703 /* LVAL fetch which actaully needs a store. */
705 HvPLACEHOLDERS(hv)--;
708 if (val != &PL_sv_placeholder)
709 HvPLACEHOLDERS(hv)--;
712 } else if (action & HV_FETCH_ISSTORE) {
713 SvREFCNT_dec(HeVAL(entry));
716 } else if (HeVAL(entry) == &PL_sv_placeholder) {
717 /* if we find a placeholder, we pretend we haven't found
721 if (flags & HVhek_FREEKEY)
724 return entry ? (void *) &HeVAL(entry) : NULL;
728 #ifdef DYNAMIC_ENV_FETCH /* %ENV lookup? If so, try to fetch the value now */
729 if (!(action & HV_FETCH_ISSTORE)
730 && SvRMAGICAL((const SV *)hv)
731 && mg_find((const SV *)hv, PERL_MAGIC_env)) {
733 const char * const env = PerlEnv_ENVgetenv_len(key,&len);
735 sv = newSVpvn(env,len);
737 return hv_common(hv, keysv, key, klen, flags,
738 HV_FETCH_ISSTORE|HV_DISABLE_UVAR_XKEY|return_svp,
744 if (!entry && SvREADONLY(hv) && !(action & HV_FETCH_ISEXISTS)) {
745 hv_notallowed(flags, key, klen,
746 "Attempt to access disallowed key '%"SVf"' in"
747 " a restricted hash");
749 if (!(action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE))) {
750 /* Not doing some form of store, so return failure. */
751 if (flags & HVhek_FREEKEY)
755 if (action & HV_FETCH_LVALUE) {
758 /* At this point the old hv_fetch code would call to hv_store,
759 which in turn might do some tied magic. So we need to make that
760 magic check happen. */
761 /* gonna assign to this, so it better be there */
762 /* If a fetch-as-store fails on the fetch, then the action is to
763 recurse once into "hv_store". If we didn't do this, then that
764 recursive call would call the key conversion routine again.
765 However, as we replace the original key with the converted
766 key, this would result in a double conversion, which would show
767 up as a bug if the conversion routine is not idempotent. */
768 return hv_common(hv, keysv, key, klen, flags,
769 HV_FETCH_ISSTORE|HV_DISABLE_UVAR_XKEY|return_svp,
771 /* XXX Surely that could leak if the fetch-was-store fails?
772 Just like the hv_fetch. */
776 /* Welcome to hv_store... */
779 /* Not sure if we can get here. I think the only case of oentry being
780 NULL is for %ENV with dynamic env fetch. But that should disappear
781 with magic in the previous code. */
784 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
786 HvARRAY(hv) = (HE**)array;
789 oentry = &(HvARRAY(hv))[hash & (I32) xhv->xhv_max];
792 /* share_hek_flags will do the free for us. This might be considered
795 HeKEY_hek(entry) = share_hek_flags(key, klen, hash, flags);
796 else if (hv == PL_strtab) {
797 /* PL_strtab is usually the only hash without HvSHAREKEYS, so putting
798 this test here is cheap */
799 if (flags & HVhek_FREEKEY)
801 Perl_croak(aTHX_ S_strtab_error,
802 action & HV_FETCH_LVALUE ? "fetch" : "store");
804 else /* gotta do the real thing */
805 HeKEY_hek(entry) = save_hek_flags(key, klen, hash, flags);
807 HeNEXT(entry) = *oentry;
810 if (val == &PL_sv_placeholder)
811 HvPLACEHOLDERS(hv)++;
812 if (masked_flags & HVhek_ENABLEHVKFLAGS)
816 const HE *counter = HeNEXT(entry);
818 xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
819 if (!counter) { /* initial entry? */
820 xhv->xhv_fill++; /* HvFILL(hv)++ */
821 } else if (xhv->xhv_keys > (IV)xhv->xhv_max) {
823 } else if(!HvREHASH(hv)) {
826 while ((counter = HeNEXT(counter)))
829 if (n_links > HV_MAX_LENGTH_BEFORE_SPLIT) {
830 /* Use only the old HvKEYS(hv) > HvMAX(hv) condition to limit
831 bucket splits on a rehashed hash, as we're not going to
832 split it again, and if someone is lucky (evil) enough to
833 get all the keys in one list they could exhaust our memory
834 as we repeatedly double the number of buckets on every
835 entry. Linear search feels a less worse thing to do. */
842 return entry ? (void *) &HeVAL(entry) : NULL;
844 return (void *) entry;
848 S_hv_magic_check(HV *hv, bool *needs_copy, bool *needs_store)
850 const MAGIC *mg = SvMAGIC(hv);
852 PERL_ARGS_ASSERT_HV_MAGIC_CHECK;
857 if (isUPPER(mg->mg_type)) {
859 if (mg->mg_type == PERL_MAGIC_tied) {
860 *needs_store = FALSE;
861 return; /* We've set all there is to set. */
864 mg = mg->mg_moremagic;
869 =for apidoc hv_scalar
871 Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
877 Perl_hv_scalar(pTHX_ HV *hv)
881 PERL_ARGS_ASSERT_HV_SCALAR;
883 if (SvRMAGICAL(hv)) {
884 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_tied);
886 return magic_scalarpack(hv, mg);
890 if (HvFILL((const HV *)hv))
891 Perl_sv_setpvf(aTHX_ sv, "%ld/%ld",
892 (long)HvFILL(hv), (long)HvMAX(hv) + 1);
900 =for apidoc hv_delete
902 Deletes a key/value pair in the hash. The value SV is removed from the
903 hash and returned to the caller. The C<klen> is the length of the key.
904 The C<flags> value will normally be zero; if set to G_DISCARD then NULL
907 =for apidoc hv_delete_ent
909 Deletes a key/value pair in the hash. The value SV is removed from the
910 hash and returned to the caller. The C<flags> value will normally be zero;
911 if set to G_DISCARD then NULL will be returned. C<hash> can be a valid
912 precomputed hash value, or 0 to ask for it to be computed.
918 S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
919 int k_flags, I32 d_flags, U32 hash)
924 register HE **oentry;
925 HE *const *first_entry;
926 bool is_utf8 = (k_flags & HVhek_UTF8) ? TRUE : FALSE;
929 if (SvRMAGICAL(hv)) {
932 hv_magic_check (hv, &needs_copy, &needs_store);
936 entry = (HE *) hv_common(hv, keysv, key, klen,
937 k_flags & ~HVhek_FREEKEY,
938 HV_FETCH_LVALUE|HV_DISABLE_UVAR_XKEY,
940 sv = entry ? HeVAL(entry) : NULL;
946 if (mg_find(sv, PERL_MAGIC_tiedelem)) {
947 /* No longer an element */
948 sv_unmagic(sv, PERL_MAGIC_tiedelem);
951 return NULL; /* element cannot be deleted */
953 #ifdef ENV_IS_CASELESS
954 else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
955 /* XXX This code isn't UTF8 clean. */
956 keysv = newSVpvn_flags(key, klen, SVs_TEMP);
957 if (k_flags & HVhek_FREEKEY) {
960 key = strupr(SvPVX(keysv));
969 xhv = (XPVHV*)SvANY(hv);
974 const char * const keysave = key;
975 key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
978 k_flags |= HVhek_UTF8;
980 k_flags &= ~HVhek_UTF8;
981 if (key != keysave) {
982 if (k_flags & HVhek_FREEKEY) {
983 /* This shouldn't happen if our caller does what we expect,
984 but strictly the API allows it. */
987 k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
989 HvHASKFLAGS_on(MUTABLE_SV(hv));
993 PERL_HASH_INTERNAL(hash, key, klen);
995 if (keysv && (SvIsCOW_shared_hash(keysv))) {
996 hash = SvSHARED_HASH(keysv);
998 PERL_HASH(hash, key, klen);
1002 masked_flags = (k_flags & HVhek_MASK);
1004 first_entry = oentry = &(HvARRAY(hv))[hash & (I32) HvMAX(hv)];
1006 for (; entry; oentry = &HeNEXT(entry), entry = *oentry) {
1008 if (HeHASH(entry) != hash) /* strings can't be equal */
1010 if (HeKLEN(entry) != (I32)klen)
1012 if (HeKEY(entry) != key && memNE(HeKEY(entry),key,klen)) /* is this it? */
1014 if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
1017 if (hv == PL_strtab) {
1018 if (k_flags & HVhek_FREEKEY)
1020 Perl_croak(aTHX_ S_strtab_error, "delete");
1023 /* if placeholder is here, it's already been deleted.... */
1024 if (HeVAL(entry) == &PL_sv_placeholder) {
1025 if (k_flags & HVhek_FREEKEY)
1029 if (SvREADONLY(hv) && HeVAL(entry) && SvREADONLY(HeVAL(entry))) {
1030 hv_notallowed(k_flags, key, klen,
1031 "Attempt to delete readonly key '%"SVf"' from"
1032 " a restricted hash");
1034 if (k_flags & HVhek_FREEKEY)
1037 if (d_flags & G_DISCARD)
1040 sv = sv_2mortal(HeVAL(entry));
1041 HeVAL(entry) = &PL_sv_placeholder;
1045 * If a restricted hash, rather than really deleting the entry, put
1046 * a placeholder there. This marks the key as being "approved", so
1047 * we can still access via not-really-existing key without raising
1050 if (SvREADONLY(hv)) {
1051 SvREFCNT_dec(HeVAL(entry));
1052 HeVAL(entry) = &PL_sv_placeholder;
1053 /* We'll be saving this slot, so the number of allocated keys
1054 * doesn't go down, but the number placeholders goes up */
1055 HvPLACEHOLDERS(hv)++;
1057 *oentry = HeNEXT(entry);
1059 xhv->xhv_fill--; /* HvFILL(hv)-- */
1061 if (SvOOK(hv) && entry == HvAUX(hv)->xhv_eiter /* HvEITER(hv) */)
1064 hv_free_ent(hv, entry);
1065 xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
1066 if (xhv->xhv_keys == 0)
1067 HvHASKFLAGS_off(hv);
1071 if (SvREADONLY(hv)) {
1072 hv_notallowed(k_flags, key, klen,
1073 "Attempt to delete disallowed key '%"SVf"' from"
1074 " a restricted hash");
1077 if (k_flags & HVhek_FREEKEY)
1083 S_hsplit(pTHX_ HV *hv)
1086 register XPVHV* const xhv = (XPVHV*)SvANY(hv);
1087 const I32 oldsize = (I32) xhv->xhv_max+1; /* HvMAX(hv)+1 (sick) */
1088 register I32 newsize = oldsize * 2;
1090 char *a = (char*) HvARRAY(hv);
1092 register HE **oentry;
1093 int longest_chain = 0;
1096 PERL_ARGS_ASSERT_HSPLIT;
1098 /*PerlIO_printf(PerlIO_stderr(), "hsplit called for %p which had %d\n",
1099 (void*)hv, (int) oldsize);*/
1101 if (HvPLACEHOLDERS_get(hv) && !SvREADONLY(hv)) {
1102 /* Can make this clear any placeholders first for non-restricted hashes,
1103 even though Storable rebuilds restricted hashes by putting in all the
1104 placeholders (first) before turning on the readonly flag, because
1105 Storable always pre-splits the hash. */
1106 hv_clear_placeholders(hv);
1110 #if defined(STRANGE_MALLOC) || defined(MYMALLOC)
1111 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1112 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1118 Move(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1121 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1122 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1127 Copy(HvARRAY(hv), a, oldsize * sizeof(HE*), char);
1129 Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1131 if (oldsize >= 64) {
1132 offer_nice_chunk(HvARRAY(hv),
1133 PERL_HV_ARRAY_ALLOC_BYTES(oldsize)
1134 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0));
1137 Safefree(HvARRAY(hv));
1141 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
1142 xhv->xhv_max = --newsize; /* HvMAX(hv) = --newsize */
1143 HvARRAY(hv) = (HE**) a;
1146 for (i=0; i<oldsize; i++,aep++) {
1147 int left_length = 0;
1148 int right_length = 0;
1152 if (!*aep) /* non-existent */
1155 for (oentry = aep, entry = *aep; entry; entry = *oentry) {
1156 if ((HeHASH(entry) & newsize) != (U32)i) {
1157 *oentry = HeNEXT(entry);
1158 HeNEXT(entry) = *bep;
1160 xhv->xhv_fill++; /* HvFILL(hv)++ */
1166 oentry = &HeNEXT(entry);
1170 if (!*aep) /* everything moved */
1171 xhv->xhv_fill--; /* HvFILL(hv)-- */
1172 /* I think we don't actually need to keep track of the longest length,
1173 merely flag if anything is too long. But for the moment while
1174 developing this code I'll track it. */
1175 if (left_length > longest_chain)
1176 longest_chain = left_length;
1177 if (right_length > longest_chain)
1178 longest_chain = right_length;
1182 /* Pick your policy for "hashing isn't working" here: */
1183 if (longest_chain <= HV_MAX_LENGTH_BEFORE_SPLIT /* split worked? */
1188 if (hv == PL_strtab) {
1189 /* Urg. Someone is doing something nasty to the string table.
1194 /* Awooga. Awooga. Pathological data. */
1195 /*PerlIO_printf(PerlIO_stderr(), "%p %d of %d with %d/%d buckets\n", (void*)hv,
1196 longest_chain, HvTOTALKEYS(hv), HvFILL(hv), 1+HvMAX(hv));*/
1199 Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1200 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1202 Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1205 was_shared = HvSHAREKEYS(hv);
1208 HvSHAREKEYS_off(hv);
1213 for (i=0; i<newsize; i++,aep++) {
1214 register HE *entry = *aep;
1216 /* We're going to trash this HE's next pointer when we chain it
1217 into the new hash below, so store where we go next. */
1218 HE * const next = HeNEXT(entry);
1223 PERL_HASH_INTERNAL(hash, HeKEY(entry), HeKLEN(entry));
1228 = save_hek_flags(HeKEY(entry), HeKLEN(entry),
1229 hash, HeKFLAGS(entry));
1230 unshare_hek (HeKEY_hek(entry));
1231 HeKEY_hek(entry) = new_hek;
1233 /* Not shared, so simply write the new hash in. */
1234 HeHASH(entry) = hash;
1236 /*PerlIO_printf(PerlIO_stderr(), "%d ", HeKFLAGS(entry));*/
1237 HEK_REHASH_on(HeKEY_hek(entry));
1238 /*PerlIO_printf(PerlIO_stderr(), "%d\n", HeKFLAGS(entry));*/
1240 /* Copy oentry to the correct new chain. */
1241 bep = ((HE**)a) + (hash & (I32) xhv->xhv_max);
1243 xhv->xhv_fill++; /* HvFILL(hv)++ */
1244 HeNEXT(entry) = *bep;
1250 Safefree (HvARRAY(hv));
1251 HvARRAY(hv) = (HE **)a;
1255 Perl_hv_ksplit(pTHX_ HV *hv, IV newmax)
1258 register XPVHV* xhv = (XPVHV*)SvANY(hv);
1259 const I32 oldsize = (I32) xhv->xhv_max+1; /* HvMAX(hv)+1 (sick) */
1260 register I32 newsize;
1265 register HE **oentry;
1267 PERL_ARGS_ASSERT_HV_KSPLIT;
1269 newsize = (I32) newmax; /* possible truncation here */
1270 if (newsize != newmax || newmax <= oldsize)
1272 while ((newsize & (1 + ~newsize)) != newsize) {
1273 newsize &= ~(newsize & (1 + ~newsize)); /* get proper power of 2 */
1275 if (newsize < newmax)
1277 if (newsize < newmax)
1278 return; /* overflow detection */
1280 a = (char *) HvARRAY(hv);
1283 #if defined(STRANGE_MALLOC) || defined(MYMALLOC)
1284 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1285 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1291 Copy(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1294 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1295 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1300 Copy(HvARRAY(hv), a, oldsize * sizeof(HE*), char);
1302 Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1304 if (oldsize >= 64) {
1305 offer_nice_chunk(HvARRAY(hv),
1306 PERL_HV_ARRAY_ALLOC_BYTES(oldsize)
1307 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0));
1310 Safefree(HvARRAY(hv));
1313 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
1316 Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
1318 xhv->xhv_max = --newsize; /* HvMAX(hv) = --newsize */
1319 HvARRAY(hv) = (HE **) a;
1320 if (!xhv->xhv_fill /* !HvFILL(hv) */) /* skip rest if no entries */
1324 for (i=0; i<oldsize; i++,aep++) {
1325 if (!*aep) /* non-existent */
1327 for (oentry = aep, entry = *aep; entry; entry = *oentry) {
1328 register I32 j = (HeHASH(entry) & newsize);
1332 *oentry = HeNEXT(entry);
1333 if (!(HeNEXT(entry) = aep[j]))
1334 xhv->xhv_fill++; /* HvFILL(hv)++ */
1339 oentry = &HeNEXT(entry);
1341 if (!*aep) /* everything moved */
1342 xhv->xhv_fill--; /* HvFILL(hv)-- */
1347 Perl_newHVhv(pTHX_ HV *ohv)
1349 HV * const hv = newHV();
1350 STRLEN hv_max, hv_fill;
1352 if (!ohv || (hv_fill = HvFILL(ohv)) == 0)
1354 hv_max = HvMAX(ohv);
1356 if (!SvMAGICAL((const SV *)ohv)) {
1357 /* It's an ordinary hash, so copy it fast. AMS 20010804 */
1359 const bool shared = !!HvSHAREKEYS(ohv);
1360 HE **ents, ** const oents = (HE **)HvARRAY(ohv);
1362 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(hv_max+1), char);
1365 /* In each bucket... */
1366 for (i = 0; i <= hv_max; i++) {
1368 HE *oent = oents[i];
1375 /* Copy the linked list of entries. */
1376 for (; oent; oent = HeNEXT(oent)) {
1377 const U32 hash = HeHASH(oent);
1378 const char * const key = HeKEY(oent);
1379 const STRLEN len = HeKLEN(oent);
1380 const int flags = HeKFLAGS(oent);
1381 HE * const ent = new_HE();
1382 SV *const val = HeVAL(oent);
1384 HeVAL(ent) = SvIMMORTAL(val) ? val : newSVsv(val);
1386 = shared ? share_hek_flags(key, len, hash, flags)
1387 : save_hek_flags(key, len, hash, flags);
1398 HvFILL(hv) = hv_fill;
1399 HvTOTALKEYS(hv) = HvTOTALKEYS(ohv);
1403 /* Iterate over ohv, copying keys and values one at a time. */
1405 const I32 riter = HvRITER_get(ohv);
1406 HE * const eiter = HvEITER_get(ohv);
1408 /* Can we use fewer buckets? (hv_max is always 2^n-1) */
1409 while (hv_max && hv_max + 1 >= hv_fill * 2)
1410 hv_max = hv_max / 2;
1414 while ((entry = hv_iternext_flags(ohv, 0))) {
1415 SV *const val = HeVAL(entry);
1416 (void)hv_store_flags(hv, HeKEY(entry), HeKLEN(entry),
1417 SvIMMORTAL(val) ? val : newSVsv(val),
1418 HeHASH(entry), HeKFLAGS(entry));
1420 HvRITER_set(ohv, riter);
1421 HvEITER_set(ohv, eiter);
1427 /* A rather specialised version of newHVhv for copying %^H, ensuring all the
1428 magic stays on it. */
1430 Perl_hv_copy_hints_hv(pTHX_ HV *const ohv)
1432 HV * const hv = newHV();
1435 if (ohv && (hv_fill = HvFILL(ohv))) {
1436 STRLEN hv_max = HvMAX(ohv);
1438 const I32 riter = HvRITER_get(ohv);
1439 HE * const eiter = HvEITER_get(ohv);
1441 while (hv_max && hv_max + 1 >= hv_fill * 2)
1442 hv_max = hv_max / 2;
1446 while ((entry = hv_iternext_flags(ohv, 0))) {
1447 SV *const sv = newSVsv(HeVAL(entry));
1448 SV *heksv = newSVhek(HeKEY_hek(entry));
1449 sv_magic(sv, NULL, PERL_MAGIC_hintselem,
1450 (char *)heksv, HEf_SVKEY);
1451 SvREFCNT_dec(heksv);
1452 (void)hv_store_flags(hv, HeKEY(entry), HeKLEN(entry),
1453 sv, HeHASH(entry), HeKFLAGS(entry));
1455 HvRITER_set(ohv, riter);
1456 HvEITER_set(ohv, eiter);
1458 hv_magic(hv, NULL, PERL_MAGIC_hints);
1463 Perl_hv_free_ent(pTHX_ HV *hv, register HE *entry)
1468 PERL_ARGS_ASSERT_HV_FREE_ENT;
1473 if (HvNAME(hv) && anonymise_cv(HvNAME_HEK(hv), val) && GvCVu(val))
1474 mro_method_changed_in(hv);
1476 if (HeKLEN(entry) == HEf_SVKEY) {
1477 SvREFCNT_dec(HeKEY_sv(entry));
1478 Safefree(HeKEY_hek(entry));
1480 else if (HvSHAREKEYS(hv))
1481 unshare_hek(HeKEY_hek(entry));
1483 Safefree(HeKEY_hek(entry));
1488 S_anonymise_cv(pTHX_ HEK *stash, SV *val)
1492 PERL_ARGS_ASSERT_ANONYMISE_CV;
1494 if (val && isGV(val) && isGV_with_GP(val) && (cv = GvCV(val))) {
1495 if ((SV *)CvGV(cv) == val) {
1499 SV *gvname = newSVhek(stash);
1500 sv_catpvs(gvname, "::__ANON__");
1501 anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
1502 SvREFCNT_dec(gvname);
1504 anongv = gv_fetchpvs("__ANON__::__ANON__", GV_ADDMULTI,
1516 Perl_hv_delayfree_ent(pTHX_ HV *hv, register HE *entry)
1520 PERL_ARGS_ASSERT_HV_DELAYFREE_ENT;
1524 /* SvREFCNT_inc to counter the SvREFCNT_dec in hv_free_ent */
1525 sv_2mortal(SvREFCNT_inc(HeVAL(entry))); /* free between statements */
1526 if (HeKLEN(entry) == HEf_SVKEY) {
1527 sv_2mortal(SvREFCNT_inc(HeKEY_sv(entry)));
1529 hv_free_ent(hv, entry);
1533 =for apidoc hv_clear
1535 Clears a hash, making it empty.
1541 Perl_hv_clear(pTHX_ HV *hv)
1544 register XPVHV* xhv;
1548 DEBUG_A(Perl_hv_assert(aTHX_ hv));
1550 xhv = (XPVHV*)SvANY(hv);
1552 if (SvREADONLY(hv) && HvARRAY(hv) != NULL) {
1553 /* restricted hash: convert all keys to placeholders */
1555 for (i = 0; i <= xhv->xhv_max; i++) {
1556 HE *entry = (HvARRAY(hv))[i];
1557 for (; entry; entry = HeNEXT(entry)) {
1558 /* not already placeholder */
1559 if (HeVAL(entry) != &PL_sv_placeholder) {
1560 if (HeVAL(entry) && SvREADONLY(HeVAL(entry))) {
1561 SV* const keysv = hv_iterkeysv(entry);
1563 "Attempt to delete readonly key '%"SVf"' from a restricted hash",
1566 SvREFCNT_dec(HeVAL(entry));
1567 HeVAL(entry) = &PL_sv_placeholder;
1568 HvPLACEHOLDERS(hv)++;
1576 HvPLACEHOLDERS_set(hv, 0);
1578 Zero(HvARRAY(hv), xhv->xhv_max+1 /* HvMAX(hv)+1 */, HE*);
1581 mg_clear(MUTABLE_SV(hv));
1583 HvHASKFLAGS_off(hv);
1588 mro_isa_changed_in(hv);
1589 HvEITER_set(hv, NULL);
1594 =for apidoc hv_clear_placeholders
1596 Clears any placeholders from a hash. If a restricted hash has any of its keys
1597 marked as readonly and the key is subsequently deleted, the key is not actually
1598 deleted but is marked by assigning it a value of &PL_sv_placeholder. This tags
1599 it so it will be ignored by future operations such as iterating over the hash,
1600 but will still allow the hash to have a value reassigned to the key at some
1601 future point. This function clears any such placeholder keys from the hash.
1602 See Hash::Util::lock_keys() for an example of its use.
1608 Perl_hv_clear_placeholders(pTHX_ HV *hv)
1611 const U32 items = (U32)HvPLACEHOLDERS_get(hv);
1613 PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS;
1616 clear_placeholders(hv, items);
1620 S_clear_placeholders(pTHX_ HV *hv, U32 items)
1625 PERL_ARGS_ASSERT_CLEAR_PLACEHOLDERS;
1632 /* Loop down the linked list heads */
1634 HE **oentry = &(HvARRAY(hv))[i];
1637 while ((entry = *oentry)) {
1638 if (HeVAL(entry) == &PL_sv_placeholder) {
1639 *oentry = HeNEXT(entry);
1640 if (first && !*oentry)
1641 HvFILL(hv)--; /* This linked list is now empty. */
1642 if (entry == HvEITER_get(hv))
1645 hv_free_ent(hv, entry);
1649 HvTOTALKEYS(hv) -= (IV)HvPLACEHOLDERS_get(hv);
1650 if (HvKEYS(hv) == 0)
1651 HvHASKFLAGS_off(hv);
1652 HvPLACEHOLDERS_set(hv, 0);
1656 oentry = &HeNEXT(entry);
1661 /* You can't get here, hence assertion should always fail. */
1662 assert (items == 0);
1667 S_hfreeentries(pTHX_ HV *hv)
1669 /* This is the array that we're going to restore */
1670 HE **const orig_array = HvARRAY(hv);
1674 PERL_ARGS_ASSERT_HFREEENTRIES;
1679 if (HvNAME(hv) && orig_array != NULL) {
1680 /* symbol table: make all the contained subs ANON */
1682 XPVHV *xhv = (XPVHV*)SvANY(hv);
1684 for (i = 0; i <= xhv->xhv_max; i++) {
1685 HE *entry = (HvARRAY(hv))[i];
1686 for (; entry; entry = HeNEXT(entry)) {
1687 SV *val = HeVAL(entry);
1688 /* we need to put the subs in the __ANON__ symtable, as
1689 * this one is being cleared. */
1690 anonymise_cv(NULL, val);
1696 /* If the hash is actually a symbol table with a name, look after the
1698 struct xpvhv_aux *iter = HvAUX(hv);
1700 name = iter->xhv_name;
1701 iter->xhv_name = NULL;
1706 /* orig_array remains unchanged throughout the loop. If after freeing all
1707 the entries it turns out that one of the little blighters has triggered
1708 an action that has caused HvARRAY to be re-allocated, then we set
1709 array to the new HvARRAY, and try again. */
1712 /* This is the one we're going to try to empty. First time round
1713 it's the original array. (Hopefully there will only be 1 time
1715 HE ** const array = HvARRAY(hv);
1718 /* Because we have taken xhv_name out, the only allocated pointer
1719 in the aux structure that might exist is the backreference array.
1724 struct mro_meta *meta;
1725 struct xpvhv_aux *iter = HvAUX(hv);
1726 /* If there are weak references to this HV, we need to avoid
1727 freeing them up here. In particular we need to keep the AV
1728 visible as what we're deleting might well have weak references
1729 back to this HV, so the for loop below may well trigger
1730 the removal of backreferences from this array. */
1732 if (iter->xhv_backreferences) {
1733 /* So donate them to regular backref magic to keep them safe.
1734 The sv_magic will increase the reference count of the AV,
1735 so we need to drop it first. */
1736 SvREFCNT_dec(iter->xhv_backreferences);
1737 if (AvFILLp(iter->xhv_backreferences) == -1) {
1738 /* Turns out that the array is empty. Just free it. */
1739 SvREFCNT_dec(iter->xhv_backreferences);
1742 sv_magic(MUTABLE_SV(hv),
1743 MUTABLE_SV(iter->xhv_backreferences),
1744 PERL_MAGIC_backref, NULL, 0);
1746 iter->xhv_backreferences = NULL;
1749 entry = iter->xhv_eiter; /* HvEITER(hv) */
1750 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1752 hv_free_ent(hv, entry);
1754 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
1755 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
1757 if((meta = iter->xhv_mro_meta)) {
1758 if (meta->mro_linear_all) {
1759 SvREFCNT_dec(MUTABLE_SV(meta->mro_linear_all));
1760 meta->mro_linear_all = NULL;
1761 /* This is just acting as a shortcut pointer. */
1762 meta->mro_linear_current = NULL;
1763 } else if (meta->mro_linear_current) {
1764 /* Only the current MRO is stored, so this owns the data.
1766 SvREFCNT_dec(meta->mro_linear_current);
1767 meta->mro_linear_current = NULL;
1769 if(meta->mro_nextmethod) SvREFCNT_dec(meta->mro_nextmethod);
1770 SvREFCNT_dec(meta->isa);
1772 iter->xhv_mro_meta = NULL;
1775 /* There are now no allocated pointers in the aux structure. */
1777 SvFLAGS(hv) &= ~SVf_OOK; /* Goodbye, aux structure. */
1778 /* What aux structure? */
1781 /* make everyone else think the array is empty, so that the destructors
1782 * called for freed entries can't recusively mess with us */
1785 ((XPVHV*) SvANY(hv))->xhv_keys = 0;
1789 /* Loop down the linked list heads */
1790 HE *entry = array[i];
1793 register HE * const oentry = entry;
1794 entry = HeNEXT(entry);
1795 hv_free_ent(hv, oentry);
1799 /* As there are no allocated pointers in the aux structure, it's now
1800 safe to free the array we just cleaned up, if it's not the one we're
1801 going to put back. */
1802 if (array != orig_array) {
1807 /* Good. No-one added anything this time round. */
1812 /* Someone attempted to iterate or set the hash name while we had
1813 the array set to 0. We'll catch backferences on the next time
1814 round the while loop. */
1815 assert(HvARRAY(hv));
1817 if (HvAUX(hv)->xhv_name) {
1818 unshare_hek_or_pvn(HvAUX(hv)->xhv_name, 0, 0, 0);
1822 if (--attempts == 0) {
1823 Perl_die(aTHX_ "panic: hfreeentries failed to free hash - something is repeatedly re-creating entries");
1827 HvARRAY(hv) = orig_array;
1829 /* If the hash was actually a symbol table, put the name back. */
1831 /* We have restored the original array. If name is non-NULL, then
1832 the original array had an aux structure at the end. So this is
1834 SvFLAGS(hv) |= SVf_OOK;
1835 HvAUX(hv)->xhv_name = name;
1840 =for apidoc hv_undef
1848 Perl_hv_undef(pTHX_ HV *hv)
1851 register XPVHV* xhv;
1856 DEBUG_A(Perl_hv_assert(aTHX_ hv));
1857 xhv = (XPVHV*)SvANY(hv);
1859 if ((name = HvNAME_get(hv)) && !PL_dirty)
1860 mro_isa_changed_in(hv);
1865 (void)hv_delete(PL_stashcache, name, HvNAMELEN_get(hv), G_DISCARD);
1866 hv_name_set(hv, NULL, 0, 0);
1868 SvFLAGS(hv) &= ~SVf_OOK;
1869 Safefree(HvARRAY(hv));
1870 xhv->xhv_max = 7; /* HvMAX(hv) = 7 (it's a normal hash) */
1872 HvPLACEHOLDERS_set(hv, 0);
1875 mg_clear(MUTABLE_SV(hv));
1878 static struct xpvhv_aux*
1879 S_hv_auxinit(HV *hv) {
1880 struct xpvhv_aux *iter;
1883 PERL_ARGS_ASSERT_HV_AUXINIT;
1886 Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
1887 + sizeof(struct xpvhv_aux), char);
1889 array = (char *) HvARRAY(hv);
1890 Renew(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
1891 + sizeof(struct xpvhv_aux), char);
1893 HvARRAY(hv) = (HE**) array;
1894 /* SvOOK_on(hv) attacks the IV flags. */
1895 SvFLAGS(hv) |= SVf_OOK;
1898 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
1899 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
1901 iter->xhv_backreferences = 0;
1902 iter->xhv_mro_meta = NULL;
1907 =for apidoc hv_iterinit
1909 Prepares a starting point to traverse a hash table. Returns the number of
1910 keys in the hash (i.e. the same as C<HvKEYS(tb)>). The return value is
1911 currently only meaningful for hashes without tie magic.
1913 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1914 hash buckets that happen to be in use. If you still need that esoteric
1915 value, you can get it through the macro C<HvFILL(tb)>.
1922 Perl_hv_iterinit(pTHX_ HV *hv)
1924 PERL_ARGS_ASSERT_HV_ITERINIT;
1926 /* FIXME: Are we not NULL, or do we croak? Place bets now! */
1929 Perl_croak(aTHX_ "Bad hash");
1932 struct xpvhv_aux * const iter = HvAUX(hv);
1933 HE * const entry = iter->xhv_eiter; /* HvEITER(hv) */
1934 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1936 hv_free_ent(hv, entry);
1938 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
1939 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
1944 /* used to be xhv->xhv_fill before 5.004_65 */
1945 return HvTOTALKEYS(hv);
1949 Perl_hv_riter_p(pTHX_ HV *hv) {
1950 struct xpvhv_aux *iter;
1952 PERL_ARGS_ASSERT_HV_RITER_P;
1955 Perl_croak(aTHX_ "Bad hash");
1957 iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
1958 return &(iter->xhv_riter);
1962 Perl_hv_eiter_p(pTHX_ HV *hv) {
1963 struct xpvhv_aux *iter;
1965 PERL_ARGS_ASSERT_HV_EITER_P;
1968 Perl_croak(aTHX_ "Bad hash");
1970 iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
1971 return &(iter->xhv_eiter);
1975 Perl_hv_riter_set(pTHX_ HV *hv, I32 riter) {
1976 struct xpvhv_aux *iter;
1978 PERL_ARGS_ASSERT_HV_RITER_SET;
1981 Perl_croak(aTHX_ "Bad hash");
1989 iter = hv_auxinit(hv);
1991 iter->xhv_riter = riter;
1995 Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter) {
1996 struct xpvhv_aux *iter;
1998 PERL_ARGS_ASSERT_HV_EITER_SET;
2001 Perl_croak(aTHX_ "Bad hash");
2006 /* 0 is the default so don't go malloc()ing a new structure just to
2011 iter = hv_auxinit(hv);
2013 iter->xhv_eiter = eiter;
2017 Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags)
2020 struct xpvhv_aux *iter;
2023 PERL_ARGS_ASSERT_HV_NAME_SET;
2024 PERL_UNUSED_ARG(flags);
2027 Perl_croak(aTHX_ "panic: hv name too long (%"UVuf")", (UV) len);
2031 if (iter->xhv_name) {
2032 unshare_hek_or_pvn(iter->xhv_name, 0, 0, 0);
2038 iter = hv_auxinit(hv);
2040 PERL_HASH(hash, name, len);
2041 iter->xhv_name = name ? share_hek(name, len, hash) : NULL;
2045 Perl_hv_backreferences_p(pTHX_ HV *hv) {
2046 struct xpvhv_aux * const iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
2048 PERL_ARGS_ASSERT_HV_BACKREFERENCES_P;
2049 PERL_UNUSED_CONTEXT;
2051 return &(iter->xhv_backreferences);
2055 Perl_hv_kill_backrefs(pTHX_ HV *hv) {
2058 PERL_ARGS_ASSERT_HV_KILL_BACKREFS;
2063 av = HvAUX(hv)->xhv_backreferences;
2066 HvAUX(hv)->xhv_backreferences = 0;
2067 Perl_sv_kill_backrefs(aTHX_ MUTABLE_SV(hv), av);
2073 hv_iternext is implemented as a macro in hv.h
2075 =for apidoc hv_iternext
2077 Returns entries from a hash iterator. See C<hv_iterinit>.
2079 You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
2080 iterator currently points to, without losing your place or invalidating your
2081 iterator. Note that in this case the current entry is deleted from the hash
2082 with your iterator holding the last reference to it. Your iterator is flagged
2083 to free the entry on the next call to C<hv_iternext>, so you must not discard
2084 your iterator immediately else the entry will leak - call C<hv_iternext> to
2085 trigger the resource deallocation.
2087 =for apidoc hv_iternext_flags
2089 Returns entries from a hash iterator. See C<hv_iterinit> and C<hv_iternext>.
2090 The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
2091 set the placeholders keys (for restricted hashes) will be returned in addition
2092 to normal keys. By default placeholders are automatically skipped over.
2093 Currently a placeholder is implemented with a value that is
2094 C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
2095 restricted hashes may change, and the implementation currently is
2096 insufficiently abstracted for any change to be tidy.
2102 Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags)
2105 register XPVHV* xhv;
2109 struct xpvhv_aux *iter;
2111 PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS;
2114 Perl_croak(aTHX_ "Bad hash");
2116 xhv = (XPVHV*)SvANY(hv);
2119 /* Too many things (well, pp_each at least) merrily assume that you can
2120 call iv_iternext without calling hv_iterinit, so we'll have to deal
2126 oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
2127 if (SvMAGICAL(hv) && SvRMAGICAL(hv)) {
2128 if ( ( mg = mg_find((const SV *)hv, PERL_MAGIC_tied) ) ) {
2129 SV * const key = sv_newmortal();
2131 sv_setsv(key, HeSVKEY_force(entry));
2132 SvREFCNT_dec(HeSVKEY(entry)); /* get rid of previous key */
2138 /* one HE per MAGICAL hash */
2139 iter->xhv_eiter = entry = new_HE(); /* HvEITER(hv) = new_HE() */
2141 Newxz(k, HEK_BASESIZE + sizeof(const SV *), char);
2143 HeKEY_hek(entry) = hek;
2144 HeKLEN(entry) = HEf_SVKEY;
2146 magic_nextpack(MUTABLE_SV(hv),mg,key);
2148 /* force key to stay around until next time */
2149 HeSVKEY_set(entry, SvREFCNT_inc_simple_NN(key));
2150 return entry; /* beware, hent_val is not set */
2152 SvREFCNT_dec(HeVAL(entry));
2153 Safefree(HeKEY_hek(entry));
2155 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
2159 #if defined(DYNAMIC_ENV_FETCH) && !defined(__riscos__) /* set up %ENV for iteration */
2160 if (!entry && SvRMAGICAL((const SV *)hv)
2161 && mg_find((const SV *)hv, PERL_MAGIC_env)) {
2164 /* The prime_env_iter() on VMS just loaded up new hash values
2165 * so the iteration count needs to be reset back to the beginning
2169 oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
2174 /* hv_iterint now ensures this. */
2175 assert (HvARRAY(hv));
2177 /* At start of hash, entry is NULL. */
2180 entry = HeNEXT(entry);
2181 if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2183 * Skip past any placeholders -- don't want to include them in
2186 while (entry && HeVAL(entry) == &PL_sv_placeholder) {
2187 entry = HeNEXT(entry);
2192 /* Skip the entire loop if the hash is empty. */
2193 if ((flags & HV_ITERNEXT_WANTPLACEHOLDERS)
2194 ? HvTOTALKEYS(hv) : HvUSEDKEYS(hv)) {
2196 /* OK. Come to the end of the current list. Grab the next one. */
2198 iter->xhv_riter++; /* HvRITER(hv)++ */
2199 if (iter->xhv_riter > (I32)xhv->xhv_max /* HvRITER(hv) > HvMAX(hv) */) {
2200 /* There is no next one. End of the hash. */
2201 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
2204 entry = (HvARRAY(hv))[iter->xhv_riter];
2206 if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2207 /* If we have an entry, but it's a placeholder, don't count it.
2209 while (entry && HeVAL(entry) == &PL_sv_placeholder)
2210 entry = HeNEXT(entry);
2212 /* Will loop again if this linked list starts NULL
2213 (for HV_ITERNEXT_WANTPLACEHOLDERS)
2214 or if we run through it and find only placeholders. */
2218 if (oldentry && HvLAZYDEL(hv)) { /* was deleted earlier? */
2220 hv_free_ent(hv, oldentry);
2223 /*if (HvREHASH(hv) && entry && !HeKREHASH(entry))
2224 PerlIO_printf(PerlIO_stderr(), "Awooga %p %p\n", (void*)hv, (void*)entry);*/
2226 iter->xhv_eiter = entry; /* HvEITER(hv) = entry */
2231 =for apidoc hv_iterkey
2233 Returns the key from the current position of the hash iterator. See
2240 Perl_hv_iterkey(pTHX_ register HE *entry, I32 *retlen)
2242 PERL_ARGS_ASSERT_HV_ITERKEY;
2244 if (HeKLEN(entry) == HEf_SVKEY) {
2246 char * const p = SvPV(HeKEY_sv(entry), len);
2251 *retlen = HeKLEN(entry);
2252 return HeKEY(entry);
2256 /* unlike hv_iterval(), this always returns a mortal copy of the key */
2258 =for apidoc hv_iterkeysv
2260 Returns the key as an C<SV*> from the current position of the hash
2261 iterator. The return value will always be a mortal copy of the key. Also
2268 Perl_hv_iterkeysv(pTHX_ register HE *entry)
2270 PERL_ARGS_ASSERT_HV_ITERKEYSV;
2272 return sv_2mortal(newSVhek(HeKEY_hek(entry)));
2276 =for apidoc hv_iterval
2278 Returns the value from the current position of the hash iterator. See
2285 Perl_hv_iterval(pTHX_ HV *hv, register HE *entry)
2287 PERL_ARGS_ASSERT_HV_ITERVAL;
2289 if (SvRMAGICAL(hv)) {
2290 if (mg_find((const SV *)hv, PERL_MAGIC_tied)) {
2291 SV* const sv = sv_newmortal();
2292 if (HeKLEN(entry) == HEf_SVKEY)
2293 mg_copy(MUTABLE_SV(hv), sv, (char*)HeKEY_sv(entry), HEf_SVKEY);
2295 mg_copy(MUTABLE_SV(hv), sv, HeKEY(entry), HeKLEN(entry));
2299 return HeVAL(entry);
2303 =for apidoc hv_iternextsv
2305 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
2312 Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen)
2314 HE * const he = hv_iternext_flags(hv, 0);
2316 PERL_ARGS_ASSERT_HV_ITERNEXTSV;
2320 *key = hv_iterkey(he, retlen);
2321 return hv_iterval(hv, he);
2328 =for apidoc hv_magic
2330 Adds magic to a hash. See C<sv_magic>.
2335 /* possibly free a shared string if no one has access to it
2336 * len and hash must both be valid for str.
2339 Perl_unsharepvn(pTHX_ const char *str, I32 len, U32 hash)
2341 unshare_hek_or_pvn (NULL, str, len, hash);
2346 Perl_unshare_hek(pTHX_ HEK *hek)
2349 unshare_hek_or_pvn(hek, NULL, 0, 0);
2352 /* possibly free a shared string if no one has access to it
2353 hek if non-NULL takes priority over the other 3, else str, len and hash
2354 are used. If so, len and hash must both be valid for str.
2357 S_unshare_hek_or_pvn(pTHX_ const HEK *hek, const char *str, I32 len, U32 hash)
2360 register XPVHV* xhv;
2362 register HE **oentry;
2364 bool is_utf8 = FALSE;
2366 const char * const save = str;
2367 struct shared_he *he = NULL;
2370 /* Find the shared he which is just before us in memory. */
2371 he = (struct shared_he *)(((char *)hek)
2372 - STRUCT_OFFSET(struct shared_he,
2375 /* Assert that the caller passed us a genuine (or at least consistent)
2377 assert (he->shared_he_he.hent_hek == hek);
2379 if (he->shared_he_he.he_valu.hent_refcount - 1) {
2380 --he->shared_he_he.he_valu.hent_refcount;
2384 hash = HEK_HASH(hek);
2385 } else if (len < 0) {
2386 STRLEN tmplen = -len;
2388 /* See the note in hv_fetch(). --jhi */
2389 str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2392 k_flags = HVhek_UTF8;
2394 k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
2397 /* what follows was the moral equivalent of:
2398 if ((Svp = hv_fetch(PL_strtab, tmpsv, FALSE, hash))) {
2400 hv_delete(PL_strtab, str, len, G_DISCARD, hash);
2402 xhv = (XPVHV*)SvANY(PL_strtab);
2403 /* assert(xhv_array != 0) */
2404 first = oentry = &(HvARRAY(PL_strtab))[hash & (I32) HvMAX(PL_strtab)];
2406 const HE *const he_he = &(he->shared_he_he);
2407 for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
2412 const int flags_masked = k_flags & HVhek_MASK;
2413 for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
2414 if (HeHASH(entry) != hash) /* strings can't be equal */
2416 if (HeKLEN(entry) != len)
2418 if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
2420 if (HeKFLAGS(entry) != flags_masked)
2427 if (--entry->he_valu.hent_refcount == 0) {
2428 *oentry = HeNEXT(entry);
2430 /* There are now no entries in our slot. */
2431 xhv->xhv_fill--; /* HvFILL(hv)-- */
2434 xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
2439 Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
2440 "Attempt to free non-existent shared string '%s'%s"
2442 hek ? HEK_KEY(hek) : str,
2443 ((k_flags & HVhek_UTF8) ? " (utf8)" : "") pTHX__VALUE);
2444 if (k_flags & HVhek_FREEKEY)
2448 /* get a (constant) string ptr from the global string table
2449 * string will get added if it is not already there.
2450 * len and hash must both be valid for str.
2453 Perl_share_hek(pTHX_ const char *str, I32 len, register U32 hash)
2455 bool is_utf8 = FALSE;
2457 const char * const save = str;
2459 PERL_ARGS_ASSERT_SHARE_HEK;
2462 STRLEN tmplen = -len;
2464 /* See the note in hv_fetch(). --jhi */
2465 str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2467 /* If we were able to downgrade here, then than means that we were passed
2468 in a key which only had chars 0-255, but was utf8 encoded. */
2471 /* If we found we were able to downgrade the string to bytes, then
2472 we should flag that it needs upgrading on keys or each. Also flag
2473 that we need share_hek_flags to free the string. */
2475 flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
2478 return share_hek_flags (str, len, hash, flags);
2482 S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags)
2486 const int flags_masked = flags & HVhek_MASK;
2487 const U32 hindex = hash & (I32) HvMAX(PL_strtab);
2488 register XPVHV * const xhv = (XPVHV*)SvANY(PL_strtab);
2490 PERL_ARGS_ASSERT_SHARE_HEK_FLAGS;
2492 /* what follows is the moral equivalent of:
2494 if (!(Svp = hv_fetch(PL_strtab, str, len, FALSE)))
2495 hv_store(PL_strtab, str, len, NULL, hash);
2497 Can't rehash the shared string table, so not sure if it's worth
2498 counting the number of entries in the linked list
2501 /* assert(xhv_array != 0) */
2502 entry = (HvARRAY(PL_strtab))[hindex];
2503 for (;entry; entry = HeNEXT(entry)) {
2504 if (HeHASH(entry) != hash) /* strings can't be equal */
2506 if (HeKLEN(entry) != len)
2508 if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
2510 if (HeKFLAGS(entry) != flags_masked)
2516 /* What used to be head of the list.
2517 If this is NULL, then we're the first entry for this slot, which
2518 means we need to increate fill. */
2519 struct shared_he *new_entry;
2522 HE **const head = &HvARRAY(PL_strtab)[hindex];
2523 HE *const next = *head;
2525 /* We don't actually store a HE from the arena and a regular HEK.
2526 Instead we allocate one chunk of memory big enough for both,
2527 and put the HEK straight after the HE. This way we can find the
2528 HEK directly from the HE.
2531 Newx(k, STRUCT_OFFSET(struct shared_he,
2532 shared_he_hek.hek_key[0]) + len + 2, char);
2533 new_entry = (struct shared_he *)k;
2534 entry = &(new_entry->shared_he_he);
2535 hek = &(new_entry->shared_he_hek);
2537 Copy(str, HEK_KEY(hek), len, char);
2538 HEK_KEY(hek)[len] = 0;
2540 HEK_HASH(hek) = hash;
2541 HEK_FLAGS(hek) = (unsigned char)flags_masked;
2543 /* Still "point" to the HEK, so that other code need not know what
2545 HeKEY_hek(entry) = hek;
2546 entry->he_valu.hent_refcount = 0;
2547 HeNEXT(entry) = next;
2550 xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
2551 if (!next) { /* initial entry? */
2552 xhv->xhv_fill++; /* HvFILL(hv)++ */
2553 } else if (xhv->xhv_keys > (IV)xhv->xhv_max /* HvKEYS(hv) > HvMAX(hv) */) {
2558 ++entry->he_valu.hent_refcount;
2560 if (flags & HVhek_FREEKEY)
2563 return HeKEY_hek(entry);
2567 Perl_hv_placeholders_p(pTHX_ HV *hv)
2570 MAGIC *mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
2572 PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P;
2575 mg = sv_magicext(MUTABLE_SV(hv), 0, PERL_MAGIC_rhash, 0, 0, 0);
2578 Perl_die(aTHX_ "panic: hv_placeholders_p");
2581 return &(mg->mg_len);
2586 Perl_hv_placeholders_get(pTHX_ const HV *hv)
2589 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
2591 PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET;
2593 return mg ? mg->mg_len : 0;
2597 Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph)
2600 MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
2602 PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET;
2607 if (!sv_magicext(MUTABLE_SV(hv), 0, PERL_MAGIC_rhash, 0, 0, ph))
2608 Perl_die(aTHX_ "panic: hv_placeholders_set");
2610 /* else we don't need to add magic to record 0 placeholders. */
2614 S_refcounted_he_value(pTHX_ const struct refcounted_he *he)
2619 PERL_ARGS_ASSERT_REFCOUNTED_HE_VALUE;
2621 switch(he->refcounted_he_data[0] & HVrhek_typemask) {
2626 value = &PL_sv_placeholder;
2629 value = newSViv(he->refcounted_he_val.refcounted_he_u_iv);
2632 value = newSVuv(he->refcounted_he_val.refcounted_he_u_uv);
2635 case HVrhek_PV_UTF8:
2636 /* Create a string SV that directly points to the bytes in our
2638 value = newSV_type(SVt_PV);
2639 SvPV_set(value, (char *) he->refcounted_he_data + 1);
2640 SvCUR_set(value, he->refcounted_he_val.refcounted_he_u_len);
2641 /* This stops anything trying to free it */
2642 SvLEN_set(value, 0);
2644 SvREADONLY_on(value);
2645 if ((he->refcounted_he_data[0] & HVrhek_typemask) == HVrhek_PV_UTF8)
2649 Perl_croak(aTHX_ "panic: refcounted_he_value bad flags %x",
2650 he->refcounted_he_data[0]);
2656 =for apidoc refcounted_he_chain_2hv
2658 Generates and returns a C<HV *> by walking up the tree starting at the passed
2659 in C<struct refcounted_he *>.
2664 Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *chain)
2668 U32 placeholders = 0;
2669 /* We could chase the chain once to get an idea of the number of keys,
2670 and call ksplit. But for now we'll make a potentially inefficient
2671 hash with only 8 entries in its array. */
2672 const U32 max = HvMAX(hv);
2676 Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(max + 1), char);
2677 HvARRAY(hv) = (HE**)array;
2682 U32 hash = chain->refcounted_he_hash;
2684 U32 hash = HEK_HASH(chain->refcounted_he_hek);
2686 HE **oentry = &((HvARRAY(hv))[hash & max]);
2687 HE *entry = *oentry;
2690 for (; entry; entry = HeNEXT(entry)) {
2691 if (HeHASH(entry) == hash) {
2692 /* We might have a duplicate key here. If so, entry is older
2693 than the key we've already put in the hash, so if they are
2694 the same, skip adding entry. */
2696 const STRLEN klen = HeKLEN(entry);
2697 const char *const key = HeKEY(entry);
2698 if (klen == chain->refcounted_he_keylen
2699 && (!!HeKUTF8(entry)
2700 == !!(chain->refcounted_he_data[0] & HVhek_UTF8))
2701 && memEQ(key, REF_HE_KEY(chain), klen))
2704 if (HeKEY_hek(entry) == chain->refcounted_he_hek)
2706 if (HeKLEN(entry) == HEK_LEN(chain->refcounted_he_hek)
2707 && HeKUTF8(entry) == HEK_UTF8(chain->refcounted_he_hek)
2708 && memEQ(HeKEY(entry), HEK_KEY(chain->refcounted_he_hek),
2719 = share_hek_flags(REF_HE_KEY(chain),
2720 chain->refcounted_he_keylen,
2721 chain->refcounted_he_hash,
2722 (chain->refcounted_he_data[0]
2723 & (HVhek_UTF8|HVhek_WASUTF8)));
2725 HeKEY_hek(entry) = share_hek_hek(chain->refcounted_he_hek);
2727 value = refcounted_he_value(chain);
2728 if (value == &PL_sv_placeholder)
2730 HeVAL(entry) = value;
2732 /* Link it into the chain. */
2733 HeNEXT(entry) = *oentry;
2734 if (!HeNEXT(entry)) {
2735 /* initial entry. */
2743 chain = chain->refcounted_he_next;
2747 clear_placeholders(hv, placeholders);
2748 HvTOTALKEYS(hv) -= placeholders;
2751 /* We could check in the loop to see if we encounter any keys with key
2752 flags, but it's probably not worth it, as this per-hash flag is only
2753 really meant as an optimisation for things like Storable. */
2755 DEBUG_A(Perl_hv_assert(aTHX_ hv));
2761 Perl_refcounted_he_fetch(pTHX_ const struct refcounted_he *chain, SV *keysv,
2762 const char *key, STRLEN klen, int flags, U32 hash)
2765 /* Just to be awkward, if you're using this interface the UTF-8-or-not-ness
2766 of your key has to exactly match that which is stored. */
2767 SV *value = &PL_sv_placeholder;
2770 /* No point in doing any of this if there's nothing to find. */
2774 if (flags & HVhek_FREEKEY)
2776 key = SvPV_const(keysv, klen);
2778 is_utf8 = (SvUTF8(keysv) != 0);
2780 is_utf8 = ((flags & HVhek_UTF8) ? TRUE : FALSE);
2784 if (keysv && (SvIsCOW_shared_hash(keysv))) {
2785 hash = SvSHARED_HASH(keysv);
2787 PERL_HASH(hash, key, klen);
2791 for (; chain; chain = chain->refcounted_he_next) {
2793 if (hash != chain->refcounted_he_hash)
2795 if (klen != chain->refcounted_he_keylen)
2797 if (memNE(REF_HE_KEY(chain),key,klen))
2799 if (!!is_utf8 != !!(chain->refcounted_he_data[0] & HVhek_UTF8))
2802 if (hash != HEK_HASH(chain->refcounted_he_hek))
2804 if (klen != (STRLEN)HEK_LEN(chain->refcounted_he_hek))
2806 if (memNE(HEK_KEY(chain->refcounted_he_hek),key,klen))
2808 if (!!is_utf8 != !!HEK_UTF8(chain->refcounted_he_hek))
2812 value = sv_2mortal(refcounted_he_value(chain));
2817 if (flags & HVhek_FREEKEY)
2824 =for apidoc refcounted_he_new
2826 Creates a new C<struct refcounted_he>. As S<key> is copied, and value is
2827 stored in a compact form, all references remain the property of the caller.
2828 The C<struct refcounted_he> is returned with a reference count of 1.
2833 struct refcounted_he *
2834 Perl_refcounted_he_new(pTHX_ struct refcounted_he *const parent,
2835 SV *const key, SV *const value) {
2838 const char *key_p = SvPV_const(key, key_len);
2839 STRLEN value_len = 0;
2840 const char *value_p = NULL;
2843 bool is_utf8 = SvUTF8(key) ? TRUE : FALSE;
2846 value_type = HVrhek_PV;
2847 } else if (SvIOK(value)) {
2848 value_type = SvUOK((const SV *)value) ? HVrhek_UV : HVrhek_IV;
2849 } else if (value == &PL_sv_placeholder) {
2850 value_type = HVrhek_delete;
2851 } else if (!SvOK(value)) {
2852 value_type = HVrhek_undef;
2854 value_type = HVrhek_PV;
2857 if (value_type == HVrhek_PV) {
2858 /* Do it this way so that the SvUTF8() test is after the SvPV, in case
2859 the value is overloaded, and doesn't yet have the UTF-8flag set. */
2860 value_p = SvPV_const(value, value_len);
2862 value_type = HVrhek_PV_UTF8;
2867 /* Hash keys are always stored normalised to (yes) ISO-8859-1.
2868 As we're going to be building hash keys from this value in future,
2869 normalise it now. */
2870 key_p = (char*)bytes_from_utf8((const U8*)key_p, &key_len, &is_utf8);
2871 flags |= is_utf8 ? HVhek_UTF8 : HVhek_WASUTF8;
2874 return refcounted_he_new_common(parent, key_p, key_len, flags, value_type,
2875 ((value_type == HVrhek_PV
2876 || value_type == HVrhek_PV_UTF8) ?
2877 (void *)value_p : (void *)value),
2881 static struct refcounted_he *
2882 S_refcounted_he_new_common(pTHX_ struct refcounted_he *const parent,
2883 const char *const key_p, const STRLEN key_len,
2884 const char flags, char value_type,
2885 const void *value, const STRLEN value_len) {
2887 struct refcounted_he *he;
2889 const bool is_pv = value_type == HVrhek_PV || value_type == HVrhek_PV_UTF8;
2890 STRLEN key_offset = is_pv ? value_len + 2 : 1;
2892 PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_COMMON;
2895 he = (struct refcounted_he*)
2896 PerlMemShared_malloc(sizeof(struct refcounted_he) - 1
2900 he = (struct refcounted_he*)
2901 PerlMemShared_malloc(sizeof(struct refcounted_he) - 1
2905 he->refcounted_he_next = parent;
2908 Copy((char *)value, he->refcounted_he_data + 1, value_len + 1, char);
2909 he->refcounted_he_val.refcounted_he_u_len = value_len;
2910 } else if (value_type == HVrhek_IV) {
2911 he->refcounted_he_val.refcounted_he_u_iv = SvIVX((const SV *)value);
2912 } else if (value_type == HVrhek_UV) {
2913 he->refcounted_he_val.refcounted_he_u_uv = SvUVX((const SV *)value);
2916 PERL_HASH(hash, key_p, key_len);
2919 he->refcounted_he_hash = hash;
2920 he->refcounted_he_keylen = key_len;
2921 Copy(key_p, he->refcounted_he_data + key_offset, key_len, char);
2923 he->refcounted_he_hek = share_hek_flags(key_p, key_len, hash, flags);
2926 if (flags & HVhek_WASUTF8) {
2927 /* If it was downgraded from UTF-8, then the pointer returned from
2928 bytes_from_utf8 is an allocated pointer that we must free. */
2932 he->refcounted_he_data[0] = flags;
2933 he->refcounted_he_refcnt = 1;
2939 =for apidoc refcounted_he_free
2941 Decrements the reference count of the passed in C<struct refcounted_he *>
2942 by one. If the reference count reaches zero the structure's memory is freed,
2943 and C<refcounted_he_free> iterates onto the parent node.
2949 Perl_refcounted_he_free(pTHX_ struct refcounted_he *he) {
2951 PERL_UNUSED_CONTEXT;
2954 struct refcounted_he *copy;
2958 new_count = --he->refcounted_he_refcnt;
2959 HINTS_REFCNT_UNLOCK;
2965 #ifndef USE_ITHREADS
2966 unshare_hek_or_pvn (he->refcounted_he_hek, 0, 0, 0);
2969 he = he->refcounted_he_next;
2970 PerlMemShared_free(copy);
2975 Perl_fetch_cop_label(pTHX_ struct refcounted_he *const chain, STRLEN *len,
2980 if (chain->refcounted_he_keylen != 1)
2982 if (*REF_HE_KEY(chain) != ':')
2985 if ((STRLEN)HEK_LEN(chain->refcounted_he_hek) != 1)
2987 if (*HEK_KEY(chain->refcounted_he_hek) != ':')
2990 /* Stop anyone trying to really mess us up by adding their own value for
2992 if ((chain->refcounted_he_data[0] & HVrhek_typemask) != HVrhek_PV
2993 && (chain->refcounted_he_data[0] & HVrhek_typemask) != HVrhek_PV_UTF8)
2997 *len = chain->refcounted_he_val.refcounted_he_u_len;
2999 *flags = ((chain->refcounted_he_data[0] & HVrhek_typemask)
3000 == HVrhek_PV_UTF8) ? SVf_UTF8 : 0;
3002 return chain->refcounted_he_data + 1;
3005 /* As newSTATEOP currently gets passed plain char* labels, we will only provide
3006 that interface. Once it works out how to pass in length and UTF-8 ness, this
3007 function will need superseding. */
3008 struct refcounted_he *
3009 Perl_store_cop_label(pTHX_ struct refcounted_he *const chain, const char *label)
3011 PERL_ARGS_ASSERT_STORE_COP_LABEL;
3013 return refcounted_he_new_common(chain, ":", 1, HVrhek_PV, HVrhek_PV,
3014 label, strlen(label));
3018 =for apidoc hv_assert
3020 Check that a hash is in an internally consistent state.
3028 Perl_hv_assert(pTHX_ HV *hv)
3033 int placeholders = 0;
3036 const I32 riter = HvRITER_get(hv);
3037 HE *eiter = HvEITER_get(hv);
3039 PERL_ARGS_ASSERT_HV_ASSERT;
3041 (void)hv_iterinit(hv);
3043 while ((entry = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))) {
3044 /* sanity check the values */
3045 if (HeVAL(entry) == &PL_sv_placeholder)
3049 /* sanity check the keys */
3050 if (HeSVKEY(entry)) {
3051 NOOP; /* Don't know what to check on SV keys. */
3052 } else if (HeKUTF8(entry)) {
3054 if (HeKWASUTF8(entry)) {
3055 PerlIO_printf(Perl_debug_log,
3056 "hash key has both WASUTF8 and UTF8: '%.*s'\n",
3057 (int) HeKLEN(entry), HeKEY(entry));
3060 } else if (HeKWASUTF8(entry))
3063 if (!SvTIED_mg((const SV *)hv, PERL_MAGIC_tied)) {
3064 static const char bad_count[] = "Count %d %s(s), but hash reports %d\n";
3065 const int nhashkeys = HvUSEDKEYS(hv);
3066 const int nhashplaceholders = HvPLACEHOLDERS_get(hv);
3068 if (nhashkeys != real) {
3069 PerlIO_printf(Perl_debug_log, bad_count, real, "keys", nhashkeys );
3072 if (nhashplaceholders != placeholders) {
3073 PerlIO_printf(Perl_debug_log, bad_count, placeholders, "placeholder", nhashplaceholders );
3077 if (withflags && ! HvHASKFLAGS(hv)) {
3078 PerlIO_printf(Perl_debug_log,
3079 "Hash has HASKFLAGS off but I count %d key(s) with flags\n",
3084 sv_dump(MUTABLE_SV(hv));
3086 HvRITER_set(hv, riter); /* Restore hash iterator state */
3087 HvEITER_set(hv, eiter);
3094 * c-indentation-style: bsd
3096 * indent-tabs-mode: t
3099 * ex: set ts=8 sts=4 sw=4 noet: