xref: /vim-8.2.3635/src/vim9execute.c (revision c8cdf0f8)
1 /* vi:set ts=8 sts=4 sw=4 noet:
2  *
3  * VIM - Vi IMproved	by Bram Moolenaar
4  *
5  * Do ":help uganda"  in Vim to read copying and usage conditions.
6  * Do ":help credits" in Vim to see a list of people who contributed.
7  * See README.txt for an overview of the Vim source code.
8  */
9 
10 /*
11  * vim9execute.c: execute Vim9 script instructions
12  */
13 
14 #define USING_FLOAT_STUFF
15 #include "vim.h"
16 
17 #if defined(FEAT_EVAL) || defined(PROTO)
18 
19 #ifdef VMS
20 # include <float.h>
21 #endif
22 
23 #include "vim9.h"
24 
25 // Structure put on ec_trystack when ISN_TRY is encountered.
26 typedef struct {
27     int	    tcd_frame_idx;	// ec_frame_idx at ISN_TRY
28     int	    tcd_stack_len;	// size of ectx.ec_stack at ISN_TRY
29     int	    tcd_catch_idx;	// instruction of the first :catch or :finally
30     int	    tcd_finally_idx;	// instruction of the :finally block or zero
31     int	    tcd_endtry_idx;	// instruction of the :endtry
32     int	    tcd_caught;		// catch block entered
33     int	    tcd_cont;		// :continue encountered, jump here
34     int	    tcd_return;		// when TRUE return from end of :finally
35 } trycmd_T;
36 
37 
38 // A stack is used to store:
39 // - arguments passed to a :def function
40 // - info about the calling function, to use when returning
41 // - local variables
42 // - temporary values
43 //
44 // In detail (FP == Frame Pointer):
45 //	  arg1		first argument from caller (if present)
46 //	  arg2		second argument from caller (if present)
47 //	  extra_arg1	any missing optional argument default value
48 // FP ->  cur_func	calling function
49 //        current	previous instruction pointer
50 //        frame_ptr	previous Frame Pointer
51 //        var1		space for local variable
52 //        var2		space for local variable
53 //        ....		fixed space for max. number of local variables
54 //        temp		temporary values
55 //        ....		flexible space for temporary values (can grow big)
56 
57 /*
58  * Execution context.
59  */
60 struct ectx_S {
61     garray_T	ec_stack;	// stack of typval_T values
62     int		ec_frame_idx;	// index in ec_stack: context of ec_dfunc_idx
63 
64     outer_T	*ec_outer;	// outer scope used for closures, allocated
65 
66     garray_T	ec_trystack;	// stack of trycmd_T values
67     int		ec_in_catch;	// when TRUE in catch or finally block
68 
69     int		ec_dfunc_idx;	// current function index
70     isn_T	*ec_instr;	// array with instructions
71     int		ec_iidx;	// index in ec_instr: instruction to execute
72 
73     garray_T	ec_funcrefs;	// partials that might be a closure
74 };
75 
76 #ifdef FEAT_PROFILE
77 // stack of profinfo_T used when profiling.
78 static garray_T profile_info_ga = {0, 0, sizeof(profinfo_T), 20, NULL};
79 #endif
80 
81 // Get pointer to item relative to the bottom of the stack, -1 is the last one.
82 #define STACK_TV_BOT(idx) (((typval_T *)ectx->ec_stack.ga_data) + ectx->ec_stack.ga_len + (idx))
83 
84     void
85 to_string_error(vartype_T vartype)
86 {
87     semsg(_(e_cannot_convert_str_to_string), vartype_name(vartype));
88 }
89 
90 /*
91  * Return the number of arguments, including optional arguments and any vararg.
92  */
93     static int
94 ufunc_argcount(ufunc_T *ufunc)
95 {
96     return ufunc->uf_args.ga_len + (ufunc->uf_va_name != NULL ? 1 : 0);
97 }
98 
99 /*
100  * Set the instruction index, depending on omitted arguments, where the default
101  * values are to be computed.  If all optional arguments are present, start
102  * with the function body.
103  * The expression evaluation is at the start of the instructions:
104  *  0 ->  EVAL default1
105  *	       STORE arg[-2]
106  *  1 ->  EVAL default2
107  *	       STORE arg[-1]
108  *  2 ->  function body
109  */
110     static void
111 init_instr_idx(ufunc_T *ufunc, int argcount, ectx_T *ectx)
112 {
113     if (ufunc->uf_def_args.ga_len == 0)
114 	ectx->ec_iidx = 0;
115     else
116     {
117 	int	defcount = ufunc->uf_args.ga_len - argcount;
118 
119 	// If there is a varargs argument defcount can be negative, no defaults
120 	// to evaluate then.
121 	if (defcount < 0)
122 	    defcount = 0;
123 	ectx->ec_iidx = ufunc->uf_def_arg_idx[
124 					 ufunc->uf_def_args.ga_len - defcount];
125     }
126 }
127 
128 /*
129  * Create a new list from "count" items at the bottom of the stack.
130  * When "count" is zero an empty list is added to the stack.
131  */
132     static int
133 exe_newlist(int count, ectx_T *ectx)
134 {
135     list_T	*list = list_alloc_with_items(count);
136     int		idx;
137     typval_T	*tv;
138 
139     if (list == NULL)
140 	return FAIL;
141     for (idx = 0; idx < count; ++idx)
142 	list_set_item(list, idx, STACK_TV_BOT(idx - count));
143 
144     if (count > 0)
145 	ectx->ec_stack.ga_len -= count - 1;
146     else if (GA_GROW(&ectx->ec_stack, 1) == FAIL)
147 	return FAIL;
148     else
149 	++ectx->ec_stack.ga_len;
150     tv = STACK_TV_BOT(-1);
151     tv->v_type = VAR_LIST;
152     tv->vval.v_list = list;
153     ++list->lv_refcount;
154     return OK;
155 }
156 
157 /*
158  * Call compiled function "cdf_idx" from compiled code.
159  * This adds a stack frame and sets the instruction pointer to the start of the
160  * called function.
161  * If "pt" is not null use "pt->pt_outer" for ec_outer.
162  *
163  * Stack has:
164  * - current arguments (already there)
165  * - omitted optional argument (default values) added here
166  * - stack frame:
167  *	- pointer to calling function
168  *	- Index of next instruction in calling function
169  *	- previous frame pointer
170  * - reserved space for local variables
171  */
172     static int
173 call_dfunc(int cdf_idx, partial_T *pt, int argcount_arg, ectx_T *ectx)
174 {
175     int	    argcount = argcount_arg;
176     dfunc_T *dfunc = ((dfunc_T *)def_functions.ga_data) + cdf_idx;
177     ufunc_T *ufunc = dfunc->df_ufunc;
178     int	    arg_to_add;
179     int	    vararg_count = 0;
180     int	    varcount;
181     int	    idx;
182     estack_T *entry;
183 
184     if (dfunc->df_deleted)
185     {
186 	// don't use ufunc->uf_name, it may have been freed
187 	emsg_funcname(e_func_deleted,
188 		dfunc->df_name == NULL ? (char_u *)"unknown" : dfunc->df_name);
189 	return FAIL;
190     }
191 
192 #ifdef FEAT_PROFILE
193     if (do_profiling == PROF_YES)
194     {
195 	if (ga_grow(&profile_info_ga, 1) == OK)
196 	{
197 	    profinfo_T *info = ((profinfo_T *)profile_info_ga.ga_data)
198 						      + profile_info_ga.ga_len;
199 	    ++profile_info_ga.ga_len;
200 	    CLEAR_POINTER(info);
201 	    profile_may_start_func(info, ufunc,
202 			(((dfunc_T *)def_functions.ga_data)
203 					      + ectx->ec_dfunc_idx)->df_ufunc);
204 	}
205 
206 	// Profiling might be enabled/disabled along the way.  This should not
207 	// fail, since the function was compiled before and toggling profiling
208 	// doesn't change any errors.
209 	if (func_needs_compiling(ufunc, PROFILING(ufunc))
210 		&& compile_def_function(ufunc, FALSE, PROFILING(ufunc), NULL)
211 								       == FAIL)
212 	    return FAIL;
213     }
214 #endif
215 
216     if (ufunc->uf_va_name != NULL)
217     {
218 	// Need to make a list out of the vararg arguments.
219 	// Stack at time of call with 2 varargs:
220 	//   normal_arg
221 	//   optional_arg
222 	//   vararg_1
223 	//   vararg_2
224 	// After creating the list:
225 	//   normal_arg
226 	//   optional_arg
227 	//   vararg-list
228 	// With missing optional arguments we get:
229 	//    normal_arg
230 	// After creating the list
231 	//    normal_arg
232 	//    (space for optional_arg)
233 	//    vararg-list
234 	vararg_count = argcount - ufunc->uf_args.ga_len;
235 	if (vararg_count < 0)
236 	    vararg_count = 0;
237 	else
238 	    argcount -= vararg_count;
239 	if (exe_newlist(vararg_count, ectx) == FAIL)
240 	    return FAIL;
241 
242 	vararg_count = 1;
243     }
244 
245     arg_to_add = ufunc->uf_args.ga_len - argcount;
246     if (arg_to_add < 0)
247     {
248 	if (arg_to_add == -1)
249 	    emsg(_(e_one_argument_too_many));
250 	else
251 	    semsg(_(e_nr_arguments_too_many), -arg_to_add);
252 	return FAIL;
253     }
254 
255     // Reserve space for:
256     // - missing arguments
257     // - stack frame
258     // - local variables
259     // - if needed: a counter for number of closures created in
260     //   ectx->ec_funcrefs.
261     varcount = dfunc->df_varcount + dfunc->df_has_closure;
262     if (ga_grow(&ectx->ec_stack, arg_to_add + STACK_FRAME_SIZE + varcount)
263 								       == FAIL)
264 	return FAIL;
265 
266     // If depth of calling is getting too high, don't execute the function.
267     if (funcdepth_increment() == FAIL)
268 	return FAIL;
269 
270     // Move the vararg-list to below the missing optional arguments.
271     if (vararg_count > 0 && arg_to_add > 0)
272 	*STACK_TV_BOT(arg_to_add - 1) = *STACK_TV_BOT(-1);
273 
274     // Reserve space for omitted optional arguments, filled in soon.
275     for (idx = 0; idx < arg_to_add; ++idx)
276 	STACK_TV_BOT(idx - vararg_count)->v_type = VAR_UNKNOWN;
277     ectx->ec_stack.ga_len += arg_to_add;
278 
279     // Store current execution state in stack frame for ISN_RETURN.
280     STACK_TV_BOT(STACK_FRAME_FUNC_OFF)->vval.v_number = ectx->ec_dfunc_idx;
281     STACK_TV_BOT(STACK_FRAME_IIDX_OFF)->vval.v_number = ectx->ec_iidx;
282     STACK_TV_BOT(STACK_FRAME_OUTER_OFF)->vval.v_string = (void *)ectx->ec_outer;
283     STACK_TV_BOT(STACK_FRAME_IDX_OFF)->vval.v_number = ectx->ec_frame_idx;
284     ectx->ec_frame_idx = ectx->ec_stack.ga_len;
285 
286     // Initialize local variables
287     for (idx = 0; idx < dfunc->df_varcount; ++idx)
288 	STACK_TV_BOT(STACK_FRAME_SIZE + idx)->v_type = VAR_UNKNOWN;
289     if (dfunc->df_has_closure)
290     {
291 	typval_T *tv = STACK_TV_BOT(STACK_FRAME_SIZE + dfunc->df_varcount);
292 
293 	tv->v_type = VAR_NUMBER;
294 	tv->vval.v_number = 0;
295     }
296     ectx->ec_stack.ga_len += STACK_FRAME_SIZE + varcount;
297 
298     if (pt != NULL || ufunc->uf_partial != NULL
299 					     || (ufunc->uf_flags & FC_CLOSURE))
300     {
301 	outer_T *outer = ALLOC_CLEAR_ONE(outer_T);
302 
303 	if (outer == NULL)
304 	    return FAIL;
305 	if (pt != NULL)
306 	{
307 	    *outer = pt->pt_outer;
308 	    outer->out_up_is_copy = TRUE;
309 	}
310 	else if (ufunc->uf_partial != NULL)
311 	{
312 	    *outer = ufunc->uf_partial->pt_outer;
313 	    outer->out_up_is_copy = TRUE;
314 	}
315 	else
316 	{
317 	    outer->out_stack = &ectx->ec_stack;
318 	    outer->out_frame_idx = ectx->ec_frame_idx;
319 	    outer->out_up = ectx->ec_outer;
320 	}
321 	ectx->ec_outer = outer;
322     }
323     else
324 	ectx->ec_outer = NULL;
325 
326     // Set execution state to the start of the called function.
327     ectx->ec_dfunc_idx = cdf_idx;
328     ectx->ec_instr = INSTRUCTIONS(dfunc);
329     entry = estack_push_ufunc(ufunc, 1);
330     if (entry != NULL)
331     {
332 	// Set the script context to the script where the function was defined.
333 	// TODO: save more than the SID?
334 	entry->es_save_sid = current_sctx.sc_sid;
335 	current_sctx.sc_sid = ufunc->uf_script_ctx.sc_sid;
336     }
337 
338     // Decide where to start execution, handles optional arguments.
339     init_instr_idx(ufunc, argcount, ectx);
340 
341     return OK;
342 }
343 
344 // Get pointer to item in the stack.
345 #define STACK_TV(idx) (((typval_T *)ectx->ec_stack.ga_data) + idx)
346 
347 /*
348  * Used when returning from a function: Check if any closure is still
349  * referenced.  If so then move the arguments and variables to a separate piece
350  * of stack to be used when the closure is called.
351  * When "free_arguments" is TRUE the arguments are to be freed.
352  * Returns FAIL when out of memory.
353  */
354     static int
355 handle_closure_in_use(ectx_T *ectx, int free_arguments)
356 {
357     dfunc_T	*dfunc = ((dfunc_T *)def_functions.ga_data)
358 							  + ectx->ec_dfunc_idx;
359     int		argcount;
360     int		top;
361     int		idx;
362     typval_T	*tv;
363     int		closure_in_use = FALSE;
364     garray_T	*gap = &ectx->ec_funcrefs;
365     varnumber_T	closure_count;
366 
367     if (dfunc->df_ufunc == NULL)
368 	return OK;  // function was freed
369     if (dfunc->df_has_closure == 0)
370 	return OK;  // no closures
371     tv = STACK_TV(ectx->ec_frame_idx + STACK_FRAME_SIZE + dfunc->df_varcount);
372     closure_count = tv->vval.v_number;
373     if (closure_count == 0)
374 	return OK;  // no funcrefs created
375 
376     argcount = ufunc_argcount(dfunc->df_ufunc);
377     top = ectx->ec_frame_idx - argcount;
378 
379     // Check if any created closure is still in use.
380     for (idx = 0; idx < closure_count; ++idx)
381     {
382 	partial_T   *pt;
383 	int	    off = gap->ga_len - closure_count + idx;
384 
385 	if (off < 0)
386 	    continue;  // count is off or already done
387 	pt = ((partial_T **)gap->ga_data)[off];
388 	if (pt->pt_refcount > 1)
389 	{
390 	    int refcount = pt->pt_refcount;
391 	    int i;
392 
393 	    // A Reference in a local variables doesn't count, it gets
394 	    // unreferenced on return.
395 	    for (i = 0; i < dfunc->df_varcount; ++i)
396 	    {
397 		typval_T *stv = STACK_TV(ectx->ec_frame_idx
398 						       + STACK_FRAME_SIZE + i);
399 		if (stv->v_type == VAR_PARTIAL && pt == stv->vval.v_partial)
400 		    --refcount;
401 	    }
402 	    if (refcount > 1)
403 	    {
404 		closure_in_use = TRUE;
405 		break;
406 	    }
407 	}
408     }
409 
410     if (closure_in_use)
411     {
412 	funcstack_T *funcstack = ALLOC_CLEAR_ONE(funcstack_T);
413 	typval_T    *stack;
414 
415 	// A closure is using the arguments and/or local variables.
416 	// Move them to the called function.
417 	if (funcstack == NULL)
418 	    return FAIL;
419 	funcstack->fs_var_offset = argcount + STACK_FRAME_SIZE;
420 	funcstack->fs_ga.ga_len = funcstack->fs_var_offset + dfunc->df_varcount;
421 	stack = ALLOC_CLEAR_MULT(typval_T, funcstack->fs_ga.ga_len);
422 	funcstack->fs_ga.ga_data = stack;
423 	if (stack == NULL)
424 	{
425 	    vim_free(funcstack);
426 	    return FAIL;
427 	}
428 
429 	// Move or copy the arguments.
430 	for (idx = 0; idx < argcount; ++idx)
431 	{
432 	    tv = STACK_TV(top + idx);
433 	    if (free_arguments)
434 	    {
435 		*(stack + idx) = *tv;
436 		tv->v_type = VAR_UNKNOWN;
437 	    }
438 	    else
439 		copy_tv(tv, stack + idx);
440 	}
441 	// Move the local variables.
442 	for (idx = 0; idx < dfunc->df_varcount; ++idx)
443 	{
444 	    tv = STACK_TV(ectx->ec_frame_idx + STACK_FRAME_SIZE + idx);
445 
446 	    // A partial created for a local function, that is also used as a
447 	    // local variable, has a reference count for the variable, thus
448 	    // will never go down to zero.  When all these refcounts are one
449 	    // then the funcstack is unused.  We need to count how many we have
450 	    // so we need when to check.
451 	    if (tv->v_type == VAR_PARTIAL && tv->vval.v_partial != NULL)
452 	    {
453 		int	    i;
454 
455 		for (i = 0; i < closure_count; ++i)
456 		    if (tv->vval.v_partial == ((partial_T **)gap->ga_data)[
457 					      gap->ga_len - closure_count + i])
458 			++funcstack->fs_min_refcount;
459 	    }
460 
461 	    *(stack + funcstack->fs_var_offset + idx) = *tv;
462 	    tv->v_type = VAR_UNKNOWN;
463 	}
464 
465 	for (idx = 0; idx < closure_count; ++idx)
466 	{
467 	    partial_T *pt = ((partial_T **)gap->ga_data)[gap->ga_len
468 							- closure_count + idx];
469 	    if (pt->pt_refcount > 1)
470 	    {
471 		++funcstack->fs_refcount;
472 		pt->pt_funcstack = funcstack;
473 		pt->pt_outer.out_stack = &funcstack->fs_ga;
474 		pt->pt_outer.out_frame_idx = ectx->ec_frame_idx - top;
475 		pt->pt_outer.out_up = ectx->ec_outer;
476 	    }
477 	}
478     }
479 
480     for (idx = 0; idx < closure_count; ++idx)
481 	partial_unref(((partial_T **)gap->ga_data)[gap->ga_len
482 						       - closure_count + idx]);
483     gap->ga_len -= closure_count;
484     if (gap->ga_len == 0)
485 	ga_clear(gap);
486 
487     return OK;
488 }
489 
490 /*
491  * Called when a partial is freed or its reference count goes down to one.  The
492  * funcstack may be the only reference to the partials in the local variables.
493  * Go over all of them, the funcref and can be freed if all partials
494  * referencing the funcstack have a reference count of one.
495  */
496     void
497 funcstack_check_refcount(funcstack_T *funcstack)
498 {
499     int		    i;
500     garray_T	    *gap = &funcstack->fs_ga;
501     int		    done = 0;
502 
503     if (funcstack->fs_refcount > funcstack->fs_min_refcount)
504 	return;
505     for (i = funcstack->fs_var_offset; i < gap->ga_len; ++i)
506     {
507 	typval_T *tv = ((typval_T *)gap->ga_data) + i;
508 
509 	if (tv->v_type == VAR_PARTIAL && tv->vval.v_partial != NULL
510 		&& tv->vval.v_partial->pt_funcstack == funcstack
511 		&& tv->vval.v_partial->pt_refcount == 1)
512 	    ++done;
513     }
514     if (done == funcstack->fs_min_refcount)
515     {
516 	typval_T	*stack = gap->ga_data;
517 
518 	// All partials referencing the funcstack have a reference count of
519 	// one, thus the funcstack is no longer of use.
520 	for (i = 0; i < gap->ga_len; ++i)
521 	    clear_tv(stack + i);
522 	vim_free(stack);
523 	vim_free(funcstack);
524     }
525 }
526 
527 /*
528  * Return from the current function.
529  */
530     static int
531 func_return(ectx_T *ectx)
532 {
533     int		idx;
534     int		ret_idx;
535     dfunc_T	*dfunc = ((dfunc_T *)def_functions.ga_data)
536 							  + ectx->ec_dfunc_idx;
537     int		argcount = ufunc_argcount(dfunc->df_ufunc);
538     int		top = ectx->ec_frame_idx - argcount;
539     estack_T	*entry;
540     int		prev_dfunc_idx = STACK_TV(ectx->ec_frame_idx
541 					+ STACK_FRAME_FUNC_OFF)->vval.v_number;
542     dfunc_T	*prev_dfunc = ((dfunc_T *)def_functions.ga_data)
543 							      + prev_dfunc_idx;
544 
545 #ifdef FEAT_PROFILE
546     if (do_profiling == PROF_YES)
547     {
548 	ufunc_T *caller = prev_dfunc->df_ufunc;
549 
550 	if (dfunc->df_ufunc->uf_profiling
551 				   || (caller != NULL && caller->uf_profiling))
552 	{
553 	    profile_may_end_func(((profinfo_T *)profile_info_ga.ga_data)
554 			+ profile_info_ga.ga_len - 1, dfunc->df_ufunc, caller);
555 	    --profile_info_ga.ga_len;
556 	}
557     }
558 #endif
559     // execution context goes one level up
560     entry = estack_pop();
561     if (entry != NULL)
562 	current_sctx.sc_sid = entry->es_save_sid;
563 
564     if (handle_closure_in_use(ectx, TRUE) == FAIL)
565 	return FAIL;
566 
567     // Clear the arguments.
568     for (idx = top; idx < ectx->ec_frame_idx; ++idx)
569 	clear_tv(STACK_TV(idx));
570 
571     // Clear local variables and temp values, but not the return value.
572     for (idx = ectx->ec_frame_idx + STACK_FRAME_SIZE;
573 					idx < ectx->ec_stack.ga_len - 1; ++idx)
574 	clear_tv(STACK_TV(idx));
575 
576     // The return value should be on top of the stack.  However, when aborting
577     // it may not be there and ec_frame_idx is the top of the stack.
578     ret_idx = ectx->ec_stack.ga_len - 1;
579     if (ret_idx == ectx->ec_frame_idx + STACK_FRAME_IDX_OFF)
580 	ret_idx = 0;
581 
582     vim_free(ectx->ec_outer);
583 
584     // Restore the previous frame.
585     ectx->ec_dfunc_idx = prev_dfunc_idx;
586     ectx->ec_iidx = STACK_TV(ectx->ec_frame_idx
587 					+ STACK_FRAME_IIDX_OFF)->vval.v_number;
588     ectx->ec_outer = (void *)STACK_TV(ectx->ec_frame_idx
589 				       + STACK_FRAME_OUTER_OFF)->vval.v_string;
590     // restoring ec_frame_idx must be last
591     ectx->ec_frame_idx = STACK_TV(ectx->ec_frame_idx
592 				       + STACK_FRAME_IDX_OFF)->vval.v_number;
593     ectx->ec_instr = INSTRUCTIONS(prev_dfunc);
594 
595     if (ret_idx > 0)
596     {
597 	// Reset the stack to the position before the call, with a spot for the
598 	// return value, moved there from above the frame.
599 	ectx->ec_stack.ga_len = top + 1;
600 	*STACK_TV_BOT(-1) = *STACK_TV(ret_idx);
601     }
602     else
603 	// Reset the stack to the position before the call.
604 	ectx->ec_stack.ga_len = top;
605 
606     funcdepth_decrement();
607     return OK;
608 }
609 
610 #undef STACK_TV
611 
612 /*
613  * Prepare arguments and rettv for calling a builtin or user function.
614  */
615     static int
616 call_prepare(int argcount, typval_T *argvars, ectx_T *ectx)
617 {
618     int		idx;
619     typval_T	*tv;
620 
621     // Move arguments from bottom of the stack to argvars[] and add terminator.
622     for (idx = 0; idx < argcount; ++idx)
623 	argvars[idx] = *STACK_TV_BOT(idx - argcount);
624     argvars[argcount].v_type = VAR_UNKNOWN;
625 
626     // Result replaces the arguments on the stack.
627     if (argcount > 0)
628 	ectx->ec_stack.ga_len -= argcount - 1;
629     else if (GA_GROW(&ectx->ec_stack, 1) == FAIL)
630 	return FAIL;
631     else
632 	++ectx->ec_stack.ga_len;
633 
634     // Default return value is zero.
635     tv = STACK_TV_BOT(-1);
636     tv->v_type = VAR_NUMBER;
637     tv->vval.v_number = 0;
638 
639     return OK;
640 }
641 
642 // Ugly global to avoid passing the execution context around through many
643 // layers.
644 static ectx_T *current_ectx = NULL;
645 
646 /*
647  * Call a builtin function by index.
648  */
649     static int
650 call_bfunc(int func_idx, int argcount, ectx_T *ectx)
651 {
652     typval_T	argvars[MAX_FUNC_ARGS];
653     int		idx;
654     int		did_emsg_before = did_emsg;
655     ectx_T	*prev_ectx = current_ectx;
656 
657     if (call_prepare(argcount, argvars, ectx) == FAIL)
658 	return FAIL;
659 
660     // Call the builtin function.  Set "current_ectx" so that when it
661     // recursively invokes call_def_function() a closure context can be set.
662     current_ectx = ectx;
663     call_internal_func_by_idx(func_idx, argvars, STACK_TV_BOT(-1));
664     current_ectx = prev_ectx;
665 
666     // Clear the arguments.
667     for (idx = 0; idx < argcount; ++idx)
668 	clear_tv(&argvars[idx]);
669 
670     if (did_emsg > did_emsg_before)
671 	return FAIL;
672     return OK;
673 }
674 
675 /*
676  * Execute a user defined function.
677  * If the function is compiled this will add a stack frame and set the
678  * instruction pointer at the start of the function.
679  * Otherwise the function is called here.
680  * If "pt" is not null use "pt->pt_outer" for ec_outer.
681  * "iptr" can be used to replace the instruction with a more efficient one.
682  */
683     static int
684 call_ufunc(
685 	ufunc_T	    *ufunc,
686 	partial_T   *pt,
687 	int	    argcount,
688 	ectx_T	    *ectx,
689 	isn_T	    *iptr)
690 {
691     typval_T	argvars[MAX_FUNC_ARGS];
692     funcexe_T   funcexe;
693     int		error;
694     int		idx;
695     int		did_emsg_before = did_emsg;
696 #ifdef FEAT_PROFILE
697     int		profiling = do_profiling == PROF_YES && ufunc->uf_profiling;
698 #else
699 # define profiling FALSE
700 #endif
701 
702     if (func_needs_compiling(ufunc, profiling)
703 		&& compile_def_function(ufunc, FALSE, profiling, NULL) == FAIL)
704 	return FAIL;
705     if (ufunc->uf_def_status == UF_COMPILED)
706     {
707 	error = check_user_func_argcount(ufunc, argcount);
708 	if (error != FCERR_UNKNOWN)
709 	{
710 	    if (error == FCERR_TOOMANY)
711 		semsg(_(e_toomanyarg), ufunc->uf_name);
712 	    else
713 		semsg(_(e_toofewarg), ufunc->uf_name);
714 	    return FAIL;
715 	}
716 
717 	// The function has been compiled, can call it quickly.  For a function
718 	// that was defined later: we can call it directly next time.
719 	// TODO: what if the function was deleted and then defined again?
720 	if (iptr != NULL)
721 	{
722 	    delete_instr(iptr);
723 	    iptr->isn_type = ISN_DCALL;
724 	    iptr->isn_arg.dfunc.cdf_idx = ufunc->uf_dfunc_idx;
725 	    iptr->isn_arg.dfunc.cdf_argcount = argcount;
726 	}
727 	return call_dfunc(ufunc->uf_dfunc_idx, pt, argcount, ectx);
728     }
729 
730     if (call_prepare(argcount, argvars, ectx) == FAIL)
731 	return FAIL;
732     CLEAR_FIELD(funcexe);
733     funcexe.evaluate = TRUE;
734 
735     // Call the user function.  Result goes in last position on the stack.
736     // TODO: add selfdict if there is one
737     error = call_user_func_check(ufunc, argcount, argvars,
738 					     STACK_TV_BOT(-1), &funcexe, NULL);
739 
740     // Clear the arguments.
741     for (idx = 0; idx < argcount; ++idx)
742 	clear_tv(&argvars[idx]);
743 
744     if (error != FCERR_NONE)
745     {
746 	user_func_error(error, ufunc->uf_name);
747 	return FAIL;
748     }
749     if (did_emsg > did_emsg_before)
750 	// Error other than from calling the function itself.
751 	return FAIL;
752     return OK;
753 }
754 
755 /*
756  * Return TRUE if an error was given or CTRL-C was pressed.
757  */
758     static int
759 vim9_aborting(int prev_called_emsg)
760 {
761     return called_emsg > prev_called_emsg || got_int || did_throw;
762 }
763 
764 /*
765  * Execute a function by "name".
766  * This can be a builtin function or a user function.
767  * "iptr" can be used to replace the instruction with a more efficient one.
768  * Returns FAIL if not found without an error message.
769  */
770     static int
771 call_by_name(char_u *name, int argcount, ectx_T *ectx, isn_T *iptr)
772 {
773     ufunc_T *ufunc;
774 
775     if (builtin_function(name, -1))
776     {
777 	int func_idx = find_internal_func(name);
778 
779 	if (func_idx < 0)
780 	    return FAIL;
781 	if (check_internal_func(func_idx, argcount) < 0)
782 	    return FAIL;
783 	return call_bfunc(func_idx, argcount, ectx);
784     }
785 
786     ufunc = find_func(name, FALSE, NULL);
787 
788     if (ufunc == NULL)
789     {
790 	int called_emsg_before = called_emsg;
791 
792 	if (script_autoload(name, TRUE))
793 	    // loaded a package, search for the function again
794 	    ufunc = find_func(name, FALSE, NULL);
795 	if (vim9_aborting(called_emsg_before))
796 	    return FAIL;  // bail out if loading the script caused an error
797     }
798 
799     if (ufunc != NULL)
800     {
801 	if (ufunc->uf_arg_types != NULL)
802 	{
803 	    int i;
804 	    typval_T	*argv = STACK_TV_BOT(0) - argcount;
805 
806 	    // The function can change at runtime, check that the argument
807 	    // types are correct.
808 	    for (i = 0; i < argcount; ++i)
809 	    {
810 		type_T *type = NULL;
811 
812 		if (i < ufunc->uf_args.ga_len)
813 		    type = ufunc->uf_arg_types[i];
814 		else if (ufunc->uf_va_type != NULL)
815 		    type = ufunc->uf_va_type->tt_member;
816 		if (type != NULL && check_typval_arg_type(type,
817 						      &argv[i], i + 1) == FAIL)
818 		    return FAIL;
819 	    }
820 	}
821 
822 	return call_ufunc(ufunc, NULL, argcount, ectx, iptr);
823     }
824 
825     return FAIL;
826 }
827 
828     static int
829 call_partial(typval_T *tv, int argcount_arg, ectx_T *ectx)
830 {
831     int		argcount = argcount_arg;
832     char_u	*name = NULL;
833     int		called_emsg_before = called_emsg;
834     int		res = FAIL;
835 
836     if (tv->v_type == VAR_PARTIAL)
837     {
838 	partial_T   *pt = tv->vval.v_partial;
839 	int	    i;
840 
841 	if (pt->pt_argc > 0)
842 	{
843 	    // Make space for arguments from the partial, shift the "argcount"
844 	    // arguments up.
845 	    if (ga_grow(&ectx->ec_stack, pt->pt_argc) == FAIL)
846 		return FAIL;
847 	    for (i = 1; i <= argcount; ++i)
848 		*STACK_TV_BOT(-i + pt->pt_argc) = *STACK_TV_BOT(-i);
849 	    ectx->ec_stack.ga_len += pt->pt_argc;
850 	    argcount += pt->pt_argc;
851 
852 	    // copy the arguments from the partial onto the stack
853 	    for (i = 0; i < pt->pt_argc; ++i)
854 		copy_tv(&pt->pt_argv[i], STACK_TV_BOT(-argcount + i));
855 	}
856 
857 	if (pt->pt_func != NULL)
858 	    return call_ufunc(pt->pt_func, pt, argcount, ectx, NULL);
859 
860 	name = pt->pt_name;
861     }
862     else if (tv->v_type == VAR_FUNC)
863 	name = tv->vval.v_string;
864     if (name != NULL)
865     {
866 	char_u	fname_buf[FLEN_FIXED + 1];
867 	char_u	*tofree = NULL;
868 	int	error = FCERR_NONE;
869 	char_u	*fname;
870 
871 	// May need to translate <SNR>123_ to K_SNR.
872 	fname = fname_trans_sid(name, fname_buf, &tofree, &error);
873 	if (error != FCERR_NONE)
874 	    res = FAIL;
875 	else
876 	    res = call_by_name(fname, argcount, ectx, NULL);
877 	vim_free(tofree);
878     }
879 
880     if (res == FAIL)
881     {
882 	if (called_emsg == called_emsg_before)
883 	    semsg(_(e_unknownfunc),
884 				  name == NULL ? (char_u *)"[unknown]" : name);
885 	return FAIL;
886     }
887     return OK;
888 }
889 
890 /*
891  * Check if "lock" is VAR_LOCKED or VAR_FIXED.  If so give an error and return
892  * TRUE.
893  */
894     static int
895 error_if_locked(int lock, char *error)
896 {
897     if (lock & (VAR_LOCKED | VAR_FIXED))
898     {
899 	emsg(_(error));
900 	return TRUE;
901     }
902     return FALSE;
903 }
904 
905 /*
906  * Give an error if "tv" is not a number and return FAIL.
907  */
908     static int
909 check_for_number(typval_T *tv)
910 {
911     if (tv->v_type != VAR_NUMBER)
912     {
913 	semsg(_(e_expected_str_but_got_str),
914 		vartype_name(VAR_NUMBER), vartype_name(tv->v_type));
915 	return FAIL;
916     }
917     return OK;
918 }
919 
920 /*
921  * Store "tv" in variable "name".
922  * This is for s: and g: variables.
923  */
924     static void
925 store_var(char_u *name, typval_T *tv)
926 {
927     funccal_entry_T entry;
928 
929     save_funccal(&entry);
930     set_var_const(name, NULL, tv, FALSE, ASSIGN_DECL, 0);
931     restore_funccal();
932 }
933 
934 /*
935  * Convert "tv" to a string.
936  * Return FAIL if not allowed.
937  */
938     static int
939 do_2string(typval_T *tv, int is_2string_any)
940 {
941     if (tv->v_type != VAR_STRING)
942     {
943 	char_u *str;
944 
945 	if (is_2string_any)
946 	{
947 	    switch (tv->v_type)
948 	    {
949 		case VAR_SPECIAL:
950 		case VAR_BOOL:
951 		case VAR_NUMBER:
952 		case VAR_FLOAT:
953 		case VAR_BLOB:	break;
954 		default:	to_string_error(tv->v_type);
955 				return FAIL;
956 	    }
957 	}
958 	str = typval_tostring(tv, TRUE);
959 	clear_tv(tv);
960 	tv->v_type = VAR_STRING;
961 	tv->vval.v_string = str;
962     }
963     return OK;
964 }
965 
966 /*
967  * When the value of "sv" is a null list of dict, allocate it.
968  */
969     static void
970 allocate_if_null(typval_T *tv)
971 {
972     switch (tv->v_type)
973     {
974 	case VAR_LIST:
975 	    if (tv->vval.v_list == NULL)
976 		(void)rettv_list_alloc(tv);
977 	    break;
978 	case VAR_DICT:
979 	    if (tv->vval.v_dict == NULL)
980 		(void)rettv_dict_alloc(tv);
981 	    break;
982 	default:
983 	    break;
984     }
985 }
986 
987 /*
988  * Return the character "str[index]" where "index" is the character index.  If
989  * "index" is out of range NULL is returned.
990  */
991     char_u *
992 char_from_string(char_u *str, varnumber_T index)
993 {
994     size_t	    nbyte = 0;
995     varnumber_T	    nchar = index;
996     size_t	    slen;
997 
998     if (str == NULL)
999 	return NULL;
1000     slen = STRLEN(str);
1001 
1002     // do the same as for a list: a negative index counts from the end
1003     if (index < 0)
1004     {
1005 	int	clen = 0;
1006 
1007 	for (nbyte = 0; nbyte < slen; ++clen)
1008 	    nbyte += MB_CPTR2LEN(str + nbyte);
1009 	nchar = clen + index;
1010 	if (nchar < 0)
1011 	    // unlike list: index out of range results in empty string
1012 	    return NULL;
1013     }
1014 
1015     for (nbyte = 0; nchar > 0 && nbyte < slen; --nchar)
1016 	nbyte += MB_CPTR2LEN(str + nbyte);
1017     if (nbyte >= slen)
1018 	return NULL;
1019     return vim_strnsave(str + nbyte, MB_CPTR2LEN(str + nbyte));
1020 }
1021 
1022 /*
1023  * Get the byte index for character index "idx" in string "str" with length
1024  * "str_len".
1025  * If going over the end return "str_len".
1026  * If "idx" is negative count from the end, -1 is the last character.
1027  * When going over the start return -1.
1028  */
1029     static long
1030 char_idx2byte(char_u *str, size_t str_len, varnumber_T idx)
1031 {
1032     varnumber_T nchar = idx;
1033     size_t	nbyte = 0;
1034 
1035     if (nchar >= 0)
1036     {
1037 	while (nchar > 0 && nbyte < str_len)
1038 	{
1039 	    nbyte += MB_CPTR2LEN(str + nbyte);
1040 	    --nchar;
1041 	}
1042     }
1043     else
1044     {
1045 	nbyte = str_len;
1046 	while (nchar < 0 && nbyte > 0)
1047 	{
1048 	    --nbyte;
1049 	    nbyte -= mb_head_off(str, str + nbyte);
1050 	    ++nchar;
1051 	}
1052 	if (nchar < 0)
1053 	    return -1;
1054     }
1055     return (long)nbyte;
1056 }
1057 
1058 /*
1059  * Return the slice "str[first:last]" using character indexes.
1060  * "exclusive" is TRUE for slice().
1061  * Return NULL when the result is empty.
1062  */
1063     char_u *
1064 string_slice(char_u *str, varnumber_T first, varnumber_T last, int exclusive)
1065 {
1066     long	start_byte, end_byte;
1067     size_t	slen;
1068 
1069     if (str == NULL)
1070 	return NULL;
1071     slen = STRLEN(str);
1072     start_byte = char_idx2byte(str, slen, first);
1073     if (start_byte < 0)
1074 	start_byte = 0; // first index very negative: use zero
1075     if ((last == -1 && !exclusive) || last == VARNUM_MAX)
1076 	end_byte = (long)slen;
1077     else
1078     {
1079 	end_byte = char_idx2byte(str, slen, last);
1080 	if (!exclusive && end_byte >= 0 && end_byte < (long)slen)
1081 	    // end index is inclusive
1082 	    end_byte += MB_CPTR2LEN(str + end_byte);
1083     }
1084 
1085     if (start_byte >= (long)slen || end_byte <= start_byte)
1086 	return NULL;
1087     return vim_strnsave(str + start_byte, end_byte - start_byte);
1088 }
1089 
1090     static svar_T *
1091 get_script_svar(scriptref_T *sref, ectx_T *ectx)
1092 {
1093     scriptitem_T    *si = SCRIPT_ITEM(sref->sref_sid);
1094     dfunc_T	    *dfunc = ((dfunc_T *)def_functions.ga_data)
1095 							  + ectx->ec_dfunc_idx;
1096     svar_T	    *sv;
1097 
1098     if (sref->sref_seq != si->sn_script_seq)
1099     {
1100 	// The script was reloaded after the function was
1101 	// compiled, the script_idx may not be valid.
1102 	semsg(_(e_script_variable_invalid_after_reload_in_function_str),
1103 						 dfunc->df_ufunc->uf_name_exp);
1104 	return NULL;
1105     }
1106     sv = ((svar_T *)si->sn_var_vals.ga_data) + sref->sref_idx;
1107     if (!equal_type(sv->sv_type, sref->sref_type))
1108     {
1109 	emsg(_(e_script_variable_type_changed));
1110 	return NULL;
1111     }
1112     return sv;
1113 }
1114 
1115 /*
1116  * Execute a function by "name".
1117  * This can be a builtin function, user function or a funcref.
1118  * "iptr" can be used to replace the instruction with a more efficient one.
1119  */
1120     static int
1121 call_eval_func(char_u *name, int argcount, ectx_T *ectx, isn_T *iptr)
1122 {
1123     int	    called_emsg_before = called_emsg;
1124     int	    res;
1125 
1126     res = call_by_name(name, argcount, ectx, iptr);
1127     if (res == FAIL && called_emsg == called_emsg_before)
1128     {
1129 	dictitem_T	*v;
1130 
1131 	v = find_var(name, NULL, FALSE);
1132 	if (v == NULL)
1133 	{
1134 	    semsg(_(e_unknownfunc), name);
1135 	    return FAIL;
1136 	}
1137 	if (v->di_tv.v_type != VAR_PARTIAL && v->di_tv.v_type != VAR_FUNC)
1138 	{
1139 	    semsg(_(e_unknownfunc), name);
1140 	    return FAIL;
1141 	}
1142 	return call_partial(&v->di_tv, argcount, ectx);
1143     }
1144     return res;
1145 }
1146 
1147 /*
1148  * When a function reference is used, fill a partial with the information
1149  * needed, especially when it is used as a closure.
1150  */
1151     int
1152 fill_partial_and_closure(partial_T *pt, ufunc_T *ufunc, ectx_T *ectx)
1153 {
1154     pt->pt_func = ufunc;
1155     pt->pt_refcount = 1;
1156 
1157     if (ufunc->uf_flags & FC_CLOSURE)
1158     {
1159 	dfunc_T	*dfunc = ((dfunc_T *)def_functions.ga_data)
1160 							  + ectx->ec_dfunc_idx;
1161 
1162 	// The closure needs to find arguments and local
1163 	// variables in the current stack.
1164 	pt->pt_outer.out_stack = &ectx->ec_stack;
1165 	pt->pt_outer.out_frame_idx = ectx->ec_frame_idx;
1166 	pt->pt_outer.out_up = ectx->ec_outer;
1167 	pt->pt_outer.out_up_is_copy = TRUE;
1168 
1169 	// If this function returns and the closure is still
1170 	// being used, we need to make a copy of the context
1171 	// (arguments and local variables). Store a reference
1172 	// to the partial so we can handle that.
1173 	if (ga_grow(&ectx->ec_funcrefs, 1) == FAIL)
1174 	{
1175 	    vim_free(pt);
1176 	    return FAIL;
1177 	}
1178 	// Extra variable keeps the count of closures created
1179 	// in the current function call.
1180 	++(((typval_T *)ectx->ec_stack.ga_data) + ectx->ec_frame_idx
1181 		       + STACK_FRAME_SIZE + dfunc->df_varcount)->vval.v_number;
1182 
1183 	((partial_T **)ectx->ec_funcrefs.ga_data)
1184 			       [ectx->ec_funcrefs.ga_len] = pt;
1185 	++pt->pt_refcount;
1186 	++ectx->ec_funcrefs.ga_len;
1187     }
1188     ++ufunc->uf_refcount;
1189     return OK;
1190 }
1191 
1192 
1193 /*
1194  * Call a "def" function from old Vim script.
1195  * Return OK or FAIL.
1196  */
1197     int
1198 call_def_function(
1199     ufunc_T	*ufunc,
1200     int		argc_arg,	// nr of arguments
1201     typval_T	*argv,		// arguments
1202     partial_T	*partial,	// optional partial for context
1203     typval_T	*rettv)		// return value
1204 {
1205     ectx_T	ectx;		// execution context
1206     int		argc = argc_arg;
1207     int		initial_frame_idx;
1208     typval_T	*tv;
1209     int		idx;
1210     int		ret = FAIL;
1211     int		defcount = ufunc->uf_args.ga_len - argc;
1212     sctx_T	save_current_sctx = current_sctx;
1213     int		breakcheck_count = 0;
1214     int		did_emsg_before = did_emsg_cumul + did_emsg;
1215     int		save_suppress_errthrow = suppress_errthrow;
1216     msglist_T	**saved_msg_list = NULL;
1217     msglist_T	*private_msg_list = NULL;
1218     cmdmod_T	save_cmdmod;
1219     int		restore_cmdmod = FALSE;
1220     int		restore_cmdmod_stacklen = 0;
1221     int		save_emsg_silent_def = emsg_silent_def;
1222     int		save_did_emsg_def = did_emsg_def;
1223     int		trylevel_at_start = trylevel;
1224     int		orig_funcdepth;
1225     where_T	where;
1226 
1227 // Get pointer to item in the stack.
1228 #define STACK_TV(idx) (((typval_T *)ectx.ec_stack.ga_data) + idx)
1229 
1230 // Get pointer to item at the bottom of the stack, -1 is the bottom.
1231 #undef STACK_TV_BOT
1232 #define STACK_TV_BOT(idx) (((typval_T *)ectx.ec_stack.ga_data) + ectx.ec_stack.ga_len + idx)
1233 
1234 // Get pointer to a local variable on the stack.  Negative for arguments.
1235 #define STACK_TV_VAR(idx) (((typval_T *)ectx.ec_stack.ga_data) + ectx.ec_frame_idx + STACK_FRAME_SIZE + idx)
1236 
1237     if (ufunc->uf_def_status == UF_NOT_COMPILED
1238 	    || (func_needs_compiling(ufunc, PROFILING(ufunc))
1239 		&& compile_def_function(ufunc, FALSE, PROFILING(ufunc), NULL)
1240 								      == FAIL))
1241     {
1242 	if (did_emsg_cumul + did_emsg == did_emsg_before)
1243 	    semsg(_(e_function_is_not_compiled_str),
1244 						   printable_func_name(ufunc));
1245 	return FAIL;
1246     }
1247 
1248     {
1249 	// Check the function was really compiled.
1250 	dfunc_T	*dfunc = ((dfunc_T *)def_functions.ga_data)
1251 							 + ufunc->uf_dfunc_idx;
1252 	if (INSTRUCTIONS(dfunc) == NULL)
1253 	{
1254 	    iemsg("using call_def_function() on not compiled function");
1255 	    return FAIL;
1256 	}
1257     }
1258 
1259     // If depth of calling is getting too high, don't execute the function.
1260     orig_funcdepth = funcdepth_get();
1261     if (funcdepth_increment() == FAIL)
1262 	return FAIL;
1263 
1264     CLEAR_FIELD(ectx);
1265     ectx.ec_dfunc_idx = ufunc->uf_dfunc_idx;
1266     ga_init2(&ectx.ec_stack, sizeof(typval_T), 500);
1267     if (ga_grow(&ectx.ec_stack, 20) == FAIL)
1268     {
1269 	funcdepth_decrement();
1270 	return FAIL;
1271     }
1272     ga_init2(&ectx.ec_trystack, sizeof(trycmd_T), 10);
1273     ga_init2(&ectx.ec_funcrefs, sizeof(partial_T *), 10);
1274 
1275     // Put arguments on the stack, but no more than what the function expects.
1276     // A lambda can be called with more arguments than it uses.
1277     for (idx = 0; idx < argc
1278 	    && (ufunc->uf_va_name != NULL || idx < ufunc->uf_args.ga_len);
1279 									 ++idx)
1280     {
1281 	if (ufunc->uf_arg_types != NULL && idx < ufunc->uf_args.ga_len
1282 		&& check_typval_arg_type(ufunc->uf_arg_types[idx], &argv[idx],
1283 							      idx + 1) == FAIL)
1284 	    goto failed_early;
1285 	copy_tv(&argv[idx], STACK_TV_BOT(0));
1286 	++ectx.ec_stack.ga_len;
1287     }
1288 
1289     // Turn varargs into a list.  Empty list if no args.
1290     if (ufunc->uf_va_name != NULL)
1291     {
1292 	int vararg_count = argc - ufunc->uf_args.ga_len;
1293 
1294 	if (vararg_count < 0)
1295 	    vararg_count = 0;
1296 	else
1297 	    argc -= vararg_count;
1298 	if (exe_newlist(vararg_count, &ectx) == FAIL)
1299 	    goto failed_early;
1300 
1301 	// Check the type of the list items.
1302 	tv = STACK_TV_BOT(-1);
1303 	if (ufunc->uf_va_type != NULL
1304 		&& ufunc->uf_va_type != &t_any
1305 		&& ufunc->uf_va_type->tt_member != &t_any
1306 		&& tv->vval.v_list != NULL)
1307 	{
1308 	    type_T	*expected = ufunc->uf_va_type->tt_member;
1309 	    listitem_T	*li = tv->vval.v_list->lv_first;
1310 
1311 	    for (idx = 0; idx < vararg_count; ++idx)
1312 	    {
1313 		if (check_typval_arg_type(expected, &li->li_tv,
1314 						       argc + idx + 1) == FAIL)
1315 		    goto failed_early;
1316 		li = li->li_next;
1317 	    }
1318 	}
1319 
1320 	if (defcount > 0)
1321 	    // Move varargs list to below missing default arguments.
1322 	    *STACK_TV_BOT(defcount - 1) = *STACK_TV_BOT(-1);
1323 	--ectx.ec_stack.ga_len;
1324     }
1325 
1326     // Make space for omitted arguments, will store default value below.
1327     // Any varargs list goes after them.
1328     if (defcount > 0)
1329 	for (idx = 0; idx < defcount; ++idx)
1330 	{
1331 	    STACK_TV_BOT(0)->v_type = VAR_UNKNOWN;
1332 	    ++ectx.ec_stack.ga_len;
1333 	}
1334     if (ufunc->uf_va_name != NULL)
1335 	    ++ectx.ec_stack.ga_len;
1336 
1337     // Frame pointer points to just after arguments.
1338     ectx.ec_frame_idx = ectx.ec_stack.ga_len;
1339     initial_frame_idx = ectx.ec_frame_idx;
1340 
1341     {
1342 	dfunc_T	*dfunc = ((dfunc_T *)def_functions.ga_data)
1343 							 + ufunc->uf_dfunc_idx;
1344 	ufunc_T *base_ufunc = dfunc->df_ufunc;
1345 
1346 	// "uf_partial" is on the ufunc that "df_ufunc" points to, as is done
1347 	// by copy_func().
1348 	if (partial != NULL || base_ufunc->uf_partial != NULL)
1349 	{
1350 	    ectx.ec_outer = ALLOC_CLEAR_ONE(outer_T);
1351 	    if (ectx.ec_outer == NULL)
1352 		goto failed_early;
1353 	    if (partial != NULL)
1354 	    {
1355 		if (partial->pt_outer.out_stack == NULL && current_ectx != NULL)
1356 		{
1357 		    if (current_ectx->ec_outer != NULL)
1358 			*ectx.ec_outer = *current_ectx->ec_outer;
1359 		}
1360 		else
1361 		    *ectx.ec_outer = partial->pt_outer;
1362 	    }
1363 	    else
1364 		*ectx.ec_outer = base_ufunc->uf_partial->pt_outer;
1365 	    ectx.ec_outer->out_up_is_copy = TRUE;
1366 	}
1367     }
1368 
1369     // dummy frame entries
1370     for (idx = 0; idx < STACK_FRAME_SIZE; ++idx)
1371     {
1372 	STACK_TV(ectx.ec_stack.ga_len)->v_type = VAR_UNKNOWN;
1373 	++ectx.ec_stack.ga_len;
1374     }
1375 
1376     {
1377 	// Reserve space for local variables and any closure reference count.
1378 	dfunc_T	*dfunc = ((dfunc_T *)def_functions.ga_data)
1379 							 + ufunc->uf_dfunc_idx;
1380 
1381 	for (idx = 0; idx < dfunc->df_varcount; ++idx)
1382 	    STACK_TV_VAR(idx)->v_type = VAR_UNKNOWN;
1383 	ectx.ec_stack.ga_len += dfunc->df_varcount;
1384 	if (dfunc->df_has_closure)
1385 	{
1386 	    STACK_TV_VAR(idx)->v_type = VAR_NUMBER;
1387 	    STACK_TV_VAR(idx)->vval.v_number = 0;
1388 	    ++ectx.ec_stack.ga_len;
1389 	}
1390 
1391 	ectx.ec_instr = INSTRUCTIONS(dfunc);
1392     }
1393 
1394     // Following errors are in the function, not the caller.
1395     // Commands behave like vim9script.
1396     estack_push_ufunc(ufunc, 1);
1397     current_sctx = ufunc->uf_script_ctx;
1398     current_sctx.sc_version = SCRIPT_VERSION_VIM9;
1399 
1400     // Use a specific location for storing error messages to be converted to an
1401     // exception.
1402     saved_msg_list = msg_list;
1403     msg_list = &private_msg_list;
1404 
1405     // Do turn errors into exceptions.
1406     suppress_errthrow = FALSE;
1407 
1408     // When ":silent!" was used before calling then we still abort the
1409     // function.  If ":silent!" is used in the function then we don't.
1410     emsg_silent_def = emsg_silent;
1411     did_emsg_def = 0;
1412 
1413     where.wt_index = 0;
1414     where.wt_variable = FALSE;
1415 
1416     // Decide where to start execution, handles optional arguments.
1417     init_instr_idx(ufunc, argc, &ectx);
1418 
1419     for (;;)
1420     {
1421 	isn_T	    *iptr;
1422 
1423 	if (++breakcheck_count >= 100)
1424 	{
1425 	    line_breakcheck();
1426 	    breakcheck_count = 0;
1427 	}
1428 	if (got_int)
1429 	{
1430 	    // Turn CTRL-C into an exception.
1431 	    got_int = FALSE;
1432 	    if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) == FAIL)
1433 		goto failed;
1434 	    did_throw = TRUE;
1435 	}
1436 
1437 	if (did_emsg && msg_list != NULL && *msg_list != NULL)
1438 	{
1439 	    // Turn an error message into an exception.
1440 	    did_emsg = FALSE;
1441 	    if (throw_exception(*msg_list, ET_ERROR, NULL) == FAIL)
1442 		goto failed;
1443 	    did_throw = TRUE;
1444 	    *msg_list = NULL;
1445 	}
1446 
1447 	if (did_throw && !ectx.ec_in_catch)
1448 	{
1449 	    garray_T	*trystack = &ectx.ec_trystack;
1450 	    trycmd_T    *trycmd = NULL;
1451 
1452 	    // An exception jumps to the first catch, finally, or returns from
1453 	    // the current function.
1454 	    if (trystack->ga_len > 0)
1455 		trycmd = ((trycmd_T *)trystack->ga_data) + trystack->ga_len - 1;
1456 	    if (trycmd != NULL && trycmd->tcd_frame_idx == ectx.ec_frame_idx)
1457 	    {
1458 		// jump to ":catch" or ":finally"
1459 		ectx.ec_in_catch = TRUE;
1460 		ectx.ec_iidx = trycmd->tcd_catch_idx;
1461 	    }
1462 	    else
1463 	    {
1464 		// Not inside try or need to return from current functions.
1465 		// Push a dummy return value.
1466 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1467 		    goto failed;
1468 		tv = STACK_TV_BOT(0);
1469 		tv->v_type = VAR_NUMBER;
1470 		tv->vval.v_number = 0;
1471 		++ectx.ec_stack.ga_len;
1472 		if (ectx.ec_frame_idx == initial_frame_idx)
1473 		{
1474 		    // At the toplevel we are done.
1475 		    need_rethrow = TRUE;
1476 		    if (handle_closure_in_use(&ectx, FALSE) == FAIL)
1477 			goto failed;
1478 		    goto done;
1479 		}
1480 
1481 		if (func_return(&ectx) == FAIL)
1482 		    goto failed;
1483 	    }
1484 	    continue;
1485 	}
1486 
1487 	iptr = &ectx.ec_instr[ectx.ec_iidx++];
1488 	switch (iptr->isn_type)
1489 	{
1490 	    // execute Ex command line
1491 	    case ISN_EXEC:
1492 		{
1493 		    source_cookie_T cookie;
1494 
1495 		    SOURCING_LNUM = iptr->isn_lnum;
1496 		    // Pass getsourceline to get an error for a missing ":end"
1497 		    // command.
1498 		    CLEAR_FIELD(cookie);
1499 		    cookie.sourcing_lnum = iptr->isn_lnum - 1;
1500 		    if (do_cmdline(iptr->isn_arg.string,
1501 				getsourceline, &cookie,
1502 				   DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED)
1503 									== FAIL
1504 				|| did_emsg)
1505 			goto on_error;
1506 		}
1507 		break;
1508 
1509 	    // execute Ex command from pieces on the stack
1510 	    case ISN_EXECCONCAT:
1511 		{
1512 		    int	    count = iptr->isn_arg.number;
1513 		    size_t  len = 0;
1514 		    int	    pass;
1515 		    int	    i;
1516 		    char_u  *cmd = NULL;
1517 		    char_u  *str;
1518 
1519 		    for (pass = 1; pass <= 2; ++pass)
1520 		    {
1521 			for (i = 0; i < count; ++i)
1522 			{
1523 			    tv = STACK_TV_BOT(i - count);
1524 			    str = tv->vval.v_string;
1525 			    if (str != NULL && *str != NUL)
1526 			    {
1527 				if (pass == 2)
1528 				    STRCPY(cmd + len, str);
1529 				len += STRLEN(str);
1530 			    }
1531 			    if (pass == 2)
1532 				clear_tv(tv);
1533 			}
1534 			if (pass == 1)
1535 			{
1536 			    cmd = alloc(len + 1);
1537 			    if (cmd == NULL)
1538 				goto failed;
1539 			    len = 0;
1540 			}
1541 		    }
1542 
1543 		    SOURCING_LNUM = iptr->isn_lnum;
1544 		    do_cmdline_cmd(cmd);
1545 		    vim_free(cmd);
1546 		}
1547 		break;
1548 
1549 	    // execute :echo {string} ...
1550 	    case ISN_ECHO:
1551 		{
1552 		    int count = iptr->isn_arg.echo.echo_count;
1553 		    int	atstart = TRUE;
1554 		    int needclr = TRUE;
1555 
1556 		    for (idx = 0; idx < count; ++idx)
1557 		    {
1558 			tv = STACK_TV_BOT(idx - count);
1559 			echo_one(tv, iptr->isn_arg.echo.echo_with_white,
1560 							   &atstart, &needclr);
1561 			clear_tv(tv);
1562 		    }
1563 		    if (needclr)
1564 			msg_clr_eos();
1565 		    ectx.ec_stack.ga_len -= count;
1566 		}
1567 		break;
1568 
1569 	    // :execute {string} ...
1570 	    // :echomsg {string} ...
1571 	    // :echoerr {string} ...
1572 	    case ISN_EXECUTE:
1573 	    case ISN_ECHOMSG:
1574 	    case ISN_ECHOERR:
1575 		{
1576 		    int		count = iptr->isn_arg.number;
1577 		    garray_T	ga;
1578 		    char_u	buf[NUMBUFLEN];
1579 		    char_u	*p;
1580 		    int		len;
1581 		    int		failed = FALSE;
1582 
1583 		    ga_init2(&ga, 1, 80);
1584 		    for (idx = 0; idx < count; ++idx)
1585 		    {
1586 			tv = STACK_TV_BOT(idx - count);
1587 			if (iptr->isn_type == ISN_EXECUTE)
1588 			{
1589 			    if (tv->v_type == VAR_CHANNEL
1590 						      || tv->v_type == VAR_JOB)
1591 			    {
1592 				SOURCING_LNUM = iptr->isn_lnum;
1593 				emsg(_(e_inval_string));
1594 				break;
1595 			    }
1596 			    else
1597 				p = tv_get_string_buf(tv, buf);
1598 			}
1599 			else
1600 			    p = tv_stringify(tv, buf);
1601 
1602 			len = (int)STRLEN(p);
1603 			if (ga_grow(&ga, len + 2) == FAIL)
1604 			    failed = TRUE;
1605 			else
1606 			{
1607 			    if (ga.ga_len > 0)
1608 				((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
1609 			    STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
1610 			    ga.ga_len += len;
1611 			}
1612 			clear_tv(tv);
1613 		    }
1614 		    ectx.ec_stack.ga_len -= count;
1615 		    if (failed)
1616 		    {
1617 			ga_clear(&ga);
1618 			goto on_error;
1619 		    }
1620 
1621 		    if (ga.ga_data != NULL)
1622 		    {
1623 			if (iptr->isn_type == ISN_EXECUTE)
1624 			{
1625 			    SOURCING_LNUM = iptr->isn_lnum;
1626 			    do_cmdline_cmd((char_u *)ga.ga_data);
1627 			    if (did_emsg)
1628 			    {
1629 				ga_clear(&ga);
1630 				goto on_error;
1631 			    }
1632 			}
1633 			else
1634 			{
1635 			    msg_sb_eol();
1636 			    if (iptr->isn_type == ISN_ECHOMSG)
1637 			    {
1638 				msg_attr(ga.ga_data, echo_attr);
1639 				out_flush();
1640 			    }
1641 			    else
1642 			    {
1643 				SOURCING_LNUM = iptr->isn_lnum;
1644 				emsg(ga.ga_data);
1645 			    }
1646 			}
1647 		    }
1648 		    ga_clear(&ga);
1649 		}
1650 		break;
1651 
1652 	    // load local variable or argument
1653 	    case ISN_LOAD:
1654 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1655 		    goto failed;
1656 		copy_tv(STACK_TV_VAR(iptr->isn_arg.number), STACK_TV_BOT(0));
1657 		++ectx.ec_stack.ga_len;
1658 		break;
1659 
1660 	    // load v: variable
1661 	    case ISN_LOADV:
1662 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1663 		    goto failed;
1664 		copy_tv(get_vim_var_tv(iptr->isn_arg.number), STACK_TV_BOT(0));
1665 		++ectx.ec_stack.ga_len;
1666 		break;
1667 
1668 	    // load s: variable in Vim9 script
1669 	    case ISN_LOADSCRIPT:
1670 		{
1671 		    scriptref_T	*sref = iptr->isn_arg.script.scriptref;
1672 		    svar_T	 *sv;
1673 
1674 		    sv = get_script_svar(sref, &ectx);
1675 		    if (sv == NULL)
1676 			goto failed;
1677 		    allocate_if_null(sv->sv_tv);
1678 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1679 			goto failed;
1680 		    copy_tv(sv->sv_tv, STACK_TV_BOT(0));
1681 		    ++ectx.ec_stack.ga_len;
1682 		}
1683 		break;
1684 
1685 	    // load s: variable in old script
1686 	    case ISN_LOADS:
1687 		{
1688 		    hashtab_T	*ht = &SCRIPT_VARS(
1689 					       iptr->isn_arg.loadstore.ls_sid);
1690 		    char_u	*name = iptr->isn_arg.loadstore.ls_name;
1691 		    dictitem_T	*di = find_var_in_ht(ht, 0, name, TRUE);
1692 
1693 		    if (di == NULL)
1694 		    {
1695 			SOURCING_LNUM = iptr->isn_lnum;
1696 			semsg(_(e_undefined_variable_str), name);
1697 			goto on_error;
1698 		    }
1699 		    else
1700 		    {
1701 			if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1702 			    goto failed;
1703 			copy_tv(&di->di_tv, STACK_TV_BOT(0));
1704 			++ectx.ec_stack.ga_len;
1705 		    }
1706 		}
1707 		break;
1708 
1709 	    // load g:/b:/w:/t: variable
1710 	    case ISN_LOADG:
1711 	    case ISN_LOADB:
1712 	    case ISN_LOADW:
1713 	    case ISN_LOADT:
1714 		{
1715 		    dictitem_T *di = NULL;
1716 		    hashtab_T *ht = NULL;
1717 		    char namespace;
1718 
1719 		    switch (iptr->isn_type)
1720 		    {
1721 			case ISN_LOADG:
1722 			    ht = get_globvar_ht();
1723 			    namespace = 'g';
1724 			    break;
1725 			case ISN_LOADB:
1726 			    ht = &curbuf->b_vars->dv_hashtab;
1727 			    namespace = 'b';
1728 			    break;
1729 			case ISN_LOADW:
1730 			    ht = &curwin->w_vars->dv_hashtab;
1731 			    namespace = 'w';
1732 			    break;
1733 			case ISN_LOADT:
1734 			    ht = &curtab->tp_vars->dv_hashtab;
1735 			    namespace = 't';
1736 			    break;
1737 			default:  // Cannot reach here
1738 			    goto failed;
1739 		    }
1740 		    di = find_var_in_ht(ht, 0, iptr->isn_arg.string, TRUE);
1741 
1742 		    if (di == NULL)
1743 		    {
1744 			SOURCING_LNUM = iptr->isn_lnum;
1745 			semsg(_(e_undefined_variable_char_str),
1746 					     namespace, iptr->isn_arg.string);
1747 			goto on_error;
1748 		    }
1749 		    else
1750 		    {
1751 			if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1752 			    goto failed;
1753 			copy_tv(&di->di_tv, STACK_TV_BOT(0));
1754 			++ectx.ec_stack.ga_len;
1755 		    }
1756 		}
1757 		break;
1758 
1759 	    // load autoload variable
1760 	    case ISN_LOADAUTO:
1761 		{
1762 		    char_u *name = iptr->isn_arg.string;
1763 
1764 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1765 			goto failed;
1766 		    SOURCING_LNUM = iptr->isn_lnum;
1767 		    if (eval_variable(name, (int)STRLEN(name),
1768 				  STACK_TV_BOT(0), NULL, TRUE, FALSE) == FAIL)
1769 			goto on_error;
1770 		    ++ectx.ec_stack.ga_len;
1771 		}
1772 		break;
1773 
1774 	    // load g:/b:/w:/t: namespace
1775 	    case ISN_LOADGDICT:
1776 	    case ISN_LOADBDICT:
1777 	    case ISN_LOADWDICT:
1778 	    case ISN_LOADTDICT:
1779 		{
1780 		    dict_T *d = NULL;
1781 
1782 		    switch (iptr->isn_type)
1783 		    {
1784 			case ISN_LOADGDICT: d = get_globvar_dict(); break;
1785 			case ISN_LOADBDICT: d = curbuf->b_vars; break;
1786 			case ISN_LOADWDICT: d = curwin->w_vars; break;
1787 			case ISN_LOADTDICT: d = curtab->tp_vars; break;
1788 			default:  // Cannot reach here
1789 			    goto failed;
1790 		    }
1791 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1792 			goto failed;
1793 		    tv = STACK_TV_BOT(0);
1794 		    tv->v_type = VAR_DICT;
1795 		    tv->v_lock = 0;
1796 		    tv->vval.v_dict = d;
1797 		    ++d->dv_refcount;
1798 		    ++ectx.ec_stack.ga_len;
1799 		}
1800 		break;
1801 
1802 	    // load &option
1803 	    case ISN_LOADOPT:
1804 		{
1805 		    typval_T	optval;
1806 		    char_u	*name = iptr->isn_arg.string;
1807 
1808 		    // This is not expected to fail, name is checked during
1809 		    // compilation: don't set SOURCING_LNUM.
1810 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1811 			goto failed;
1812 		    if (eval_option(&name, &optval, TRUE) == FAIL)
1813 			goto failed;
1814 		    *STACK_TV_BOT(0) = optval;
1815 		    ++ectx.ec_stack.ga_len;
1816 		}
1817 		break;
1818 
1819 	    // load $ENV
1820 	    case ISN_LOADENV:
1821 		{
1822 		    typval_T	optval;
1823 		    char_u	*name = iptr->isn_arg.string;
1824 
1825 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1826 			goto failed;
1827 		    // name is always valid, checked when compiling
1828 		    (void)eval_env_var(&name, &optval, TRUE);
1829 		    *STACK_TV_BOT(0) = optval;
1830 		    ++ectx.ec_stack.ga_len;
1831 		}
1832 		break;
1833 
1834 	    // load @register
1835 	    case ISN_LOADREG:
1836 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
1837 		    goto failed;
1838 		tv = STACK_TV_BOT(0);
1839 		tv->v_type = VAR_STRING;
1840 		tv->v_lock = 0;
1841 		// This may result in NULL, which should be equivalent to an
1842 		// empty string.
1843 		tv->vval.v_string = get_reg_contents(
1844 					  iptr->isn_arg.number, GREG_EXPR_SRC);
1845 		++ectx.ec_stack.ga_len;
1846 		break;
1847 
1848 	    // store local variable
1849 	    case ISN_STORE:
1850 		--ectx.ec_stack.ga_len;
1851 		tv = STACK_TV_VAR(iptr->isn_arg.number);
1852 		clear_tv(tv);
1853 		*tv = *STACK_TV_BOT(0);
1854 		break;
1855 
1856 	    // store s: variable in old script
1857 	    case ISN_STORES:
1858 		{
1859 		    hashtab_T	*ht = &SCRIPT_VARS(
1860 					       iptr->isn_arg.loadstore.ls_sid);
1861 		    char_u	*name = iptr->isn_arg.loadstore.ls_name;
1862 		    dictitem_T	*di = find_var_in_ht(ht, 0, name + 2, TRUE);
1863 
1864 		    --ectx.ec_stack.ga_len;
1865 		    if (di == NULL)
1866 			store_var(name, STACK_TV_BOT(0));
1867 		    else
1868 		    {
1869 			clear_tv(&di->di_tv);
1870 			di->di_tv = *STACK_TV_BOT(0);
1871 		    }
1872 		}
1873 		break;
1874 
1875 	    // store script-local variable in Vim9 script
1876 	    case ISN_STORESCRIPT:
1877 		{
1878 		    scriptref_T	    *sref = iptr->isn_arg.script.scriptref;
1879 		    svar_T	    *sv;
1880 
1881 		    sv = get_script_svar(sref, &ectx);
1882 		    if (sv == NULL)
1883 			goto failed;
1884 		    --ectx.ec_stack.ga_len;
1885 		    clear_tv(sv->sv_tv);
1886 		    *sv->sv_tv = *STACK_TV_BOT(0);
1887 		}
1888 		break;
1889 
1890 	    // store option
1891 	    case ISN_STOREOPT:
1892 		{
1893 		    long	n = 0;
1894 		    char_u	*s = NULL;
1895 		    char	*msg;
1896 
1897 		    --ectx.ec_stack.ga_len;
1898 		    tv = STACK_TV_BOT(0);
1899 		    if (tv->v_type == VAR_STRING)
1900 		    {
1901 			s = tv->vval.v_string;
1902 			if (s == NULL)
1903 			    s = (char_u *)"";
1904 		    }
1905 		    else
1906 			// must be VAR_NUMBER, CHECKTYPE makes sure
1907 			n = tv->vval.v_number;
1908 		    msg = set_option_value(iptr->isn_arg.storeopt.so_name,
1909 					n, s, iptr->isn_arg.storeopt.so_flags);
1910 		    clear_tv(tv);
1911 		    if (msg != NULL)
1912 		    {
1913 			SOURCING_LNUM = iptr->isn_lnum;
1914 			emsg(_(msg));
1915 			goto on_error;
1916 		    }
1917 		}
1918 		break;
1919 
1920 	    // store $ENV
1921 	    case ISN_STOREENV:
1922 		--ectx.ec_stack.ga_len;
1923 		tv = STACK_TV_BOT(0);
1924 		vim_setenv_ext(iptr->isn_arg.string, tv_get_string(tv));
1925 		clear_tv(tv);
1926 		break;
1927 
1928 	    // store @r
1929 	    case ISN_STOREREG:
1930 		{
1931 		    int	reg = iptr->isn_arg.number;
1932 
1933 		    --ectx.ec_stack.ga_len;
1934 		    tv = STACK_TV_BOT(0);
1935 		    write_reg_contents(reg == '@' ? '"' : reg,
1936 						 tv_get_string(tv), -1, FALSE);
1937 		    clear_tv(tv);
1938 		}
1939 		break;
1940 
1941 	    // store v: variable
1942 	    case ISN_STOREV:
1943 		--ectx.ec_stack.ga_len;
1944 		if (set_vim_var_tv(iptr->isn_arg.number, STACK_TV_BOT(0))
1945 								       == FAIL)
1946 		    // should not happen, type is checked when compiling
1947 		    goto on_error;
1948 		break;
1949 
1950 	    // store g:/b:/w:/t: variable
1951 	    case ISN_STOREG:
1952 	    case ISN_STOREB:
1953 	    case ISN_STOREW:
1954 	    case ISN_STORET:
1955 		{
1956 		    dictitem_T	*di;
1957 		    hashtab_T	*ht;
1958 		    char_u	*name = iptr->isn_arg.string + 2;
1959 
1960 		    switch (iptr->isn_type)
1961 		    {
1962 			case ISN_STOREG:
1963 			    ht = get_globvar_ht();
1964 			    break;
1965 			case ISN_STOREB:
1966 			    ht = &curbuf->b_vars->dv_hashtab;
1967 			    break;
1968 			case ISN_STOREW:
1969 			    ht = &curwin->w_vars->dv_hashtab;
1970 			    break;
1971 			case ISN_STORET:
1972 			    ht = &curtab->tp_vars->dv_hashtab;
1973 			    break;
1974 			default:  // Cannot reach here
1975 			    goto failed;
1976 		    }
1977 
1978 		    --ectx.ec_stack.ga_len;
1979 		    di = find_var_in_ht(ht, 0, name, TRUE);
1980 		    if (di == NULL)
1981 			store_var(iptr->isn_arg.string, STACK_TV_BOT(0));
1982 		    else
1983 		    {
1984 			SOURCING_LNUM = iptr->isn_lnum;
1985 			if (var_check_permission(di, name) == FAIL)
1986 			    goto on_error;
1987 			clear_tv(&di->di_tv);
1988 			di->di_tv = *STACK_TV_BOT(0);
1989 		    }
1990 		}
1991 		break;
1992 
1993 	    // store an autoload variable
1994 	    case ISN_STOREAUTO:
1995 		SOURCING_LNUM = iptr->isn_lnum;
1996 		set_var(iptr->isn_arg.string, STACK_TV_BOT(-1), TRUE);
1997 		clear_tv(STACK_TV_BOT(-1));
1998 		--ectx.ec_stack.ga_len;
1999 		break;
2000 
2001 	    // store number in local variable
2002 	    case ISN_STORENR:
2003 		tv = STACK_TV_VAR(iptr->isn_arg.storenr.stnr_idx);
2004 		clear_tv(tv);
2005 		tv->v_type = VAR_NUMBER;
2006 		tv->vval.v_number = iptr->isn_arg.storenr.stnr_val;
2007 		break;
2008 
2009 	    // store value in list or dict variable
2010 	    case ISN_STOREINDEX:
2011 		{
2012 		    vartype_T	dest_type = iptr->isn_arg.vartype;
2013 		    typval_T	*tv_idx = STACK_TV_BOT(-2);
2014 		    typval_T	*tv_dest = STACK_TV_BOT(-1);
2015 		    int		status = OK;
2016 
2017 		    // Stack contains:
2018 		    // -3 value to be stored
2019 		    // -2 index
2020 		    // -1 dict or list
2021 		    tv = STACK_TV_BOT(-3);
2022 		    SOURCING_LNUM = iptr->isn_lnum;
2023 		    if (dest_type == VAR_ANY)
2024 		    {
2025 			dest_type = tv_dest->v_type;
2026 			if (dest_type == VAR_DICT)
2027 			    status = do_2string(tv_idx, TRUE);
2028 			else if (dest_type == VAR_LIST
2029 					       && tv_idx->v_type != VAR_NUMBER)
2030 			{
2031 			    emsg(_(e_number_exp));
2032 			    status = FAIL;
2033 			}
2034 		    }
2035 		    else if (dest_type != tv_dest->v_type)
2036 		    {
2037 			// just in case, should be OK
2038 			semsg(_(e_expected_str_but_got_str),
2039 				    vartype_name(dest_type),
2040 				    vartype_name(tv_dest->v_type));
2041 			status = FAIL;
2042 		    }
2043 
2044 		    if (status == OK && dest_type == VAR_LIST)
2045 		    {
2046 			long	    lidx = (long)tv_idx->vval.v_number;
2047 			list_T	    *list = tv_dest->vval.v_list;
2048 
2049 			if (list == NULL)
2050 			{
2051 			    emsg(_(e_list_not_set));
2052 			    goto on_error;
2053 			}
2054 			if (lidx < 0 && list->lv_len + lidx >= 0)
2055 			    // negative index is relative to the end
2056 			    lidx = list->lv_len + lidx;
2057 			if (lidx < 0 || lidx > list->lv_len)
2058 			{
2059 			    semsg(_(e_listidx), lidx);
2060 			    goto on_error;
2061 			}
2062 			if (lidx < list->lv_len)
2063 			{
2064 			    listitem_T *li = list_find(list, lidx);
2065 
2066 			    if (error_if_locked(li->li_tv.v_lock,
2067 						    e_cannot_change_list_item))
2068 				goto on_error;
2069 			    // overwrite existing list item
2070 			    clear_tv(&li->li_tv);
2071 			    li->li_tv = *tv;
2072 			}
2073 			else
2074 			{
2075 			    if (error_if_locked(list->lv_lock,
2076 							 e_cannot_change_list))
2077 				goto on_error;
2078 			    // append to list, only fails when out of memory
2079 			    if (list_append_tv(list, tv) == FAIL)
2080 				goto failed;
2081 			    clear_tv(tv);
2082 			}
2083 		    }
2084 		    else if (status == OK && dest_type == VAR_DICT)
2085 		    {
2086 			char_u		*key = tv_idx->vval.v_string;
2087 			dict_T		*dict = tv_dest->vval.v_dict;
2088 			dictitem_T	*di;
2089 
2090 			SOURCING_LNUM = iptr->isn_lnum;
2091 			if (dict == NULL)
2092 			{
2093 			    emsg(_(e_dictionary_not_set));
2094 			    goto on_error;
2095 			}
2096 			if (key == NULL)
2097 			    key = (char_u *)"";
2098 			di = dict_find(dict, key, -1);
2099 			if (di != NULL)
2100 			{
2101 			    if (error_if_locked(di->di_tv.v_lock,
2102 						    e_cannot_change_dict_item))
2103 				goto on_error;
2104 			    // overwrite existing value
2105 			    clear_tv(&di->di_tv);
2106 			    di->di_tv = *tv;
2107 			}
2108 			else
2109 			{
2110 			    if (error_if_locked(dict->dv_lock,
2111 							 e_cannot_change_dict))
2112 				goto on_error;
2113 			    // add to dict, only fails when out of memory
2114 			    if (dict_add_tv(dict, (char *)key, tv) == FAIL)
2115 				goto failed;
2116 			    clear_tv(tv);
2117 			}
2118 		    }
2119 		    else
2120 		    {
2121 			status = FAIL;
2122 			semsg(_(e_cannot_index_str), vartype_name(dest_type));
2123 		    }
2124 
2125 		    clear_tv(tv_idx);
2126 		    clear_tv(tv_dest);
2127 		    ectx.ec_stack.ga_len -= 3;
2128 		    if (status == FAIL)
2129 		    {
2130 			clear_tv(tv);
2131 			goto on_error;
2132 		    }
2133 		}
2134 		break;
2135 
2136 	    // load or store variable or argument from outer scope
2137 	    case ISN_LOADOUTER:
2138 	    case ISN_STOREOUTER:
2139 		{
2140 		    int		depth = iptr->isn_arg.outer.outer_depth;
2141 		    outer_T	*outer = ectx.ec_outer;
2142 
2143 		    while (depth > 1 && outer != NULL)
2144 		    {
2145 			outer = outer->out_up;
2146 			--depth;
2147 		    }
2148 		    if (outer == NULL)
2149 		    {
2150 			SOURCING_LNUM = iptr->isn_lnum;
2151 			iemsg("LOADOUTER depth more than scope levels");
2152 			goto failed;
2153 		    }
2154 		    tv = ((typval_T *)outer->out_stack->ga_data)
2155 				    + outer->out_frame_idx + STACK_FRAME_SIZE
2156 				    + iptr->isn_arg.outer.outer_idx;
2157 		    if (iptr->isn_type == ISN_LOADOUTER)
2158 		    {
2159 			if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2160 			    goto failed;
2161 			copy_tv(tv, STACK_TV_BOT(0));
2162 			++ectx.ec_stack.ga_len;
2163 		    }
2164 		    else
2165 		    {
2166 			--ectx.ec_stack.ga_len;
2167 			clear_tv(tv);
2168 			*tv = *STACK_TV_BOT(0);
2169 		    }
2170 		}
2171 		break;
2172 
2173 	    // unlet item in list or dict variable
2174 	    case ISN_UNLETINDEX:
2175 		{
2176 		    typval_T	*tv_idx = STACK_TV_BOT(-2);
2177 		    typval_T	*tv_dest = STACK_TV_BOT(-1);
2178 		    int		status = OK;
2179 
2180 		    // Stack contains:
2181 		    // -2 index
2182 		    // -1 dict or list
2183 		    if (tv_dest->v_type == VAR_DICT)
2184 		    {
2185 			// unlet a dict item, index must be a string
2186 			if (tv_idx->v_type != VAR_STRING)
2187 			{
2188 			    SOURCING_LNUM = iptr->isn_lnum;
2189 			    semsg(_(e_expected_str_but_got_str),
2190 					vartype_name(VAR_STRING),
2191 					vartype_name(tv_idx->v_type));
2192 			    status = FAIL;
2193 			}
2194 			else
2195 			{
2196 			    dict_T	*d = tv_dest->vval.v_dict;
2197 			    char_u	*key = tv_idx->vval.v_string;
2198 			    dictitem_T  *di = NULL;
2199 
2200 			    if (key == NULL)
2201 				key = (char_u *)"";
2202 			    if (d != NULL)
2203 				di = dict_find(d, key, (int)STRLEN(key));
2204 			    if (di == NULL)
2205 			    {
2206 				// NULL dict is equivalent to empty dict
2207 				SOURCING_LNUM = iptr->isn_lnum;
2208 				semsg(_(e_dictkey), key);
2209 				status = FAIL;
2210 			    }
2211 			    else
2212 			    {
2213 				// TODO: check for dict or item locked
2214 				dictitem_remove(d, di);
2215 			    }
2216 			}
2217 		    }
2218 		    else if (tv_dest->v_type == VAR_LIST)
2219 		    {
2220 			// unlet a List item, index must be a number
2221 			SOURCING_LNUM = iptr->isn_lnum;
2222 			if (check_for_number(tv_idx) == FAIL)
2223 			{
2224 			    status = FAIL;
2225 			}
2226 			else
2227 			{
2228 			    list_T	*l = tv_dest->vval.v_list;
2229 			    long	n = (long)tv_idx->vval.v_number;
2230 			    listitem_T	*li = NULL;
2231 
2232 			    li = list_find(l, n);
2233 			    if (li == NULL)
2234 			    {
2235 				SOURCING_LNUM = iptr->isn_lnum;
2236 				semsg(_(e_listidx), n);
2237 				status = FAIL;
2238 			    }
2239 			    else
2240 				// TODO: check for list or item locked
2241 				listitem_remove(l, li);
2242 			}
2243 		    }
2244 		    else
2245 		    {
2246 			status = FAIL;
2247 			semsg(_(e_cannot_index_str),
2248 						vartype_name(tv_dest->v_type));
2249 		    }
2250 
2251 		    clear_tv(tv_idx);
2252 		    clear_tv(tv_dest);
2253 		    ectx.ec_stack.ga_len -= 2;
2254 		    if (status == FAIL)
2255 			goto on_error;
2256 		}
2257 		break;
2258 
2259 	    // unlet range of items in list variable
2260 	    case ISN_UNLETRANGE:
2261 		{
2262 		    // Stack contains:
2263 		    // -3 index1
2264 		    // -2 index2
2265 		    // -1 dict or list
2266 		    typval_T	*tv_idx1 = STACK_TV_BOT(-3);
2267 		    typval_T	*tv_idx2 = STACK_TV_BOT(-2);
2268 		    typval_T	*tv_dest = STACK_TV_BOT(-1);
2269 		    int		status = OK;
2270 
2271 		    if (tv_dest->v_type == VAR_LIST)
2272 		    {
2273 			// indexes must be a number
2274 			SOURCING_LNUM = iptr->isn_lnum;
2275 			if (check_for_number(tv_idx1) == FAIL
2276 				|| check_for_number(tv_idx2) == FAIL)
2277 			{
2278 			    status = FAIL;
2279 			}
2280 			else
2281 			{
2282 			    list_T	*l = tv_dest->vval.v_list;
2283 			    long	n1 = (long)tv_idx1->vval.v_number;
2284 			    long	n2 = (long)tv_idx2->vval.v_number;
2285 			    listitem_T	*li;
2286 
2287 			    li = list_find_index(l, &n1);
2288 			    if (li == NULL
2289 				     || list_unlet_range(l, li, NULL, n1,
2290 							    TRUE, n2) == FAIL)
2291 				status = FAIL;
2292 			}
2293 		    }
2294 		    else
2295 		    {
2296 			status = FAIL;
2297 			SOURCING_LNUM = iptr->isn_lnum;
2298 			semsg(_(e_cannot_index_str),
2299 						vartype_name(tv_dest->v_type));
2300 		    }
2301 
2302 		    clear_tv(tv_idx1);
2303 		    clear_tv(tv_idx2);
2304 		    clear_tv(tv_dest);
2305 		    ectx.ec_stack.ga_len -= 3;
2306 		    if (status == FAIL)
2307 			goto on_error;
2308 		}
2309 		break;
2310 
2311 	    // push constant
2312 	    case ISN_PUSHNR:
2313 	    case ISN_PUSHBOOL:
2314 	    case ISN_PUSHSPEC:
2315 	    case ISN_PUSHF:
2316 	    case ISN_PUSHS:
2317 	    case ISN_PUSHBLOB:
2318 	    case ISN_PUSHFUNC:
2319 	    case ISN_PUSHCHANNEL:
2320 	    case ISN_PUSHJOB:
2321 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2322 		    goto failed;
2323 		tv = STACK_TV_BOT(0);
2324 		tv->v_lock = 0;
2325 		++ectx.ec_stack.ga_len;
2326 		switch (iptr->isn_type)
2327 		{
2328 		    case ISN_PUSHNR:
2329 			tv->v_type = VAR_NUMBER;
2330 			tv->vval.v_number = iptr->isn_arg.number;
2331 			break;
2332 		    case ISN_PUSHBOOL:
2333 			tv->v_type = VAR_BOOL;
2334 			tv->vval.v_number = iptr->isn_arg.number;
2335 			break;
2336 		    case ISN_PUSHSPEC:
2337 			tv->v_type = VAR_SPECIAL;
2338 			tv->vval.v_number = iptr->isn_arg.number;
2339 			break;
2340 #ifdef FEAT_FLOAT
2341 		    case ISN_PUSHF:
2342 			tv->v_type = VAR_FLOAT;
2343 			tv->vval.v_float = iptr->isn_arg.fnumber;
2344 			break;
2345 #endif
2346 		    case ISN_PUSHBLOB:
2347 			blob_copy(iptr->isn_arg.blob, tv);
2348 			break;
2349 		    case ISN_PUSHFUNC:
2350 			tv->v_type = VAR_FUNC;
2351 			if (iptr->isn_arg.string == NULL)
2352 			    tv->vval.v_string = NULL;
2353 			else
2354 			    tv->vval.v_string =
2355 					     vim_strsave(iptr->isn_arg.string);
2356 			break;
2357 		    case ISN_PUSHCHANNEL:
2358 #ifdef FEAT_JOB_CHANNEL
2359 			tv->v_type = VAR_CHANNEL;
2360 			tv->vval.v_channel = iptr->isn_arg.channel;
2361 			if (tv->vval.v_channel != NULL)
2362 			    ++tv->vval.v_channel->ch_refcount;
2363 #endif
2364 			break;
2365 		    case ISN_PUSHJOB:
2366 #ifdef FEAT_JOB_CHANNEL
2367 			tv->v_type = VAR_JOB;
2368 			tv->vval.v_job = iptr->isn_arg.job;
2369 			if (tv->vval.v_job != NULL)
2370 			    ++tv->vval.v_job->jv_refcount;
2371 #endif
2372 			break;
2373 		    default:
2374 			tv->v_type = VAR_STRING;
2375 			tv->vval.v_string = vim_strsave(
2376 				iptr->isn_arg.string == NULL
2377 					? (char_u *)"" : iptr->isn_arg.string);
2378 		}
2379 		break;
2380 
2381 	    case ISN_UNLET:
2382 		if (do_unlet(iptr->isn_arg.unlet.ul_name,
2383 				       iptr->isn_arg.unlet.ul_forceit) == FAIL)
2384 		    goto on_error;
2385 		break;
2386 	    case ISN_UNLETENV:
2387 		vim_unsetenv(iptr->isn_arg.unlet.ul_name);
2388 		break;
2389 
2390 	    case ISN_LOCKCONST:
2391 		item_lock(STACK_TV_BOT(-1), 100, TRUE, TRUE);
2392 		break;
2393 
2394 	    // create a list from items on the stack; uses a single allocation
2395 	    // for the list header and the items
2396 	    case ISN_NEWLIST:
2397 		if (exe_newlist(iptr->isn_arg.number, &ectx) == FAIL)
2398 		    goto failed;
2399 		break;
2400 
2401 	    // create a dict from items on the stack
2402 	    case ISN_NEWDICT:
2403 		{
2404 		    int		count = iptr->isn_arg.number;
2405 		    dict_T	*dict = dict_alloc();
2406 		    dictitem_T	*item;
2407 		    char_u	*key;
2408 
2409 		    if (dict == NULL)
2410 			goto failed;
2411 		    for (idx = 0; idx < count; ++idx)
2412 		    {
2413 			// have already checked key type is VAR_STRING
2414 			tv = STACK_TV_BOT(2 * (idx - count));
2415 			// check key is unique
2416 			key = tv->vval.v_string == NULL
2417 					    ? (char_u *)"" : tv->vval.v_string;
2418 			item = dict_find(dict, key, -1);
2419 			if (item != NULL)
2420 			{
2421 			    SOURCING_LNUM = iptr->isn_lnum;
2422 			    semsg(_(e_duplicate_key), key);
2423 			    dict_unref(dict);
2424 			    goto on_error;
2425 			}
2426 			item = dictitem_alloc(key);
2427 			clear_tv(tv);
2428 			if (item == NULL)
2429 			{
2430 			    dict_unref(dict);
2431 			    goto failed;
2432 			}
2433 			item->di_tv = *STACK_TV_BOT(2 * (idx - count) + 1);
2434 			item->di_tv.v_lock = 0;
2435 			if (dict_add(dict, item) == FAIL)
2436 			{
2437 			    // can this ever happen?
2438 			    dict_unref(dict);
2439 			    goto failed;
2440 			}
2441 		    }
2442 
2443 		    if (count > 0)
2444 			ectx.ec_stack.ga_len -= 2 * count - 1;
2445 		    else if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2446 			goto failed;
2447 		    else
2448 			++ectx.ec_stack.ga_len;
2449 		    tv = STACK_TV_BOT(-1);
2450 		    tv->v_type = VAR_DICT;
2451 		    tv->v_lock = 0;
2452 		    tv->vval.v_dict = dict;
2453 		    ++dict->dv_refcount;
2454 		}
2455 		break;
2456 
2457 	    // call a :def function
2458 	    case ISN_DCALL:
2459 		SOURCING_LNUM = iptr->isn_lnum;
2460 		if (call_dfunc(iptr->isn_arg.dfunc.cdf_idx, NULL,
2461 			      iptr->isn_arg.dfunc.cdf_argcount,
2462 			      &ectx) == FAIL)
2463 		    goto on_error;
2464 		break;
2465 
2466 	    // call a builtin function
2467 	    case ISN_BCALL:
2468 		SOURCING_LNUM = iptr->isn_lnum;
2469 		if (call_bfunc(iptr->isn_arg.bfunc.cbf_idx,
2470 			      iptr->isn_arg.bfunc.cbf_argcount,
2471 			      &ectx) == FAIL)
2472 		    goto on_error;
2473 		break;
2474 
2475 	    // call a funcref or partial
2476 	    case ISN_PCALL:
2477 		{
2478 		    cpfunc_T	*pfunc = &iptr->isn_arg.pfunc;
2479 		    int		r;
2480 		    typval_T	partial_tv;
2481 
2482 		    SOURCING_LNUM = iptr->isn_lnum;
2483 		    if (pfunc->cpf_top)
2484 		    {
2485 			// funcref is above the arguments
2486 			tv = STACK_TV_BOT(-pfunc->cpf_argcount - 1);
2487 		    }
2488 		    else
2489 		    {
2490 			// Get the funcref from the stack.
2491 			--ectx.ec_stack.ga_len;
2492 			partial_tv = *STACK_TV_BOT(0);
2493 			tv = &partial_tv;
2494 		    }
2495 		    r = call_partial(tv, pfunc->cpf_argcount, &ectx);
2496 		    if (tv == &partial_tv)
2497 			clear_tv(&partial_tv);
2498 		    if (r == FAIL)
2499 			goto on_error;
2500 		}
2501 		break;
2502 
2503 	    case ISN_PCALL_END:
2504 		// PCALL finished, arguments have been consumed and replaced by
2505 		// the return value.  Now clear the funcref from the stack,
2506 		// and move the return value in its place.
2507 		--ectx.ec_stack.ga_len;
2508 		clear_tv(STACK_TV_BOT(-1));
2509 		*STACK_TV_BOT(-1) = *STACK_TV_BOT(0);
2510 		break;
2511 
2512 	    // call a user defined function or funcref/partial
2513 	    case ISN_UCALL:
2514 		{
2515 		    cufunc_T	*cufunc = &iptr->isn_arg.ufunc;
2516 
2517 		    SOURCING_LNUM = iptr->isn_lnum;
2518 		    if (call_eval_func(cufunc->cuf_name,
2519 				    cufunc->cuf_argcount, &ectx, iptr) == FAIL)
2520 			goto on_error;
2521 		}
2522 		break;
2523 
2524 	    // return from a :def function call
2525 	    case ISN_RETURN_ZERO:
2526 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2527 		    goto failed;
2528 		tv = STACK_TV_BOT(0);
2529 		++ectx.ec_stack.ga_len;
2530 		tv->v_type = VAR_NUMBER;
2531 		tv->vval.v_number = 0;
2532 		tv->v_lock = 0;
2533 		// FALLTHROUGH
2534 
2535 	    case ISN_RETURN:
2536 		{
2537 		    garray_T	*trystack = &ectx.ec_trystack;
2538 		    trycmd_T    *trycmd = NULL;
2539 
2540 		    if (trystack->ga_len > 0)
2541 			trycmd = ((trycmd_T *)trystack->ga_data)
2542 							+ trystack->ga_len - 1;
2543 		    if (trycmd != NULL
2544 				 && trycmd->tcd_frame_idx == ectx.ec_frame_idx)
2545 		    {
2546 			// jump to ":finally" or ":endtry"
2547 			if (trycmd->tcd_finally_idx != 0)
2548 			    ectx.ec_iidx = trycmd->tcd_finally_idx;
2549 			else
2550 			    ectx.ec_iidx = trycmd->tcd_endtry_idx;
2551 			trycmd->tcd_return = TRUE;
2552 		    }
2553 		    else
2554 			goto func_return;
2555 		}
2556 		break;
2557 
2558 	    // push a function reference to a compiled function
2559 	    case ISN_FUNCREF:
2560 		{
2561 		    partial_T   *pt = ALLOC_CLEAR_ONE(partial_T);
2562 		    dfunc_T	*pt_dfunc = ((dfunc_T *)def_functions.ga_data)
2563 					       + iptr->isn_arg.funcref.fr_func;
2564 
2565 		    if (pt == NULL)
2566 			goto failed;
2567 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2568 		    {
2569 			vim_free(pt);
2570 			goto failed;
2571 		    }
2572 		    if (fill_partial_and_closure(pt, pt_dfunc->df_ufunc,
2573 								&ectx) == FAIL)
2574 			goto failed;
2575 
2576 		    tv = STACK_TV_BOT(0);
2577 		    ++ectx.ec_stack.ga_len;
2578 		    tv->vval.v_partial = pt;
2579 		    tv->v_type = VAR_PARTIAL;
2580 		    tv->v_lock = 0;
2581 		}
2582 		break;
2583 
2584 	    // Create a global function from a lambda.
2585 	    case ISN_NEWFUNC:
2586 		{
2587 		    newfunc_T	*newfunc = &iptr->isn_arg.newfunc;
2588 
2589 		    if (copy_func(newfunc->nf_lambda, newfunc->nf_global,
2590 								&ectx) == FAIL)
2591 			goto failed;
2592 		}
2593 		break;
2594 
2595 	    // List functions
2596 	    case ISN_DEF:
2597 		if (iptr->isn_arg.string == NULL)
2598 		    list_functions(NULL);
2599 		else
2600 		{
2601 		    exarg_T ea;
2602 
2603 		    CLEAR_FIELD(ea);
2604 		    ea.cmd = ea.arg = iptr->isn_arg.string;
2605 		    define_function(&ea, NULL);
2606 		}
2607 		break;
2608 
2609 	    // jump if a condition is met
2610 	    case ISN_JUMP:
2611 		{
2612 		    jumpwhen_T	when = iptr->isn_arg.jump.jump_when;
2613 		    int		error = FALSE;
2614 		    int		jump = TRUE;
2615 
2616 		    if (when != JUMP_ALWAYS)
2617 		    {
2618 			tv = STACK_TV_BOT(-1);
2619 			if (when == JUMP_IF_COND_FALSE
2620 				|| when == JUMP_IF_FALSE
2621 				|| when == JUMP_IF_COND_TRUE)
2622 			{
2623 			    SOURCING_LNUM = iptr->isn_lnum;
2624 			    jump = tv_get_bool_chk(tv, &error);
2625 			    if (error)
2626 				goto on_error;
2627 			}
2628 			else
2629 			    jump = tv2bool(tv);
2630 			if (when == JUMP_IF_FALSE
2631 					     || when == JUMP_AND_KEEP_IF_FALSE
2632 					     || when == JUMP_IF_COND_FALSE)
2633 			    jump = !jump;
2634 			if (when == JUMP_IF_FALSE || !jump)
2635 			{
2636 			    // drop the value from the stack
2637 			    clear_tv(tv);
2638 			    --ectx.ec_stack.ga_len;
2639 			}
2640 		    }
2641 		    if (jump)
2642 			ectx.ec_iidx = iptr->isn_arg.jump.jump_where;
2643 		}
2644 		break;
2645 
2646 	    // top of a for loop
2647 	    case ISN_FOR:
2648 		{
2649 		    list_T	*list = STACK_TV_BOT(-1)->vval.v_list;
2650 		    typval_T	*idxtv =
2651 				   STACK_TV_VAR(iptr->isn_arg.forloop.for_idx);
2652 
2653 		    // push the next item from the list
2654 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2655 			goto failed;
2656 		    ++idxtv->vval.v_number;
2657 		    if (list == NULL || idxtv->vval.v_number >= list->lv_len)
2658 			// past the end of the list, jump to "endfor"
2659 			ectx.ec_iidx = iptr->isn_arg.forloop.for_end;
2660 		    else if (list->lv_first == &range_list_item)
2661 		    {
2662 			// non-materialized range() list
2663 			tv = STACK_TV_BOT(0);
2664 			tv->v_type = VAR_NUMBER;
2665 			tv->v_lock = 0;
2666 			tv->vval.v_number = list_find_nr(
2667 					     list, idxtv->vval.v_number, NULL);
2668 			++ectx.ec_stack.ga_len;
2669 		    }
2670 		    else
2671 		    {
2672 			listitem_T *li = list_find(list, idxtv->vval.v_number);
2673 
2674 			copy_tv(&li->li_tv, STACK_TV_BOT(0));
2675 			++ectx.ec_stack.ga_len;
2676 		    }
2677 		}
2678 		break;
2679 
2680 	    // start of ":try" block
2681 	    case ISN_TRY:
2682 		{
2683 		    trycmd_T    *trycmd = NULL;
2684 
2685 		    if (GA_GROW(&ectx.ec_trystack, 1) == FAIL)
2686 			goto failed;
2687 		    trycmd = ((trycmd_T *)ectx.ec_trystack.ga_data)
2688 						     + ectx.ec_trystack.ga_len;
2689 		    ++ectx.ec_trystack.ga_len;
2690 		    ++trylevel;
2691 		    CLEAR_POINTER(trycmd);
2692 		    trycmd->tcd_frame_idx = ectx.ec_frame_idx;
2693 		    trycmd->tcd_stack_len = ectx.ec_stack.ga_len;
2694 		    trycmd->tcd_catch_idx = iptr->isn_arg.try.try_ref->try_catch;
2695 		    trycmd->tcd_finally_idx = iptr->isn_arg.try.try_ref->try_finally;
2696 		    trycmd->tcd_endtry_idx = iptr->isn_arg.try.try_ref->try_endtry;
2697 		}
2698 		break;
2699 
2700 	    case ISN_PUSHEXC:
2701 		if (current_exception == NULL)
2702 		{
2703 		    SOURCING_LNUM = iptr->isn_lnum;
2704 		    iemsg("Evaluating catch while current_exception is NULL");
2705 		    goto failed;
2706 		}
2707 		if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
2708 		    goto failed;
2709 		tv = STACK_TV_BOT(0);
2710 		++ectx.ec_stack.ga_len;
2711 		tv->v_type = VAR_STRING;
2712 		tv->v_lock = 0;
2713 		tv->vval.v_string = vim_strsave(
2714 					   (char_u *)current_exception->value);
2715 		break;
2716 
2717 	    case ISN_CATCH:
2718 		{
2719 		    garray_T	*trystack = &ectx.ec_trystack;
2720 
2721 		    if (restore_cmdmod)
2722 		    {
2723 			cmdmod.cmod_filter_regmatch.regprog = NULL;
2724 			undo_cmdmod(&cmdmod);
2725 			cmdmod = save_cmdmod;
2726 			restore_cmdmod = FALSE;
2727 		    }
2728 		    if (trystack->ga_len > 0)
2729 		    {
2730 			trycmd_T    *trycmd = ((trycmd_T *)trystack->ga_data)
2731 							+ trystack->ga_len - 1;
2732 			trycmd->tcd_caught = TRUE;
2733 		    }
2734 		    did_emsg = got_int = did_throw = FALSE;
2735 		    force_abort = need_rethrow = FALSE;
2736 		    catch_exception(current_exception);
2737 		}
2738 		break;
2739 
2740 	    case ISN_TRYCONT:
2741 		{
2742 		    garray_T	*trystack = &ectx.ec_trystack;
2743 		    trycont_T	*trycont = &iptr->isn_arg.trycont;
2744 		    int		i;
2745 		    trycmd_T    *trycmd;
2746 		    int		iidx = trycont->tct_where;
2747 
2748 		    if (trystack->ga_len < trycont->tct_levels)
2749 		    {
2750 			siemsg("TRYCONT: expected %d levels, found %d",
2751 					trycont->tct_levels, trystack->ga_len);
2752 			goto failed;
2753 		    }
2754 		    // Make :endtry jump to any outer try block and the last
2755 		    // :endtry inside the loop to the loop start.
2756 		    for (i = trycont->tct_levels; i > 0; --i)
2757 		    {
2758 			trycmd = ((trycmd_T *)trystack->ga_data)
2759 							+ trystack->ga_len - i;
2760 			trycmd->tcd_cont = iidx;
2761 			iidx = trycmd->tcd_finally_idx == 0
2762 			    ? trycmd->tcd_endtry_idx : trycmd->tcd_finally_idx;
2763 		    }
2764 		    // jump to :finally or :endtry of current try statement
2765 		    ectx.ec_iidx = iidx;
2766 		}
2767 		break;
2768 
2769 	    case ISN_FINALLY:
2770 		{
2771 		    garray_T	*trystack = &ectx.ec_trystack;
2772 		    trycmd_T    *trycmd = ((trycmd_T *)trystack->ga_data)
2773 							+ trystack->ga_len - 1;
2774 
2775 		    // Reset the index to avoid a return statement jumps here
2776 		    // again.
2777 		    trycmd->tcd_finally_idx = 0;
2778 		    break;
2779 		}
2780 
2781 	    // end of ":try" block
2782 	    case ISN_ENDTRY:
2783 		{
2784 		    garray_T	*trystack = &ectx.ec_trystack;
2785 
2786 		    if (trystack->ga_len > 0)
2787 		    {
2788 			trycmd_T    *trycmd;
2789 
2790 			--trystack->ga_len;
2791 			--trylevel;
2792 			ectx.ec_in_catch = FALSE;
2793 			trycmd = ((trycmd_T *)trystack->ga_data)
2794 							    + trystack->ga_len;
2795 			if (trycmd->tcd_caught && current_exception != NULL)
2796 			{
2797 			    // discard the exception
2798 			    if (caught_stack == current_exception)
2799 				caught_stack = caught_stack->caught;
2800 			    discard_current_exception();
2801 			}
2802 
2803 			if (trycmd->tcd_return)
2804 			    goto func_return;
2805 
2806 			while (ectx.ec_stack.ga_len > trycmd->tcd_stack_len)
2807 			{
2808 			    --ectx.ec_stack.ga_len;
2809 			    clear_tv(STACK_TV_BOT(0));
2810 			}
2811 			if (trycmd->tcd_cont != 0)
2812 			    // handling :continue: jump to outer try block or
2813 			    // start of the loop
2814 			    ectx.ec_iidx = trycmd->tcd_cont;
2815 		    }
2816 		}
2817 		break;
2818 
2819 	    case ISN_THROW:
2820 		{
2821 		    garray_T	*trystack = &ectx.ec_trystack;
2822 
2823 		    if (trystack->ga_len == 0 && trylevel == 0 && emsg_silent)
2824 		    {
2825 			// throwing an exception while using "silent!" causes
2826 			// the function to abort but not display an error.
2827 			tv = STACK_TV_BOT(-1);
2828 			clear_tv(tv);
2829 			tv->v_type = VAR_NUMBER;
2830 			tv->vval.v_number = 0;
2831 			goto done;
2832 		    }
2833 		    --ectx.ec_stack.ga_len;
2834 		    tv = STACK_TV_BOT(0);
2835 		    if (tv->vval.v_string == NULL
2836 				       || *skipwhite(tv->vval.v_string) == NUL)
2837 		    {
2838 			vim_free(tv->vval.v_string);
2839 			SOURCING_LNUM = iptr->isn_lnum;
2840 			emsg(_(e_throw_with_empty_string));
2841 			goto failed;
2842 		    }
2843 
2844 		    // Inside a "catch" we need to first discard the caught
2845 		    // exception.
2846 		    if (trystack->ga_len > 0)
2847 		    {
2848 			trycmd_T    *trycmd = ((trycmd_T *)trystack->ga_data)
2849 							+ trystack->ga_len - 1;
2850 			if (trycmd->tcd_caught && current_exception != NULL)
2851 			{
2852 			    // discard the exception
2853 			    if (caught_stack == current_exception)
2854 				caught_stack = caught_stack->caught;
2855 			    discard_current_exception();
2856 			    trycmd->tcd_caught = FALSE;
2857 			}
2858 		    }
2859 
2860 		    if (throw_exception(tv->vval.v_string, ET_USER, NULL)
2861 								       == FAIL)
2862 		    {
2863 			vim_free(tv->vval.v_string);
2864 			goto failed;
2865 		    }
2866 		    did_throw = TRUE;
2867 		}
2868 		break;
2869 
2870 	    // compare with special values
2871 	    case ISN_COMPAREBOOL:
2872 	    case ISN_COMPARESPECIAL:
2873 		{
2874 		    typval_T	*tv1 = STACK_TV_BOT(-2);
2875 		    typval_T	*tv2 = STACK_TV_BOT(-1);
2876 		    varnumber_T arg1 = tv1->vval.v_number;
2877 		    varnumber_T arg2 = tv2->vval.v_number;
2878 		    int		res;
2879 
2880 		    switch (iptr->isn_arg.op.op_type)
2881 		    {
2882 			case EXPR_EQUAL: res = arg1 == arg2; break;
2883 			case EXPR_NEQUAL: res = arg1 != arg2; break;
2884 			default: res = 0; break;
2885 		    }
2886 
2887 		    --ectx.ec_stack.ga_len;
2888 		    tv1->v_type = VAR_BOOL;
2889 		    tv1->vval.v_number = res ? VVAL_TRUE : VVAL_FALSE;
2890 		}
2891 		break;
2892 
2893 	    // Operation with two number arguments
2894 	    case ISN_OPNR:
2895 	    case ISN_COMPARENR:
2896 		{
2897 		    typval_T	*tv1 = STACK_TV_BOT(-2);
2898 		    typval_T	*tv2 = STACK_TV_BOT(-1);
2899 		    varnumber_T arg1 = tv1->vval.v_number;
2900 		    varnumber_T arg2 = tv2->vval.v_number;
2901 		    varnumber_T res;
2902 
2903 		    switch (iptr->isn_arg.op.op_type)
2904 		    {
2905 			case EXPR_MULT: res = arg1 * arg2; break;
2906 			case EXPR_DIV: res = arg1 / arg2; break;
2907 			case EXPR_REM: res = arg1 % arg2; break;
2908 			case EXPR_SUB: res = arg1 - arg2; break;
2909 			case EXPR_ADD: res = arg1 + arg2; break;
2910 
2911 			case EXPR_EQUAL: res = arg1 == arg2; break;
2912 			case EXPR_NEQUAL: res = arg1 != arg2; break;
2913 			case EXPR_GREATER: res = arg1 > arg2; break;
2914 			case EXPR_GEQUAL: res = arg1 >= arg2; break;
2915 			case EXPR_SMALLER: res = arg1 < arg2; break;
2916 			case EXPR_SEQUAL: res = arg1 <= arg2; break;
2917 			default: res = 0; break;
2918 		    }
2919 
2920 		    --ectx.ec_stack.ga_len;
2921 		    if (iptr->isn_type == ISN_COMPARENR)
2922 		    {
2923 			tv1->v_type = VAR_BOOL;
2924 			tv1->vval.v_number = res ? VVAL_TRUE : VVAL_FALSE;
2925 		    }
2926 		    else
2927 			tv1->vval.v_number = res;
2928 		}
2929 		break;
2930 
2931 	    // Computation with two float arguments
2932 	    case ISN_OPFLOAT:
2933 	    case ISN_COMPAREFLOAT:
2934 #ifdef FEAT_FLOAT
2935 		{
2936 		    typval_T	*tv1 = STACK_TV_BOT(-2);
2937 		    typval_T	*tv2 = STACK_TV_BOT(-1);
2938 		    float_T	arg1 = tv1->vval.v_float;
2939 		    float_T	arg2 = tv2->vval.v_float;
2940 		    float_T	res = 0;
2941 		    int		cmp = FALSE;
2942 
2943 		    switch (iptr->isn_arg.op.op_type)
2944 		    {
2945 			case EXPR_MULT: res = arg1 * arg2; break;
2946 			case EXPR_DIV: res = arg1 / arg2; break;
2947 			case EXPR_SUB: res = arg1 - arg2; break;
2948 			case EXPR_ADD: res = arg1 + arg2; break;
2949 
2950 			case EXPR_EQUAL: cmp = arg1 == arg2; break;
2951 			case EXPR_NEQUAL: cmp = arg1 != arg2; break;
2952 			case EXPR_GREATER: cmp = arg1 > arg2; break;
2953 			case EXPR_GEQUAL: cmp = arg1 >= arg2; break;
2954 			case EXPR_SMALLER: cmp = arg1 < arg2; break;
2955 			case EXPR_SEQUAL: cmp = arg1 <= arg2; break;
2956 			default: cmp = 0; break;
2957 		    }
2958 		    --ectx.ec_stack.ga_len;
2959 		    if (iptr->isn_type == ISN_COMPAREFLOAT)
2960 		    {
2961 			tv1->v_type = VAR_BOOL;
2962 			tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE;
2963 		    }
2964 		    else
2965 			tv1->vval.v_float = res;
2966 		}
2967 #endif
2968 		break;
2969 
2970 	    case ISN_COMPARELIST:
2971 		{
2972 		    typval_T	*tv1 = STACK_TV_BOT(-2);
2973 		    typval_T	*tv2 = STACK_TV_BOT(-1);
2974 		    list_T	*arg1 = tv1->vval.v_list;
2975 		    list_T	*arg2 = tv2->vval.v_list;
2976 		    int		cmp = FALSE;
2977 		    int		ic = iptr->isn_arg.op.op_ic;
2978 
2979 		    switch (iptr->isn_arg.op.op_type)
2980 		    {
2981 			case EXPR_EQUAL: cmp =
2982 				      list_equal(arg1, arg2, ic, FALSE); break;
2983 			case EXPR_NEQUAL: cmp =
2984 				     !list_equal(arg1, arg2, ic, FALSE); break;
2985 			case EXPR_IS: cmp = arg1 == arg2; break;
2986 			case EXPR_ISNOT: cmp = arg1 != arg2; break;
2987 			default: cmp = 0; break;
2988 		    }
2989 		    --ectx.ec_stack.ga_len;
2990 		    clear_tv(tv1);
2991 		    clear_tv(tv2);
2992 		    tv1->v_type = VAR_BOOL;
2993 		    tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE;
2994 		}
2995 		break;
2996 
2997 	    case ISN_COMPAREBLOB:
2998 		{
2999 		    typval_T	*tv1 = STACK_TV_BOT(-2);
3000 		    typval_T	*tv2 = STACK_TV_BOT(-1);
3001 		    blob_T	*arg1 = tv1->vval.v_blob;
3002 		    blob_T	*arg2 = tv2->vval.v_blob;
3003 		    int		cmp = FALSE;
3004 
3005 		    switch (iptr->isn_arg.op.op_type)
3006 		    {
3007 			case EXPR_EQUAL: cmp = blob_equal(arg1, arg2); break;
3008 			case EXPR_NEQUAL: cmp = !blob_equal(arg1, arg2); break;
3009 			case EXPR_IS: cmp = arg1 == arg2; break;
3010 			case EXPR_ISNOT: cmp = arg1 != arg2; break;
3011 			default: cmp = 0; break;
3012 		    }
3013 		    --ectx.ec_stack.ga_len;
3014 		    clear_tv(tv1);
3015 		    clear_tv(tv2);
3016 		    tv1->v_type = VAR_BOOL;
3017 		    tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE;
3018 		}
3019 		break;
3020 
3021 		// TODO: handle separately
3022 	    case ISN_COMPARESTRING:
3023 	    case ISN_COMPAREDICT:
3024 	    case ISN_COMPAREFUNC:
3025 	    case ISN_COMPAREANY:
3026 		{
3027 		    typval_T	*tv1 = STACK_TV_BOT(-2);
3028 		    typval_T	*tv2 = STACK_TV_BOT(-1);
3029 		    exprtype_T	exprtype = iptr->isn_arg.op.op_type;
3030 		    int		ic = iptr->isn_arg.op.op_ic;
3031 
3032 		    SOURCING_LNUM = iptr->isn_lnum;
3033 		    typval_compare(tv1, tv2, exprtype, ic);
3034 		    clear_tv(tv2);
3035 		    --ectx.ec_stack.ga_len;
3036 		}
3037 		break;
3038 
3039 	    case ISN_ADDLIST:
3040 	    case ISN_ADDBLOB:
3041 		{
3042 		    typval_T *tv1 = STACK_TV_BOT(-2);
3043 		    typval_T *tv2 = STACK_TV_BOT(-1);
3044 
3045 		    // add two lists or blobs
3046 		    if (iptr->isn_type == ISN_ADDLIST)
3047 			eval_addlist(tv1, tv2);
3048 		    else
3049 			eval_addblob(tv1, tv2);
3050 		    clear_tv(tv2);
3051 		    --ectx.ec_stack.ga_len;
3052 		}
3053 		break;
3054 
3055 	    case ISN_LISTAPPEND:
3056 		{
3057 		    typval_T	*tv1 = STACK_TV_BOT(-2);
3058 		    typval_T	*tv2 = STACK_TV_BOT(-1);
3059 		    list_T	*l = tv1->vval.v_list;
3060 
3061 		    // add an item to a list
3062 		    if (l == NULL)
3063 		    {
3064 			SOURCING_LNUM = iptr->isn_lnum;
3065 			emsg(_(e_cannot_add_to_null_list));
3066 			goto on_error;
3067 		    }
3068 		    if (list_append_tv(l, tv2) == FAIL)
3069 			goto failed;
3070 		    clear_tv(tv2);
3071 		    --ectx.ec_stack.ga_len;
3072 		}
3073 		break;
3074 
3075 	    case ISN_BLOBAPPEND:
3076 		{
3077 		    typval_T	*tv1 = STACK_TV_BOT(-2);
3078 		    typval_T	*tv2 = STACK_TV_BOT(-1);
3079 		    blob_T	*b = tv1->vval.v_blob;
3080 		    int		error = FALSE;
3081 		    varnumber_T n;
3082 
3083 		    // add a number to a blob
3084 		    if (b == NULL)
3085 		    {
3086 			SOURCING_LNUM = iptr->isn_lnum;
3087 			emsg(_(e_cannot_add_to_null_blob));
3088 			goto on_error;
3089 		    }
3090 		    n = tv_get_number_chk(tv2, &error);
3091 		    if (error)
3092 			goto on_error;
3093 		    ga_append(&b->bv_ga, (int)n);
3094 		    --ectx.ec_stack.ga_len;
3095 		}
3096 		break;
3097 
3098 	    // Computation with two arguments of unknown type
3099 	    case ISN_OPANY:
3100 		{
3101 		    typval_T	*tv1 = STACK_TV_BOT(-2);
3102 		    typval_T	*tv2 = STACK_TV_BOT(-1);
3103 		    varnumber_T	n1, n2;
3104 #ifdef FEAT_FLOAT
3105 		    float_T	f1 = 0, f2 = 0;
3106 #endif
3107 		    int		error = FALSE;
3108 
3109 		    if (iptr->isn_arg.op.op_type == EXPR_ADD)
3110 		    {
3111 			if (tv1->v_type == VAR_LIST && tv2->v_type == VAR_LIST)
3112 			{
3113 			    eval_addlist(tv1, tv2);
3114 			    clear_tv(tv2);
3115 			    --ectx.ec_stack.ga_len;
3116 			    break;
3117 			}
3118 			else if (tv1->v_type == VAR_BLOB
3119 						    && tv2->v_type == VAR_BLOB)
3120 			{
3121 			    eval_addblob(tv1, tv2);
3122 			    clear_tv(tv2);
3123 			    --ectx.ec_stack.ga_len;
3124 			    break;
3125 			}
3126 		    }
3127 #ifdef FEAT_FLOAT
3128 		    if (tv1->v_type == VAR_FLOAT)
3129 		    {
3130 			f1 = tv1->vval.v_float;
3131 			n1 = 0;
3132 		    }
3133 		    else
3134 #endif
3135 		    {
3136 			SOURCING_LNUM = iptr->isn_lnum;
3137 			n1 = tv_get_number_chk(tv1, &error);
3138 			if (error)
3139 			    goto on_error;
3140 #ifdef FEAT_FLOAT
3141 			if (tv2->v_type == VAR_FLOAT)
3142 			    f1 = n1;
3143 #endif
3144 		    }
3145 #ifdef FEAT_FLOAT
3146 		    if (tv2->v_type == VAR_FLOAT)
3147 		    {
3148 			f2 = tv2->vval.v_float;
3149 			n2 = 0;
3150 		    }
3151 		    else
3152 #endif
3153 		    {
3154 			n2 = tv_get_number_chk(tv2, &error);
3155 			if (error)
3156 			    goto on_error;
3157 #ifdef FEAT_FLOAT
3158 			if (tv1->v_type == VAR_FLOAT)
3159 			    f2 = n2;
3160 #endif
3161 		    }
3162 #ifdef FEAT_FLOAT
3163 		    // if there is a float on either side the result is a float
3164 		    if (tv1->v_type == VAR_FLOAT || tv2->v_type == VAR_FLOAT)
3165 		    {
3166 			switch (iptr->isn_arg.op.op_type)
3167 			{
3168 			    case EXPR_MULT: f1 = f1 * f2; break;
3169 			    case EXPR_DIV:  f1 = f1 / f2; break;
3170 			    case EXPR_SUB:  f1 = f1 - f2; break;
3171 			    case EXPR_ADD:  f1 = f1 + f2; break;
3172 			    default: SOURCING_LNUM = iptr->isn_lnum;
3173 				     emsg(_(e_modulus));
3174 				     goto on_error;
3175 			}
3176 			clear_tv(tv1);
3177 			clear_tv(tv2);
3178 			tv1->v_type = VAR_FLOAT;
3179 			tv1->vval.v_float = f1;
3180 			--ectx.ec_stack.ga_len;
3181 		    }
3182 		    else
3183 #endif
3184 		    {
3185 			int failed = FALSE;
3186 
3187 			switch (iptr->isn_arg.op.op_type)
3188 			{
3189 			    case EXPR_MULT: n1 = n1 * n2; break;
3190 			    case EXPR_DIV:  n1 = num_divide(n1, n2, &failed);
3191 					    if (failed)
3192 						goto on_error;
3193 					    break;
3194 			    case EXPR_SUB:  n1 = n1 - n2; break;
3195 			    case EXPR_ADD:  n1 = n1 + n2; break;
3196 			    default:	    n1 = num_modulus(n1, n2, &failed);
3197 					    if (failed)
3198 						goto on_error;
3199 					    break;
3200 			}
3201 			clear_tv(tv1);
3202 			clear_tv(tv2);
3203 			tv1->v_type = VAR_NUMBER;
3204 			tv1->vval.v_number = n1;
3205 			--ectx.ec_stack.ga_len;
3206 		    }
3207 		}
3208 		break;
3209 
3210 	    case ISN_CONCAT:
3211 		{
3212 		    char_u *str1 = STACK_TV_BOT(-2)->vval.v_string;
3213 		    char_u *str2 = STACK_TV_BOT(-1)->vval.v_string;
3214 		    char_u *res;
3215 
3216 		    res = concat_str(str1, str2);
3217 		    clear_tv(STACK_TV_BOT(-2));
3218 		    clear_tv(STACK_TV_BOT(-1));
3219 		    --ectx.ec_stack.ga_len;
3220 		    STACK_TV_BOT(-1)->vval.v_string = res;
3221 		}
3222 		break;
3223 
3224 	    case ISN_STRINDEX:
3225 	    case ISN_STRSLICE:
3226 		{
3227 		    int		is_slice = iptr->isn_type == ISN_STRSLICE;
3228 		    varnumber_T	n1 = 0, n2;
3229 		    char_u	*res;
3230 
3231 		    // string index: string is at stack-2, index at stack-1
3232 		    // string slice: string is at stack-3, first index at
3233 		    // stack-2, second index at stack-1
3234 		    if (is_slice)
3235 		    {
3236 			tv = STACK_TV_BOT(-2);
3237 			n1 = tv->vval.v_number;
3238 		    }
3239 
3240 		    tv = STACK_TV_BOT(-1);
3241 		    n2 = tv->vval.v_number;
3242 
3243 		    ectx.ec_stack.ga_len -= is_slice ? 2 : 1;
3244 		    tv = STACK_TV_BOT(-1);
3245 		    if (is_slice)
3246 			// Slice: Select the characters from the string
3247 			res = string_slice(tv->vval.v_string, n1, n2, FALSE);
3248 		    else
3249 			// Index: The resulting variable is a string of a
3250 			// single character.  If the index is too big or
3251 			// negative the result is empty.
3252 			res = char_from_string(tv->vval.v_string, n2);
3253 		    vim_free(tv->vval.v_string);
3254 		    tv->vval.v_string = res;
3255 		}
3256 		break;
3257 
3258 	    case ISN_LISTINDEX:
3259 	    case ISN_LISTSLICE:
3260 		{
3261 		    int		is_slice = iptr->isn_type == ISN_LISTSLICE;
3262 		    list_T	*list;
3263 		    varnumber_T	n1, n2;
3264 
3265 		    // list index: list is at stack-2, index at stack-1
3266 		    // list slice: list is at stack-3, indexes at stack-2 and
3267 		    // stack-1
3268 		    tv = is_slice ? STACK_TV_BOT(-3) : STACK_TV_BOT(-2);
3269 		    list = tv->vval.v_list;
3270 
3271 		    tv = STACK_TV_BOT(-1);
3272 		    n1 = n2 = tv->vval.v_number;
3273 		    clear_tv(tv);
3274 
3275 		    if (is_slice)
3276 		    {
3277 			tv = STACK_TV_BOT(-2);
3278 			n1 = tv->vval.v_number;
3279 			clear_tv(tv);
3280 		    }
3281 
3282 		    ectx.ec_stack.ga_len -= is_slice ? 2 : 1;
3283 		    tv = STACK_TV_BOT(-1);
3284 		    SOURCING_LNUM = iptr->isn_lnum;
3285 		    if (list_slice_or_index(list, is_slice, n1, n2, FALSE,
3286 							     tv, TRUE) == FAIL)
3287 			goto on_error;
3288 		}
3289 		break;
3290 
3291 	    case ISN_ANYINDEX:
3292 	    case ISN_ANYSLICE:
3293 		{
3294 		    int		is_slice = iptr->isn_type == ISN_ANYSLICE;
3295 		    typval_T	*var1, *var2;
3296 		    int		res;
3297 
3298 		    // index: composite is at stack-2, index at stack-1
3299 		    // slice: composite is at stack-3, indexes at stack-2 and
3300 		    // stack-1
3301 		    tv = is_slice ? STACK_TV_BOT(-3) : STACK_TV_BOT(-2);
3302 		    SOURCING_LNUM = iptr->isn_lnum;
3303 		    if (check_can_index(tv, TRUE, TRUE) == FAIL)
3304 			goto on_error;
3305 		    var1 = is_slice ? STACK_TV_BOT(-2) : STACK_TV_BOT(-1);
3306 		    var2 = is_slice ? STACK_TV_BOT(-1) : NULL;
3307 		    res = eval_index_inner(tv, is_slice, var1, var2,
3308 							FALSE, NULL, -1, TRUE);
3309 		    clear_tv(var1);
3310 		    if (is_slice)
3311 			clear_tv(var2);
3312 		    ectx.ec_stack.ga_len -= is_slice ? 2 : 1;
3313 		    if (res == FAIL)
3314 			goto on_error;
3315 		}
3316 		break;
3317 
3318 	    case ISN_SLICE:
3319 		{
3320 		    list_T	*list;
3321 		    int		count = iptr->isn_arg.number;
3322 
3323 		    // type will have been checked to be a list
3324 		    tv = STACK_TV_BOT(-1);
3325 		    list = tv->vval.v_list;
3326 
3327 		    // no error for short list, expect it to be checked earlier
3328 		    if (list != NULL && list->lv_len >= count)
3329 		    {
3330 			list_T	*newlist = list_slice(list,
3331 						      count, list->lv_len - 1);
3332 
3333 			if (newlist != NULL)
3334 			{
3335 			    list_unref(list);
3336 			    tv->vval.v_list = newlist;
3337 			    ++newlist->lv_refcount;
3338 			}
3339 		    }
3340 		}
3341 		break;
3342 
3343 	    case ISN_GETITEM:
3344 		{
3345 		    listitem_T	*li;
3346 		    int		index = iptr->isn_arg.number;
3347 
3348 		    // Get list item: list is at stack-1, push item.
3349 		    // List type and length is checked for when compiling.
3350 		    tv = STACK_TV_BOT(-1);
3351 		    li = list_find(tv->vval.v_list, index);
3352 
3353 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
3354 			goto failed;
3355 		    ++ectx.ec_stack.ga_len;
3356 		    copy_tv(&li->li_tv, STACK_TV_BOT(-1));
3357 
3358 		    // Useful when used in unpack assignment.  Reset at
3359 		    // ISN_DROP.
3360 		    where.wt_index = index + 1;
3361 		    where.wt_variable = TRUE;
3362 		}
3363 		break;
3364 
3365 	    case ISN_MEMBER:
3366 		{
3367 		    dict_T	*dict;
3368 		    char_u	*key;
3369 		    dictitem_T	*di;
3370 		    typval_T	temp_tv;
3371 
3372 		    // dict member: dict is at stack-2, key at stack-1
3373 		    tv = STACK_TV_BOT(-2);
3374 		    // no need to check for VAR_DICT, CHECKTYPE will check.
3375 		    dict = tv->vval.v_dict;
3376 
3377 		    tv = STACK_TV_BOT(-1);
3378 		    // no need to check for VAR_STRING, 2STRING will check.
3379 		    key = tv->vval.v_string;
3380 		    if (key == NULL)
3381 			key = (char_u *)"";
3382 
3383 		    if ((di = dict_find(dict, key, -1)) == NULL)
3384 		    {
3385 			SOURCING_LNUM = iptr->isn_lnum;
3386 			semsg(_(e_dictkey), key);
3387 
3388 			// If :silent! is used we will continue, make sure the
3389 			// stack contents makes sense.
3390 			clear_tv(tv);
3391 			--ectx.ec_stack.ga_len;
3392 			tv = STACK_TV_BOT(-1);
3393 			clear_tv(tv);
3394 			tv->v_type = VAR_NUMBER;
3395 			tv->vval.v_number = 0;
3396 			goto on_fatal_error;
3397 		    }
3398 		    clear_tv(tv);
3399 		    --ectx.ec_stack.ga_len;
3400 		    // Clear the dict only after getting the item, to avoid
3401 		    // that it makes the item invalid.
3402 		    tv = STACK_TV_BOT(-1);
3403 		    temp_tv = *tv;
3404 		    copy_tv(&di->di_tv, tv);
3405 		    clear_tv(&temp_tv);
3406 		}
3407 		break;
3408 
3409 	    // dict member with string key
3410 	    case ISN_STRINGMEMBER:
3411 		{
3412 		    dict_T	*dict;
3413 		    dictitem_T	*di;
3414 		    typval_T	temp_tv;
3415 
3416 		    tv = STACK_TV_BOT(-1);
3417 		    if (tv->v_type != VAR_DICT || tv->vval.v_dict == NULL)
3418 		    {
3419 			SOURCING_LNUM = iptr->isn_lnum;
3420 			emsg(_(e_dictreq));
3421 			goto on_error;
3422 		    }
3423 		    dict = tv->vval.v_dict;
3424 
3425 		    if ((di = dict_find(dict, iptr->isn_arg.string, -1))
3426 								       == NULL)
3427 		    {
3428 			SOURCING_LNUM = iptr->isn_lnum;
3429 			semsg(_(e_dictkey), iptr->isn_arg.string);
3430 			goto on_error;
3431 		    }
3432 		    // Clear the dict after getting the item, to avoid that it
3433 		    // make the item invalid.
3434 		    temp_tv = *tv;
3435 		    copy_tv(&di->di_tv, tv);
3436 		    clear_tv(&temp_tv);
3437 		}
3438 		break;
3439 
3440 	    case ISN_NEGATENR:
3441 		tv = STACK_TV_BOT(-1);
3442 		if (tv->v_type != VAR_NUMBER
3443 #ifdef FEAT_FLOAT
3444 			&& tv->v_type != VAR_FLOAT
3445 #endif
3446 			)
3447 		{
3448 		    SOURCING_LNUM = iptr->isn_lnum;
3449 		    emsg(_(e_number_exp));
3450 		    goto on_error;
3451 		}
3452 #ifdef FEAT_FLOAT
3453 		if (tv->v_type == VAR_FLOAT)
3454 		    tv->vval.v_float = -tv->vval.v_float;
3455 		else
3456 #endif
3457 		    tv->vval.v_number = -tv->vval.v_number;
3458 		break;
3459 
3460 	    case ISN_CHECKNR:
3461 		{
3462 		    int		error = FALSE;
3463 
3464 		    tv = STACK_TV_BOT(-1);
3465 		    SOURCING_LNUM = iptr->isn_lnum;
3466 		    if (check_not_string(tv) == FAIL)
3467 			goto on_error;
3468 		    (void)tv_get_number_chk(tv, &error);
3469 		    if (error)
3470 			goto on_error;
3471 		}
3472 		break;
3473 
3474 	    case ISN_CHECKTYPE:
3475 		{
3476 		    checktype_T *ct = &iptr->isn_arg.type;
3477 
3478 		    tv = STACK_TV_BOT((int)ct->ct_off);
3479 		    SOURCING_LNUM = iptr->isn_lnum;
3480 		    if (!where.wt_variable)
3481 			where.wt_index = ct->ct_arg_idx;
3482 		    if (check_typval_type(ct->ct_type, tv, where) == FAIL)
3483 			goto on_error;
3484 		    if (!where.wt_variable)
3485 			where.wt_index = 0;
3486 
3487 		    // number 0 is FALSE, number 1 is TRUE
3488 		    if (tv->v_type == VAR_NUMBER
3489 			    && ct->ct_type->tt_type == VAR_BOOL
3490 			    && (tv->vval.v_number == 0
3491 						|| tv->vval.v_number == 1))
3492 		    {
3493 			tv->v_type = VAR_BOOL;
3494 			tv->vval.v_number = tv->vval.v_number
3495 						      ? VVAL_TRUE : VVAL_FALSE;
3496 		    }
3497 		}
3498 		break;
3499 
3500 	    case ISN_CHECKLEN:
3501 		{
3502 		    int	    min_len = iptr->isn_arg.checklen.cl_min_len;
3503 		    list_T  *list = NULL;
3504 
3505 		    tv = STACK_TV_BOT(-1);
3506 		    if (tv->v_type == VAR_LIST)
3507 			    list = tv->vval.v_list;
3508 		    if (list == NULL || list->lv_len < min_len
3509 			    || (list->lv_len > min_len
3510 					&& !iptr->isn_arg.checklen.cl_more_OK))
3511 		    {
3512 			SOURCING_LNUM = iptr->isn_lnum;
3513 			semsg(_(e_expected_nr_items_but_got_nr),
3514 				     min_len, list == NULL ? 0 : list->lv_len);
3515 			goto on_error;
3516 		    }
3517 		}
3518 		break;
3519 
3520 	    case ISN_SETTYPE:
3521 		{
3522 		    checktype_T *ct = &iptr->isn_arg.type;
3523 
3524 		    tv = STACK_TV_BOT(-1);
3525 		    if (tv->v_type == VAR_DICT && tv->vval.v_dict != NULL)
3526 		    {
3527 			free_type(tv->vval.v_dict->dv_type);
3528 			tv->vval.v_dict->dv_type = alloc_type(ct->ct_type);
3529 		    }
3530 		    else if (tv->v_type == VAR_LIST && tv->vval.v_list != NULL)
3531 		    {
3532 			free_type(tv->vval.v_list->lv_type);
3533 			tv->vval.v_list->lv_type = alloc_type(ct->ct_type);
3534 		    }
3535 		}
3536 		break;
3537 
3538 	    case ISN_2BOOL:
3539 	    case ISN_COND2BOOL:
3540 		{
3541 		    int n;
3542 		    int error = FALSE;
3543 
3544 		    tv = STACK_TV_BOT(-1);
3545 		    if (iptr->isn_type == ISN_2BOOL)
3546 		    {
3547 			n = tv2bool(tv);
3548 			if (iptr->isn_arg.number)  // invert
3549 			    n = !n;
3550 		    }
3551 		    else
3552 		    {
3553 			SOURCING_LNUM = iptr->isn_lnum;
3554 			n = tv_get_bool_chk(tv, &error);
3555 			if (error)
3556 			    goto on_error;
3557 		    }
3558 		    clear_tv(tv);
3559 		    tv->v_type = VAR_BOOL;
3560 		    tv->vval.v_number = n ? VVAL_TRUE : VVAL_FALSE;
3561 		}
3562 		break;
3563 
3564 	    case ISN_2STRING:
3565 	    case ISN_2STRING_ANY:
3566 		SOURCING_LNUM = iptr->isn_lnum;
3567 		if (do_2string(STACK_TV_BOT(iptr->isn_arg.number),
3568 			iptr->isn_type == ISN_2STRING_ANY) == FAIL)
3569 			    goto on_error;
3570 		break;
3571 
3572 	    case ISN_RANGE:
3573 		{
3574 		    exarg_T	ea;
3575 		    char	*errormsg;
3576 
3577 		    ea.line2 = 0;
3578 		    ea.addr_count = 0;
3579 		    ea.addr_type = ADDR_LINES;
3580 		    ea.cmd = iptr->isn_arg.string;
3581 		    ea.skip = FALSE;
3582 		    if (parse_cmd_address(&ea, &errormsg, FALSE) == FAIL)
3583 			goto on_error;
3584 
3585 		    if (GA_GROW(&ectx.ec_stack, 1) == FAIL)
3586 			goto failed;
3587 		    ++ectx.ec_stack.ga_len;
3588 		    tv = STACK_TV_BOT(-1);
3589 		    tv->v_type = VAR_NUMBER;
3590 		    tv->v_lock = 0;
3591 		    if (ea.addr_count == 0)
3592 			tv->vval.v_number = curwin->w_cursor.lnum;
3593 		    else
3594 			tv->vval.v_number = ea.line2;
3595 		}
3596 		break;
3597 
3598 	    case ISN_PUT:
3599 		{
3600 		    int		regname = iptr->isn_arg.put.put_regname;
3601 		    linenr_T	lnum = iptr->isn_arg.put.put_lnum;
3602 		    char_u	*expr = NULL;
3603 		    int		dir = FORWARD;
3604 
3605 		    if (lnum < -2)
3606 		    {
3607 			// line number was put on the stack by ISN_RANGE
3608 			tv = STACK_TV_BOT(-1);
3609 			curwin->w_cursor.lnum = tv->vval.v_number;
3610 			if (lnum == LNUM_VARIABLE_RANGE_ABOVE)
3611 			    dir = BACKWARD;
3612 			--ectx.ec_stack.ga_len;
3613 		    }
3614 		    else if (lnum == -2)
3615 			// :put! above cursor
3616 			dir = BACKWARD;
3617 		    else if (lnum >= 0)
3618 			curwin->w_cursor.lnum = iptr->isn_arg.put.put_lnum;
3619 
3620 		    if (regname == '=')
3621 		    {
3622 			tv = STACK_TV_BOT(-1);
3623 			if (tv->v_type == VAR_STRING)
3624 			    expr = tv->vval.v_string;
3625 			else
3626 			{
3627 			    expr = typval2string(tv, TRUE); // allocates value
3628 			    clear_tv(tv);
3629 			}
3630 			--ectx.ec_stack.ga_len;
3631 		    }
3632 		    check_cursor();
3633 		    do_put(regname, expr, dir, 1L, PUT_LINE|PUT_CURSLINE);
3634 		    vim_free(expr);
3635 		}
3636 		break;
3637 
3638 	    case ISN_CMDMOD:
3639 		save_cmdmod = cmdmod;
3640 		restore_cmdmod = TRUE;
3641 		restore_cmdmod_stacklen = ectx.ec_stack.ga_len;
3642 		cmdmod = *iptr->isn_arg.cmdmod.cf_cmdmod;
3643 		apply_cmdmod(&cmdmod);
3644 		break;
3645 
3646 	    case ISN_CMDMOD_REV:
3647 		// filter regprog is owned by the instruction, don't free it
3648 		cmdmod.cmod_filter_regmatch.regprog = NULL;
3649 		undo_cmdmod(&cmdmod);
3650 		cmdmod = save_cmdmod;
3651 		restore_cmdmod = FALSE;
3652 		break;
3653 
3654 	    case ISN_UNPACK:
3655 		{
3656 		    int		count = iptr->isn_arg.unpack.unp_count;
3657 		    int		semicolon = iptr->isn_arg.unpack.unp_semicolon;
3658 		    list_T	*l;
3659 		    listitem_T	*li;
3660 		    int		i;
3661 
3662 		    // Check there is a valid list to unpack.
3663 		    tv = STACK_TV_BOT(-1);
3664 		    if (tv->v_type != VAR_LIST)
3665 		    {
3666 			SOURCING_LNUM = iptr->isn_lnum;
3667 			emsg(_(e_for_argument_must_be_sequence_of_lists));
3668 			goto on_error;
3669 		    }
3670 		    l = tv->vval.v_list;
3671 		    if (l == NULL
3672 				|| l->lv_len < (semicolon ? count - 1 : count))
3673 		    {
3674 			SOURCING_LNUM = iptr->isn_lnum;
3675 			emsg(_(e_list_value_does_not_have_enough_items));
3676 			goto on_error;
3677 		    }
3678 		    else if (!semicolon && l->lv_len > count)
3679 		    {
3680 			SOURCING_LNUM = iptr->isn_lnum;
3681 			emsg(_(e_list_value_has_more_items_than_targets));
3682 			goto on_error;
3683 		    }
3684 
3685 		    CHECK_LIST_MATERIALIZE(l);
3686 		    if (GA_GROW(&ectx.ec_stack, count - 1) == FAIL)
3687 			goto failed;
3688 		    ectx.ec_stack.ga_len += count - 1;
3689 
3690 		    // Variable after semicolon gets a list with the remaining
3691 		    // items.
3692 		    if (semicolon)
3693 		    {
3694 			list_T	*rem_list =
3695 				  list_alloc_with_items(l->lv_len - count + 1);
3696 
3697 			if (rem_list == NULL)
3698 			    goto failed;
3699 			tv = STACK_TV_BOT(-count);
3700 			tv->vval.v_list = rem_list;
3701 			++rem_list->lv_refcount;
3702 			tv->v_lock = 0;
3703 			li = l->lv_first;
3704 			for (i = 0; i < count - 1; ++i)
3705 			    li = li->li_next;
3706 			for (i = 0; li != NULL; ++i)
3707 			{
3708 			    list_set_item(rem_list, i, &li->li_tv);
3709 			    li = li->li_next;
3710 			}
3711 			--count;
3712 		    }
3713 
3714 		    // Produce the values in reverse order, first item last.
3715 		    li = l->lv_first;
3716 		    for (i = 0; i < count; ++i)
3717 		    {
3718 			tv = STACK_TV_BOT(-i - 1);
3719 			copy_tv(&li->li_tv, tv);
3720 			li = li->li_next;
3721 		    }
3722 
3723 		    list_unref(l);
3724 		}
3725 		break;
3726 
3727 	    case ISN_PROF_START:
3728 	    case ISN_PROF_END:
3729 		{
3730 #ifdef FEAT_PROFILE
3731 		    funccall_T cookie;
3732 		    ufunc_T	    *cur_ufunc =
3733 				    (((dfunc_T *)def_functions.ga_data)
3734 						 + ectx.ec_dfunc_idx)->df_ufunc;
3735 
3736 		    cookie.func = cur_ufunc;
3737 		    if (iptr->isn_type == ISN_PROF_START)
3738 		    {
3739 			func_line_start(&cookie, iptr->isn_lnum);
3740 			// if we get here the instruction is executed
3741 			func_line_exec(&cookie);
3742 		    }
3743 		    else
3744 			func_line_end(&cookie);
3745 #endif
3746 		}
3747 		break;
3748 
3749 	    case ISN_SHUFFLE:
3750 		{
3751 		    typval_T	tmp_tv;
3752 		    int		item = iptr->isn_arg.shuffle.shfl_item;
3753 		    int		up = iptr->isn_arg.shuffle.shfl_up;
3754 
3755 		    tmp_tv = *STACK_TV_BOT(-item);
3756 		    for ( ; up > 0 && item > 1; --up)
3757 		    {
3758 			*STACK_TV_BOT(-item) = *STACK_TV_BOT(-item + 1);
3759 			--item;
3760 		    }
3761 		    *STACK_TV_BOT(-item) = tmp_tv;
3762 		}
3763 		break;
3764 
3765 	    case ISN_DROP:
3766 		--ectx.ec_stack.ga_len;
3767 		clear_tv(STACK_TV_BOT(0));
3768 		where.wt_index = 0;
3769 		where.wt_variable = FALSE;
3770 		break;
3771 	}
3772 	continue;
3773 
3774 func_return:
3775 	// Restore previous function. If the frame pointer is where we started
3776 	// then there is none and we are done.
3777 	if (ectx.ec_frame_idx == initial_frame_idx)
3778 	    goto done;
3779 
3780 	if (func_return(&ectx) == FAIL)
3781 	    // only fails when out of memory
3782 	    goto failed;
3783 	continue;
3784 
3785 on_error:
3786 	// Jump here for an error that does not require aborting execution.
3787 	// If "emsg_silent" is set then ignore the error, unless it was set
3788 	// when calling the function.
3789 	if (did_emsg_cumul + did_emsg == did_emsg_before
3790 					   && emsg_silent && did_emsg_def == 0)
3791 	{
3792 	    // If a sequence of instructions causes an error while ":silent!"
3793 	    // was used, restore the stack length and jump ahead to restoring
3794 	    // the cmdmod.
3795 	    if (restore_cmdmod)
3796 	    {
3797 		while (ectx.ec_stack.ga_len > restore_cmdmod_stacklen)
3798 		{
3799 		    --ectx.ec_stack.ga_len;
3800 		    clear_tv(STACK_TV_BOT(0));
3801 		}
3802 		while (ectx.ec_instr[ectx.ec_iidx].isn_type != ISN_CMDMOD_REV)
3803 		    ++ectx.ec_iidx;
3804 	    }
3805 	    continue;
3806 	}
3807 on_fatal_error:
3808 	// Jump here for an error that messes up the stack.
3809 	// If we are not inside a try-catch started here, abort execution.
3810 	if (trylevel <= trylevel_at_start)
3811 	    goto failed;
3812     }
3813 
3814 done:
3815     // function finished, get result from the stack.
3816     tv = STACK_TV_BOT(-1);
3817     *rettv = *tv;
3818     tv->v_type = VAR_UNKNOWN;
3819     ret = OK;
3820 
3821 failed:
3822     // When failed need to unwind the call stack.
3823     while (ectx.ec_frame_idx != initial_frame_idx)
3824 	func_return(&ectx);
3825 
3826     // Deal with any remaining closures, they may be in use somewhere.
3827     if (ectx.ec_funcrefs.ga_len > 0)
3828     {
3829 	handle_closure_in_use(&ectx, FALSE);
3830 	ga_clear(&ectx.ec_funcrefs);  // TODO: should not be needed?
3831     }
3832 
3833     estack_pop();
3834     current_sctx = save_current_sctx;
3835 
3836     if (*msg_list != NULL && saved_msg_list != NULL)
3837     {
3838 	msglist_T **plist = saved_msg_list;
3839 
3840 	// Append entries from the current msg_list (uncaught exceptions) to
3841 	// the saved msg_list.
3842 	while (*plist != NULL)
3843 	    plist = &(*plist)->next;
3844 
3845 	*plist = *msg_list;
3846     }
3847     msg_list = saved_msg_list;
3848 
3849     if (restore_cmdmod)
3850     {
3851 	cmdmod.cmod_filter_regmatch.regprog = NULL;
3852 	undo_cmdmod(&cmdmod);
3853 	cmdmod = save_cmdmod;
3854     }
3855     emsg_silent_def = save_emsg_silent_def;
3856     did_emsg_def += save_did_emsg_def;
3857 
3858 failed_early:
3859     // Free all local variables, but not arguments.
3860     for (idx = 0; idx < ectx.ec_stack.ga_len; ++idx)
3861 	clear_tv(STACK_TV(idx));
3862 
3863     vim_free(ectx.ec_stack.ga_data);
3864     vim_free(ectx.ec_trystack.ga_data);
3865 
3866     while (ectx.ec_outer != NULL)
3867     {
3868 	outer_T	    *up = ectx.ec_outer->out_up_is_copy
3869 						? NULL : ectx.ec_outer->out_up;
3870 
3871 	vim_free(ectx.ec_outer);
3872 	ectx.ec_outer = up;
3873     }
3874 
3875     // Not sure if this is necessary.
3876     suppress_errthrow = save_suppress_errthrow;
3877 
3878     if (ret != OK && did_emsg_cumul + did_emsg == did_emsg_before)
3879 	semsg(_(e_unknown_error_while_executing_str),
3880 						   printable_func_name(ufunc));
3881     funcdepth_restore(orig_funcdepth);
3882     return ret;
3883 }
3884 
3885 /*
3886  * ":disassemble".
3887  * We don't really need this at runtime, but we do have tests that require it,
3888  * so always include this.
3889  */
3890     void
3891 ex_disassemble(exarg_T *eap)
3892 {
3893     char_u	*arg = eap->arg;
3894     char_u	*fname;
3895     ufunc_T	*ufunc;
3896     dfunc_T	*dfunc;
3897     isn_T	*instr;
3898     int		instr_count;
3899     int		current;
3900     int		line_idx = 0;
3901     int		prev_current = 0;
3902     int		is_global = FALSE;
3903 
3904     if (STRNCMP(arg, "<lambda>", 8) == 0)
3905     {
3906 	arg += 8;
3907 	(void)getdigits(&arg);
3908 	fname = vim_strnsave(eap->arg, arg - eap->arg);
3909     }
3910     else
3911 	fname = trans_function_name(&arg, &is_global, FALSE,
3912 		      TFN_INT | TFN_QUIET | TFN_NO_AUTOLOAD, NULL, NULL, NULL);
3913     if (fname == NULL)
3914     {
3915 	semsg(_(e_invarg2), eap->arg);
3916 	return;
3917     }
3918 
3919     ufunc = find_func(fname, is_global, NULL);
3920     if (ufunc == NULL)
3921     {
3922 	char_u *p = untrans_function_name(fname);
3923 
3924 	if (p != NULL)
3925 	    // Try again without making it script-local.
3926 	    ufunc = find_func(p, FALSE, NULL);
3927     }
3928     vim_free(fname);
3929     if (ufunc == NULL)
3930     {
3931 	semsg(_(e_cannot_find_function_str), eap->arg);
3932 	return;
3933     }
3934     if (func_needs_compiling(ufunc, eap->forceit)
3935 	    && compile_def_function(ufunc, FALSE, eap->forceit, NULL) == FAIL)
3936 	return;
3937     if (ufunc->uf_def_status != UF_COMPILED)
3938     {
3939 	semsg(_(e_function_is_not_compiled_str), eap->arg);
3940 	return;
3941     }
3942     if (ufunc->uf_name_exp != NULL)
3943 	msg((char *)ufunc->uf_name_exp);
3944     else
3945 	msg((char *)ufunc->uf_name);
3946 
3947     dfunc = ((dfunc_T *)def_functions.ga_data) + ufunc->uf_dfunc_idx;
3948 #ifdef FEAT_PROFILE
3949     instr = eap->forceit ? dfunc->df_instr_prof : dfunc->df_instr;
3950     instr_count = eap->forceit ? dfunc->df_instr_prof_count
3951 						       : dfunc->df_instr_count;
3952 #else
3953     instr = dfunc->df_instr;
3954     instr_count = dfunc->df_instr_count;
3955 #endif
3956     for (current = 0; current < instr_count; ++current)
3957     {
3958 	isn_T	    *iptr = &instr[current];
3959 	char	    *line;
3960 
3961 	while (line_idx < iptr->isn_lnum && line_idx < ufunc->uf_lines.ga_len)
3962 	{
3963 	    if (current > prev_current)
3964 	    {
3965 		msg_puts("\n\n");
3966 		prev_current = current;
3967 	    }
3968 	    line = ((char **)ufunc->uf_lines.ga_data)[line_idx++];
3969 	    if (line != NULL)
3970 		msg(line);
3971 	}
3972 
3973 	switch (iptr->isn_type)
3974 	{
3975 	    case ISN_EXEC:
3976 		smsg("%4d EXEC %s", current, iptr->isn_arg.string);
3977 		break;
3978 	    case ISN_EXECCONCAT:
3979 		smsg("%4d EXECCONCAT %lld", current,
3980 					      (varnumber_T)iptr->isn_arg.number);
3981 		break;
3982 	    case ISN_ECHO:
3983 		{
3984 		    echo_T *echo = &iptr->isn_arg.echo;
3985 
3986 		    smsg("%4d %s %d", current,
3987 			    echo->echo_with_white ? "ECHO" : "ECHON",
3988 			    echo->echo_count);
3989 		}
3990 		break;
3991 	    case ISN_EXECUTE:
3992 		smsg("%4d EXECUTE %lld", current,
3993 					    (varnumber_T)(iptr->isn_arg.number));
3994 		break;
3995 	    case ISN_ECHOMSG:
3996 		smsg("%4d ECHOMSG %lld", current,
3997 					    (varnumber_T)(iptr->isn_arg.number));
3998 		break;
3999 	    case ISN_ECHOERR:
4000 		smsg("%4d ECHOERR %lld", current,
4001 					    (varnumber_T)(iptr->isn_arg.number));
4002 		break;
4003 	    case ISN_LOAD:
4004 		{
4005 		    if (iptr->isn_arg.number < 0)
4006 			smsg("%4d LOAD arg[%lld]", current,
4007 				(varnumber_T)(iptr->isn_arg.number
4008 							  + STACK_FRAME_SIZE));
4009 		    else
4010 			smsg("%4d LOAD $%lld", current,
4011 					  (varnumber_T)(iptr->isn_arg.number));
4012 		}
4013 		break;
4014 	    case ISN_LOADOUTER:
4015 		{
4016 		    if (iptr->isn_arg.number < 0)
4017 			smsg("%4d LOADOUTER level %d arg[%d]", current,
4018 				iptr->isn_arg.outer.outer_depth,
4019 				iptr->isn_arg.outer.outer_idx
4020 							  + STACK_FRAME_SIZE);
4021 		    else
4022 			smsg("%4d LOADOUTER level %d $%d", current,
4023 					      iptr->isn_arg.outer.outer_depth,
4024 					      iptr->isn_arg.outer.outer_idx);
4025 		}
4026 		break;
4027 	    case ISN_LOADV:
4028 		smsg("%4d LOADV v:%s", current,
4029 				       get_vim_var_name(iptr->isn_arg.number));
4030 		break;
4031 	    case ISN_LOADSCRIPT:
4032 		{
4033 		    scriptref_T	*sref = iptr->isn_arg.script.scriptref;
4034 		    scriptitem_T *si = SCRIPT_ITEM(sref->sref_sid);
4035 		    svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data)
4036 							      + sref->sref_idx;
4037 
4038 		    smsg("%4d LOADSCRIPT %s-%d from %s", current,
4039 					    sv->sv_name,
4040 					    sref->sref_idx,
4041 					    si->sn_name);
4042 		}
4043 		break;
4044 	    case ISN_LOADS:
4045 		{
4046 		    scriptitem_T *si = SCRIPT_ITEM(
4047 					       iptr->isn_arg.loadstore.ls_sid);
4048 
4049 		    smsg("%4d LOADS s:%s from %s", current,
4050 				 iptr->isn_arg.loadstore.ls_name, si->sn_name);
4051 		}
4052 		break;
4053 	    case ISN_LOADAUTO:
4054 		smsg("%4d LOADAUTO %s", current, iptr->isn_arg.string);
4055 		break;
4056 	    case ISN_LOADG:
4057 		smsg("%4d LOADG g:%s", current, iptr->isn_arg.string);
4058 		break;
4059 	    case ISN_LOADB:
4060 		smsg("%4d LOADB b:%s", current, iptr->isn_arg.string);
4061 		break;
4062 	    case ISN_LOADW:
4063 		smsg("%4d LOADW w:%s", current, iptr->isn_arg.string);
4064 		break;
4065 	    case ISN_LOADT:
4066 		smsg("%4d LOADT t:%s", current, iptr->isn_arg.string);
4067 		break;
4068 	    case ISN_LOADGDICT:
4069 		smsg("%4d LOAD g:", current);
4070 		break;
4071 	    case ISN_LOADBDICT:
4072 		smsg("%4d LOAD b:", current);
4073 		break;
4074 	    case ISN_LOADWDICT:
4075 		smsg("%4d LOAD w:", current);
4076 		break;
4077 	    case ISN_LOADTDICT:
4078 		smsg("%4d LOAD t:", current);
4079 		break;
4080 	    case ISN_LOADOPT:
4081 		smsg("%4d LOADOPT %s", current, iptr->isn_arg.string);
4082 		break;
4083 	    case ISN_LOADENV:
4084 		smsg("%4d LOADENV %s", current, iptr->isn_arg.string);
4085 		break;
4086 	    case ISN_LOADREG:
4087 		smsg("%4d LOADREG @%c", current, (int)(iptr->isn_arg.number));
4088 		break;
4089 
4090 	    case ISN_STORE:
4091 		if (iptr->isn_arg.number < 0)
4092 		    smsg("%4d STORE arg[%lld]", current,
4093 				      iptr->isn_arg.number + STACK_FRAME_SIZE);
4094 		else
4095 		    smsg("%4d STORE $%lld", current, iptr->isn_arg.number);
4096 		break;
4097 	    case ISN_STOREOUTER:
4098 		{
4099 		if (iptr->isn_arg.number < 0)
4100 		    smsg("%4d STOREOUTEr level %d arg[%d]", current,
4101 			    iptr->isn_arg.outer.outer_depth,
4102 			    iptr->isn_arg.outer.outer_idx + STACK_FRAME_SIZE);
4103 		else
4104 		    smsg("%4d STOREOUTER level %d $%d", current,
4105 			    iptr->isn_arg.outer.outer_depth,
4106 			    iptr->isn_arg.outer.outer_idx);
4107 		}
4108 		break;
4109 	    case ISN_STOREV:
4110 		smsg("%4d STOREV v:%s", current,
4111 				       get_vim_var_name(iptr->isn_arg.number));
4112 		break;
4113 	    case ISN_STOREAUTO:
4114 		smsg("%4d STOREAUTO %s", current, iptr->isn_arg.string);
4115 		break;
4116 	    case ISN_STOREG:
4117 		smsg("%4d STOREG %s", current, iptr->isn_arg.string);
4118 		break;
4119 	    case ISN_STOREB:
4120 		smsg("%4d STOREB %s", current, iptr->isn_arg.string);
4121 		break;
4122 	    case ISN_STOREW:
4123 		smsg("%4d STOREW %s", current, iptr->isn_arg.string);
4124 		break;
4125 	    case ISN_STORET:
4126 		smsg("%4d STORET %s", current, iptr->isn_arg.string);
4127 		break;
4128 	    case ISN_STORES:
4129 		{
4130 		    scriptitem_T *si = SCRIPT_ITEM(
4131 					       iptr->isn_arg.loadstore.ls_sid);
4132 
4133 		    smsg("%4d STORES %s in %s", current,
4134 				 iptr->isn_arg.loadstore.ls_name, si->sn_name);
4135 		}
4136 		break;
4137 	    case ISN_STORESCRIPT:
4138 		{
4139 		    scriptref_T	*sref = iptr->isn_arg.script.scriptref;
4140 		    scriptitem_T *si = SCRIPT_ITEM(sref->sref_sid);
4141 		    svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data)
4142 							      + sref->sref_idx;
4143 
4144 		    smsg("%4d STORESCRIPT %s-%d in %s", current,
4145 					     sv->sv_name,
4146 					     sref->sref_idx,
4147 					     si->sn_name);
4148 		}
4149 		break;
4150 	    case ISN_STOREOPT:
4151 		smsg("%4d STOREOPT &%s", current,
4152 					       iptr->isn_arg.storeopt.so_name);
4153 		break;
4154 	    case ISN_STOREENV:
4155 		smsg("%4d STOREENV $%s", current, iptr->isn_arg.string);
4156 		break;
4157 	    case ISN_STOREREG:
4158 		smsg("%4d STOREREG @%c", current, (int)iptr->isn_arg.number);
4159 		break;
4160 	    case ISN_STORENR:
4161 		smsg("%4d STORE %lld in $%d", current,
4162 				iptr->isn_arg.storenr.stnr_val,
4163 				iptr->isn_arg.storenr.stnr_idx);
4164 		break;
4165 
4166 	    case ISN_STOREINDEX:
4167 		switch (iptr->isn_arg.vartype)
4168 		{
4169 		    case VAR_LIST:
4170 			    smsg("%4d STORELIST", current);
4171 			    break;
4172 		    case VAR_DICT:
4173 			    smsg("%4d STOREDICT", current);
4174 			    break;
4175 		    case VAR_ANY:
4176 			    smsg("%4d STOREINDEX", current);
4177 			    break;
4178 		    default: break;
4179 		}
4180 		break;
4181 
4182 	    // constants
4183 	    case ISN_PUSHNR:
4184 		smsg("%4d PUSHNR %lld", current,
4185 					    (varnumber_T)(iptr->isn_arg.number));
4186 		break;
4187 	    case ISN_PUSHBOOL:
4188 	    case ISN_PUSHSPEC:
4189 		smsg("%4d PUSH %s", current,
4190 				   get_var_special_name(iptr->isn_arg.number));
4191 		break;
4192 	    case ISN_PUSHF:
4193 #ifdef FEAT_FLOAT
4194 		smsg("%4d PUSHF %g", current, iptr->isn_arg.fnumber);
4195 #endif
4196 		break;
4197 	    case ISN_PUSHS:
4198 		smsg("%4d PUSHS \"%s\"", current, iptr->isn_arg.string);
4199 		break;
4200 	    case ISN_PUSHBLOB:
4201 		{
4202 		    char_u	*r;
4203 		    char_u	numbuf[NUMBUFLEN];
4204 		    char_u	*tofree;
4205 
4206 		    r = blob2string(iptr->isn_arg.blob, &tofree, numbuf);
4207 		    smsg("%4d PUSHBLOB %s", current, r);
4208 		    vim_free(tofree);
4209 		}
4210 		break;
4211 	    case ISN_PUSHFUNC:
4212 		{
4213 		    char *name = (char *)iptr->isn_arg.string;
4214 
4215 		    smsg("%4d PUSHFUNC \"%s\"", current,
4216 					       name == NULL ? "[none]" : name);
4217 		}
4218 		break;
4219 	    case ISN_PUSHCHANNEL:
4220 #ifdef FEAT_JOB_CHANNEL
4221 		{
4222 		    channel_T *channel = iptr->isn_arg.channel;
4223 
4224 		    smsg("%4d PUSHCHANNEL %d", current,
4225 					 channel == NULL ? 0 : channel->ch_id);
4226 		}
4227 #endif
4228 		break;
4229 	    case ISN_PUSHJOB:
4230 #ifdef FEAT_JOB_CHANNEL
4231 		{
4232 		    typval_T	tv;
4233 		    char_u	*name;
4234 
4235 		    tv.v_type = VAR_JOB;
4236 		    tv.vval.v_job = iptr->isn_arg.job;
4237 		    name = tv_get_string(&tv);
4238 		    smsg("%4d PUSHJOB \"%s\"", current, name);
4239 		}
4240 #endif
4241 		break;
4242 	    case ISN_PUSHEXC:
4243 		smsg("%4d PUSH v:exception", current);
4244 		break;
4245 	    case ISN_UNLET:
4246 		smsg("%4d UNLET%s %s", current,
4247 			iptr->isn_arg.unlet.ul_forceit ? "!" : "",
4248 			iptr->isn_arg.unlet.ul_name);
4249 		break;
4250 	    case ISN_UNLETENV:
4251 		smsg("%4d UNLETENV%s $%s", current,
4252 			iptr->isn_arg.unlet.ul_forceit ? "!" : "",
4253 			iptr->isn_arg.unlet.ul_name);
4254 		break;
4255 	    case ISN_UNLETINDEX:
4256 		smsg("%4d UNLETINDEX", current);
4257 		break;
4258 	    case ISN_UNLETRANGE:
4259 		smsg("%4d UNLETRANGE", current);
4260 		break;
4261 	    case ISN_LOCKCONST:
4262 		smsg("%4d LOCKCONST", current);
4263 		break;
4264 	    case ISN_NEWLIST:
4265 		smsg("%4d NEWLIST size %lld", current,
4266 					    (varnumber_T)(iptr->isn_arg.number));
4267 		break;
4268 	    case ISN_NEWDICT:
4269 		smsg("%4d NEWDICT size %lld", current,
4270 					    (varnumber_T)(iptr->isn_arg.number));
4271 		break;
4272 
4273 	    // function call
4274 	    case ISN_BCALL:
4275 		{
4276 		    cbfunc_T	*cbfunc = &iptr->isn_arg.bfunc;
4277 
4278 		    smsg("%4d BCALL %s(argc %d)", current,
4279 			    internal_func_name(cbfunc->cbf_idx),
4280 			    cbfunc->cbf_argcount);
4281 		}
4282 		break;
4283 	    case ISN_DCALL:
4284 		{
4285 		    cdfunc_T	*cdfunc = &iptr->isn_arg.dfunc;
4286 		    dfunc_T	*df = ((dfunc_T *)def_functions.ga_data)
4287 							     + cdfunc->cdf_idx;
4288 
4289 		    smsg("%4d DCALL %s(argc %d)", current,
4290 			    df->df_ufunc->uf_name_exp != NULL
4291 				? df->df_ufunc->uf_name_exp
4292 				: df->df_ufunc->uf_name, cdfunc->cdf_argcount);
4293 		}
4294 		break;
4295 	    case ISN_UCALL:
4296 		{
4297 		    cufunc_T	*cufunc = &iptr->isn_arg.ufunc;
4298 
4299 		    smsg("%4d UCALL %s(argc %d)", current,
4300 				       cufunc->cuf_name, cufunc->cuf_argcount);
4301 		}
4302 		break;
4303 	    case ISN_PCALL:
4304 		{
4305 		    cpfunc_T	*cpfunc = &iptr->isn_arg.pfunc;
4306 
4307 		    smsg("%4d PCALL%s (argc %d)", current,
4308 			   cpfunc->cpf_top ? " top" : "", cpfunc->cpf_argcount);
4309 		}
4310 		break;
4311 	    case ISN_PCALL_END:
4312 		smsg("%4d PCALL end", current);
4313 		break;
4314 	    case ISN_RETURN:
4315 		smsg("%4d RETURN", current);
4316 		break;
4317 	    case ISN_RETURN_ZERO:
4318 		smsg("%4d RETURN 0", current);
4319 		break;
4320 	    case ISN_FUNCREF:
4321 		{
4322 		    funcref_T	*funcref = &iptr->isn_arg.funcref;
4323 		    dfunc_T	*df = ((dfunc_T *)def_functions.ga_data)
4324 							    + funcref->fr_func;
4325 
4326 		    smsg("%4d FUNCREF %s", current, df->df_ufunc->uf_name);
4327 		}
4328 		break;
4329 
4330 	    case ISN_NEWFUNC:
4331 		{
4332 		    newfunc_T	*newfunc = &iptr->isn_arg.newfunc;
4333 
4334 		    smsg("%4d NEWFUNC %s %s", current,
4335 				       newfunc->nf_lambda, newfunc->nf_global);
4336 		}
4337 		break;
4338 
4339 	    case ISN_DEF:
4340 		{
4341 		    char_u *name = iptr->isn_arg.string;
4342 
4343 		    smsg("%4d DEF %s", current,
4344 					   name == NULL ? (char_u *)"" : name);
4345 		}
4346 		break;
4347 
4348 	    case ISN_JUMP:
4349 		{
4350 		    char *when = "?";
4351 
4352 		    switch (iptr->isn_arg.jump.jump_when)
4353 		    {
4354 			case JUMP_ALWAYS:
4355 			    when = "JUMP";
4356 			    break;
4357 			case JUMP_AND_KEEP_IF_TRUE:
4358 			    when = "JUMP_AND_KEEP_IF_TRUE";
4359 			    break;
4360 			case JUMP_IF_FALSE:
4361 			    when = "JUMP_IF_FALSE";
4362 			    break;
4363 			case JUMP_AND_KEEP_IF_FALSE:
4364 			    when = "JUMP_AND_KEEP_IF_FALSE";
4365 			    break;
4366 			case JUMP_IF_COND_FALSE:
4367 			    when = "JUMP_IF_COND_FALSE";
4368 			    break;
4369 			case JUMP_IF_COND_TRUE:
4370 			    when = "JUMP_IF_COND_TRUE";
4371 			    break;
4372 		    }
4373 		    smsg("%4d %s -> %d", current, when,
4374 						iptr->isn_arg.jump.jump_where);
4375 		}
4376 		break;
4377 
4378 	    case ISN_FOR:
4379 		{
4380 		    forloop_T *forloop = &iptr->isn_arg.forloop;
4381 
4382 		    smsg("%4d FOR $%d -> %d", current,
4383 					   forloop->for_idx, forloop->for_end);
4384 		}
4385 		break;
4386 
4387 	    case ISN_TRY:
4388 		{
4389 		    try_T *try = &iptr->isn_arg.try;
4390 
4391 		    if (try->try_ref->try_finally == 0)
4392 			smsg("%4d TRY catch -> %d, endtry -> %d",
4393 				current,
4394 				try->try_ref->try_catch,
4395 				try->try_ref->try_endtry);
4396 		    else
4397 			smsg("%4d TRY catch -> %d, finally -> %d, endtry -> %d",
4398 				current,
4399 				try->try_ref->try_catch,
4400 				try->try_ref->try_finally,
4401 				try->try_ref->try_endtry);
4402 		}
4403 		break;
4404 	    case ISN_CATCH:
4405 		// TODO
4406 		smsg("%4d CATCH", current);
4407 		break;
4408 	    case ISN_TRYCONT:
4409 		{
4410 		    trycont_T *trycont = &iptr->isn_arg.trycont;
4411 
4412 		    smsg("%4d TRY-CONTINUE %d level%s -> %d", current,
4413 				      trycont->tct_levels,
4414 				      trycont->tct_levels == 1 ? "" : "s",
4415 				      trycont->tct_where);
4416 		}
4417 		break;
4418 	    case ISN_FINALLY:
4419 		smsg("%4d FINALLY", current);
4420 		break;
4421 	    case ISN_ENDTRY:
4422 		smsg("%4d ENDTRY", current);
4423 		break;
4424 	    case ISN_THROW:
4425 		smsg("%4d THROW", current);
4426 		break;
4427 
4428 	    // expression operations on number
4429 	    case ISN_OPNR:
4430 	    case ISN_OPFLOAT:
4431 	    case ISN_OPANY:
4432 		{
4433 		    char *what;
4434 		    char *ins;
4435 
4436 		    switch (iptr->isn_arg.op.op_type)
4437 		    {
4438 			case EXPR_MULT: what = "*"; break;
4439 			case EXPR_DIV: what = "/"; break;
4440 			case EXPR_REM: what = "%"; break;
4441 			case EXPR_SUB: what = "-"; break;
4442 			case EXPR_ADD: what = "+"; break;
4443 			default:       what = "???"; break;
4444 		    }
4445 		    switch (iptr->isn_type)
4446 		    {
4447 			case ISN_OPNR: ins = "OPNR"; break;
4448 			case ISN_OPFLOAT: ins = "OPFLOAT"; break;
4449 			case ISN_OPANY: ins = "OPANY"; break;
4450 			default: ins = "???"; break;
4451 		    }
4452 		    smsg("%4d %s %s", current, ins, what);
4453 		}
4454 		break;
4455 
4456 	    case ISN_COMPAREBOOL:
4457 	    case ISN_COMPARESPECIAL:
4458 	    case ISN_COMPARENR:
4459 	    case ISN_COMPAREFLOAT:
4460 	    case ISN_COMPARESTRING:
4461 	    case ISN_COMPAREBLOB:
4462 	    case ISN_COMPARELIST:
4463 	    case ISN_COMPAREDICT:
4464 	    case ISN_COMPAREFUNC:
4465 	    case ISN_COMPAREANY:
4466 		   {
4467 		       char *p;
4468 		       char buf[10];
4469 		       char *type;
4470 
4471 		       switch (iptr->isn_arg.op.op_type)
4472 		       {
4473 			   case EXPR_EQUAL:	 p = "=="; break;
4474 			   case EXPR_NEQUAL:    p = "!="; break;
4475 			   case EXPR_GREATER:   p = ">"; break;
4476 			   case EXPR_GEQUAL:    p = ">="; break;
4477 			   case EXPR_SMALLER:   p = "<"; break;
4478 			   case EXPR_SEQUAL:    p = "<="; break;
4479 			   case EXPR_MATCH:	 p = "=~"; break;
4480 			   case EXPR_IS:	 p = "is"; break;
4481 			   case EXPR_ISNOT:	 p = "isnot"; break;
4482 			   case EXPR_NOMATCH:	 p = "!~"; break;
4483 			   default:  p = "???"; break;
4484 		       }
4485 		       STRCPY(buf, p);
4486 		       if (iptr->isn_arg.op.op_ic == TRUE)
4487 			   strcat(buf, "?");
4488 		       switch(iptr->isn_type)
4489 		       {
4490 			   case ISN_COMPAREBOOL: type = "COMPAREBOOL"; break;
4491 			   case ISN_COMPARESPECIAL:
4492 						 type = "COMPARESPECIAL"; break;
4493 			   case ISN_COMPARENR: type = "COMPARENR"; break;
4494 			   case ISN_COMPAREFLOAT: type = "COMPAREFLOAT"; break;
4495 			   case ISN_COMPARESTRING:
4496 						  type = "COMPARESTRING"; break;
4497 			   case ISN_COMPAREBLOB: type = "COMPAREBLOB"; break;
4498 			   case ISN_COMPARELIST: type = "COMPARELIST"; break;
4499 			   case ISN_COMPAREDICT: type = "COMPAREDICT"; break;
4500 			   case ISN_COMPAREFUNC: type = "COMPAREFUNC"; break;
4501 			   case ISN_COMPAREANY: type = "COMPAREANY"; break;
4502 			   default: type = "???"; break;
4503 		       }
4504 
4505 		       smsg("%4d %s %s", current, type, buf);
4506 		   }
4507 		   break;
4508 
4509 	    case ISN_ADDLIST: smsg("%4d ADDLIST", current); break;
4510 	    case ISN_ADDBLOB: smsg("%4d ADDBLOB", current); break;
4511 
4512 	    // expression operations
4513 	    case ISN_CONCAT: smsg("%4d CONCAT", current); break;
4514 	    case ISN_STRINDEX: smsg("%4d STRINDEX", current); break;
4515 	    case ISN_STRSLICE: smsg("%4d STRSLICE", current); break;
4516 	    case ISN_LISTAPPEND: smsg("%4d LISTAPPEND", current); break;
4517 	    case ISN_BLOBAPPEND: smsg("%4d BLOBAPPEND", current); break;
4518 	    case ISN_LISTINDEX: smsg("%4d LISTINDEX", current); break;
4519 	    case ISN_LISTSLICE: smsg("%4d LISTSLICE", current); break;
4520 	    case ISN_ANYINDEX: smsg("%4d ANYINDEX", current); break;
4521 	    case ISN_ANYSLICE: smsg("%4d ANYSLICE", current); break;
4522 	    case ISN_SLICE: smsg("%4d SLICE %lld",
4523 					 current, iptr->isn_arg.number); break;
4524 	    case ISN_GETITEM: smsg("%4d ITEM %lld",
4525 					 current, iptr->isn_arg.number); break;
4526 	    case ISN_MEMBER: smsg("%4d MEMBER", current); break;
4527 	    case ISN_STRINGMEMBER: smsg("%4d MEMBER %s", current,
4528 						  iptr->isn_arg.string); break;
4529 	    case ISN_NEGATENR: smsg("%4d NEGATENR", current); break;
4530 
4531 	    case ISN_CHECKNR: smsg("%4d CHECKNR", current); break;
4532 	    case ISN_CHECKTYPE:
4533 		  {
4534 		      checktype_T *ct = &iptr->isn_arg.type;
4535 		      char *tofree;
4536 
4537 		      if (ct->ct_arg_idx == 0)
4538 			  smsg("%4d CHECKTYPE %s stack[%d]", current,
4539 					  type_name(ct->ct_type, &tofree),
4540 					  (int)ct->ct_off);
4541 		      else
4542 			  smsg("%4d CHECKTYPE %s stack[%d] arg %d", current,
4543 					  type_name(ct->ct_type, &tofree),
4544 					  (int)ct->ct_off,
4545 					  (int)ct->ct_arg_idx);
4546 		      vim_free(tofree);
4547 		      break;
4548 		  }
4549 	    case ISN_CHECKLEN: smsg("%4d CHECKLEN %s%d", current,
4550 				iptr->isn_arg.checklen.cl_more_OK ? ">= " : "",
4551 				iptr->isn_arg.checklen.cl_min_len);
4552 			       break;
4553 	    case ISN_SETTYPE:
4554 		  {
4555 		      char *tofree;
4556 
4557 		      smsg("%4d SETTYPE %s", current,
4558 			      type_name(iptr->isn_arg.type.ct_type, &tofree));
4559 		      vim_free(tofree);
4560 		      break;
4561 		  }
4562 	    case ISN_COND2BOOL: smsg("%4d COND2BOOL", current); break;
4563 	    case ISN_2BOOL: if (iptr->isn_arg.number)
4564 				smsg("%4d INVERT (!val)", current);
4565 			    else
4566 				smsg("%4d 2BOOL (!!val)", current);
4567 			    break;
4568 	    case ISN_2STRING: smsg("%4d 2STRING stack[%lld]", current,
4569 					 (varnumber_T)(iptr->isn_arg.number));
4570 			      break;
4571 	    case ISN_2STRING_ANY: smsg("%4d 2STRING_ANY stack[%lld]", current,
4572 					 (varnumber_T)(iptr->isn_arg.number));
4573 			      break;
4574 	    case ISN_RANGE: smsg("%4d RANGE %s", current, iptr->isn_arg.string);
4575 			    break;
4576 	    case ISN_PUT:
4577 	        if (iptr->isn_arg.put.put_lnum == LNUM_VARIABLE_RANGE_ABOVE)
4578 		    smsg("%4d PUT %c above range",
4579 				       current, iptr->isn_arg.put.put_regname);
4580 		else if (iptr->isn_arg.put.put_lnum == LNUM_VARIABLE_RANGE)
4581 		    smsg("%4d PUT %c range",
4582 				       current, iptr->isn_arg.put.put_regname);
4583 		else
4584 		    smsg("%4d PUT %c %ld", current,
4585 						 iptr->isn_arg.put.put_regname,
4586 					     (long)iptr->isn_arg.put.put_lnum);
4587 		break;
4588 
4589 		// TODO: summarize modifiers
4590 	    case ISN_CMDMOD:
4591 		{
4592 		    char_u  *buf;
4593 		    size_t  len = produce_cmdmods(
4594 				  NULL, iptr->isn_arg.cmdmod.cf_cmdmod, FALSE);
4595 
4596 		    buf = alloc(len + 1);
4597 		    if (buf != NULL)
4598 		    {
4599 			(void)produce_cmdmods(
4600 				   buf, iptr->isn_arg.cmdmod.cf_cmdmod, FALSE);
4601 			smsg("%4d CMDMOD %s", current, buf);
4602 			vim_free(buf);
4603 		    }
4604 		    break;
4605 		}
4606 	    case ISN_CMDMOD_REV: smsg("%4d CMDMOD_REV", current); break;
4607 
4608 	    case ISN_PROF_START:
4609 		 smsg("%4d PROFILE START line %d", current, iptr->isn_lnum);
4610 		 break;
4611 
4612 	    case ISN_PROF_END:
4613 		smsg("%4d PROFILE END", current);
4614 		break;
4615 
4616 	    case ISN_UNPACK: smsg("%4d UNPACK %d%s", current,
4617 			iptr->isn_arg.unpack.unp_count,
4618 			iptr->isn_arg.unpack.unp_semicolon ? " semicolon" : "");
4619 			      break;
4620 	    case ISN_SHUFFLE: smsg("%4d SHUFFLE %d up %d", current,
4621 					 iptr->isn_arg.shuffle.shfl_item,
4622 					 iptr->isn_arg.shuffle.shfl_up);
4623 			      break;
4624 	    case ISN_DROP: smsg("%4d DROP", current); break;
4625 	}
4626 
4627 	out_flush();	    // output one line at a time
4628 	ui_breakcheck();
4629 	if (got_int)
4630 	    break;
4631     }
4632 }
4633 
4634 /*
4635  * Return TRUE when "tv" is not falsy: non-zero, non-empty string, non-empty
4636  * list, etc.  Mostly like what JavaScript does, except that empty list and
4637  * empty dictionary are FALSE.
4638  */
4639     int
4640 tv2bool(typval_T *tv)
4641 {
4642     switch (tv->v_type)
4643     {
4644 	case VAR_NUMBER:
4645 	    return tv->vval.v_number != 0;
4646 	case VAR_FLOAT:
4647 #ifdef FEAT_FLOAT
4648 	    return tv->vval.v_float != 0.0;
4649 #else
4650 	    break;
4651 #endif
4652 	case VAR_PARTIAL:
4653 	    return tv->vval.v_partial != NULL;
4654 	case VAR_FUNC:
4655 	case VAR_STRING:
4656 	    return tv->vval.v_string != NULL && *tv->vval.v_string != NUL;
4657 	case VAR_LIST:
4658 	    return tv->vval.v_list != NULL && tv->vval.v_list->lv_len > 0;
4659 	case VAR_DICT:
4660 	    return tv->vval.v_dict != NULL
4661 				    && tv->vval.v_dict->dv_hashtab.ht_used > 0;
4662 	case VAR_BOOL:
4663 	case VAR_SPECIAL:
4664 	    return tv->vval.v_number == VVAL_TRUE ? TRUE : FALSE;
4665 	case VAR_JOB:
4666 #ifdef FEAT_JOB_CHANNEL
4667 	    return tv->vval.v_job != NULL;
4668 #else
4669 	    break;
4670 #endif
4671 	case VAR_CHANNEL:
4672 #ifdef FEAT_JOB_CHANNEL
4673 	    return tv->vval.v_channel != NULL;
4674 #else
4675 	    break;
4676 #endif
4677 	case VAR_BLOB:
4678 	    return tv->vval.v_blob != NULL && tv->vval.v_blob->bv_ga.ga_len > 0;
4679 	case VAR_UNKNOWN:
4680 	case VAR_ANY:
4681 	case VAR_VOID:
4682 	    break;
4683     }
4684     return FALSE;
4685 }
4686 
4687     void
4688 emsg_using_string_as(typval_T *tv, int as_number)
4689 {
4690     semsg(_(as_number ? e_using_string_as_number_str
4691 						 : e_using_string_as_bool_str),
4692 		       tv->vval.v_string == NULL
4693 					   ? (char_u *)"" : tv->vval.v_string);
4694 }
4695 
4696 /*
4697  * If "tv" is a string give an error and return FAIL.
4698  */
4699     int
4700 check_not_string(typval_T *tv)
4701 {
4702     if (tv->v_type == VAR_STRING)
4703     {
4704 	emsg_using_string_as(tv, TRUE);
4705 	clear_tv(tv);
4706 	return FAIL;
4707     }
4708     return OK;
4709 }
4710 
4711 
4712 #endif // FEAT_EVAL
4713