From: Andrey Hristov Date: Sat, 22 Feb 2003 13:55:11 +0000 (+0000) Subject: additional speedup for array_shift(). No need to rehash if the removed element's X-Git-Tag: RELEASE_0_5~824 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c2dbd5f0fca49a0c10c2494d58509a2629af3a2;p=php additional speedup for array_shift(). No need to rehash if the removed element's key is not scalar and elements with scalar keys are already well numbered (sequentially from 0) for some reason. This is the case if the leading elements have no scalar indexes. --- diff --git a/ext/standard/array.c b/ext/standard/array.c index cf4f1889cf..2b1fead7c5 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -1858,15 +1858,21 @@ static void _phpi_pop(INTERNAL_FUNCTION_PARAMETERS, int off_the_end) /* If we did a shift... re-index like it did before */ if (!off_the_end) { int k = 0; + int should_rehash = 0; Bucket *p = Z_ARRVAL_PP(stack)->pListHead; while (p != NULL) { if (p->nKeyLength == 0) { - p->h = k++; + if (p->h != k) { + p->h = k++; + should_rehash = 1; + } else { + k++; + } } p = p->pListNext; } Z_ARRVAL_PP(stack)->nNextFreeElement = k; - if (k) { + if (should_rehash) { zend_hash_rehash(Z_ARRVAL_PP(stack)); } } else if (!key_len) {