e3dee46de1a2e45217df90ff2223c2fae3c04bd3
[p5sagit/p5-mst-13.2.git] / hv.c
1 /*    hv.c
2  *
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
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  *
9  */
10
11 /*
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"]
17  */
18
19 /* 
20 =head1 Hash Manipulation Functions
21
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.
28
29 =cut
30
31 */
32
33 #include "EXTERN.h"
34 #define PERL_IN_HV_C
35 #define PERL_HASH_INTERNAL_ACCESS
36 #include "perl.h"
37
38 #define HV_MAX_LENGTH_BEFORE_SPLIT 14
39
40 static const char S_strtab_error[]
41     = "Cannot modify shared string table in hv_%s";
42
43 STATIC void
44 S_more_he(pTHX)
45 {
46     dVAR;
47     /* We could generate this at compile time via (another) auxiliary C
48        program?  */
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];
52
53     PL_body_roots[HE_SVSLOT] = he;
54     while (he < heend) {
55         HeNEXT(he) = (HE*)(he + 1);
56         he++;
57     }
58     HeNEXT(he) = 0;
59 }
60
61 #ifdef PURIFY
62
63 #define new_HE() (HE*)safemalloc(sizeof(HE))
64 #define del_HE(p) safefree((char*)p)
65
66 #else
67
68 STATIC HE*
69 S_new_he(pTHX)
70 {
71     dVAR;
72     HE* he;
73     void ** const root = &PL_body_roots[HE_SVSLOT];
74
75     if (!*root)
76         S_more_he(aTHX);
77     he = (HE*) *root;
78     assert(he);
79     *root = HeNEXT(he);
80     return he;
81 }
82
83 #define new_HE() new_he()
84 #define del_HE(p) \
85     STMT_START { \
86         HeNEXT(p) = (HE*)(PL_body_roots[HE_SVSLOT]);    \
87         PL_body_roots[HE_SVSLOT] = p; \
88     } STMT_END
89
90
91
92 #endif
93
94 STATIC HEK *
95 S_save_hek_flags(const char *str, I32 len, U32 hash, int flags)
96 {
97     const int flags_masked = flags & HVhek_MASK;
98     char *k;
99     register HEK *hek;
100
101     PERL_ARGS_ASSERT_SAVE_HEK_FLAGS;
102
103     Newx(k, HEK_BASESIZE + len + 2, char);
104     hek = (HEK*)k;
105     Copy(str, HEK_KEY(hek), len, char);
106     HEK_KEY(hek)[len] = 0;
107     HEK_LEN(hek) = len;
108     HEK_HASH(hek) = hash;
109     HEK_FLAGS(hek) = (unsigned char)flags_masked | HVhek_UNSHARED;
110
111     if (flags & HVhek_FREEKEY)
112         Safefree(str);
113     return hek;
114 }
115
116 /* free the pool of temporary HE/HEK pairs returned by hv_fetch_ent
117  * for tied hashes */
118
119 void
120 Perl_free_tied_hv_pool(pTHX)
121 {
122     dVAR;
123     HE *he = PL_hv_fetch_ent_mh;
124     while (he) {
125         HE * const ohe = he;
126         Safefree(HeKEY_hek(he));
127         he = HeNEXT(he);
128         del_HE(ohe);
129     }
130     PL_hv_fetch_ent_mh = NULL;
131 }
132
133 #if defined(USE_ITHREADS)
134 HEK *
135 Perl_hek_dup(pTHX_ HEK *source, CLONE_PARAMS* param)
136 {
137     HEK *shared;
138
139     PERL_ARGS_ASSERT_HEK_DUP;
140     PERL_UNUSED_ARG(param);
141
142     if (!source)
143         return NULL;
144
145     shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
146     if (shared) {
147         /* We already shared this hash key.  */
148         (void)share_hek_hek(shared);
149     }
150     else {
151         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);
155     }
156     return shared;
157 }
158
159 HE *
160 Perl_he_dup(pTHX_ const HE *e, bool shared, CLONE_PARAMS* param)
161 {
162     HE *ret;
163
164     PERL_ARGS_ASSERT_HE_DUP;
165
166     if (!e)
167         return NULL;
168     /* look for it in the table first */
169     ret = (HE*)ptr_table_fetch(PL_ptr_table, e);
170     if (ret)
171         return ret;
172
173     /* create anew and remember what it is */
174     ret = new_HE();
175     ptr_table_store(PL_ptr_table, e, ret);
176
177     HeNEXT(ret) = he_dup(HeNEXT(e),shared, param);
178     if (HeKLEN(e) == HEf_SVKEY) {
179         char *k;
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));
183     }
184     else if (shared) {
185         /* This is hek_dup inlined, which seems to be important for speed
186            reasons.  */
187         HEK * const source = HeKEY_hek(e);
188         HEK *shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
189
190         if (shared) {
191             /* We already shared this hash key.  */
192             (void)share_hek_hek(shared);
193         }
194         else {
195             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);
199         }
200         HeKEY_hek(ret) = shared;
201     }
202     else
203         HeKEY_hek(ret) = save_hek_flags(HeKEY(e), HeKLEN(e), HeHASH(e),
204                                         HeKFLAGS(e));
205     HeVAL(ret) = SvREFCNT_inc(sv_dup(HeVAL(e), param));
206     return ret;
207 }
208 #endif  /* USE_ITHREADS */
209
210 static void
211 S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen,
212                 const char *msg)
213 {
214     SV * const sv = sv_newmortal();
215
216     PERL_ARGS_ASSERT_HV_NOTALLOWED;
217
218     if (!(flags & HVhek_FREEKEY)) {
219         sv_setpvn(sv, key, klen);
220     }
221     else {
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);
225     }
226     if (flags & HVhek_UTF8) {
227         SvUTF8_on(sv);
228     }
229     Perl_croak(aTHX_ msg, SVfARG(sv));
230 }
231
232 /* (klen == HEf_SVKEY) is special for MAGICAL hv entries, meaning key slot
233  * contains an SV* */
234
235 /*
236 =for apidoc hv_store
237
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
253 hv_store_ent.
254
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.
257
258 =for apidoc hv_store_ent
259
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.
279
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.
282
283 =for apidoc hv_exists
284
285 Returns a boolean indicating whether the specified hash key exists.  The
286 C<klen> is the length of the key.
287
288 =for apidoc hv_fetch
289
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*>.
294
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.
297
298 =for apidoc hv_exists_ent
299
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
302 computed.
303
304 =cut
305 */
306
307 /* returns an HE * structure with the all fields set */
308 /* note that hent_val will be a mortal sv for MAGICAL hashes */
309 /*
310 =for apidoc hv_fetch_ent
311
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
318 store it somewhere.
319
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.
322
323 =cut
324 */
325
326 /* Common code for hv_delete()/hv_exists()/hv_fetch()/hv_store()  */
327 void *
328 Perl_hv_common_key_len(pTHX_ HV *hv, const char *key, I32 klen_i32,
329                        const int action, SV *val, const U32 hash)
330 {
331     STRLEN klen;
332     int flags;
333
334     PERL_ARGS_ASSERT_HV_COMMON_KEY_LEN;
335
336     if (klen_i32 < 0) {
337         klen = -klen_i32;
338         flags = HVhek_UTF8;
339     } else {
340         klen = klen_i32;
341         flags = 0;
342     }
343     return hv_common(hv, NULL, key, klen, flags, action, val, hash);
344 }
345
346 void *
347 Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
348                int flags, int action, SV *val, register U32 hash)
349 {
350     dVAR;
351     XPVHV* xhv;
352     HE *entry;
353     HE **oentry;
354     SV *sv;
355     bool is_utf8;
356     int masked_flags;
357     const int return_svp = action & HV_FETCH_JUST_SV;
358
359     if (!hv)
360         return NULL;
361     if (SvTYPE(hv) == SVTYPEMASK)
362         return NULL;
363
364     assert(SvTYPE(hv) == SVt_PVHV);
365
366     if (SvSMAGICAL(hv) && SvGMAGICAL(hv) && !(action & HV_DISABLE_UVAR_XKEY)) {
367         MAGIC* mg;
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;
372
373                 if (!keysv) {
374                     keysv = newSVpvn_flags(key, klen, SVs_TEMP |
375                                            ((flags & HVhek_UTF8)
376                                             ? SVf_UTF8 : 0));
377                 }
378                 
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 */
383                 mg->mg_obj = obj;
384
385                 /* If the key may have changed, then we need to invalidate
386                    any passed-in computed hash value.  */
387                 hash = 0;
388             }
389         }
390     }
391     if (keysv) {
392         if (flags & HVhek_FREEKEY)
393             Safefree(key);
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);
398         } else {
399             flags = 0;
400         }
401     } else {
402         is_utf8 = ((flags & HVhek_UTF8) ? TRUE : FALSE);
403     }
404
405     if (action & HV_DELETE) {
406         return (void *) hv_delete_common(hv, keysv, key, klen,
407                                          flags | (is_utf8 ? HVhek_UTF8 : 0),
408                                          action, hash);
409     }
410
411     xhv = (XPVHV*)SvANY(hv);
412     if (SvMAGICAL(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))
416             {
417                 /* FIXME should be able to skimp on the HE/HEK here when
418                    HV_FETCH_JUST_SV is true.  */
419                 if (!keysv) {
420                     keysv = newSVpvn_utf8(key, klen, is_utf8);
421                 } else {
422                     keysv = newSVsv(keysv);
423                 }
424                 sv = sv_newmortal();
425                 mg_copy(MUTABLE_SV(hv), sv, (char *)keysv, HEf_SVKEY);
426
427                 /* grab a fake HE/HEK pair from the pool or make a new one */
428                 entry = PL_hv_fetch_ent_mh;
429                 if (entry)
430                     PL_hv_fetch_ent_mh = HeNEXT(entry);
431                 else {
432                     char *k;
433                     entry = new_HE();
434                     Newx(k, HEK_BASESIZE + sizeof(const SV *), char);
435                     HeKEY_hek(entry) = (HEK*)k;
436                 }
437                 HeNEXT(entry) = NULL;
438                 HeSVKEY_set(entry, keysv);
439                 HeVAL(entry) = sv;
440                 sv_upgrade(sv, SVt_PVLV);
441                 LvTYPE(sv) = 'T';
442                  /* so we can free entry when freeing sv */
443                 LvTARG(sv) = MUTABLE_SV(entry);
444
445                 /* XXX remove at some point? */
446                 if (flags & HVhek_FREEKEY)
447                     Safefree(key);
448
449                 if (return_svp) {
450                     return entry ? (void *) &HeVAL(entry) : NULL;
451                 }
452                 return (void *) entry;
453             }
454 #ifdef ENV_IS_CASELESS
455             else if (mg_find((const SV *)hv, PERL_MAGIC_env)) {
456                 U32 i;
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
468                                                  | return_svp,
469                                                  NULL /* no value */,
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
474                                call optimise.  */
475                             result = hv_common(hv, keysv, key, klen, flags,
476                                                HV_FETCH_ISSTORE
477                                                | HV_DISABLE_UVAR_XKEY
478                                                | return_svp,
479                                                newSV(0), hash);
480                         } else {
481                             if (flags & HVhek_FREEKEY)
482                                 Safefree(key);
483                         }
484                         return result;
485                     }
486             }
487 #endif
488         } /* ISFETCH */
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();
495                 sv = sv_newmortal();
496
497                 if (keysv || is_utf8) {
498                     if (!keysv) {
499                         keysv = newSVpvn_utf8(key, klen, TRUE);
500                     } else {
501                         keysv = newSVsv(keysv);
502                     }
503                     mg_copy(MUTABLE_SV(hv), sv, (char *)sv_2mortal(keysv), HEf_SVKEY);
504                 } else {
505                     mg_copy(MUTABLE_SV(hv), sv, key, klen);
506                 }
507                 if (flags & HVhek_FREEKEY)
508                     Safefree(key);
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;
514                 }
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);
522                 is_utf8 = FALSE;
523                 hash = 0;
524                 keysv = 0;
525
526                 if (flags & HVhek_FREEKEY) {
527                     Safefree(keysave);
528                 }
529                 flags |= HVhek_FREEKEY;
530             }
531 #endif
532         } /* ISEXISTS */
533         else if (action & HV_FETCH_ISSTORE) {
534             bool needs_copy;
535             bool needs_store;
536             hv_magic_check (hv, &needs_copy, &needs_store);
537             if (needs_copy) {
538                 const bool save_taint = PL_tainted;
539                 if (keysv || is_utf8) {
540                     if (!keysv) {
541                         keysv = newSVpvn_utf8(key, klen, TRUE);
542                     }
543                     if (PL_tainting)
544                         PL_tainted = SvTAINTED(keysv);
545                     keysv = sv_2mortal(newSVsv(keysv));
546                     mg_copy(MUTABLE_SV(hv), val, (char*)keysv, HEf_SVKEY);
547                 } else {
548                     mg_copy(MUTABLE_SV(hv), val, key, klen);
549                 }
550
551                 TAINT_IF(save_taint);
552                 if (!needs_store) {
553                     if (flags & HVhek_FREEKEY)
554                         Safefree(key);
555                     return NULL;
556                 }
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);
564                     is_utf8 = FALSE;
565                     hash = 0;
566                     keysv = 0;
567
568                     if (flags & HVhek_FREEKEY) {
569                         Safefree(keysave);
570                     }
571                     flags |= HVhek_FREEKEY;
572                 }
573 #endif
574             }
575         } /* ISSTORE */
576     } /* SvMAGICAL */
577
578     if (!HvARRAY(hv)) {
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))
583 #endif
584                                                                   ) {
585             char *array;
586             Newxz(array,
587                  PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
588                  char);
589             HvARRAY(hv) = (HE**)array;
590         }
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.  */
595         }
596 #endif
597         else {
598             /* XXX remove at some point? */
599             if (flags & HVhek_FREEKEY)
600                 Safefree(key);
601
602             return NULL;
603         }
604     }
605
606     if (is_utf8 & !(flags & HVhek_KEYCANONICAL)) {
607         char * const keysave = (char *)key;
608         key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
609         if (is_utf8)
610             flags |= HVhek_UTF8;
611         else
612             flags &= ~HVhek_UTF8;
613         if (key != keysave) {
614             if (flags & HVhek_FREEKEY)
615                 Safefree(keysave);
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.  */
621             hash = 0;
622         }
623     }
624
625     if (HvREHASH(hv)) {
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;
633     } else if (!hash) {
634         if (keysv && (SvIsCOW_shared_hash(keysv))) {
635             hash = SvSHARED_HASH(keysv);
636         } else {
637             PERL_HASH(hash, key, klen);
638         }
639     }
640
641     masked_flags = (flags & HVhek_MASK);
642
643 #ifdef DYNAMIC_ENV_FETCH
644     if (!HvARRAY(hv)) entry = NULL;
645     else
646 #endif
647     {
648         entry = (HvARRAY(hv))[hash & (I32) HvMAX(hv)];
649     }
650     for (; entry; entry = HeNEXT(entry)) {
651         if (HeHASH(entry) != hash)              /* strings can't be equal */
652             continue;
653         if (HeKLEN(entry) != (I32)klen)
654             continue;
655         if (HeKEY(entry) != key && memNE(HeKEY(entry),key,klen))        /* is this it? */
656             continue;
657         if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
658             continue;
659
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,
671                                                    masked_flags);
672                     unshare_hek (HeKEY_hek(entry));
673                     HeKEY_hek(entry) = new_hek;
674                 }
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)
679                         Safefree(key);
680                     Perl_croak(aTHX_ S_strtab_error,
681                                action & HV_FETCH_LVALUE ? "fetch" : "store");
682                 }
683                 else
684                     HeKFLAGS(entry) = masked_flags;
685                 if (masked_flags & HVhek_ENABLEHVKFLAGS)
686                     HvHASKFLAGS_on(hv);
687             }
688             if (HeVAL(entry) == &PL_sv_placeholder) {
689                 /* yes, can store into placeholder slot */
690                 if (action & HV_FETCH_LVALUE) {
691                     if (SvMAGICAL(hv)) {
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")
696
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).  */
701                         break;
702                     }
703                     /* LVAL fetch which actaully needs a store.  */
704                     val = newSV(0);
705                     HvPLACEHOLDERS(hv)--;
706                 } else {
707                     /* store */
708                     if (val != &PL_sv_placeholder)
709                         HvPLACEHOLDERS(hv)--;
710                 }
711                 HeVAL(entry) = val;
712             } else if (action & HV_FETCH_ISSTORE) {
713                 SvREFCNT_dec(HeVAL(entry));
714                 HeVAL(entry) = val;
715             }
716         } else if (HeVAL(entry) == &PL_sv_placeholder) {
717             /* if we find a placeholder, we pretend we haven't found
718                anything */
719             break;
720         }
721         if (flags & HVhek_FREEKEY)
722             Safefree(key);
723         if (return_svp) {
724             return entry ? (void *) &HeVAL(entry) : NULL;
725         }
726         return entry;
727     }
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)) {
732         unsigned long len;
733         const char * const env = PerlEnv_ENVgetenv_len(key,&len);
734         if (env) {
735             sv = newSVpvn(env,len);
736             SvTAINTED_on(sv);
737             return hv_common(hv, keysv, key, klen, flags,
738                              HV_FETCH_ISSTORE|HV_DISABLE_UVAR_XKEY|return_svp,
739                              sv, hash);
740         }
741     }
742 #endif
743
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");
748     }
749     if (!(action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE))) {
750         /* Not doing some form of store, so return failure.  */
751         if (flags & HVhek_FREEKEY)
752             Safefree(key);
753         return NULL;
754     }
755     if (action & HV_FETCH_LVALUE) {
756         val = newSV(0);
757         if (SvMAGICAL(hv)) {
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,
770                              val, hash);
771             /* XXX Surely that could leak if the fetch-was-store fails?
772                Just like the hv_fetch.  */
773         }
774     }
775
776     /* Welcome to hv_store...  */
777
778     if (!HvARRAY(hv)) {
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.  */
782         char *array;
783         Newxz(array,
784              PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
785              char);
786         HvARRAY(hv) = (HE**)array;
787     }
788
789     oentry = &(HvARRAY(hv))[hash & (I32) xhv->xhv_max];
790
791     entry = new_HE();
792     /* share_hek_flags will do the free for us.  This might be considered
793        bad API design.  */
794     if (HvSHAREKEYS(hv))
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)
800             Safefree(key);
801         Perl_croak(aTHX_ S_strtab_error,
802                    action & HV_FETCH_LVALUE ? "fetch" : "store");
803     }
804     else                                       /* gotta do the real thing */
805         HeKEY_hek(entry) = save_hek_flags(key, klen, hash, flags);
806     HeVAL(entry) = val;
807     HeNEXT(entry) = *oentry;
808     *oentry = entry;
809
810     if (val == &PL_sv_placeholder)
811         HvPLACEHOLDERS(hv)++;
812     if (masked_flags & HVhek_ENABLEHVKFLAGS)
813         HvHASKFLAGS_on(hv);
814
815     {
816         const HE *counter = HeNEXT(entry);
817
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) {
822             hsplit(hv);
823         } else if(!HvREHASH(hv)) {
824             U32 n_links = 1;
825
826             while ((counter = HeNEXT(counter)))
827                 n_links++;
828
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.  */
836                 hsplit(hv);
837             }
838         }
839     }
840
841     if (return_svp) {
842         return entry ? (void *) &HeVAL(entry) : NULL;
843     }
844     return (void *) entry;
845 }
846
847 STATIC void
848 S_hv_magic_check(HV *hv, bool *needs_copy, bool *needs_store)
849 {
850     const MAGIC *mg = SvMAGIC(hv);
851
852     PERL_ARGS_ASSERT_HV_MAGIC_CHECK;
853
854     *needs_copy = FALSE;
855     *needs_store = TRUE;
856     while (mg) {
857         if (isUPPER(mg->mg_type)) {
858             *needs_copy = TRUE;
859             if (mg->mg_type == PERL_MAGIC_tied) {
860                 *needs_store = FALSE;
861                 return; /* We've set all there is to set. */
862             }
863         }
864         mg = mg->mg_moremagic;
865     }
866 }
867
868 /*
869 =for apidoc hv_scalar
870
871 Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
872
873 =cut
874 */
875
876 SV *
877 Perl_hv_scalar(pTHX_ HV *hv)
878 {
879     SV *sv;
880
881     PERL_ARGS_ASSERT_HV_SCALAR;
882
883     if (SvRMAGICAL(hv)) {
884         MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_tied);
885         if (mg)
886             return magic_scalarpack(hv, mg);
887     }
888
889     sv = sv_newmortal();
890     if (HvFILL((const HV *)hv)) 
891         Perl_sv_setpvf(aTHX_ sv, "%ld/%ld",
892                 (long)HvFILL(hv), (long)HvMAX(hv) + 1);
893     else
894         sv_setiv(sv, 0);
895     
896     return sv;
897 }
898
899 /*
900 =for apidoc hv_delete
901
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
905 will be returned.
906
907 =for apidoc hv_delete_ent
908
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.
913
914 =cut
915 */
916
917 STATIC SV *
918 S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
919                    int k_flags, I32 d_flags, U32 hash)
920 {
921     dVAR;
922     register XPVHV* xhv;
923     register HE *entry;
924     register HE **oentry;
925     HE *const *first_entry;
926     bool is_utf8 = (k_flags & HVhek_UTF8) ? TRUE : FALSE;
927     int masked_flags;
928
929     if (SvRMAGICAL(hv)) {
930         bool needs_copy;
931         bool needs_store;
932         hv_magic_check (hv, &needs_copy, &needs_store);
933
934         if (needs_copy) {
935             SV *sv;
936             entry = (HE *) hv_common(hv, keysv, key, klen,
937                                      k_flags & ~HVhek_FREEKEY,
938                                      HV_FETCH_LVALUE|HV_DISABLE_UVAR_XKEY,
939                                      NULL, hash);
940             sv = entry ? HeVAL(entry) : NULL;
941             if (sv) {
942                 if (SvMAGICAL(sv)) {
943                     mg_clear(sv);
944                 }
945                 if (!needs_store) {
946                     if (mg_find(sv, PERL_MAGIC_tiedelem)) {
947                         /* No longer an element */
948                         sv_unmagic(sv, PERL_MAGIC_tiedelem);
949                         return sv;
950                     }           
951                     return NULL;                /* element cannot be deleted */
952                 }
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) {
958                         Safefree(key);
959                     }
960                     key = strupr(SvPVX(keysv));
961                     is_utf8 = 0;
962                     k_flags = 0;
963                     hash = 0;
964                 }
965 #endif
966             }
967         }
968     }
969     xhv = (XPVHV*)SvANY(hv);
970     if (!HvARRAY(hv))
971         return NULL;
972
973     if (is_utf8) {
974         const char * const keysave = key;
975         key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
976
977         if (is_utf8)
978             k_flags |= HVhek_UTF8;
979         else
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.  */
985                 Safefree(keysave);
986             }
987             k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
988         }
989         HvHASKFLAGS_on(MUTABLE_SV(hv));
990     }
991
992     if (HvREHASH(hv)) {
993         PERL_HASH_INTERNAL(hash, key, klen);
994     } else if (!hash) {
995         if (keysv && (SvIsCOW_shared_hash(keysv))) {
996             hash = SvSHARED_HASH(keysv);
997         } else {
998             PERL_HASH(hash, key, klen);
999         }
1000     }
1001
1002     masked_flags = (k_flags & HVhek_MASK);
1003
1004     first_entry = oentry = &(HvARRAY(hv))[hash & (I32) HvMAX(hv)];
1005     entry = *oentry;
1006     for (; entry; oentry = &HeNEXT(entry), entry = *oentry) {
1007         SV *sv;
1008         if (HeHASH(entry) != hash)              /* strings can't be equal */
1009             continue;
1010         if (HeKLEN(entry) != (I32)klen)
1011             continue;
1012         if (HeKEY(entry) != key && memNE(HeKEY(entry),key,klen))        /* is this it? */
1013             continue;
1014         if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
1015             continue;
1016
1017         if (hv == PL_strtab) {
1018             if (k_flags & HVhek_FREEKEY)
1019                 Safefree(key);
1020             Perl_croak(aTHX_ S_strtab_error, "delete");
1021         }
1022
1023         /* if placeholder is here, it's already been deleted.... */
1024         if (HeVAL(entry) == &PL_sv_placeholder) {
1025             if (k_flags & HVhek_FREEKEY)
1026                 Safefree(key);
1027             return NULL;
1028         }
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");
1033         }
1034         if (k_flags & HVhek_FREEKEY)
1035             Safefree(key);
1036
1037         if (d_flags & G_DISCARD)
1038             sv = NULL;
1039         else {
1040             sv = sv_2mortal(HeVAL(entry));
1041             HeVAL(entry) = &PL_sv_placeholder;
1042         }
1043
1044         /*
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
1048          * an error.
1049          */
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)++;
1056         } else {
1057             *oentry = HeNEXT(entry);
1058             if(!*first_entry) {
1059                 xhv->xhv_fill--; /* HvFILL(hv)-- */
1060             }
1061             if (SvOOK(hv) && entry == HvAUX(hv)->xhv_eiter /* HvEITER(hv) */)
1062                 HvLAZYDEL_on(hv);
1063             else
1064                 hv_free_ent(hv, entry);
1065             xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
1066             if (xhv->xhv_keys == 0)
1067                 HvHASKFLAGS_off(hv);
1068         }
1069         return sv;
1070     }
1071     if (SvREADONLY(hv)) {
1072         hv_notallowed(k_flags, key, klen,
1073                         "Attempt to delete disallowed key '%"SVf"' from"
1074                         " a restricted hash");
1075     }
1076
1077     if (k_flags & HVhek_FREEKEY)
1078         Safefree(key);
1079     return NULL;
1080 }
1081
1082 STATIC void
1083 S_hsplit(pTHX_ HV *hv)
1084 {
1085     dVAR;
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;
1089     register I32 i;
1090     char *a = (char*) HvARRAY(hv);
1091     register HE **aep;
1092     register HE **oentry;
1093     int longest_chain = 0;
1094     int was_shared;
1095
1096     PERL_ARGS_ASSERT_HSPLIT;
1097
1098     /*PerlIO_printf(PerlIO_stderr(), "hsplit called for %p which had %d\n",
1099       (void*)hv, (int) oldsize);*/
1100
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);
1107     }
1108                
1109     PL_nomemok = TRUE;
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);
1113     if (!a) {
1114       PL_nomemok = FALSE;
1115       return;
1116     }
1117     if (SvOOK(hv)) {
1118         Move(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1119     }
1120 #else
1121     Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1122         + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1123     if (!a) {
1124       PL_nomemok = FALSE;
1125       return;
1126     }
1127     Copy(HvARRAY(hv), a, oldsize * sizeof(HE*), char);
1128     if (SvOOK(hv)) {
1129         Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1130     }
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));
1135     }
1136     else
1137         Safefree(HvARRAY(hv));
1138 #endif
1139
1140     PL_nomemok = FALSE;
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;
1144     aep = (HE**)a;
1145
1146     for (i=0; i<oldsize; i++,aep++) {
1147         int left_length = 0;
1148         int right_length = 0;
1149         register HE *entry;
1150         register HE **bep;
1151
1152         if (!*aep)                              /* non-existent */
1153             continue;
1154         bep = aep+oldsize;
1155         for (oentry = aep, entry = *aep; entry; entry = *oentry) {
1156             if ((HeHASH(entry) & newsize) != (U32)i) {
1157                 *oentry = HeNEXT(entry);
1158                 HeNEXT(entry) = *bep;
1159                 if (!*bep)
1160                     xhv->xhv_fill++; /* HvFILL(hv)++ */
1161                 *bep = entry;
1162                 right_length++;
1163                 continue;
1164             }
1165             else {
1166                 oentry = &HeNEXT(entry);
1167                 left_length++;
1168             }
1169         }
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;
1179     }
1180
1181
1182     /* Pick your policy for "hashing isn't working" here:  */
1183     if (longest_chain <= HV_MAX_LENGTH_BEFORE_SPLIT /* split worked?  */
1184         || HvREHASH(hv)) {
1185         return;
1186     }
1187
1188     if (hv == PL_strtab) {
1189         /* Urg. Someone is doing something nasty to the string table.
1190            Can't win.  */
1191         return;
1192     }
1193
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));*/
1197
1198     ++newsize;
1199     Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1200          + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1201     if (SvOOK(hv)) {
1202         Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1203     }
1204
1205     was_shared = HvSHAREKEYS(hv);
1206
1207     xhv->xhv_fill = 0;
1208     HvSHAREKEYS_off(hv);
1209     HvREHASH_on(hv);
1210
1211     aep = HvARRAY(hv);
1212
1213     for (i=0; i<newsize; i++,aep++) {
1214         register HE *entry = *aep;
1215         while (entry) {
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);
1219             UV hash;
1220             HE **bep;
1221
1222             /* Rehash it */
1223             PERL_HASH_INTERNAL(hash, HeKEY(entry), HeKLEN(entry));
1224
1225             if (was_shared) {
1226                 /* Unshare it.  */
1227                 HEK * const new_hek
1228                     = save_hek_flags(HeKEY(entry), HeKLEN(entry),
1229                                      hash, HeKFLAGS(entry));
1230                 unshare_hek (HeKEY_hek(entry));
1231                 HeKEY_hek(entry) = new_hek;
1232             } else {
1233                 /* Not shared, so simply write the new hash in. */
1234                 HeHASH(entry) = hash;
1235             }
1236             /*PerlIO_printf(PerlIO_stderr(), "%d ", HeKFLAGS(entry));*/
1237             HEK_REHASH_on(HeKEY_hek(entry));
1238             /*PerlIO_printf(PerlIO_stderr(), "%d\n", HeKFLAGS(entry));*/
1239
1240             /* Copy oentry to the correct new chain.  */
1241             bep = ((HE**)a) + (hash & (I32) xhv->xhv_max);
1242             if (!*bep)
1243                     xhv->xhv_fill++; /* HvFILL(hv)++ */
1244             HeNEXT(entry) = *bep;
1245             *bep = entry;
1246
1247             entry = next;
1248         }
1249     }
1250     Safefree (HvARRAY(hv));
1251     HvARRAY(hv) = (HE **)a;
1252 }
1253
1254 void
1255 Perl_hv_ksplit(pTHX_ HV *hv, IV newmax)
1256 {
1257     dVAR;
1258     register XPVHV* xhv = (XPVHV*)SvANY(hv);
1259     const I32 oldsize = (I32) xhv->xhv_max+1; /* HvMAX(hv)+1 (sick) */
1260     register I32 newsize;
1261     register I32 i;
1262     register char *a;
1263     register HE **aep;
1264     register HE *entry;
1265     register HE **oentry;
1266
1267     PERL_ARGS_ASSERT_HV_KSPLIT;
1268
1269     newsize = (I32) newmax;                     /* possible truncation here */
1270     if (newsize != newmax || newmax <= oldsize)
1271         return;
1272     while ((newsize & (1 + ~newsize)) != newsize) {
1273         newsize &= ~(newsize & (1 + ~newsize)); /* get proper power of 2 */
1274     }
1275     if (newsize < newmax)
1276         newsize *= 2;
1277     if (newsize < newmax)
1278         return;                                 /* overflow detection */
1279
1280     a = (char *) HvARRAY(hv);
1281     if (a) {
1282         PL_nomemok = TRUE;
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);
1286         if (!a) {
1287           PL_nomemok = FALSE;
1288           return;
1289         }
1290         if (SvOOK(hv)) {
1291             Copy(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1292         }
1293 #else
1294         Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1295             + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1296         if (!a) {
1297           PL_nomemok = FALSE;
1298           return;
1299         }
1300         Copy(HvARRAY(hv), a, oldsize * sizeof(HE*), char);
1301         if (SvOOK(hv)) {
1302             Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1303         }
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));
1308         }
1309         else
1310             Safefree(HvARRAY(hv));
1311 #endif
1312         PL_nomemok = FALSE;
1313         Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
1314     }
1315     else {
1316         Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
1317     }
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 */
1321         return;
1322
1323     aep = (HE**)a;
1324     for (i=0; i<oldsize; i++,aep++) {
1325         if (!*aep)                              /* non-existent */
1326             continue;
1327         for (oentry = aep, entry = *aep; entry; entry = *oentry) {
1328             register I32 j = (HeHASH(entry) & newsize);
1329
1330             if (j != i) {
1331                 j -= i;
1332                 *oentry = HeNEXT(entry);
1333                 if (!(HeNEXT(entry) = aep[j]))
1334                     xhv->xhv_fill++; /* HvFILL(hv)++ */
1335                 aep[j] = entry;
1336                 continue;
1337             }
1338             else
1339                 oentry = &HeNEXT(entry);
1340         }
1341         if (!*aep)                              /* everything moved */
1342             xhv->xhv_fill--; /* HvFILL(hv)-- */
1343     }
1344 }
1345
1346 HV *
1347 Perl_newHVhv(pTHX_ HV *ohv)
1348 {
1349     HV * const hv = newHV();
1350     STRLEN hv_max, hv_fill;
1351
1352     if (!ohv || (hv_fill = HvFILL(ohv)) == 0)
1353         return hv;
1354     hv_max = HvMAX(ohv);
1355
1356     if (!SvMAGICAL((const SV *)ohv)) {
1357         /* It's an ordinary hash, so copy it fast. AMS 20010804 */
1358         STRLEN i;
1359         const bool shared = !!HvSHAREKEYS(ohv);
1360         HE **ents, ** const oents = (HE **)HvARRAY(ohv);
1361         char *a;
1362         Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(hv_max+1), char);
1363         ents = (HE**)a;
1364
1365         /* In each bucket... */
1366         for (i = 0; i <= hv_max; i++) {
1367             HE *prev = NULL;
1368             HE *oent = oents[i];
1369
1370             if (!oent) {
1371                 ents[i] = NULL;
1372                 continue;
1373             }
1374
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
1383                 HeVAL(ent)     = newSVsv(HeVAL(oent));
1384                 HeKEY_hek(ent)
1385                     = shared ? share_hek_flags(key, len, hash, flags)
1386                              :  save_hek_flags(key, len, hash, flags);
1387                 if (prev)
1388                     HeNEXT(prev) = ent;
1389                 else
1390                     ents[i] = ent;
1391                 prev = ent;
1392                 HeNEXT(ent) = NULL;
1393             }
1394         }
1395
1396         HvMAX(hv)   = hv_max;
1397         HvFILL(hv)  = hv_fill;
1398         HvTOTALKEYS(hv)  = HvTOTALKEYS(ohv);
1399         HvARRAY(hv) = ents;
1400     } /* not magical */
1401     else {
1402         /* Iterate over ohv, copying keys and values one at a time. */
1403         HE *entry;
1404         const I32 riter = HvRITER_get(ohv);
1405         HE * const eiter = HvEITER_get(ohv);
1406
1407         /* Can we use fewer buckets? (hv_max is always 2^n-1) */
1408         while (hv_max && hv_max + 1 >= hv_fill * 2)
1409             hv_max = hv_max / 2;
1410         HvMAX(hv) = hv_max;
1411
1412         hv_iterinit(ohv);
1413         while ((entry = hv_iternext_flags(ohv, 0))) {
1414             (void)hv_store_flags(hv, HeKEY(entry), HeKLEN(entry),
1415                                  newSVsv(HeVAL(entry)), HeHASH(entry),
1416                                  HeKFLAGS(entry));
1417         }
1418         HvRITER_set(ohv, riter);
1419         HvEITER_set(ohv, eiter);
1420     }
1421
1422     return hv;
1423 }
1424
1425 /* A rather specialised version of newHVhv for copying %^H, ensuring all the
1426    magic stays on it.  */
1427 HV *
1428 Perl_hv_copy_hints_hv(pTHX_ HV *const ohv)
1429 {
1430     HV * const hv = newHV();
1431     STRLEN hv_fill;
1432
1433     if (ohv && (hv_fill = HvFILL(ohv))) {
1434         STRLEN hv_max = HvMAX(ohv);
1435         HE *entry;
1436         const I32 riter = HvRITER_get(ohv);
1437         HE * const eiter = HvEITER_get(ohv);
1438
1439         while (hv_max && hv_max + 1 >= hv_fill * 2)
1440             hv_max = hv_max / 2;
1441         HvMAX(hv) = hv_max;
1442
1443         hv_iterinit(ohv);
1444         while ((entry = hv_iternext_flags(ohv, 0))) {
1445             SV *const sv = newSVsv(HeVAL(entry));
1446             sv_magic(sv, NULL, PERL_MAGIC_hintselem,
1447                      (char *)newSVhek (HeKEY_hek(entry)), HEf_SVKEY);
1448             (void)hv_store_flags(hv, HeKEY(entry), HeKLEN(entry),
1449                                  sv, HeHASH(entry), HeKFLAGS(entry));
1450         }
1451         HvRITER_set(ohv, riter);
1452         HvEITER_set(ohv, eiter);
1453     }
1454     hv_magic(hv, NULL, PERL_MAGIC_hints);
1455     return hv;
1456 }
1457
1458 void
1459 Perl_hv_free_ent(pTHX_ HV *hv, register HE *entry)
1460 {
1461     dVAR;
1462     SV *val;
1463
1464     PERL_ARGS_ASSERT_HV_FREE_ENT;
1465
1466     if (!entry)
1467         return;
1468     val = HeVAL(entry);
1469     if (val && isGV(val) && isGV_with_GP(val) && GvCVu(val) && HvNAME_get(hv))
1470         mro_method_changed_in(hv);      /* deletion of method from stash */
1471     SvREFCNT_dec(val);
1472     if (HeKLEN(entry) == HEf_SVKEY) {
1473         SvREFCNT_dec(HeKEY_sv(entry));
1474         Safefree(HeKEY_hek(entry));
1475     }
1476     else if (HvSHAREKEYS(hv))
1477         unshare_hek(HeKEY_hek(entry));
1478     else
1479         Safefree(HeKEY_hek(entry));
1480     del_HE(entry);
1481 }
1482
1483 void
1484 Perl_hv_delayfree_ent(pTHX_ HV *hv, register HE *entry)
1485 {
1486     dVAR;
1487
1488     PERL_ARGS_ASSERT_HV_DELAYFREE_ENT;
1489
1490     if (!entry)
1491         return;
1492     /* SvREFCNT_inc to counter the SvREFCNT_dec in hv_free_ent  */
1493     sv_2mortal(SvREFCNT_inc(HeVAL(entry)));     /* free between statements */
1494     if (HeKLEN(entry) == HEf_SVKEY) {
1495         sv_2mortal(SvREFCNT_inc(HeKEY_sv(entry)));
1496     }
1497     hv_free_ent(hv, entry);
1498 }
1499
1500 /*
1501 =for apidoc hv_clear
1502
1503 Clears a hash, making it empty.
1504
1505 =cut
1506 */
1507
1508 void
1509 Perl_hv_clear(pTHX_ HV *hv)
1510 {
1511     dVAR;
1512     register XPVHV* xhv;
1513     if (!hv)
1514         return;
1515
1516     DEBUG_A(Perl_hv_assert(aTHX_ hv));
1517
1518     xhv = (XPVHV*)SvANY(hv);
1519
1520     if (SvREADONLY(hv) && HvARRAY(hv) != NULL) {
1521         /* restricted hash: convert all keys to placeholders */
1522         STRLEN i;
1523         for (i = 0; i <= xhv->xhv_max; i++) {
1524             HE *entry = (HvARRAY(hv))[i];
1525             for (; entry; entry = HeNEXT(entry)) {
1526                 /* not already placeholder */
1527                 if (HeVAL(entry) != &PL_sv_placeholder) {
1528                     if (HeVAL(entry) && SvREADONLY(HeVAL(entry))) {
1529                         SV* const keysv = hv_iterkeysv(entry);
1530                         Perl_croak(aTHX_
1531                                    "Attempt to delete readonly key '%"SVf"' from a restricted hash",
1532                                    (void*)keysv);
1533                     }
1534                     SvREFCNT_dec(HeVAL(entry));
1535                     HeVAL(entry) = &PL_sv_placeholder;
1536                     HvPLACEHOLDERS(hv)++;
1537                 }
1538             }
1539         }
1540         goto reset;
1541     }
1542
1543     hfreeentries(hv);
1544     HvPLACEHOLDERS_set(hv, 0);
1545     if (HvARRAY(hv))
1546         Zero(HvARRAY(hv), xhv->xhv_max+1 /* HvMAX(hv)+1 */, HE*);
1547
1548     if (SvRMAGICAL(hv))
1549         mg_clear(MUTABLE_SV(hv));
1550
1551     HvHASKFLAGS_off(hv);
1552     HvREHASH_off(hv);
1553     reset:
1554     if (SvOOK(hv)) {
1555         if(HvNAME_get(hv))
1556             mro_isa_changed_in(hv);
1557         HvEITER_set(hv, NULL);
1558     }
1559 }
1560
1561 /*
1562 =for apidoc hv_clear_placeholders
1563
1564 Clears any placeholders from a hash.  If a restricted hash has any of its keys
1565 marked as readonly and the key is subsequently deleted, the key is not actually
1566 deleted but is marked by assigning it a value of &PL_sv_placeholder.  This tags
1567 it so it will be ignored by future operations such as iterating over the hash,
1568 but will still allow the hash to have a value reassigned to the key at some
1569 future point.  This function clears any such placeholder keys from the hash.
1570 See Hash::Util::lock_keys() for an example of its use.
1571
1572 =cut
1573 */
1574
1575 void
1576 Perl_hv_clear_placeholders(pTHX_ HV *hv)
1577 {
1578     dVAR;
1579     const U32 items = (U32)HvPLACEHOLDERS_get(hv);
1580
1581     PERL_ARGS_ASSERT_HV_CLEAR_PLACEHOLDERS;
1582
1583     if (items)
1584         clear_placeholders(hv, items);
1585 }
1586
1587 static void
1588 S_clear_placeholders(pTHX_ HV *hv, U32 items)
1589 {
1590     dVAR;
1591     I32 i;
1592
1593     PERL_ARGS_ASSERT_CLEAR_PLACEHOLDERS;
1594
1595     if (items == 0)
1596         return;
1597
1598     i = HvMAX(hv);
1599     do {
1600         /* Loop down the linked list heads  */
1601         bool first = TRUE;
1602         HE **oentry = &(HvARRAY(hv))[i];
1603         HE *entry;
1604
1605         while ((entry = *oentry)) {
1606             if (HeVAL(entry) == &PL_sv_placeholder) {
1607                 *oentry = HeNEXT(entry);
1608                 if (first && !*oentry)
1609                     HvFILL(hv)--; /* This linked list is now empty.  */
1610                 if (entry == HvEITER_get(hv))
1611                     HvLAZYDEL_on(hv);
1612                 else
1613                     hv_free_ent(hv, entry);
1614
1615                 if (--items == 0) {
1616                     /* Finished.  */
1617                     HvTOTALKEYS(hv) -= (IV)HvPLACEHOLDERS_get(hv);
1618                     if (HvKEYS(hv) == 0)
1619                         HvHASKFLAGS_off(hv);
1620                     HvPLACEHOLDERS_set(hv, 0);
1621                     return;
1622                 }
1623             } else {
1624                 oentry = &HeNEXT(entry);
1625                 first = FALSE;
1626             }
1627         }
1628     } while (--i >= 0);
1629     /* You can't get here, hence assertion should always fail.  */
1630     assert (items == 0);
1631     assert (0);
1632 }
1633
1634 STATIC void
1635 S_hfreeentries(pTHX_ HV *hv)
1636 {
1637     /* This is the array that we're going to restore  */
1638     HE **const orig_array = HvARRAY(hv);
1639     HEK *name;
1640     int attempts = 100;
1641
1642     PERL_ARGS_ASSERT_HFREEENTRIES;
1643
1644     if (!orig_array)
1645         return;
1646
1647     if (SvOOK(hv)) {
1648         /* If the hash is actually a symbol table with a name, look after the
1649            name.  */
1650         struct xpvhv_aux *iter = HvAUX(hv);
1651
1652         name = iter->xhv_name;
1653         iter->xhv_name = NULL;
1654     } else {
1655         name = NULL;
1656     }
1657
1658     /* orig_array remains unchanged throughout the loop. If after freeing all
1659        the entries it turns out that one of the little blighters has triggered
1660        an action that has caused HvARRAY to be re-allocated, then we set
1661        array to the new HvARRAY, and try again.  */
1662
1663     while (1) {
1664         /* This is the one we're going to try to empty.  First time round
1665            it's the original array.  (Hopefully there will only be 1 time
1666            round) */
1667         HE ** const array = HvARRAY(hv);
1668         I32 i = HvMAX(hv);
1669
1670         /* Because we have taken xhv_name out, the only allocated pointer
1671            in the aux structure that might exist is the backreference array.
1672         */
1673
1674         if (SvOOK(hv)) {
1675             HE *entry;
1676             struct mro_meta *meta;
1677             struct xpvhv_aux *iter = HvAUX(hv);
1678             /* If there are weak references to this HV, we need to avoid
1679                freeing them up here.  In particular we need to keep the AV
1680                visible as what we're deleting might well have weak references
1681                back to this HV, so the for loop below may well trigger
1682                the removal of backreferences from this array.  */
1683
1684             if (iter->xhv_backreferences) {
1685                 /* So donate them to regular backref magic to keep them safe.
1686                    The sv_magic will increase the reference count of the AV,
1687                    so we need to drop it first. */
1688                 SvREFCNT_dec(iter->xhv_backreferences);
1689                 if (AvFILLp(iter->xhv_backreferences) == -1) {
1690                     /* Turns out that the array is empty. Just free it.  */
1691                     SvREFCNT_dec(iter->xhv_backreferences);
1692
1693                 } else {
1694                     sv_magic(MUTABLE_SV(hv),
1695                              MUTABLE_SV(iter->xhv_backreferences),
1696                              PERL_MAGIC_backref, NULL, 0);
1697                 }
1698                 iter->xhv_backreferences = NULL;
1699             }
1700
1701             entry = iter->xhv_eiter; /* HvEITER(hv) */
1702             if (entry && HvLAZYDEL(hv)) {       /* was deleted earlier? */
1703                 HvLAZYDEL_off(hv);
1704                 hv_free_ent(hv, entry);
1705             }
1706             iter->xhv_riter = -1;       /* HvRITER(hv) = -1 */
1707             iter->xhv_eiter = NULL;     /* HvEITER(hv) = NULL */
1708
1709             if((meta = iter->xhv_mro_meta)) {
1710                 if (meta->mro_linear_all) {
1711                     SvREFCNT_dec(MUTABLE_SV(meta->mro_linear_all));
1712                     meta->mro_linear_all = NULL;
1713                     /* This is just acting as a shortcut pointer.  */
1714                     meta->mro_linear_current = NULL;
1715                 } else if (meta->mro_linear_current) {
1716                     /* Only the current MRO is stored, so this owns the data.
1717                      */
1718                     SvREFCNT_dec(meta->mro_linear_current);
1719                     meta->mro_linear_current = NULL;
1720                 }
1721                 if(meta->mro_nextmethod) SvREFCNT_dec(meta->mro_nextmethod);
1722                 SvREFCNT_dec(meta->isa);
1723                 Safefree(meta);
1724                 iter->xhv_mro_meta = NULL;
1725             }
1726
1727             /* There are now no allocated pointers in the aux structure.  */
1728
1729             SvFLAGS(hv) &= ~SVf_OOK; /* Goodbye, aux structure.  */
1730             /* What aux structure?  */
1731         }
1732
1733         /* make everyone else think the array is empty, so that the destructors
1734          * called for freed entries can't recusively mess with us */
1735         HvARRAY(hv) = NULL;
1736         HvFILL(hv) = 0;
1737         ((XPVHV*) SvANY(hv))->xhv_keys = 0;
1738
1739
1740         do {
1741             /* Loop down the linked list heads  */
1742             HE *entry = array[i];
1743
1744             while (entry) {
1745                 register HE * const oentry = entry;
1746                 entry = HeNEXT(entry);
1747                 hv_free_ent(hv, oentry);
1748             }
1749         } while (--i >= 0);
1750
1751         /* As there are no allocated pointers in the aux structure, it's now
1752            safe to free the array we just cleaned up, if it's not the one we're
1753            going to put back.  */
1754         if (array != orig_array) {
1755             Safefree(array);
1756         }
1757
1758         if (!HvARRAY(hv)) {
1759             /* Good. No-one added anything this time round.  */
1760             break;
1761         }
1762
1763         if (SvOOK(hv)) {
1764             /* Someone attempted to iterate or set the hash name while we had
1765                the array set to 0.  We'll catch backferences on the next time
1766                round the while loop.  */
1767             assert(HvARRAY(hv));
1768
1769             if (HvAUX(hv)->xhv_name) {
1770                 unshare_hek_or_pvn(HvAUX(hv)->xhv_name, 0, 0, 0);
1771             }
1772         }
1773
1774         if (--attempts == 0) {
1775             Perl_die(aTHX_ "panic: hfreeentries failed to free hash - something is repeatedly re-creating entries");
1776         }
1777     }
1778         
1779     HvARRAY(hv) = orig_array;
1780
1781     /* If the hash was actually a symbol table, put the name back.  */
1782     if (name) {
1783         /* We have restored the original array.  If name is non-NULL, then
1784            the original array had an aux structure at the end. So this is
1785            valid:  */
1786         SvFLAGS(hv) |= SVf_OOK;
1787         HvAUX(hv)->xhv_name = name;
1788     }
1789 }
1790
1791 /*
1792 =for apidoc hv_undef
1793
1794 Undefines the hash.
1795
1796 =cut
1797 */
1798
1799 void
1800 Perl_hv_undef(pTHX_ HV *hv)
1801 {
1802     dVAR;
1803     register XPVHV* xhv;
1804     const char *name;
1805
1806     if (!hv)
1807         return;
1808     DEBUG_A(Perl_hv_assert(aTHX_ hv));
1809     xhv = (XPVHV*)SvANY(hv);
1810
1811     if ((name = HvNAME_get(hv)) && !PL_dirty)
1812         mro_isa_changed_in(hv);
1813
1814     hfreeentries(hv);
1815     if (name) {
1816         if (PL_stashcache)
1817             (void)hv_delete(PL_stashcache, name, HvNAMELEN_get(hv), G_DISCARD);
1818         hv_name_set(hv, NULL, 0, 0);
1819     }
1820     SvFLAGS(hv) &= ~SVf_OOK;
1821     Safefree(HvARRAY(hv));
1822     xhv->xhv_max   = 7; /* HvMAX(hv) = 7 (it's a normal hash) */
1823     HvARRAY(hv) = 0;
1824     HvPLACEHOLDERS_set(hv, 0);
1825
1826     if (SvRMAGICAL(hv))
1827         mg_clear(MUTABLE_SV(hv));
1828 }
1829
1830 static struct xpvhv_aux*
1831 S_hv_auxinit(HV *hv) {
1832     struct xpvhv_aux *iter;
1833     char *array;
1834
1835     PERL_ARGS_ASSERT_HV_AUXINIT;
1836
1837     if (!HvARRAY(hv)) {
1838         Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
1839             + sizeof(struct xpvhv_aux), char);
1840     } else {
1841         array = (char *) HvARRAY(hv);
1842         Renew(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
1843               + sizeof(struct xpvhv_aux), char);
1844     }
1845     HvARRAY(hv) = (HE**) array;
1846     /* SvOOK_on(hv) attacks the IV flags.  */
1847     SvFLAGS(hv) |= SVf_OOK;
1848     iter = HvAUX(hv);
1849
1850     iter->xhv_riter = -1;       /* HvRITER(hv) = -1 */
1851     iter->xhv_eiter = NULL;     /* HvEITER(hv) = NULL */
1852     iter->xhv_name = 0;
1853     iter->xhv_backreferences = 0;
1854     iter->xhv_mro_meta = NULL;
1855     return iter;
1856 }
1857
1858 /*
1859 =for apidoc hv_iterinit
1860
1861 Prepares a starting point to traverse a hash table.  Returns the number of
1862 keys in the hash (i.e. the same as C<HvKEYS(tb)>).  The return value is
1863 currently only meaningful for hashes without tie magic.
1864
1865 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1866 hash buckets that happen to be in use.  If you still need that esoteric
1867 value, you can get it through the macro C<HvFILL(tb)>.
1868
1869
1870 =cut
1871 */
1872
1873 I32
1874 Perl_hv_iterinit(pTHX_ HV *hv)
1875 {
1876     PERL_ARGS_ASSERT_HV_ITERINIT;
1877
1878     /* FIXME: Are we not NULL, or do we croak? Place bets now! */
1879
1880     if (!hv)
1881         Perl_croak(aTHX_ "Bad hash");
1882
1883     if (SvOOK(hv)) {
1884         struct xpvhv_aux * const iter = HvAUX(hv);
1885         HE * const entry = iter->xhv_eiter; /* HvEITER(hv) */
1886         if (entry && HvLAZYDEL(hv)) {   /* was deleted earlier? */
1887             HvLAZYDEL_off(hv);
1888             hv_free_ent(hv, entry);
1889         }
1890         iter->xhv_riter = -1;   /* HvRITER(hv) = -1 */
1891         iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
1892     } else {
1893         hv_auxinit(hv);
1894     }
1895
1896     /* used to be xhv->xhv_fill before 5.004_65 */
1897     return HvTOTALKEYS(hv);
1898 }
1899
1900 I32 *
1901 Perl_hv_riter_p(pTHX_ HV *hv) {
1902     struct xpvhv_aux *iter;
1903
1904     PERL_ARGS_ASSERT_HV_RITER_P;
1905
1906     if (!hv)
1907         Perl_croak(aTHX_ "Bad hash");
1908
1909     iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
1910     return &(iter->xhv_riter);
1911 }
1912
1913 HE **
1914 Perl_hv_eiter_p(pTHX_ HV *hv) {
1915     struct xpvhv_aux *iter;
1916
1917     PERL_ARGS_ASSERT_HV_EITER_P;
1918
1919     if (!hv)
1920         Perl_croak(aTHX_ "Bad hash");
1921
1922     iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
1923     return &(iter->xhv_eiter);
1924 }
1925
1926 void
1927 Perl_hv_riter_set(pTHX_ HV *hv, I32 riter) {
1928     struct xpvhv_aux *iter;
1929
1930     PERL_ARGS_ASSERT_HV_RITER_SET;
1931
1932     if (!hv)
1933         Perl_croak(aTHX_ "Bad hash");
1934
1935     if (SvOOK(hv)) {
1936         iter = HvAUX(hv);
1937     } else {
1938         if (riter == -1)
1939             return;
1940
1941         iter = hv_auxinit(hv);
1942     }
1943     iter->xhv_riter = riter;
1944 }
1945
1946 void
1947 Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter) {
1948     struct xpvhv_aux *iter;
1949
1950     PERL_ARGS_ASSERT_HV_EITER_SET;
1951
1952     if (!hv)
1953         Perl_croak(aTHX_ "Bad hash");
1954
1955     if (SvOOK(hv)) {
1956         iter = HvAUX(hv);
1957     } else {
1958         /* 0 is the default so don't go malloc()ing a new structure just to
1959            hold 0.  */
1960         if (!eiter)
1961             return;
1962
1963         iter = hv_auxinit(hv);
1964     }
1965     iter->xhv_eiter = eiter;
1966 }
1967
1968 void
1969 Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags)
1970 {
1971     dVAR;
1972     struct xpvhv_aux *iter;
1973     U32 hash;
1974
1975     PERL_ARGS_ASSERT_HV_NAME_SET;
1976     PERL_UNUSED_ARG(flags);
1977
1978     if (len > I32_MAX)
1979         Perl_croak(aTHX_ "panic: hv name too long (%"UVuf")", (UV) len);
1980
1981     if (SvOOK(hv)) {
1982         iter = HvAUX(hv);
1983         if (iter->xhv_name) {
1984             unshare_hek_or_pvn(iter->xhv_name, 0, 0, 0);
1985         }
1986     } else {
1987         if (name == 0)
1988             return;
1989
1990         iter = hv_auxinit(hv);
1991     }
1992     PERL_HASH(hash, name, len);
1993     iter->xhv_name = name ? share_hek(name, len, hash) : NULL;
1994 }
1995
1996 AV **
1997 Perl_hv_backreferences_p(pTHX_ HV *hv) {
1998     struct xpvhv_aux * const iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
1999
2000     PERL_ARGS_ASSERT_HV_BACKREFERENCES_P;
2001     PERL_UNUSED_CONTEXT;
2002
2003     return &(iter->xhv_backreferences);
2004 }
2005
2006 void
2007 Perl_hv_kill_backrefs(pTHX_ HV *hv) {
2008     AV *av;
2009
2010     PERL_ARGS_ASSERT_HV_KILL_BACKREFS;
2011
2012     if (!SvOOK(hv))
2013         return;
2014
2015     av = HvAUX(hv)->xhv_backreferences;
2016
2017     if (av) {
2018         HvAUX(hv)->xhv_backreferences = 0;
2019         Perl_sv_kill_backrefs(aTHX_ MUTABLE_SV(hv), av);
2020         SvREFCNT_dec(av);
2021     }
2022 }
2023
2024 /*
2025 hv_iternext is implemented as a macro in hv.h
2026
2027 =for apidoc hv_iternext
2028
2029 Returns entries from a hash iterator.  See C<hv_iterinit>.
2030
2031 You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
2032 iterator currently points to, without losing your place or invalidating your
2033 iterator.  Note that in this case the current entry is deleted from the hash
2034 with your iterator holding the last reference to it.  Your iterator is flagged
2035 to free the entry on the next call to C<hv_iternext>, so you must not discard
2036 your iterator immediately else the entry will leak - call C<hv_iternext> to
2037 trigger the resource deallocation.
2038
2039 =for apidoc hv_iternext_flags
2040
2041 Returns entries from a hash iterator.  See C<hv_iterinit> and C<hv_iternext>.
2042 The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
2043 set the placeholders keys (for restricted hashes) will be returned in addition
2044 to normal keys. By default placeholders are automatically skipped over.
2045 Currently a placeholder is implemented with a value that is
2046 C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
2047 restricted hashes may change, and the implementation currently is
2048 insufficiently abstracted for any change to be tidy.
2049
2050 =cut
2051 */
2052
2053 HE *
2054 Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags)
2055 {
2056     dVAR;
2057     register XPVHV* xhv;
2058     register HE *entry;
2059     HE *oldentry;
2060     MAGIC* mg;
2061     struct xpvhv_aux *iter;
2062
2063     PERL_ARGS_ASSERT_HV_ITERNEXT_FLAGS;
2064
2065     if (!hv)
2066         Perl_croak(aTHX_ "Bad hash");
2067
2068     xhv = (XPVHV*)SvANY(hv);
2069
2070     if (!SvOOK(hv)) {
2071         /* Too many things (well, pp_each at least) merrily assume that you can
2072            call iv_iternext without calling hv_iterinit, so we'll have to deal
2073            with it.  */
2074         hv_iterinit(hv);
2075     }
2076     iter = HvAUX(hv);
2077
2078     oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
2079     if (SvMAGICAL(hv) && SvRMAGICAL(hv)) {
2080         if ( ( mg = mg_find((const SV *)hv, PERL_MAGIC_tied) ) ) {
2081             SV * const key = sv_newmortal();
2082             if (entry) {
2083                 sv_setsv(key, HeSVKEY_force(entry));
2084                 SvREFCNT_dec(HeSVKEY(entry));       /* get rid of previous key */
2085             }
2086             else {
2087                 char *k;
2088                 HEK *hek;
2089
2090                 /* one HE per MAGICAL hash */
2091                 iter->xhv_eiter = entry = new_HE(); /* HvEITER(hv) = new_HE() */
2092                 Zero(entry, 1, HE);
2093                 Newxz(k, HEK_BASESIZE + sizeof(const SV *), char);
2094                 hek = (HEK*)k;
2095                 HeKEY_hek(entry) = hek;
2096                 HeKLEN(entry) = HEf_SVKEY;
2097             }
2098             magic_nextpack(MUTABLE_SV(hv),mg,key);
2099             if (SvOK(key)) {
2100                 /* force key to stay around until next time */
2101                 HeSVKEY_set(entry, SvREFCNT_inc_simple_NN(key));
2102                 return entry;               /* beware, hent_val is not set */
2103             }
2104             if (HeVAL(entry))
2105                 SvREFCNT_dec(HeVAL(entry));
2106             Safefree(HeKEY_hek(entry));
2107             del_HE(entry);
2108             iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
2109             return NULL;
2110         }
2111     }
2112 #if defined(DYNAMIC_ENV_FETCH) && !defined(__riscos__)  /* set up %ENV for iteration */
2113     if (!entry && SvRMAGICAL((const SV *)hv)
2114         && mg_find((const SV *)hv, PERL_MAGIC_env)) {
2115         prime_env_iter();
2116 #ifdef VMS
2117         /* The prime_env_iter() on VMS just loaded up new hash values
2118          * so the iteration count needs to be reset back to the beginning
2119          */
2120         hv_iterinit(hv);
2121         iter = HvAUX(hv);
2122         oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
2123 #endif
2124     }
2125 #endif
2126
2127     /* hv_iterint now ensures this.  */
2128     assert (HvARRAY(hv));
2129
2130     /* At start of hash, entry is NULL.  */
2131     if (entry)
2132     {
2133         entry = HeNEXT(entry);
2134         if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2135             /*
2136              * Skip past any placeholders -- don't want to include them in
2137              * any iteration.
2138              */
2139             while (entry && HeVAL(entry) == &PL_sv_placeholder) {
2140                 entry = HeNEXT(entry);
2141             }
2142         }
2143     }
2144     while (!entry) {
2145         /* OK. Come to the end of the current list.  Grab the next one.  */
2146
2147         iter->xhv_riter++; /* HvRITER(hv)++ */
2148         if (iter->xhv_riter > (I32)xhv->xhv_max /* HvRITER(hv) > HvMAX(hv) */) {
2149             /* There is no next one.  End of the hash.  */
2150             iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
2151             break;
2152         }
2153         entry = (HvARRAY(hv))[iter->xhv_riter];
2154
2155         if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2156             /* If we have an entry, but it's a placeholder, don't count it.
2157                Try the next.  */
2158             while (entry && HeVAL(entry) == &PL_sv_placeholder)
2159                 entry = HeNEXT(entry);
2160         }
2161         /* Will loop again if this linked list starts NULL
2162            (for HV_ITERNEXT_WANTPLACEHOLDERS)
2163            or if we run through it and find only placeholders.  */
2164     }
2165
2166     if (oldentry && HvLAZYDEL(hv)) {            /* was deleted earlier? */
2167         HvLAZYDEL_off(hv);
2168         hv_free_ent(hv, oldentry);
2169     }
2170
2171     /*if (HvREHASH(hv) && entry && !HeKREHASH(entry))
2172       PerlIO_printf(PerlIO_stderr(), "Awooga %p %p\n", (void*)hv, (void*)entry);*/
2173
2174     iter->xhv_eiter = entry; /* HvEITER(hv) = entry */
2175     return entry;
2176 }
2177
2178 /*
2179 =for apidoc hv_iterkey
2180
2181 Returns the key from the current position of the hash iterator.  See
2182 C<hv_iterinit>.
2183
2184 =cut
2185 */
2186
2187 char *
2188 Perl_hv_iterkey(pTHX_ register HE *entry, I32 *retlen)
2189 {
2190     PERL_ARGS_ASSERT_HV_ITERKEY;
2191
2192     if (HeKLEN(entry) == HEf_SVKEY) {
2193         STRLEN len;
2194         char * const p = SvPV(HeKEY_sv(entry), len);
2195         *retlen = len;
2196         return p;
2197     }
2198     else {
2199         *retlen = HeKLEN(entry);
2200         return HeKEY(entry);
2201     }
2202 }
2203
2204 /* unlike hv_iterval(), this always returns a mortal copy of the key */
2205 /*
2206 =for apidoc hv_iterkeysv
2207
2208 Returns the key as an C<SV*> from the current position of the hash
2209 iterator.  The return value will always be a mortal copy of the key.  Also
2210 see C<hv_iterinit>.
2211
2212 =cut
2213 */
2214
2215 SV *
2216 Perl_hv_iterkeysv(pTHX_ register HE *entry)
2217 {
2218     PERL_ARGS_ASSERT_HV_ITERKEYSV;
2219
2220     return sv_2mortal(newSVhek(HeKEY_hek(entry)));
2221 }
2222
2223 /*
2224 =for apidoc hv_iterval
2225
2226 Returns the value from the current position of the hash iterator.  See
2227 C<hv_iterkey>.
2228
2229 =cut
2230 */
2231
2232 SV *
2233 Perl_hv_iterval(pTHX_ HV *hv, register HE *entry)
2234 {
2235     PERL_ARGS_ASSERT_HV_ITERVAL;
2236
2237     if (SvRMAGICAL(hv)) {
2238         if (mg_find((const SV *)hv, PERL_MAGIC_tied)) {
2239             SV* const sv = sv_newmortal();
2240             if (HeKLEN(entry) == HEf_SVKEY)
2241                 mg_copy(MUTABLE_SV(hv), sv, (char*)HeKEY_sv(entry), HEf_SVKEY);
2242             else
2243                 mg_copy(MUTABLE_SV(hv), sv, HeKEY(entry), HeKLEN(entry));
2244             return sv;
2245         }
2246     }
2247     return HeVAL(entry);
2248 }
2249
2250 /*
2251 =for apidoc hv_iternextsv
2252
2253 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
2254 operation.
2255
2256 =cut
2257 */
2258
2259 SV *
2260 Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen)
2261 {
2262     HE * const he = hv_iternext_flags(hv, 0);
2263
2264     PERL_ARGS_ASSERT_HV_ITERNEXTSV;
2265
2266     if (!he)
2267         return NULL;
2268     *key = hv_iterkey(he, retlen);
2269     return hv_iterval(hv, he);
2270 }
2271
2272 /*
2273
2274 Now a macro in hv.h
2275
2276 =for apidoc hv_magic
2277
2278 Adds magic to a hash.  See C<sv_magic>.
2279
2280 =cut
2281 */
2282
2283 /* possibly free a shared string if no one has access to it
2284  * len and hash must both be valid for str.
2285  */
2286 void
2287 Perl_unsharepvn(pTHX_ const char *str, I32 len, U32 hash)
2288 {
2289     unshare_hek_or_pvn (NULL, str, len, hash);
2290 }
2291
2292
2293 void
2294 Perl_unshare_hek(pTHX_ HEK *hek)
2295 {
2296     assert(hek);
2297     unshare_hek_or_pvn(hek, NULL, 0, 0);
2298 }
2299
2300 /* possibly free a shared string if no one has access to it
2301    hek if non-NULL takes priority over the other 3, else str, len and hash
2302    are used.  If so, len and hash must both be valid for str.
2303  */
2304 STATIC void
2305 S_unshare_hek_or_pvn(pTHX_ const HEK *hek, const char *str, I32 len, U32 hash)
2306 {
2307     dVAR;
2308     register XPVHV* xhv;
2309     HE *entry;
2310     register HE **oentry;
2311     HE **first;
2312     bool is_utf8 = FALSE;
2313     int k_flags = 0;
2314     const char * const save = str;
2315     struct shared_he *he = NULL;
2316
2317     if (hek) {
2318         /* Find the shared he which is just before us in memory.  */
2319         he = (struct shared_he *)(((char *)hek)
2320                                   - STRUCT_OFFSET(struct shared_he,
2321                                                   shared_he_hek));
2322
2323         /* Assert that the caller passed us a genuine (or at least consistent)
2324            shared hek  */
2325         assert (he->shared_he_he.hent_hek == hek);
2326
2327         LOCK_STRTAB_MUTEX;
2328         if (he->shared_he_he.he_valu.hent_refcount - 1) {
2329             --he->shared_he_he.he_valu.hent_refcount;
2330             UNLOCK_STRTAB_MUTEX;
2331             return;
2332         }
2333         UNLOCK_STRTAB_MUTEX;
2334
2335         hash = HEK_HASH(hek);
2336     } else if (len < 0) {
2337         STRLEN tmplen = -len;
2338         is_utf8 = TRUE;
2339         /* See the note in hv_fetch(). --jhi */
2340         str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2341         len = tmplen;
2342         if (is_utf8)
2343             k_flags = HVhek_UTF8;
2344         if (str != save)
2345             k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
2346     }
2347
2348     /* what follows was the moral equivalent of:
2349     if ((Svp = hv_fetch(PL_strtab, tmpsv, FALSE, hash))) {
2350         if (--*Svp == NULL)
2351             hv_delete(PL_strtab, str, len, G_DISCARD, hash);
2352     } */
2353     xhv = (XPVHV*)SvANY(PL_strtab);
2354     /* assert(xhv_array != 0) */
2355     LOCK_STRTAB_MUTEX;
2356     first = oentry = &(HvARRAY(PL_strtab))[hash & (I32) HvMAX(PL_strtab)];
2357     if (he) {
2358         const HE *const he_he = &(he->shared_he_he);
2359         for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
2360             if (entry == he_he)
2361                 break;
2362         }
2363     } else {
2364         const int flags_masked = k_flags & HVhek_MASK;
2365         for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
2366             if (HeHASH(entry) != hash)          /* strings can't be equal */
2367                 continue;
2368             if (HeKLEN(entry) != len)
2369                 continue;
2370             if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len))     /* is this it? */
2371                 continue;
2372             if (HeKFLAGS(entry) != flags_masked)
2373                 continue;
2374             break;
2375         }
2376     }
2377
2378     if (entry) {
2379         if (--entry->he_valu.hent_refcount == 0) {
2380             *oentry = HeNEXT(entry);
2381             if (!*first) {
2382                 /* There are now no entries in our slot.  */
2383                 xhv->xhv_fill--; /* HvFILL(hv)-- */
2384             }
2385             Safefree(entry);
2386             xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
2387         }
2388     }
2389
2390     UNLOCK_STRTAB_MUTEX;
2391     if (!entry && ckWARN_d(WARN_INTERNAL))
2392         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
2393                     "Attempt to free non-existent shared string '%s'%s"
2394                     pTHX__FORMAT,
2395                     hek ? HEK_KEY(hek) : str,
2396                     ((k_flags & HVhek_UTF8) ? " (utf8)" : "") pTHX__VALUE);
2397     if (k_flags & HVhek_FREEKEY)
2398         Safefree(str);
2399 }
2400
2401 /* get a (constant) string ptr from the global string table
2402  * string will get added if it is not already there.
2403  * len and hash must both be valid for str.
2404  */
2405 HEK *
2406 Perl_share_hek(pTHX_ const char *str, I32 len, register U32 hash)
2407 {
2408     bool is_utf8 = FALSE;
2409     int flags = 0;
2410     const char * const save = str;
2411
2412     PERL_ARGS_ASSERT_SHARE_HEK;
2413
2414     if (len < 0) {
2415       STRLEN tmplen = -len;
2416       is_utf8 = TRUE;
2417       /* See the note in hv_fetch(). --jhi */
2418       str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2419       len = tmplen;
2420       /* If we were able to downgrade here, then than means that we were passed
2421          in a key which only had chars 0-255, but was utf8 encoded.  */
2422       if (is_utf8)
2423           flags = HVhek_UTF8;
2424       /* If we found we were able to downgrade the string to bytes, then
2425          we should flag that it needs upgrading on keys or each.  Also flag
2426          that we need share_hek_flags to free the string.  */
2427       if (str != save)
2428           flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
2429     }
2430
2431     return share_hek_flags (str, len, hash, flags);
2432 }
2433
2434 STATIC HEK *
2435 S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags)
2436 {
2437     dVAR;
2438     register HE *entry;
2439     const int flags_masked = flags & HVhek_MASK;
2440     const U32 hindex = hash & (I32) HvMAX(PL_strtab);
2441     register XPVHV * const xhv = (XPVHV*)SvANY(PL_strtab);
2442
2443     PERL_ARGS_ASSERT_SHARE_HEK_FLAGS;
2444
2445     /* what follows is the moral equivalent of:
2446
2447     if (!(Svp = hv_fetch(PL_strtab, str, len, FALSE)))
2448         hv_store(PL_strtab, str, len, NULL, hash);
2449
2450         Can't rehash the shared string table, so not sure if it's worth
2451         counting the number of entries in the linked list
2452     */
2453
2454     /* assert(xhv_array != 0) */
2455     LOCK_STRTAB_MUTEX;
2456     entry = (HvARRAY(PL_strtab))[hindex];
2457     for (;entry; entry = HeNEXT(entry)) {
2458         if (HeHASH(entry) != hash)              /* strings can't be equal */
2459             continue;
2460         if (HeKLEN(entry) != len)
2461             continue;
2462         if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
2463             continue;
2464         if (HeKFLAGS(entry) != flags_masked)
2465             continue;
2466         break;
2467     }
2468
2469     if (!entry) {
2470         /* What used to be head of the list.
2471            If this is NULL, then we're the first entry for this slot, which
2472            means we need to increate fill.  */
2473         struct shared_he *new_entry;
2474         HEK *hek;
2475         char *k;
2476         HE **const head = &HvARRAY(PL_strtab)[hindex];
2477         HE *const next = *head;
2478
2479         /* We don't actually store a HE from the arena and a regular HEK.
2480            Instead we allocate one chunk of memory big enough for both,
2481            and put the HEK straight after the HE. This way we can find the
2482            HEK directly from the HE.
2483         */
2484
2485         Newx(k, STRUCT_OFFSET(struct shared_he,
2486                                 shared_he_hek.hek_key[0]) + len + 2, char);
2487         new_entry = (struct shared_he *)k;
2488         entry = &(new_entry->shared_he_he);
2489         hek = &(new_entry->shared_he_hek);
2490
2491         Copy(str, HEK_KEY(hek), len, char);
2492         HEK_KEY(hek)[len] = 0;
2493         HEK_LEN(hek) = len;
2494         HEK_HASH(hek) = hash;
2495         HEK_FLAGS(hek) = (unsigned char)flags_masked;
2496
2497         /* Still "point" to the HEK, so that other code need not know what
2498            we're up to.  */
2499         HeKEY_hek(entry) = hek;
2500         entry->he_valu.hent_refcount = 0;
2501         HeNEXT(entry) = next;
2502         *head = entry;
2503
2504         xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
2505         if (!next) {                    /* initial entry? */
2506             xhv->xhv_fill++; /* HvFILL(hv)++ */
2507         } else if (xhv->xhv_keys > (IV)xhv->xhv_max /* HvKEYS(hv) > HvMAX(hv) */) {
2508                 hsplit(PL_strtab);
2509         }
2510     }
2511
2512     ++entry->he_valu.hent_refcount;
2513     UNLOCK_STRTAB_MUTEX;
2514
2515     if (flags & HVhek_FREEKEY)
2516         Safefree(str);
2517
2518     return HeKEY_hek(entry);
2519 }
2520
2521 I32 *
2522 Perl_hv_placeholders_p(pTHX_ HV *hv)
2523 {
2524     dVAR;
2525     MAGIC *mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
2526
2527     PERL_ARGS_ASSERT_HV_PLACEHOLDERS_P;
2528
2529     if (!mg) {
2530         mg = sv_magicext(MUTABLE_SV(hv), 0, PERL_MAGIC_rhash, 0, 0, 0);
2531
2532         if (!mg) {
2533             Perl_die(aTHX_ "panic: hv_placeholders_p");
2534         }
2535     }
2536     return &(mg->mg_len);
2537 }
2538
2539
2540 I32
2541 Perl_hv_placeholders_get(pTHX_ const HV *hv)
2542 {
2543     dVAR;
2544     MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
2545
2546     PERL_ARGS_ASSERT_HV_PLACEHOLDERS_GET;
2547
2548     return mg ? mg->mg_len : 0;
2549 }
2550
2551 void
2552 Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph)
2553 {
2554     dVAR;
2555     MAGIC * const mg = mg_find((const SV *)hv, PERL_MAGIC_rhash);
2556
2557     PERL_ARGS_ASSERT_HV_PLACEHOLDERS_SET;
2558
2559     if (mg) {
2560         mg->mg_len = ph;
2561     } else if (ph) {
2562         if (!sv_magicext(MUTABLE_SV(hv), 0, PERL_MAGIC_rhash, 0, 0, ph))
2563             Perl_die(aTHX_ "panic: hv_placeholders_set");
2564     }
2565     /* else we don't need to add magic to record 0 placeholders.  */
2566 }
2567
2568 STATIC SV *
2569 S_refcounted_he_value(pTHX_ const struct refcounted_he *he)
2570 {
2571     dVAR;
2572     SV *value;
2573
2574     PERL_ARGS_ASSERT_REFCOUNTED_HE_VALUE;
2575
2576     switch(he->refcounted_he_data[0] & HVrhek_typemask) {
2577     case HVrhek_undef:
2578         value = newSV(0);
2579         break;
2580     case HVrhek_delete:
2581         value = &PL_sv_placeholder;
2582         break;
2583     case HVrhek_IV:
2584         value = newSViv(he->refcounted_he_val.refcounted_he_u_iv);
2585         break;
2586     case HVrhek_UV:
2587         value = newSVuv(he->refcounted_he_val.refcounted_he_u_uv);
2588         break;
2589     case HVrhek_PV:
2590     case HVrhek_PV_UTF8:
2591         /* Create a string SV that directly points to the bytes in our
2592            structure.  */
2593         value = newSV_type(SVt_PV);
2594         SvPV_set(value, (char *) he->refcounted_he_data + 1);
2595         SvCUR_set(value, he->refcounted_he_val.refcounted_he_u_len);
2596         /* This stops anything trying to free it  */
2597         SvLEN_set(value, 0);
2598         SvPOK_on(value);
2599         SvREADONLY_on(value);
2600         if ((he->refcounted_he_data[0] & HVrhek_typemask) == HVrhek_PV_UTF8)
2601             SvUTF8_on(value);
2602         break;
2603     default:
2604         Perl_croak(aTHX_ "panic: refcounted_he_value bad flags %x",
2605                    he->refcounted_he_data[0]);
2606     }
2607     return value;
2608 }
2609
2610 /*
2611 =for apidoc refcounted_he_chain_2hv
2612
2613 Generates and returns a C<HV *> by walking up the tree starting at the passed
2614 in C<struct refcounted_he *>.
2615
2616 =cut
2617 */
2618 HV *
2619 Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *chain)
2620 {
2621     dVAR;
2622     HV *hv = newHV();
2623     U32 placeholders = 0;
2624     /* We could chase the chain once to get an idea of the number of keys,
2625        and call ksplit.  But for now we'll make a potentially inefficient
2626        hash with only 8 entries in its array.  */
2627     const U32 max = HvMAX(hv);
2628
2629     if (!HvARRAY(hv)) {
2630         char *array;
2631         Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(max + 1), char);
2632         HvARRAY(hv) = (HE**)array;
2633     }
2634
2635     while (chain) {
2636 #ifdef USE_ITHREADS
2637         U32 hash = chain->refcounted_he_hash;
2638 #else
2639         U32 hash = HEK_HASH(chain->refcounted_he_hek);
2640 #endif
2641         HE **oentry = &((HvARRAY(hv))[hash & max]);
2642         HE *entry = *oentry;
2643         SV *value;
2644
2645         for (; entry; entry = HeNEXT(entry)) {
2646             if (HeHASH(entry) == hash) {
2647                 /* We might have a duplicate key here.  If so, entry is older
2648                    than the key we've already put in the hash, so if they are
2649                    the same, skip adding entry.  */
2650 #ifdef USE_ITHREADS
2651                 const STRLEN klen = HeKLEN(entry);
2652                 const char *const key = HeKEY(entry);
2653                 if (klen == chain->refcounted_he_keylen
2654                     && (!!HeKUTF8(entry)
2655                         == !!(chain->refcounted_he_data[0] & HVhek_UTF8))
2656                     && memEQ(key, REF_HE_KEY(chain), klen))
2657                     goto next_please;
2658 #else
2659                 if (HeKEY_hek(entry) == chain->refcounted_he_hek)
2660                     goto next_please;
2661                 if (HeKLEN(entry) == HEK_LEN(chain->refcounted_he_hek)
2662                     && HeKUTF8(entry) == HEK_UTF8(chain->refcounted_he_hek)
2663                     && memEQ(HeKEY(entry), HEK_KEY(chain->refcounted_he_hek),
2664                              HeKLEN(entry)))
2665                     goto next_please;
2666 #endif
2667             }
2668         }
2669         assert (!entry);
2670         entry = new_HE();
2671
2672 #ifdef USE_ITHREADS
2673         HeKEY_hek(entry)
2674             = share_hek_flags(REF_HE_KEY(chain),
2675                               chain->refcounted_he_keylen,
2676                               chain->refcounted_he_hash,
2677                               (chain->refcounted_he_data[0]
2678                                & (HVhek_UTF8|HVhek_WASUTF8)));
2679 #else
2680         HeKEY_hek(entry) = share_hek_hek(chain->refcounted_he_hek);
2681 #endif
2682         value = refcounted_he_value(chain);
2683         if (value == &PL_sv_placeholder)
2684             placeholders++;
2685         HeVAL(entry) = value;
2686
2687         /* Link it into the chain.  */
2688         HeNEXT(entry) = *oentry;
2689         if (!HeNEXT(entry)) {
2690             /* initial entry.   */
2691             HvFILL(hv)++;
2692         }
2693         *oentry = entry;
2694
2695         HvTOTALKEYS(hv)++;
2696
2697     next_please:
2698         chain = chain->refcounted_he_next;
2699     }
2700
2701     if (placeholders) {
2702         clear_placeholders(hv, placeholders);
2703         HvTOTALKEYS(hv) -= placeholders;
2704     }
2705
2706     /* We could check in the loop to see if we encounter any keys with key
2707        flags, but it's probably not worth it, as this per-hash flag is only
2708        really meant as an optimisation for things like Storable.  */
2709     HvHASKFLAGS_on(hv);
2710     DEBUG_A(Perl_hv_assert(aTHX_ hv));
2711
2712     return hv;
2713 }
2714
2715 SV *
2716 Perl_refcounted_he_fetch(pTHX_ const struct refcounted_he *chain, SV *keysv,
2717                          const char *key, STRLEN klen, int flags, U32 hash)
2718 {
2719     dVAR;
2720     /* Just to be awkward, if you're using this interface the UTF-8-or-not-ness
2721        of your key has to exactly match that which is stored.  */
2722     SV *value = &PL_sv_placeholder;
2723
2724     if (chain) {
2725         /* No point in doing any of this if there's nothing to find.  */
2726         bool is_utf8;
2727
2728         if (keysv) {
2729             if (flags & HVhek_FREEKEY)
2730                 Safefree(key);
2731             key = SvPV_const(keysv, klen);
2732             flags = 0;
2733             is_utf8 = (SvUTF8(keysv) != 0);
2734         } else {
2735             is_utf8 = ((flags & HVhek_UTF8) ? TRUE : FALSE);
2736         }
2737
2738         if (!hash) {
2739             if (keysv && (SvIsCOW_shared_hash(keysv))) {
2740                 hash = SvSHARED_HASH(keysv);
2741             } else {
2742                 PERL_HASH(hash, key, klen);
2743             }
2744         }
2745
2746         for (; chain; chain = chain->refcounted_he_next) {
2747 #ifdef USE_ITHREADS
2748             if (hash != chain->refcounted_he_hash)
2749                 continue;
2750             if (klen != chain->refcounted_he_keylen)
2751                 continue;
2752             if (memNE(REF_HE_KEY(chain),key,klen))
2753                 continue;
2754             if (!!is_utf8 != !!(chain->refcounted_he_data[0] & HVhek_UTF8))
2755                 continue;
2756 #else
2757             if (hash != HEK_HASH(chain->refcounted_he_hek))
2758                 continue;
2759             if (klen != (STRLEN)HEK_LEN(chain->refcounted_he_hek))
2760                 continue;
2761             if (memNE(HEK_KEY(chain->refcounted_he_hek),key,klen))
2762                 continue;
2763             if (!!is_utf8 != !!HEK_UTF8(chain->refcounted_he_hek))
2764                 continue;
2765 #endif
2766
2767             value = sv_2mortal(refcounted_he_value(chain));
2768             break;
2769         }
2770     }
2771
2772     if (flags & HVhek_FREEKEY)
2773         Safefree(key);
2774
2775     return value;
2776 }
2777
2778 /*
2779 =for apidoc refcounted_he_new
2780
2781 Creates a new C<struct refcounted_he>. As S<key> is copied, and value is
2782 stored in a compact form, all references remain the property of the caller.
2783 The C<struct refcounted_he> is returned with a reference count of 1.
2784
2785 =cut
2786 */
2787
2788 struct refcounted_he *
2789 Perl_refcounted_he_new(pTHX_ struct refcounted_he *const parent,
2790                        SV *const key, SV *const value) {
2791     dVAR;
2792     STRLEN key_len;
2793     const char *key_p = SvPV_const(key, key_len);
2794     STRLEN value_len = 0;
2795     const char *value_p = NULL;
2796     char value_type;
2797     char flags;
2798     bool is_utf8 = SvUTF8(key) ? TRUE : FALSE;
2799
2800     if (SvPOK(value)) {
2801         value_type = HVrhek_PV;
2802     } else if (SvIOK(value)) {
2803         value_type = SvUOK((const SV *)value) ? HVrhek_UV : HVrhek_IV;
2804     } else if (value == &PL_sv_placeholder) {
2805         value_type = HVrhek_delete;
2806     } else if (!SvOK(value)) {
2807         value_type = HVrhek_undef;
2808     } else {
2809         value_type = HVrhek_PV;
2810     }
2811
2812     if (value_type == HVrhek_PV) {
2813         /* Do it this way so that the SvUTF8() test is after the SvPV, in case
2814            the value is overloaded, and doesn't yet have the UTF-8flag set.  */
2815         value_p = SvPV_const(value, value_len);
2816         if (SvUTF8(value))
2817             value_type = HVrhek_PV_UTF8;
2818     }
2819     flags = value_type;
2820
2821     if (is_utf8) {
2822         /* Hash keys are always stored normalised to (yes) ISO-8859-1.
2823            As we're going to be building hash keys from this value in future,
2824            normalise it now.  */
2825         key_p = (char*)bytes_from_utf8((const U8*)key_p, &key_len, &is_utf8);
2826         flags |= is_utf8 ? HVhek_UTF8 : HVhek_WASUTF8;
2827     }
2828
2829     return refcounted_he_new_common(parent, key_p, key_len, flags, value_type,
2830                                     ((value_type == HVrhek_PV
2831                                       || value_type == HVrhek_PV_UTF8) ?
2832                                      (void *)value_p : (void *)value),
2833                                     value_len);
2834 }
2835
2836 static struct refcounted_he *
2837 S_refcounted_he_new_common(pTHX_ struct refcounted_he *const parent,
2838                            const char *const key_p, const STRLEN key_len,
2839                            const char flags, char value_type,
2840                            const void *value, const STRLEN value_len) {
2841     dVAR;
2842     struct refcounted_he *he;
2843     U32 hash;
2844     const bool is_pv = value_type == HVrhek_PV || value_type == HVrhek_PV_UTF8;
2845     STRLEN key_offset = is_pv ? value_len + 2 : 1;
2846
2847     PERL_ARGS_ASSERT_REFCOUNTED_HE_NEW_COMMON;
2848
2849 #ifdef USE_ITHREADS
2850     he = (struct refcounted_he*)
2851         PerlMemShared_malloc(sizeof(struct refcounted_he) - 1
2852                              + key_len
2853                              + key_offset);
2854 #else
2855     he = (struct refcounted_he*)
2856         PerlMemShared_malloc(sizeof(struct refcounted_he) - 1
2857                              + key_offset);
2858 #endif
2859
2860     he->refcounted_he_next = parent;
2861
2862     if (is_pv) {
2863         Copy((char *)value, he->refcounted_he_data + 1, value_len + 1, char);
2864         he->refcounted_he_val.refcounted_he_u_len = value_len;
2865     } else if (value_type == HVrhek_IV) {
2866         he->refcounted_he_val.refcounted_he_u_iv = SvIVX((const SV *)value);
2867     } else if (value_type == HVrhek_UV) {
2868         he->refcounted_he_val.refcounted_he_u_uv = SvUVX((const SV *)value);
2869     }
2870
2871     PERL_HASH(hash, key_p, key_len);
2872
2873 #ifdef USE_ITHREADS
2874     he->refcounted_he_hash = hash;
2875     he->refcounted_he_keylen = key_len;
2876     Copy(key_p, he->refcounted_he_data + key_offset, key_len, char);
2877 #else
2878     he->refcounted_he_hek = share_hek_flags(key_p, key_len, hash, flags);
2879 #endif
2880
2881     if (flags & HVhek_WASUTF8) {
2882         /* If it was downgraded from UTF-8, then the pointer returned from
2883            bytes_from_utf8 is an allocated pointer that we must free.  */
2884         Safefree(key_p);
2885     }
2886
2887     he->refcounted_he_data[0] = flags;
2888     he->refcounted_he_refcnt = 1;
2889
2890     return he;
2891 }
2892
2893 /*
2894 =for apidoc refcounted_he_free
2895
2896 Decrements the reference count of the passed in C<struct refcounted_he *>
2897 by one. If the reference count reaches zero the structure's memory is freed,
2898 and C<refcounted_he_free> iterates onto the parent node.
2899
2900 =cut
2901 */
2902
2903 void
2904 Perl_refcounted_he_free(pTHX_ struct refcounted_he *he) {
2905     dVAR;
2906     PERL_UNUSED_CONTEXT;
2907
2908     while (he) {
2909         struct refcounted_he *copy;
2910         U32 new_count;
2911
2912         HINTS_REFCNT_LOCK;
2913         new_count = --he->refcounted_he_refcnt;
2914         HINTS_REFCNT_UNLOCK;
2915         
2916         if (new_count) {
2917             return;
2918         }
2919
2920 #ifndef USE_ITHREADS
2921         unshare_hek_or_pvn (he->refcounted_he_hek, 0, 0, 0);
2922 #endif
2923         copy = he;
2924         he = he->refcounted_he_next;
2925         PerlMemShared_free(copy);
2926     }
2927 }
2928
2929 const char *
2930 Perl_fetch_cop_label(pTHX_ struct refcounted_he *const chain, STRLEN *len,
2931                      U32 *flags) {
2932     if (!chain)
2933         return NULL;
2934 #ifdef USE_ITHREADS
2935     if (chain->refcounted_he_keylen != 1)
2936         return NULL;
2937     if (*REF_HE_KEY(chain) != ':')
2938         return NULL;
2939 #else
2940     if ((STRLEN)HEK_LEN(chain->refcounted_he_hek) != 1)
2941         return NULL;
2942     if (*HEK_KEY(chain->refcounted_he_hek) != ':')
2943         return NULL;
2944 #endif
2945     /* Stop anyone trying to really mess us up by adding their own value for
2946        ':' into %^H  */
2947     if ((chain->refcounted_he_data[0] & HVrhek_typemask) != HVrhek_PV
2948         && (chain->refcounted_he_data[0] & HVrhek_typemask) != HVrhek_PV_UTF8)
2949         return NULL;
2950
2951     if (len)
2952         *len = chain->refcounted_he_val.refcounted_he_u_len;
2953     if (flags) {
2954         *flags = ((chain->refcounted_he_data[0] & HVrhek_typemask)
2955                   == HVrhek_PV_UTF8) ? SVf_UTF8 : 0;
2956     }
2957     return chain->refcounted_he_data + 1;
2958 }
2959
2960 /* As newSTATEOP currently gets passed plain char* labels, we will only provide
2961    that interface. Once it works out how to pass in length and UTF-8 ness, this
2962    function will need superseding.  */
2963 struct refcounted_he *
2964 Perl_store_cop_label(pTHX_ struct refcounted_he *const chain, const char *label)
2965 {
2966     PERL_ARGS_ASSERT_STORE_COP_LABEL;
2967
2968     return refcounted_he_new_common(chain, ":", 1, HVrhek_PV, HVrhek_PV,
2969                                     label, strlen(label));
2970 }
2971
2972 /*
2973 =for apidoc hv_assert
2974
2975 Check that a hash is in an internally consistent state.
2976
2977 =cut
2978 */
2979
2980 #ifdef DEBUGGING
2981
2982 void
2983 Perl_hv_assert(pTHX_ HV *hv)
2984 {
2985     dVAR;
2986     HE* entry;
2987     int withflags = 0;
2988     int placeholders = 0;
2989     int real = 0;
2990     int bad = 0;
2991     const I32 riter = HvRITER_get(hv);
2992     HE *eiter = HvEITER_get(hv);
2993
2994     PERL_ARGS_ASSERT_HV_ASSERT;
2995
2996     (void)hv_iterinit(hv);
2997
2998     while ((entry = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))) {
2999         /* sanity check the values */
3000         if (HeVAL(entry) == &PL_sv_placeholder)
3001             placeholders++;
3002         else
3003             real++;
3004         /* sanity check the keys */
3005         if (HeSVKEY(entry)) {
3006             NOOP;   /* Don't know what to check on SV keys.  */
3007         } else if (HeKUTF8(entry)) {
3008             withflags++;
3009             if (HeKWASUTF8(entry)) {
3010                 PerlIO_printf(Perl_debug_log,
3011                             "hash key has both WASUTF8 and UTF8: '%.*s'\n",
3012                             (int) HeKLEN(entry),  HeKEY(entry));
3013                 bad = 1;
3014             }
3015         } else if (HeKWASUTF8(entry))
3016             withflags++;
3017     }
3018     if (!SvTIED_mg((const SV *)hv, PERL_MAGIC_tied)) {
3019         static const char bad_count[] = "Count %d %s(s), but hash reports %d\n";
3020         const int nhashkeys = HvUSEDKEYS(hv);
3021         const int nhashplaceholders = HvPLACEHOLDERS_get(hv);
3022
3023         if (nhashkeys != real) {
3024             PerlIO_printf(Perl_debug_log, bad_count, real, "keys", nhashkeys );
3025             bad = 1;
3026         }
3027         if (nhashplaceholders != placeholders) {
3028             PerlIO_printf(Perl_debug_log, bad_count, placeholders, "placeholder", nhashplaceholders );
3029             bad = 1;
3030         }
3031     }
3032     if (withflags && ! HvHASKFLAGS(hv)) {
3033         PerlIO_printf(Perl_debug_log,
3034                     "Hash has HASKFLAGS off but I count %d key(s) with flags\n",
3035                     withflags);
3036         bad = 1;
3037     }
3038     if (bad) {
3039         sv_dump(MUTABLE_SV(hv));
3040     }
3041     HvRITER_set(hv, riter);             /* Restore hash iterator state */
3042     HvEITER_set(hv, eiter);
3043 }
3044
3045 #endif
3046
3047 /*
3048  * Local variables:
3049  * c-indentation-style: bsd
3050  * c-basic-offset: 4
3051  * indent-tabs-mode: t
3052  * End:
3053  *
3054  * ex: set ts=8 sts=4 sw=4 noet:
3055  */