patch 9.0.0617: calling function for reduce() has too much overhead
Problem: Calling function for reduce() has too much overhead.
Solution: Only call clear_tv() when needed.
diff --git a/src/vim9execute.c b/src/vim9execute.c
index 1699caf..ddcbe2c 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -710,7 +710,8 @@
return FAIL;
funcstack->fs_var_offset = argcount + STACK_FRAME_SIZE;
- funcstack->fs_ga.ga_len = funcstack->fs_var_offset + dfunc->df_varcount;
+ funcstack->fs_ga.ga_len = funcstack->fs_var_offset
+ + dfunc->df_varcount;
stack = ALLOC_CLEAR_MULT(typval_T, funcstack->fs_ga.ga_len);
funcstack->fs_ga.ga_data = stack;
if (stack == NULL)
@@ -5881,7 +5882,11 @@
failed_early:
// Free all arguments and local variables.
for (idx = 0; idx < ectx.ec_stack.ga_len; ++idx)
- clear_tv(STACK_TV(idx));
+ {
+ tv = STACK_TV(idx);
+ if (tv->v_type != VAR_NUMBER && tv->v_type != VAR_UNKNOWN)
+ clear_tv(tv);
+ }
ex_nesting_level = orig_nesting_level;
vim_free(ectx.ec_stack.ga_data);
@@ -6371,11 +6376,11 @@
break;
case ISN_NEWLIST:
smsg("%s%4d NEWLIST size %lld", pfx, current,
- (varnumber_T)(iptr->isn_arg.number));
+ (varnumber_T)(iptr->isn_arg.number));
break;
case ISN_NEWDICT:
smsg("%s%4d NEWDICT size %lld", pfx, current,
- (varnumber_T)(iptr->isn_arg.number));
+ (varnumber_T)(iptr->isn_arg.number));
break;
case ISN_NEWPARTIAL:
smsg("%s%4d NEWPARTIAL", pfx, current);