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