blob: bd229b4d94f6aaeb7eed311b0e317fa35ff3ff6f [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002 *
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/*
Bram Moolenaar14c01f82019-10-09 22:53:08 +020011 * userfunc.c: User defined function support
Bram Moolenaara9b579f2016-07-17 18:29:19 +020012 */
13
14#include "vim.h"
15
16#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaara9b579f2016-07-17 18:29:19 +020017/*
18 * All user-defined functions are found in this hashtable.
19 */
20static hashtab_T func_hashtab;
21
Bram Moolenaare38eab22019-12-05 21:50:01 +010022// Used by get_func_tv()
Bram Moolenaara9b579f2016-07-17 18:29:19 +020023static garray_T funcargs = GA_EMPTY;
24
Bram Moolenaar209b8e32019-03-14 13:43:24 +010025// pointer to funccal for currently active function
26static funccall_T *current_funccal = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +020027
Bram Moolenaar209b8e32019-03-14 13:43:24 +010028// Pointer to list of previously used funccal, still around because some
29// item in it is still being used.
30static funccall_T *previous_funccal = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +020031
32static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
33static char *e_funcdict = N_("E717: Dictionary entry already exists");
34static char *e_funcref = N_("E718: Funcref required");
35static char *e_nofunc = N_("E130: Unknown function: %s");
36
Bram Moolenaarbc7ce672016-08-01 22:49:22 +020037static void funccal_unref(funccall_T *fc, ufunc_T *fp, int force);
Bram Moolenaara9b579f2016-07-17 18:29:19 +020038
39 void
40func_init()
41{
42 hash_init(&func_hashtab);
43}
44
Bram Moolenaar4f0383b2016-07-19 22:43:11 +020045/*
Bram Moolenaar660a10a2019-07-14 15:48:38 +020046 * Return the function hash table
47 */
48 hashtab_T *
49func_tbl_get(void)
50{
51 return &func_hashtab;
52}
53
54/*
Bram Moolenaar6e949782020-04-13 17:21:00 +020055 * Get one function argument.
56 * If "argtypes" is not NULL also get the type: "arg: type".
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010057 * Return a pointer to after the type.
58 * When something is wrong return "arg".
59 */
60 static char_u *
61one_function_arg(char_u *arg, garray_T *newargs, garray_T *argtypes, int skip)
62{
Bram Moolenaar6e949782020-04-13 17:21:00 +020063 char_u *p = arg;
64 char_u *arg_copy = NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010065
66 while (ASCII_ISALNUM(*p) || *p == '_')
67 ++p;
68 if (arg == p || isdigit(*arg)
69 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
70 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
71 {
72 if (!skip)
73 semsg(_("E125: Illegal argument: %s"), arg);
74 return arg;
75 }
76 if (newargs != NULL && ga_grow(newargs, 1) == FAIL)
77 return arg;
78 if (newargs != NULL)
79 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010080 int c;
81 int i;
82
83 c = *p;
84 *p = NUL;
85 arg_copy = vim_strsave(arg);
86 if (arg_copy == NULL)
87 {
88 *p = c;
89 return arg;
90 }
91
92 // Check for duplicate argument name.
93 for (i = 0; i < newargs->ga_len; ++i)
94 if (STRCMP(((char_u **)(newargs->ga_data))[i], arg_copy) == 0)
95 {
96 semsg(_("E853: Duplicate argument name: %s"), arg_copy);
97 vim_free(arg_copy);
98 return arg;
99 }
100 ((char_u **)(newargs->ga_data))[newargs->ga_len] = arg_copy;
101 newargs->ga_len++;
102
103 *p = c;
104 }
105
106 // get any type from "arg: type"
107 if (argtypes != NULL && ga_grow(argtypes, 1) == OK)
108 {
109 char_u *type = NULL;
110
Bram Moolenaar6e949782020-04-13 17:21:00 +0200111 if (VIM_ISWHITE(*p) && *skipwhite(p) == ':')
112 {
113 semsg(_("E1059: No white space allowed before colon: %s"),
114 arg_copy == NULL ? arg : arg_copy);
115 p = skipwhite(p);
116 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100117 if (*p == ':')
118 {
Bram Moolenaarf93c7fe2020-04-23 22:16:53 +0200119 ++p;
120 if (!VIM_ISWHITE(*p))
121 {
122 semsg(_(e_white_after), ":");
123 return arg;
124 }
125 type = skipwhite(p);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100126 p = skip_type(type);
127 type = vim_strnsave(type, p - type);
128 }
Bram Moolenaar6e949782020-04-13 17:21:00 +0200129 else if (*skipwhite(p) != '=')
130 {
131 semsg(_("E1077: Missing argument type for %s"),
132 arg_copy == NULL ? arg : arg_copy);
133 return arg;
134 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100135 ((char_u **)argtypes->ga_data)[argtypes->ga_len++] = type;
136 }
137
138 return p;
139}
140
141/*
Bram Moolenaar4f0383b2016-07-19 22:43:11 +0200142 * Get function arguments.
143 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100144 int
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200145get_function_args(
146 char_u **argp,
147 char_u endchar,
148 garray_T *newargs,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100149 garray_T *argtypes, // NULL unless using :def
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200150 int *varargs,
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200151 garray_T *default_args,
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200152 int skip,
153 exarg_T *eap,
154 char_u **line_to_free)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200155{
156 int mustend = FALSE;
157 char_u *arg = *argp;
158 char_u *p = arg;
159 int c;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200160 int any_default = FALSE;
161 char_u *expr;
Bram Moolenaar2c330432020-04-13 14:41:35 +0200162 char_u *whitep = arg;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200163
164 if (newargs != NULL)
165 ga_init2(newargs, (int)sizeof(char_u *), 3);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100166 if (argtypes != NULL)
167 ga_init2(argtypes, (int)sizeof(char_u *), 3);
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200168 if (default_args != NULL)
169 ga_init2(default_args, (int)sizeof(char_u *), 3);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200170
171 if (varargs != NULL)
172 *varargs = FALSE;
173
174 /*
175 * Isolate the arguments: "arg1, arg2, ...)"
176 */
177 while (*p != endchar)
178 {
Bram Moolenaar2c330432020-04-13 14:41:35 +0200179 while (eap != NULL && eap->getline != NULL
180 && (*p == NUL || (VIM_ISWHITE(*whitep) && *p == '#')))
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200181 {
182 char_u *theline;
183
184 // End of the line, get the next one.
185 theline = eap->getline(':', eap->cookie, 0, TRUE);
186 if (theline == NULL)
187 break;
188 vim_free(*line_to_free);
189 *line_to_free = theline;
Bram Moolenaar2c330432020-04-13 14:41:35 +0200190 whitep = (char_u *)" ";
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200191 p = skipwhite(theline);
192 }
193
194 if (mustend && *p != endchar)
195 {
196 if (!skip)
197 semsg(_(e_invarg2), *argp);
198 break;
199 }
200 if (*p == endchar)
201 break;
202
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200203 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
204 {
205 if (varargs != NULL)
206 *varargs = TRUE;
207 p += 3;
208 mustend = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100209
210 if (argtypes != NULL)
211 {
212 // ...name: list<type>
213 if (!ASCII_ISALPHA(*p))
214 {
215 emsg(_("E1055: Missing name after ..."));
216 break;
217 }
218
219 arg = p;
220 p = one_function_arg(p, newargs, argtypes, skip);
221 if (p == arg)
222 break;
223 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200224 }
225 else
226 {
227 arg = p;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100228 p = one_function_arg(p, newargs, argtypes, skip);
229 if (p == arg)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200230 break;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200231
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200232 if (*skipwhite(p) == '=' && default_args != NULL)
233 {
234 typval_T rettv;
235
Bram Moolenaar170fcfc2020-02-06 17:51:35 +0100236 // find the end of the expression (doesn't evaluate it)
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200237 any_default = TRUE;
238 p = skipwhite(p) + 1;
Bram Moolenaar2c330432020-04-13 14:41:35 +0200239 whitep = p;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200240 p = skipwhite(p);
241 expr = p;
Bram Moolenaar32e35112020-05-14 22:41:15 +0200242 if (eval1(&p, &rettv, 0) != FAIL)
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200243 {
244 if (ga_grow(default_args, 1) == FAIL)
245 goto err_ret;
246
247 // trim trailing whitespace
248 while (p > expr && VIM_ISWHITE(p[-1]))
249 p--;
250 c = *p;
251 *p = NUL;
252 expr = vim_strsave(expr);
253 if (expr == NULL)
254 {
255 *p = c;
256 goto err_ret;
257 }
258 ((char_u **)(default_args->ga_data))
259 [default_args->ga_len] = expr;
260 default_args->ga_len++;
261 *p = c;
262 }
263 else
264 mustend = TRUE;
265 }
266 else if (any_default)
267 {
268 emsg(_("E989: Non-default argument follows default argument"));
269 mustend = TRUE;
270 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200271 if (*p == ',')
272 ++p;
273 else
274 mustend = TRUE;
275 }
Bram Moolenaar2c330432020-04-13 14:41:35 +0200276 whitep = p;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200277 p = skipwhite(p);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200278 }
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200279
Bram Moolenaar4f0383b2016-07-19 22:43:11 +0200280 if (*p != endchar)
281 goto err_ret;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100282 ++p; // skip "endchar"
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200283
284 *argp = p;
285 return OK;
286
287err_ret:
288 if (newargs != NULL)
289 ga_clear_strings(newargs);
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200290 if (default_args != NULL)
291 ga_clear_strings(default_args);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200292 return FAIL;
293}
294
295/*
Bram Moolenaar58016442016-07-31 18:30:22 +0200296 * Register function "fp" as using "current_funccal" as its scope.
297 */
298 static int
299register_closure(ufunc_T *fp)
300{
Bram Moolenaar8dd3a432016-08-01 20:46:25 +0200301 if (fp->uf_scoped == current_funccal)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100302 // no change
Bram Moolenaar8dd3a432016-08-01 20:46:25 +0200303 return OK;
Bram Moolenaarbc7ce672016-08-01 22:49:22 +0200304 funccal_unref(fp->uf_scoped, fp, FALSE);
Bram Moolenaar58016442016-07-31 18:30:22 +0200305 fp->uf_scoped = current_funccal;
306 current_funccal->fc_refcount++;
Bram Moolenaar8dd3a432016-08-01 20:46:25 +0200307
Bram Moolenaar58016442016-07-31 18:30:22 +0200308 if (ga_grow(&current_funccal->fc_funcs, 1) == FAIL)
309 return FAIL;
310 ((ufunc_T **)current_funccal->fc_funcs.ga_data)
311 [current_funccal->fc_funcs.ga_len++] = fp;
Bram Moolenaar58016442016-07-31 18:30:22 +0200312 return OK;
313}
314
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100315 static void
316set_ufunc_name(ufunc_T *fp, char_u *name)
317{
318 STRCPY(fp->uf_name, name);
319
320 if (name[0] == K_SPECIAL)
321 {
322 fp->uf_name_exp = alloc(STRLEN(name) + 3);
323 if (fp->uf_name_exp != NULL)
324 {
325 STRCPY(fp->uf_name_exp, "<SNR>");
326 STRCAT(fp->uf_name_exp, fp->uf_name + 3);
327 }
328 }
329}
330
Bram Moolenaar58016442016-07-31 18:30:22 +0200331/*
Bram Moolenaar04b12692020-05-04 23:24:44 +0200332 * Get a name for a lambda. Returned in static memory.
333 */
334 char_u *
335get_lambda_name(void)
336{
337 static char_u name[30];
338 static int lambda_no = 0;
339
340 sprintf((char*)name, "<lambda>%d", ++lambda_no);
341 return name;
342}
343
344/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200345 * Parse a lambda expression and get a Funcref from "*arg".
346 * Return OK or FAIL. Returns NOTDONE for dict or {expr}.
347 */
348 int
349get_lambda_tv(char_u **arg, typval_T *rettv, int evaluate)
350{
351 garray_T newargs;
352 garray_T newlines;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200353 garray_T *pnewargs;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200354 ufunc_T *fp = NULL;
Bram Moolenaar445e71c2019-02-14 13:43:36 +0100355 partial_T *pt = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200356 int varargs;
357 int ret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200358 char_u *start = skipwhite(*arg + 1);
359 char_u *s, *e;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200360 int *old_eval_lavars = eval_lavars_used;
361 int eval_lavars = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200362
363 ga_init(&newargs);
364 ga_init(&newlines);
365
Bram Moolenaare38eab22019-12-05 21:50:01 +0100366 // First, check if this is a lambda expression. "->" must exist.
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200367 ret = get_function_args(&start, '-', NULL, NULL, NULL, NULL, TRUE,
368 NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200369 if (ret == FAIL || *start != '>')
370 return NOTDONE;
371
Bram Moolenaare38eab22019-12-05 21:50:01 +0100372 // Parse the arguments again.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200373 if (evaluate)
374 pnewargs = &newargs;
375 else
376 pnewargs = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200377 *arg = skipwhite(*arg + 1);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100378 // TODO: argument types
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200379 ret = get_function_args(arg, '-', pnewargs, NULL, &varargs, NULL, FALSE,
380 NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200381 if (ret == FAIL || **arg != '>')
382 goto errret;
383
Bram Moolenaare38eab22019-12-05 21:50:01 +0100384 // Set up a flag for checking local variables and arguments.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200385 if (evaluate)
386 eval_lavars_used = &eval_lavars;
387
Bram Moolenaare38eab22019-12-05 21:50:01 +0100388 // Get the start and the end of the expression.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200389 *arg = skipwhite(*arg + 1);
390 s = *arg;
391 ret = skip_expr(arg);
392 if (ret == FAIL)
393 goto errret;
394 e = *arg;
395 *arg = skipwhite(*arg);
396 if (**arg != '}')
Bram Moolenaaree619e52020-03-28 21:38:06 +0100397 {
398 semsg(_("E451: Expected }: %s"), *arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200399 goto errret;
Bram Moolenaaree619e52020-03-28 21:38:06 +0100400 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200401 ++*arg;
402
403 if (evaluate)
404 {
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200405 int len, flags = 0;
406 char_u *p;
Bram Moolenaar04b12692020-05-04 23:24:44 +0200407 char_u *name = get_lambda_name();
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200408
Bram Moolenaar47ed5532019-08-08 20:49:14 +0200409 fp = alloc_clear(offsetof(ufunc_T, uf_name) + STRLEN(name) + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200410 if (fp == NULL)
411 goto errret;
Bram Moolenaar822ba242020-05-24 23:00:18 +0200412 fp->uf_dfunc_idx = UF_NOT_COMPILED;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200413 pt = ALLOC_CLEAR_ONE(partial_T);
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200414 if (pt == NULL)
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200415 goto errret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200416
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200417 ga_init2(&newlines, (int)sizeof(char_u *), 1);
418 if (ga_grow(&newlines, 1) == FAIL)
419 goto errret;
420
Bram Moolenaare38eab22019-12-05 21:50:01 +0100421 // Add "return " before the expression.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200422 len = 7 + e - s + 1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200423 p = alloc(len);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200424 if (p == NULL)
425 goto errret;
426 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = p;
427 STRCPY(p, "return ");
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200428 vim_strncpy(p + 7, s, e - s);
Bram Moolenaarf10806b2020-04-02 18:34:35 +0200429 if (strstr((char *)p + 7, "a:") == NULL)
430 // No a: variables are used for sure.
431 flags |= FC_NOARGS;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200432
433 fp->uf_refcount = 1;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100434 set_ufunc_name(fp, name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200435 hash_add(&func_hashtab, UF2HIKEY(fp));
436 fp->uf_args = newargs;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200437 ga_init(&fp->uf_def_args);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200438 fp->uf_lines = newlines;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200439 if (current_funccal != NULL && eval_lavars)
440 {
Bram Moolenaar10ce39a2016-07-29 22:37:06 +0200441 flags |= FC_CLOSURE;
Bram Moolenaar58016442016-07-31 18:30:22 +0200442 if (register_closure(fp) == FAIL)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200443 goto errret;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200444 }
445 else
446 fp->uf_scoped = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200447
448#ifdef FEAT_PROFILE
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200449 if (prof_def_func())
450 func_do_profile(fp);
451#endif
Bram Moolenaar93343722018-07-10 19:39:18 +0200452 if (sandbox)
453 flags |= FC_SANDBOX;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100454 // can be called with more args than uf_args.ga_len
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200455 fp->uf_varargs = TRUE;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +0200456 fp->uf_flags = flags;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200457 fp->uf_calls = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200458 fp->uf_script_ctx = current_sctx;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100459 fp->uf_script_ctx.sc_lnum += SOURCING_LNUM - newlines.ga_len;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200460
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200461 pt->pt_func = fp;
462 pt->pt_refcount = 1;
463 rettv->vval.v_partial = pt;
464 rettv->v_type = VAR_PARTIAL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200465 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200466
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200467 eval_lavars_used = old_eval_lavars;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200468 return OK;
469
470errret:
471 ga_clear_strings(&newargs);
472 ga_clear_strings(&newlines);
473 vim_free(fp);
Bram Moolenaar445e71c2019-02-14 13:43:36 +0100474 vim_free(pt);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200475 eval_lavars_used = old_eval_lavars;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200476 return FAIL;
477}
478
479/*
480 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
481 * name it contains, otherwise return "name".
482 * If "partialp" is not NULL, and "name" is of type VAR_PARTIAL also set
483 * "partialp".
484 */
485 char_u *
486deref_func_name(char_u *name, int *lenp, partial_T **partialp, int no_autoload)
487{
488 dictitem_T *v;
489 int cc;
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200490 char_u *s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200491
492 if (partialp != NULL)
493 *partialp = NULL;
494
495 cc = name[*lenp];
496 name[*lenp] = NUL;
497 v = find_var(name, NULL, no_autoload);
498 name[*lenp] = cc;
499 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
500 {
501 if (v->di_tv.vval.v_string == NULL)
502 {
503 *lenp = 0;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100504 return (char_u *)""; // just in case
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200505 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200506 s = v->di_tv.vval.v_string;
507 *lenp = (int)STRLEN(s);
508 return s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200509 }
510
511 if (v != NULL && v->di_tv.v_type == VAR_PARTIAL)
512 {
513 partial_T *pt = v->di_tv.vval.v_partial;
514
515 if (pt == NULL)
516 {
517 *lenp = 0;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100518 return (char_u *)""; // just in case
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200519 }
520 if (partialp != NULL)
521 *partialp = pt;
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200522 s = partial_name(pt);
523 *lenp = (int)STRLEN(s);
524 return s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200525 }
526
527 return name;
528}
529
530/*
531 * Give an error message with a function name. Handle <SNR> things.
532 * "ermsg" is to be passed without translation, use N_() instead of _().
533 */
Bram Moolenaar4c054e92019-11-10 00:13:50 +0100534 void
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200535emsg_funcname(char *ermsg, char_u *name)
536{
537 char_u *p;
538
539 if (*name == K_SPECIAL)
540 p = concat_str((char_u *)"<SNR>", name + 3);
541 else
542 p = name;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100543 semsg(_(ermsg), p);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200544 if (p != name)
545 vim_free(p);
546}
547
548/*
549 * Allocate a variable for the result of a function.
550 * Return OK or FAIL.
551 */
552 int
553get_func_tv(
Bram Moolenaar6ed88192019-05-11 18:37:44 +0200554 char_u *name, // name of the function
555 int len, // length of "name" or -1 to use strlen()
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200556 typval_T *rettv,
Bram Moolenaar6ed88192019-05-11 18:37:44 +0200557 char_u **arg, // argument, pointing to the '('
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200558 funcexe_T *funcexe) // various values
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200559{
560 char_u *argp;
561 int ret = OK;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100562 typval_T argvars[MAX_FUNC_ARGS + 1]; // vars for arguments
563 int argcount = 0; // number of arguments found
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200564
565 /*
566 * Get the arguments.
567 */
568 argp = *arg;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200569 while (argcount < MAX_FUNC_ARGS - (funcexe->partial == NULL ? 0
570 : funcexe->partial->pt_argc))
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200571 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100572 argp = skipwhite(argp + 1); // skip the '(' or ','
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200573 if (*argp == ')' || *argp == ',' || *argp == NUL)
574 break;
Bram Moolenaar32e35112020-05-14 22:41:15 +0200575 if (eval1(&argp, &argvars[argcount],
576 funcexe->evaluate ? EVAL_EVALUATE : 0) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200577 {
578 ret = FAIL;
579 break;
580 }
581 ++argcount;
582 if (*argp != ',')
583 break;
584 }
585 if (*argp == ')')
586 ++argp;
587 else
588 ret = FAIL;
589
590 if (ret == OK)
591 {
592 int i = 0;
593
594 if (get_vim_var_nr(VV_TESTING))
595 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100596 // Prepare for calling test_garbagecollect_now(), need to know
597 // what variables are used on the call stack.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200598 if (funcargs.ga_itemsize == 0)
599 ga_init2(&funcargs, (int)sizeof(typval_T *), 50);
600 for (i = 0; i < argcount; ++i)
601 if (ga_grow(&funcargs, 1) == OK)
602 ((typval_T **)funcargs.ga_data)[funcargs.ga_len++] =
603 &argvars[i];
604 }
605
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200606 ret = call_func(name, len, rettv, argcount, argvars, funcexe);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200607
608 funcargs.ga_len -= i;
609 }
610 else if (!aborting())
611 {
612 if (argcount == MAX_FUNC_ARGS)
613 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
614 else
615 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
616 }
617
618 while (--argcount >= 0)
619 clear_tv(&argvars[argcount]);
620
621 *arg = skipwhite(argp);
622 return ret;
623}
624
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200625/*
626 * Return TRUE if "p" starts with "<SID>" or "s:".
627 * Only works if eval_fname_script() returned non-zero for "p"!
628 */
629 static int
630eval_fname_sid(char_u *p)
631{
632 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
633}
634
635/*
636 * In a script change <SID>name() and s:name() to K_SNR 123_name().
637 * Change <SNR>123_name() to K_SNR 123_name().
638 * Use "fname_buf[FLEN_FIXED + 1]" when it fits, otherwise allocate memory
639 * (slow).
640 */
Bram Moolenaar5cab73f2020-02-06 19:25:19 +0100641 char_u *
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200642fname_trans_sid(char_u *name, char_u *fname_buf, char_u **tofree, int *error)
643{
644 int llen;
645 char_u *fname;
646 int i;
647
648 llen = eval_fname_script(name);
649 if (llen > 0)
650 {
651 fname_buf[0] = K_SPECIAL;
652 fname_buf[1] = KS_EXTRA;
653 fname_buf[2] = (int)KE_SNR;
654 i = 3;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100655 if (eval_fname_sid(name)) // "<SID>" or "s:"
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200656 {
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200657 if (current_sctx.sc_sid <= 0)
Bram Moolenaaref140542019-12-31 21:27:13 +0100658 *error = FCERR_SCRIPT;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200659 else
660 {
Bram Moolenaarad3ec762019-04-21 00:00:13 +0200661 sprintf((char *)fname_buf + 3, "%ld_",
662 (long)current_sctx.sc_sid);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200663 i = (int)STRLEN(fname_buf);
664 }
665 }
666 if (i + STRLEN(name + llen) < FLEN_FIXED)
667 {
668 STRCPY(fname_buf + i, name + llen);
669 fname = fname_buf;
670 }
671 else
672 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200673 fname = alloc(i + STRLEN(name + llen) + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200674 if (fname == NULL)
Bram Moolenaaref140542019-12-31 21:27:13 +0100675 *error = FCERR_OTHER;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200676 else
677 {
678 *tofree = fname;
679 mch_memmove(fname, fname_buf, (size_t)i);
680 STRCPY(fname + i, name + llen);
681 }
682 }
683 }
684 else
685 fname = name;
686 return fname;
687}
688
689/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100690 * Find a function "name" in script "sid".
691 */
692 static ufunc_T *
693find_func_with_sid(char_u *name, int sid)
694{
695 hashitem_T *hi;
696 char_u buffer[200];
697
698 buffer[0] = K_SPECIAL;
699 buffer[1] = KS_EXTRA;
700 buffer[2] = (int)KE_SNR;
701 vim_snprintf((char *)buffer + 3, sizeof(buffer) - 3, "%ld_%s",
702 (long)sid, name);
703 hi = hash_find(&func_hashtab, buffer);
704 if (!HASHITEM_EMPTY(hi))
705 return HI2UF(hi);
706
707 return NULL;
708}
709
710/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200711 * Find a function by name, return pointer to it in ufuncs.
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200712 * When "is_global" is true don't find script-local or imported functions.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200713 * Return NULL for unknown function.
714 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100715 static ufunc_T *
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200716find_func_even_dead(char_u *name, int is_global, cctx_T *cctx)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200717{
718 hashitem_T *hi;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100719 ufunc_T *func;
720 imported_T *imported;
721
Bram Moolenaar9721fb42020-06-11 23:10:46 +0200722 if (!is_global)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100723 {
Bram Moolenaar9721fb42020-06-11 23:10:46 +0200724 char_u *after_script = NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100725
Bram Moolenaar9721fb42020-06-11 23:10:46 +0200726 if (in_vim9script())
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100727 {
Bram Moolenaar9721fb42020-06-11 23:10:46 +0200728 // Find script-local function before global one.
729 func = find_func_with_sid(name, current_sctx.sc_sid);
730 if (func != NULL)
731 return func;
732 }
733
734 if (!in_vim9script()
735 && name[0] == K_SPECIAL
736 && name[1] == KS_EXTRA
737 && name[2] == KE_SNR)
738 {
739 long sid;
740
741 // Caller changes s: to <SNR>99_name.
742
743 after_script = name + 3;
744 sid = getdigits(&after_script);
745 if (sid == current_sctx.sc_sid && *after_script == '_')
746 ++after_script;
747 else
748 after_script = NULL;
749 }
750 if (in_vim9script() || after_script != NULL)
751 {
752 // Find imported function before global one.
753 imported = find_imported(
754 after_script == NULL ? name : after_script, 0, cctx);
755 if (imported != NULL && imported->imp_funcname != NULL)
756 {
757 hi = hash_find(&func_hashtab, imported->imp_funcname);
758 if (!HASHITEM_EMPTY(hi))
759 return HI2UF(hi);
760 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100761 }
762 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200763
Bram Moolenaara26b9702020-04-18 19:53:28 +0200764 hi = hash_find(&func_hashtab,
765 STRNCMP(name, "g:", 2) == 0 ? name + 2 : name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200766 if (!HASHITEM_EMPTY(hi))
767 return HI2UF(hi);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100768
769 return NULL;
770}
771
772/*
773 * Find a function by name, return pointer to it in ufuncs.
774 * "cctx" is passed in a :def function to find imported functions.
775 * Return NULL for unknown or dead function.
776 */
777 ufunc_T *
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200778find_func(char_u *name, int is_global, cctx_T *cctx)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100779{
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200780 ufunc_T *fp = find_func_even_dead(name, is_global, cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100781
782 if (fp != NULL && (fp->uf_flags & FC_DEAD) == 0)
783 return fp;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200784 return NULL;
785}
786
787/*
788 * Copy the function name of "fp" to buffer "buf".
789 * "buf" must be able to hold the function name plus three bytes.
790 * Takes care of script-local function names.
791 */
792 static void
793cat_func_name(char_u *buf, ufunc_T *fp)
794{
795 if (fp->uf_name[0] == K_SPECIAL)
796 {
797 STRCPY(buf, "<SNR>");
798 STRCAT(buf, fp->uf_name + 3);
799 }
800 else
801 STRCPY(buf, fp->uf_name);
802}
803
804/*
805 * Add a number variable "name" to dict "dp" with value "nr".
806 */
807 static void
808add_nr_var(
809 dict_T *dp,
810 dictitem_T *v,
811 char *name,
812 varnumber_T nr)
813{
814 STRCPY(v->di_key, name);
815 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
816 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
817 v->di_tv.v_type = VAR_NUMBER;
818 v->di_tv.v_lock = VAR_FIXED;
819 v->di_tv.vval.v_number = nr;
820}
821
822/*
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100823 * Free "fc".
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200824 */
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100825 static void
826free_funccal(funccall_T *fc)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200827{
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100828 int i;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200829
830 for (i = 0; i < fc->fc_funcs.ga_len; ++i)
831 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100832 ufunc_T *fp = ((ufunc_T **)(fc->fc_funcs.ga_data))[i];
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200833
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100834 // When garbage collecting a funccall_T may be freed before the
835 // function that references it, clear its uf_scoped field.
836 // The function may have been redefined and point to another
837 // funccall_T, don't clear it then.
Bram Moolenaarbc7ce672016-08-01 22:49:22 +0200838 if (fp != NULL && fp->uf_scoped == fc)
839 fp->uf_scoped = NULL;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200840 }
Bram Moolenaar58016442016-07-31 18:30:22 +0200841 ga_clear(&fc->fc_funcs);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200842
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200843 func_ptr_unref(fc->func);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200844 vim_free(fc);
845}
846
847/*
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100848 * Free "fc" and what it contains.
849 * Can be called only when "fc" is kept beyond the period of it called,
850 * i.e. after cleanup_function_call(fc).
851 */
852 static void
853free_funccal_contents(funccall_T *fc)
854{
855 listitem_T *li;
856
857 // Free all l: variables.
858 vars_clear(&fc->l_vars.dv_hashtab);
859
860 // Free all a: variables.
861 vars_clear(&fc->l_avars.dv_hashtab);
862
863 // Free the a:000 variables.
Bram Moolenaaraeea7212020-04-02 18:50:46 +0200864 FOR_ALL_LIST_ITEMS(&fc->l_varlist, li)
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100865 clear_tv(&li->li_tv);
866
867 free_funccal(fc);
868}
869
870/*
Bram Moolenaar6914c642017-04-01 21:21:30 +0200871 * Handle the last part of returning from a function: free the local hashtable.
872 * Unless it is still in use by a closure.
873 */
874 static void
875cleanup_function_call(funccall_T *fc)
876{
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100877 int may_free_fc = fc->fc_refcount <= 0;
878 int free_fc = TRUE;
879
Bram Moolenaar6914c642017-04-01 21:21:30 +0200880 current_funccal = fc->caller;
881
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100882 // Free all l: variables if not referred.
883 if (may_free_fc && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT)
884 vars_clear(&fc->l_vars.dv_hashtab);
885 else
886 free_fc = FALSE;
887
888 // If the a:000 list and the l: and a: dicts are not referenced and
889 // there is no closure using it, we can free the funccall_T and what's
890 // in it.
891 if (may_free_fc && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
892 vars_clear_ext(&fc->l_avars.dv_hashtab, FALSE);
Bram Moolenaar6914c642017-04-01 21:21:30 +0200893 else
894 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100895 int todo;
896 hashitem_T *hi;
897 dictitem_T *di;
Bram Moolenaar6914c642017-04-01 21:21:30 +0200898
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100899 free_fc = FALSE;
Bram Moolenaar6914c642017-04-01 21:21:30 +0200900
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100901 // Make a copy of the a: variables, since we didn't do that above.
Bram Moolenaar6914c642017-04-01 21:21:30 +0200902 todo = (int)fc->l_avars.dv_hashtab.ht_used;
903 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
904 {
905 if (!HASHITEM_EMPTY(hi))
906 {
907 --todo;
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100908 di = HI2DI(hi);
909 copy_tv(&di->di_tv, &di->di_tv);
Bram Moolenaar6914c642017-04-01 21:21:30 +0200910 }
911 }
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100912 }
Bram Moolenaar6914c642017-04-01 21:21:30 +0200913
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100914 if (may_free_fc && fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT)
915 fc->l_varlist.lv_first = NULL;
916 else
917 {
918 listitem_T *li;
919
920 free_fc = FALSE;
921
922 // Make a copy of the a:000 items, since we didn't do that above.
Bram Moolenaaraeea7212020-04-02 18:50:46 +0200923 FOR_ALL_LIST_ITEMS(&fc->l_varlist, li)
Bram Moolenaar6914c642017-04-01 21:21:30 +0200924 copy_tv(&li->li_tv, &li->li_tv);
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100925 }
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100926
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100927 if (free_fc)
928 free_funccal(fc);
929 else
930 {
931 static int made_copy = 0;
932
933 // "fc" is still in use. This can happen when returning "a:000",
934 // assigning "l:" to a global variable or defining a closure.
935 // Link "fc" in the list for garbage collection later.
936 fc->caller = previous_funccal;
937 previous_funccal = fc;
938
939 if (want_garbage_collect)
940 // If garbage collector is ready, clear count.
941 made_copy = 0;
942 else if (++made_copy >= (int)((4096 * 1024) / sizeof(*fc)))
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100943 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100944 // We have made a lot of copies, worth 4 Mbyte. This can happen
945 // when repetitively calling a function that creates a reference to
Bram Moolenaar889da2f2019-02-02 14:02:30 +0100946 // itself somehow. Call the garbage collector soon to avoid using
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100947 // too much memory.
948 made_copy = 0;
Bram Moolenaar889da2f2019-02-02 14:02:30 +0100949 want_garbage_collect = TRUE;
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100950 }
Bram Moolenaar6914c642017-04-01 21:21:30 +0200951 }
952}
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100953/*
954 * Unreference "fc": decrement the reference count and free it when it
955 * becomes zero. "fp" is detached from "fc".
956 * When "force" is TRUE we are exiting.
957 */
958 static void
959funccal_unref(funccall_T *fc, ufunc_T *fp, int force)
960{
961 funccall_T **pfc;
962 int i;
963
964 if (fc == NULL)
965 return;
966
967 if (--fc->fc_refcount <= 0 && (force || (
968 fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
969 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
970 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)))
971 for (pfc = &previous_funccal; *pfc != NULL; pfc = &(*pfc)->caller)
972 {
973 if (fc == *pfc)
974 {
975 *pfc = fc->caller;
976 free_funccal_contents(fc);
977 return;
978 }
979 }
980 for (i = 0; i < fc->fc_funcs.ga_len; ++i)
981 if (((ufunc_T **)(fc->fc_funcs.ga_data))[i] == fp)
982 ((ufunc_T **)(fc->fc_funcs.ga_data))[i] = NULL;
983}
984
985/*
986 * Remove the function from the function hashtable. If the function was
987 * deleted while it still has references this was already done.
988 * Return TRUE if the entry was deleted, FALSE if it wasn't found.
989 */
990 static int
991func_remove(ufunc_T *fp)
992{
993 hashitem_T *hi;
994
995 // Return if it was already virtually deleted.
996 if (fp->uf_flags & FC_DEAD)
997 return FALSE;
998
999 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
1000 if (!HASHITEM_EMPTY(hi))
1001 {
1002 // When there is a def-function index do not actually remove the
1003 // function, so we can find the index when defining the function again.
1004 if (fp->uf_dfunc_idx >= 0)
1005 fp->uf_flags |= FC_DEAD;
1006 else
1007 hash_remove(&func_hashtab, hi);
1008 return TRUE;
1009 }
1010 return FALSE;
1011}
1012
1013 static void
1014func_clear_items(ufunc_T *fp)
1015{
1016 ga_clear_strings(&(fp->uf_args));
1017 ga_clear_strings(&(fp->uf_def_args));
1018 ga_clear_strings(&(fp->uf_lines));
1019 VIM_CLEAR(fp->uf_name_exp);
1020 VIM_CLEAR(fp->uf_arg_types);
Bram Moolenaar292b90d2020-03-18 15:23:16 +01001021 VIM_CLEAR(fp->uf_def_arg_idx);
1022 VIM_CLEAR(fp->uf_va_name);
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02001023 while (fp->uf_type_list.ga_len > 0)
1024 vim_free(((type_T **)fp->uf_type_list.ga_data)
1025 [--fp->uf_type_list.ga_len]);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001026 ga_clear(&fp->uf_type_list);
1027#ifdef FEAT_PROFILE
1028 VIM_CLEAR(fp->uf_tml_count);
1029 VIM_CLEAR(fp->uf_tml_total);
1030 VIM_CLEAR(fp->uf_tml_self);
1031#endif
1032}
1033
1034/*
1035 * Free all things that a function contains. Does not free the function
1036 * itself, use func_free() for that.
1037 * When "force" is TRUE we are exiting.
1038 */
1039 static void
1040func_clear(ufunc_T *fp, int force)
1041{
1042 if (fp->uf_cleared)
1043 return;
1044 fp->uf_cleared = TRUE;
1045
1046 // clear this function
1047 func_clear_items(fp);
1048 funccal_unref(fp->uf_scoped, fp, force);
1049 delete_def_function(fp);
1050}
1051
1052/*
1053 * Free a function and remove it from the list of functions. Does not free
1054 * what a function contains, call func_clear() first.
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001055 * When "force" is TRUE we are exiting.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001056 */
1057 static void
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001058func_free(ufunc_T *fp, int force)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001059{
1060 // Only remove it when not done already, otherwise we would remove a newer
1061 // version of the function with the same name.
1062 if ((fp->uf_flags & (FC_DELETED | FC_REMOVED)) == 0)
1063 func_remove(fp);
1064
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001065 if ((fp->uf_flags & FC_DEAD) == 0 || force)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001066 vim_free(fp);
1067}
1068
1069/*
1070 * Free all things that a function contains and free the function itself.
1071 * When "force" is TRUE we are exiting.
1072 */
1073 static void
1074func_clear_free(ufunc_T *fp, int force)
1075{
1076 func_clear(fp, force);
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001077 func_free(fp, force);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001078}
1079
Bram Moolenaar6914c642017-04-01 21:21:30 +02001080
1081/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001082 * Call a user function.
1083 */
1084 static void
1085call_user_func(
Bram Moolenaare38eab22019-12-05 21:50:01 +01001086 ufunc_T *fp, // pointer to function
1087 int argcount, // nr of args
1088 typval_T *argvars, // arguments
1089 typval_T *rettv, // return value
Bram Moolenaar6f5b6df2020-05-16 21:20:12 +02001090 funcexe_T *funcexe, // context
Bram Moolenaare38eab22019-12-05 21:50:01 +01001091 dict_T *selfdict) // Dictionary for "self"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001092{
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001093 sctx_T save_current_sctx;
Bram Moolenaar93343722018-07-10 19:39:18 +02001094 int using_sandbox = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001095 funccall_T *fc;
1096 int save_did_emsg;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001097 int default_arg_err = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001098 static int depth = 0;
1099 dictitem_T *v;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001100 int fixvar_idx = 0; // index in fixvar[]
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001101 int i;
1102 int ai;
1103 int islambda = FALSE;
1104 char_u numbuf[NUMBUFLEN];
1105 char_u *name;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001106#ifdef FEAT_PROFILE
1107 proftime_T wait_start;
1108 proftime_T call_start;
Bram Moolenaarad648092018-06-30 18:28:03 +02001109 int started_profiling = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001110#endif
Bram Moolenaare31ee862020-01-07 20:59:34 +01001111 ESTACK_CHECK_DECLARATION
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001112
Bram Moolenaare38eab22019-12-05 21:50:01 +01001113 // If depth of calling is getting too high, don't execute the function
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001114 if (depth >= p_mfd)
1115 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001116 emsg(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001117 rettv->v_type = VAR_NUMBER;
1118 rettv->vval.v_number = -1;
1119 return;
1120 }
1121 ++depth;
1122
Bram Moolenaare38eab22019-12-05 21:50:01 +01001123 line_breakcheck(); // check for CTRL-C hit
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001124
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001125 fc = ALLOC_CLEAR_ONE(funccall_T);
Bram Moolenaar4456ab52019-01-23 23:00:30 +01001126 if (fc == NULL)
1127 return;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001128 fc->caller = current_funccal;
1129 current_funccal = fc;
1130 fc->func = fp;
1131 fc->rettv = rettv;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001132 fc->level = ex_nesting_level;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001133 // Check if this function has a breakpoint.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001134 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
1135 fc->dbg_tick = debug_tick;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001136 // Set up fields for closure.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001137 ga_init2(&fc->fc_funcs, sizeof(ufunc_T *), 1);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001138 func_ptr_ref(fp);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001139
Bram Moolenaar822ba242020-05-24 23:00:18 +02001140 if (fp->uf_dfunc_idx != UF_NOT_COMPILED)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001141 {
Bram Moolenaar25e0f582020-05-25 22:36:50 +02001142 estack_push_ufunc(fp, 1);
Bram Moolenaar0f18b6d2020-02-02 17:22:27 +01001143 save_current_sctx = current_sctx;
1144 current_sctx = fp->uf_script_ctx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001145
Bram Moolenaar25e0f582020-05-25 22:36:50 +02001146 // Execute the function, possibly compiling it first.
Bram Moolenaar6f5b6df2020-05-16 21:20:12 +02001147 call_def_function(fp, argcount, argvars, funcexe->partial, rettv);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001148 --depth;
1149 current_funccal = fc->caller;
1150
1151 estack_pop();
Bram Moolenaar0f18b6d2020-02-02 17:22:27 +01001152 current_sctx = save_current_sctx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001153 free_funccal(fc);
1154 return;
1155 }
1156
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001157 if (STRNCMP(fp->uf_name, "<lambda>", 8) == 0)
1158 islambda = TRUE;
1159
1160 /*
1161 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
1162 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
1163 * each argument variable and saves a lot of time.
1164 */
1165 /*
1166 * Init l: variables.
1167 */
1168 init_var_dict(&fc->l_vars, &fc->l_vars_var, VAR_DEF_SCOPE);
1169 if (selfdict != NULL)
1170 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001171 // Set l:self to "selfdict". Use "name" to avoid a warning from
1172 // some compiler that checks the destination size.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001173 v = &fc->fixvar[fixvar_idx++].var;
1174 name = v->di_key;
1175 STRCPY(name, "self");
Bram Moolenaar31b81602019-02-10 22:14:27 +01001176 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001177 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
1178 v->di_tv.v_type = VAR_DICT;
1179 v->di_tv.v_lock = 0;
1180 v->di_tv.vval.v_dict = selfdict;
1181 ++selfdict->dv_refcount;
1182 }
1183
1184 /*
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001185 * Init a: variables, unless none found (in lambda).
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001186 * Set a:0 to "argcount" less number of named arguments, if >= 0.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001187 * Set a:000 to a list with room for the "..." arguments.
1188 */
1189 init_var_dict(&fc->l_avars, &fc->l_avars_var, VAR_SCOPE);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001190 if ((fp->uf_flags & FC_NOARGS) == 0)
1191 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001192 (varnumber_T)(argcount >= fp->uf_args.ga_len
1193 ? argcount - fp->uf_args.ga_len : 0));
Bram Moolenaar31b81602019-02-10 22:14:27 +01001194 fc->l_avars.dv_lock = VAR_FIXED;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001195 if ((fp->uf_flags & FC_NOARGS) == 0)
1196 {
1197 // Use "name" to avoid a warning from some compiler that checks the
1198 // destination size.
1199 v = &fc->fixvar[fixvar_idx++].var;
1200 name = v->di_key;
1201 STRCPY(name, "000");
1202 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
1203 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
1204 v->di_tv.v_type = VAR_LIST;
1205 v->di_tv.v_lock = VAR_FIXED;
1206 v->di_tv.vval.v_list = &fc->l_varlist;
1207 }
Bram Moolenaara80faa82020-04-12 19:37:17 +02001208 CLEAR_FIELD(fc->l_varlist);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001209 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
1210 fc->l_varlist.lv_lock = VAR_FIXED;
1211
1212 /*
1213 * Set a:firstline to "firstline" and a:lastline to "lastline".
1214 * Set a:name to named arguments.
1215 * Set a:N to the "..." arguments.
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001216 * Skipped when no a: variables used (in lambda).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001217 */
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001218 if ((fp->uf_flags & FC_NOARGS) == 0)
1219 {
1220 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar6f5b6df2020-05-16 21:20:12 +02001221 (varnumber_T)funcexe->firstline);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001222 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar6f5b6df2020-05-16 21:20:12 +02001223 (varnumber_T)funcexe->lastline);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001224 }
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001225 for (i = 0; i < argcount || i < fp->uf_args.ga_len; ++i)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001226 {
1227 int addlocal = FALSE;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001228 typval_T def_rettv;
1229 int isdefault = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001230
1231 ai = i - fp->uf_args.ga_len;
1232 if (ai < 0)
1233 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001234 // named argument a:name
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001235 name = FUNCARG(fp, i);
1236 if (islambda)
1237 addlocal = TRUE;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001238
1239 // evaluate named argument default expression
1240 isdefault = ai + fp->uf_def_args.ga_len >= 0
1241 && (i >= argcount || (argvars[i].v_type == VAR_SPECIAL
1242 && argvars[i].vval.v_number == VVAL_NONE));
1243 if (isdefault)
1244 {
1245 char_u *default_expr = NULL;
1246 def_rettv.v_type = VAR_NUMBER;
1247 def_rettv.vval.v_number = -1;
1248
1249 default_expr = ((char_u **)(fp->uf_def_args.ga_data))
1250 [ai + fp->uf_def_args.ga_len];
Bram Moolenaar32e35112020-05-14 22:41:15 +02001251 if (eval1(&default_expr, &def_rettv, EVAL_EVALUATE) == FAIL)
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001252 {
1253 default_arg_err = 1;
1254 break;
1255 }
1256 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001257 }
1258 else
1259 {
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001260 if ((fp->uf_flags & FC_NOARGS) != 0)
1261 // Bail out if no a: arguments used (in lambda).
1262 break;
1263
Bram Moolenaare38eab22019-12-05 21:50:01 +01001264 // "..." argument a:1, a:2, etc.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001265 sprintf((char *)numbuf, "%d", ai + 1);
1266 name = numbuf;
1267 }
1268 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
1269 {
1270 v = &fc->fixvar[fixvar_idx++].var;
1271 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001272 STRCPY(v->di_key, name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001273 }
1274 else
1275 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001276 v = dictitem_alloc(name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001277 if (v == NULL)
1278 break;
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001279 v->di_flags |= DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001280 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001281
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02001282 // Note: the values are copied directly to avoid alloc/free.
1283 // "argvars" must have VAR_FIXED for v_lock.
1284 v->di_tv = isdefault ? def_rettv : argvars[i];
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001285 v->di_tv.v_lock = VAR_FIXED;
1286
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001287 if (addlocal)
1288 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001289 // Named arguments should be accessed without the "a:" prefix in
1290 // lambda expressions. Add to the l: dict.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001291 copy_tv(&v->di_tv, &v->di_tv);
1292 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001293 }
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001294 else
1295 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001296
1297 if (ai >= 0 && ai < MAX_FUNC_ARGS)
1298 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001299 listitem_T *li = &fc->l_listitems[ai];
1300
1301 li->li_tv = argvars[i];
1302 li->li_tv.v_lock = VAR_FIXED;
1303 list_append(&fc->l_varlist, li);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001304 }
1305 }
1306
Bram Moolenaare38eab22019-12-05 21:50:01 +01001307 // Don't redraw while executing the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001308 ++RedrawingDisabled;
Bram Moolenaar93343722018-07-10 19:39:18 +02001309
1310 if (fp->uf_flags & FC_SANDBOX)
1311 {
1312 using_sandbox = TRUE;
1313 ++sandbox;
1314 }
1315
Bram Moolenaar25e0f582020-05-25 22:36:50 +02001316 estack_push_ufunc(fp, 1);
Bram Moolenaare31ee862020-01-07 20:59:34 +01001317 ESTACK_CHECK_SETUP
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001318 if (p_verbose >= 12)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001319 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001320 ++no_wait_return;
1321 verbose_enter_scroll();
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001322
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001323 smsg(_("calling %s"), SOURCING_NAME);
1324 if (p_verbose >= 14)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001325 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001326 char_u buf[MSG_BUF_LEN];
1327 char_u numbuf2[NUMBUFLEN];
1328 char_u *tofree;
1329 char_u *s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001330
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001331 msg_puts("(");
1332 for (i = 0; i < argcount; ++i)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001333 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001334 if (i > 0)
1335 msg_puts(", ");
1336 if (argvars[i].v_type == VAR_NUMBER)
1337 msg_outnum((long)argvars[i].vval.v_number);
1338 else
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001339 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001340 // Do not want errors such as E724 here.
1341 ++emsg_off;
1342 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
1343 --emsg_off;
1344 if (s != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001345 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001346 if (vim_strsize(s) > MSG_BUF_CLEN)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001347 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001348 trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN);
1349 s = buf;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001350 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001351 msg_puts((char *)s);
1352 vim_free(tofree);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001353 }
1354 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001355 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001356 msg_puts(")");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001357 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001358 msg_puts("\n"); // don't overwrite this either
1359
1360 verbose_leave_scroll();
1361 --no_wait_return;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001362 }
1363#ifdef FEAT_PROFILE
1364 if (do_profiling == PROF_YES)
1365 {
1366 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
Bram Moolenaarad648092018-06-30 18:28:03 +02001367 {
1368 started_profiling = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001369 func_do_profile(fp);
Bram Moolenaarad648092018-06-30 18:28:03 +02001370 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001371 if (fp->uf_profiling
1372 || (fc->caller != NULL && fc->caller->func->uf_profiling))
1373 {
1374 ++fp->uf_tm_count;
1375 profile_start(&call_start);
1376 profile_zero(&fp->uf_tm_children);
1377 }
1378 script_prof_save(&wait_start);
1379 }
1380#endif
1381
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001382 save_current_sctx = current_sctx;
1383 current_sctx = fp->uf_script_ctx;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001384 save_did_emsg = did_emsg;
1385 did_emsg = FALSE;
1386
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001387 if (default_arg_err && (fp->uf_flags & FC_ABORT))
1388 did_emsg = TRUE;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001389 else if (islambda)
1390 {
1391 char_u *p = *(char_u **)fp->uf_lines.ga_data + 7;
1392
1393 // A Lambda always has the command "return {expr}". It is much faster
1394 // to evaluate {expr} directly.
1395 ++ex_nesting_level;
Bram Moolenaar32e35112020-05-14 22:41:15 +02001396 (void)eval1(&p, rettv, EVAL_EVALUATE);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001397 --ex_nesting_level;
1398 }
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001399 else
1400 // call do_cmdline() to execute the lines
1401 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001402 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
1403
1404 --RedrawingDisabled;
1405
Bram Moolenaare38eab22019-12-05 21:50:01 +01001406 // when the function was aborted because of an error, return -1
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001407 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
1408 {
1409 clear_tv(rettv);
1410 rettv->v_type = VAR_NUMBER;
1411 rettv->vval.v_number = -1;
1412 }
1413
1414#ifdef FEAT_PROFILE
1415 if (do_profiling == PROF_YES && (fp->uf_profiling
1416 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
1417 {
1418 profile_end(&call_start);
1419 profile_sub_wait(&wait_start, &call_start);
1420 profile_add(&fp->uf_tm_total, &call_start);
1421 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
1422 if (fc->caller != NULL && fc->caller->func->uf_profiling)
1423 {
1424 profile_add(&fc->caller->func->uf_tm_children, &call_start);
1425 profile_add(&fc->caller->func->uf_tml_children, &call_start);
1426 }
Bram Moolenaarad648092018-06-30 18:28:03 +02001427 if (started_profiling)
1428 // make a ":profdel func" stop profiling the function
1429 fp->uf_profiling = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001430 }
1431#endif
1432
Bram Moolenaare38eab22019-12-05 21:50:01 +01001433 // when being verbose, mention the return value
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001434 if (p_verbose >= 12)
1435 {
1436 ++no_wait_return;
1437 verbose_enter_scroll();
1438
1439 if (aborting())
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001440 smsg(_("%s aborted"), SOURCING_NAME);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001441 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001442 smsg(_("%s returning #%ld"), SOURCING_NAME,
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001443 (long)fc->rettv->vval.v_number);
1444 else
1445 {
1446 char_u buf[MSG_BUF_LEN];
1447 char_u numbuf2[NUMBUFLEN];
1448 char_u *tofree;
1449 char_u *s;
1450
Bram Moolenaare38eab22019-12-05 21:50:01 +01001451 // The value may be very long. Skip the middle part, so that we
1452 // have some idea how it starts and ends. smsg() would always
1453 // truncate it at the end. Don't want errors such as E724 here.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001454 ++emsg_off;
1455 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
1456 --emsg_off;
1457 if (s != NULL)
1458 {
1459 if (vim_strsize(s) > MSG_BUF_CLEN)
1460 {
1461 trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN);
1462 s = buf;
1463 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001464 smsg(_("%s returning %s"), SOURCING_NAME, s);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001465 vim_free(tofree);
1466 }
1467 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001468 msg_puts("\n"); // don't overwrite this either
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001469
1470 verbose_leave_scroll();
1471 --no_wait_return;
1472 }
1473
Bram Moolenaare31ee862020-01-07 20:59:34 +01001474 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001475 estack_pop();
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001476 current_sctx = save_current_sctx;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001477#ifdef FEAT_PROFILE
1478 if (do_profiling == PROF_YES)
1479 script_prof_restore(&wait_start);
1480#endif
Bram Moolenaar93343722018-07-10 19:39:18 +02001481 if (using_sandbox)
1482 --sandbox;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001483
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001484 if (p_verbose >= 12 && SOURCING_NAME != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001485 {
1486 ++no_wait_return;
1487 verbose_enter_scroll();
1488
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001489 smsg(_("continuing in %s"), SOURCING_NAME);
Bram Moolenaare38eab22019-12-05 21:50:01 +01001490 msg_puts("\n"); // don't overwrite this either
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001491
1492 verbose_leave_scroll();
1493 --no_wait_return;
1494 }
1495
1496 did_emsg |= save_did_emsg;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001497 --depth;
1498
Bram Moolenaar6914c642017-04-01 21:21:30 +02001499 cleanup_function_call(fc);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001500}
1501
1502/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001503 * Call a user function after checking the arguments.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001504 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001505 int
1506call_user_func_check(
1507 ufunc_T *fp,
1508 int argcount,
1509 typval_T *argvars,
1510 typval_T *rettv,
1511 funcexe_T *funcexe,
1512 dict_T *selfdict)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001513{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001514 int error;
1515 int regular_args = fp->uf_args.ga_len;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001516
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001517 if (fp->uf_flags & FC_RANGE && funcexe->doesrange != NULL)
1518 *funcexe->doesrange = TRUE;
1519 if (argcount < regular_args - fp->uf_def_args.ga_len)
1520 error = FCERR_TOOFEW;
1521 else if (!has_varargs(fp) && argcount > regular_args)
1522 error = FCERR_TOOMANY;
1523 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
1524 error = FCERR_DICT;
1525 else
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02001526 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001527 int did_save_redo = FALSE;
1528 save_redo_T save_redo;
1529
1530 /*
1531 * Call the user function.
1532 * Save and restore search patterns, script variables and
1533 * redo buffer.
1534 */
1535 save_search_patterns();
1536 if (!ins_compl_active())
1537 {
1538 saveRedobuff(&save_redo);
1539 did_save_redo = TRUE;
1540 }
1541 ++fp->uf_calls;
Bram Moolenaar6f5b6df2020-05-16 21:20:12 +02001542 call_user_func(fp, argcount, argvars, rettv, funcexe,
1543 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001544 if (--fp->uf_calls <= 0 && fp->uf_refcount <= 0)
1545 // Function was unreferenced while being used, free it now.
1546 func_clear_free(fp, FALSE);
1547 if (did_save_redo)
1548 restoreRedobuff(&save_redo);
1549 restore_search_patterns();
1550 error = FCERR_NONE;
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02001551 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001552 return error;
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001553}
1554
1555/*
Bram Moolenaarc2574872016-08-11 22:51:05 +02001556 * There are two kinds of function names:
1557 * 1. ordinary names, function defined with :function
1558 * 2. numbered functions and lambdas
1559 * For the first we only count the name stored in func_hashtab as a reference,
1560 * using function() does not count as a reference, because the function is
1561 * looked up by name.
1562 */
1563 static int
1564func_name_refcount(char_u *name)
1565{
1566 return isdigit(*name) || *name == '<';
1567}
1568
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001569static funccal_entry_T *funccal_stack = NULL;
1570
1571/*
1572 * Save the current function call pointer, and set it to NULL.
1573 * Used when executing autocommands and for ":source".
1574 */
1575 void
1576save_funccal(funccal_entry_T *entry)
1577{
1578 entry->top_funccal = current_funccal;
1579 entry->next = funccal_stack;
1580 funccal_stack = entry;
1581 current_funccal = NULL;
1582}
1583
1584 void
1585restore_funccal(void)
1586{
1587 if (funccal_stack == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001588 iemsg("INTERNAL: restore_funccal()");
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001589 else
1590 {
1591 current_funccal = funccal_stack->top_funccal;
1592 funccal_stack = funccal_stack->next;
1593 }
1594}
1595
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02001596 funccall_T *
1597get_current_funccal(void)
1598{
1599 return current_funccal;
1600}
1601
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001602/*
1603 * Mark all functions of script "sid" as deleted.
1604 */
1605 void
1606delete_script_functions(int sid)
1607{
1608 hashitem_T *hi;
1609 ufunc_T *fp;
1610 long_u todo;
Bram Moolenaar909ed7e2020-04-27 23:16:41 +02001611 char_u buf[30];
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001612 size_t len;
1613
1614 buf[0] = K_SPECIAL;
1615 buf[1] = KS_EXTRA;
1616 buf[2] = (int)KE_SNR;
Bram Moolenaar909ed7e2020-04-27 23:16:41 +02001617 sprintf((char *)buf + 3, "%d_", sid);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001618 len = STRLEN(buf);
1619
1620 todo = func_hashtab.ht_used;
1621 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
1622 if (!HASHITEM_EMPTY(hi))
1623 {
Bram Moolenaar03afdcf2020-04-27 23:39:30 +02001624 fp = HI2UF(hi);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001625 if (STRNCMP(fp->uf_name, buf, len) == 0)
1626 {
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001627 fp->uf_flags |= FC_DEAD;
1628 func_clear(fp, TRUE);
1629 }
1630 --todo;
1631 }
1632}
1633
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001634#if defined(EXITFREE) || defined(PROTO)
1635 void
1636free_all_functions(void)
1637{
1638 hashitem_T *hi;
Bram Moolenaarc2574872016-08-11 22:51:05 +02001639 ufunc_T *fp;
1640 long_u skipped = 0;
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001641 long_u todo = 1;
1642 long_u used;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001643
Bram Moolenaare38eab22019-12-05 21:50:01 +01001644 // Clean up the current_funccal chain and the funccal stack.
Bram Moolenaar6914c642017-04-01 21:21:30 +02001645 while (current_funccal != NULL)
1646 {
1647 clear_tv(current_funccal->rettv);
1648 cleanup_function_call(current_funccal);
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001649 if (current_funccal == NULL && funccal_stack != NULL)
1650 restore_funccal();
Bram Moolenaar6914c642017-04-01 21:21:30 +02001651 }
1652
Bram Moolenaare38eab22019-12-05 21:50:01 +01001653 // First clear what the functions contain. Since this may lower the
1654 // reference count of a function, it may also free a function and change
1655 // the hash table. Restart if that happens.
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001656 while (todo > 0)
1657 {
1658 todo = func_hashtab.ht_used;
1659 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
1660 if (!HASHITEM_EMPTY(hi))
1661 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001662 // clear the def function index now
1663 fp = HI2UF(hi);
1664 fp->uf_flags &= ~FC_DEAD;
Bram Moolenaar822ba242020-05-24 23:00:18 +02001665 fp->uf_dfunc_idx = UF_NOT_COMPILED;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001666
Bram Moolenaare38eab22019-12-05 21:50:01 +01001667 // Only free functions that are not refcounted, those are
1668 // supposed to be freed when no longer referenced.
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001669 if (func_name_refcount(fp->uf_name))
1670 ++skipped;
1671 else
1672 {
1673 used = func_hashtab.ht_used;
1674 func_clear(fp, TRUE);
1675 if (used != func_hashtab.ht_used)
1676 {
1677 skipped = 0;
1678 break;
1679 }
1680 }
1681 --todo;
1682 }
1683 }
1684
Bram Moolenaare38eab22019-12-05 21:50:01 +01001685 // Now actually free the functions. Need to start all over every time,
1686 // because func_free() may change the hash table.
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001687 skipped = 0;
Bram Moolenaarc2574872016-08-11 22:51:05 +02001688 while (func_hashtab.ht_used > skipped)
1689 {
1690 todo = func_hashtab.ht_used;
1691 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001692 if (!HASHITEM_EMPTY(hi))
1693 {
Bram Moolenaarc2574872016-08-11 22:51:05 +02001694 --todo;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001695 // Only free functions that are not refcounted, those are
1696 // supposed to be freed when no longer referenced.
Bram Moolenaarc2574872016-08-11 22:51:05 +02001697 fp = HI2UF(hi);
1698 if (func_name_refcount(fp->uf_name))
1699 ++skipped;
1700 else
1701 {
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001702 func_free(fp, FALSE);
Bram Moolenaarc2574872016-08-11 22:51:05 +02001703 skipped = 0;
1704 break;
1705 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001706 }
Bram Moolenaarc2574872016-08-11 22:51:05 +02001707 }
1708 if (skipped == 0)
1709 hash_clear(&func_hashtab);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001710
1711 free_def_functions();
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001712}
1713#endif
1714
1715/*
1716 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaara26b9702020-04-18 19:53:28 +02001717 * lower case letter and doesn't contain AUTOLOAD_CHAR or ':'.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001718 * "len" is the length of "name", or -1 for NUL terminated.
1719 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001720 int
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001721builtin_function(char_u *name, int len)
1722{
1723 char_u *p;
1724
Bram Moolenaara26b9702020-04-18 19:53:28 +02001725 if (!ASCII_ISLOWER(name[0]) || name[1] == ':')
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001726 return FALSE;
1727 p = vim_strchr(name, AUTOLOAD_CHAR);
1728 return p == NULL || (len > 0 && p > name + len);
1729}
1730
1731 int
1732func_call(
1733 char_u *name,
1734 typval_T *args,
1735 partial_T *partial,
1736 dict_T *selfdict,
1737 typval_T *rettv)
1738{
Bram Moolenaar50985eb2020-01-27 22:09:39 +01001739 list_T *l = args->vval.v_list;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001740 listitem_T *item;
1741 typval_T argv[MAX_FUNC_ARGS + 1];
1742 int argc = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001743 int r = 0;
1744
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02001745 CHECK_LIST_MATERIALIZE(l);
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001746 FOR_ALL_LIST_ITEMS(l, item)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001747 {
1748 if (argc == MAX_FUNC_ARGS - (partial == NULL ? 0 : partial->pt_argc))
1749 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001750 emsg(_("E699: Too many arguments"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001751 break;
1752 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001753 // Make a copy of each argument. This is needed to be able to set
1754 // v_lock to VAR_FIXED in the copy without changing the original list.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001755 copy_tv(&item->li_tv, &argv[argc++]);
1756 }
1757
1758 if (item == NULL)
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001759 {
1760 funcexe_T funcexe;
1761
Bram Moolenaara80faa82020-04-12 19:37:17 +02001762 CLEAR_FIELD(funcexe);
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001763 funcexe.firstline = curwin->w_cursor.lnum;
1764 funcexe.lastline = curwin->w_cursor.lnum;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001765 funcexe.evaluate = TRUE;
1766 funcexe.partial = partial;
1767 funcexe.selfdict = selfdict;
1768 r = call_func(name, -1, rettv, argc, argv, &funcexe);
1769 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001770
Bram Moolenaare38eab22019-12-05 21:50:01 +01001771 // Free the arguments.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001772 while (argc > 0)
1773 clear_tv(&argv[--argc]);
1774
1775 return r;
1776}
1777
Bram Moolenaar0e57dd82019-09-16 22:56:03 +02001778static int callback_depth = 0;
1779
1780 int
1781get_callback_depth(void)
1782{
1783 return callback_depth;
1784}
1785
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001786/*
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001787 * Invoke call_func() with a callback.
1788 */
1789 int
1790call_callback(
1791 callback_T *callback,
1792 int len, // length of "name" or -1 to use strlen()
1793 typval_T *rettv, // return value goes here
1794 int argcount, // number of "argvars"
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001795 typval_T *argvars) // vars for arguments, must have "argcount"
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001796 // PLUS ONE elements!
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001797{
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001798 funcexe_T funcexe;
Bram Moolenaar0e57dd82019-09-16 22:56:03 +02001799 int ret;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001800
Bram Moolenaara80faa82020-04-12 19:37:17 +02001801 CLEAR_FIELD(funcexe);
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001802 funcexe.evaluate = TRUE;
1803 funcexe.partial = callback->cb_partial;
Bram Moolenaar0e57dd82019-09-16 22:56:03 +02001804 ++callback_depth;
1805 ret = call_func(callback->cb_name, len, rettv, argcount, argvars, &funcexe);
1806 --callback_depth;
1807 return ret;
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001808}
1809
1810/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001811 * Give an error message for the result of a function.
1812 * Nothing if "error" is FCERR_NONE.
1813 */
1814 void
1815user_func_error(int error, char_u *name)
1816{
1817 switch (error)
1818 {
1819 case FCERR_UNKNOWN:
1820 emsg_funcname(e_unknownfunc, name);
1821 break;
1822 case FCERR_NOTMETHOD:
1823 emsg_funcname(
1824 N_("E276: Cannot use function as a method: %s"), name);
1825 break;
1826 case FCERR_DELETED:
1827 emsg_funcname(N_(e_func_deleted), name);
1828 break;
1829 case FCERR_TOOMANY:
1830 emsg_funcname((char *)e_toomanyarg, name);
1831 break;
1832 case FCERR_TOOFEW:
1833 emsg_funcname((char *)e_toofewarg, name);
1834 break;
1835 case FCERR_SCRIPT:
1836 emsg_funcname(
1837 N_("E120: Using <SID> not in a script context: %s"), name);
1838 break;
1839 case FCERR_DICT:
1840 emsg_funcname(
1841 N_("E725: Calling dict function without Dictionary: %s"),
1842 name);
1843 break;
1844 }
1845}
1846
1847/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001848 * Call a function with its resolved parameters
Bram Moolenaardf48fb42016-07-22 21:50:18 +02001849 *
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001850 * Return FAIL when the function can't be called, OK otherwise.
1851 * Also returns OK when an error was encountered while executing the function.
1852 */
1853 int
1854call_func(
Bram Moolenaar6ed88192019-05-11 18:37:44 +02001855 char_u *funcname, // name of the function
1856 int len, // length of "name" or -1 to use strlen()
1857 typval_T *rettv, // return value goes here
1858 int argcount_in, // number of "argvars"
1859 typval_T *argvars_in, // vars for arguments, must have "argcount"
1860 // PLUS ONE elements!
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001861 funcexe_T *funcexe) // more arguments
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001862{
1863 int ret = FAIL;
Bram Moolenaaref140542019-12-31 21:27:13 +01001864 int error = FCERR_NONE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001865 int i;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001866 ufunc_T *fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001867 char_u fname_buf[FLEN_FIXED + 1];
1868 char_u *tofree = NULL;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001869 char_u *fname = NULL;
1870 char_u *name = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001871 int argcount = argcount_in;
1872 typval_T *argvars = argvars_in;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001873 dict_T *selfdict = funcexe->selfdict;
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001874 typval_T argv[MAX_FUNC_ARGS + 1]; // used when "partial" or
1875 // "funcexe->basetv" is not NULL
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001876 int argv_clear = 0;
Bram Moolenaar761fdf02019-08-05 23:10:16 +02001877 int argv_base = 0;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001878 partial_T *partial = funcexe->partial;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001879
Bram Moolenaarc507a2d2019-08-29 21:32:55 +02001880 // Initialize rettv so that it is safe for caller to invoke clear_tv(rettv)
1881 // even when call_func() returns FAIL.
1882 rettv->v_type = VAR_UNKNOWN;
1883
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001884 if (partial != NULL)
1885 fp = partial->pt_func;
1886 if (fp == NULL)
1887 {
1888 // Make a copy of the name, if it comes from a funcref variable it
1889 // could be changed or deleted in the called function.
1890 name = len > 0 ? vim_strnsave(funcname, len) : vim_strsave(funcname);
1891 if (name == NULL)
1892 return ret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001893
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001894 fname = fname_trans_sid(name, fname_buf, &tofree, &error);
1895 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001896
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001897 if (funcexe->doesrange != NULL)
1898 *funcexe->doesrange = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001899
1900 if (partial != NULL)
1901 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001902 // When the function has a partial with a dict and there is a dict
1903 // argument, use the dict argument. That is backwards compatible.
1904 // When the dict was bound explicitly use the one from the partial.
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001905 if (partial->pt_dict != NULL && (selfdict == NULL || !partial->pt_auto))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001906 selfdict = partial->pt_dict;
Bram Moolenaaref140542019-12-31 21:27:13 +01001907 if (error == FCERR_NONE && partial->pt_argc > 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001908 {
1909 for (argv_clear = 0; argv_clear < partial->pt_argc; ++argv_clear)
Bram Moolenaar4c054e92019-11-10 00:13:50 +01001910 {
1911 if (argv_clear + argcount_in >= MAX_FUNC_ARGS)
1912 {
Bram Moolenaaref140542019-12-31 21:27:13 +01001913 error = FCERR_TOOMANY;
Bram Moolenaar4c054e92019-11-10 00:13:50 +01001914 goto theend;
1915 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001916 copy_tv(&partial->pt_argv[argv_clear], &argv[argv_clear]);
Bram Moolenaar4c054e92019-11-10 00:13:50 +01001917 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001918 for (i = 0; i < argcount_in; ++i)
1919 argv[i + argv_clear] = argvars_in[i];
1920 argvars = argv;
1921 argcount = partial->pt_argc + argcount_in;
1922 }
1923 }
1924
Bram Moolenaaref140542019-12-31 21:27:13 +01001925 if (error == FCERR_NONE && funcexe->evaluate)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001926 {
1927 char_u *rfname = fname;
1928
Bram Moolenaare38eab22019-12-05 21:50:01 +01001929 // Ignore "g:" before a function name.
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001930 if (fp == NULL && fname[0] == 'g' && fname[1] == ':')
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001931 rfname = fname + 2;
1932
Bram Moolenaare38eab22019-12-05 21:50:01 +01001933 rettv->v_type = VAR_NUMBER; // default rettv is number zero
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001934 rettv->vval.v_number = 0;
Bram Moolenaaref140542019-12-31 21:27:13 +01001935 error = FCERR_UNKNOWN;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001936
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001937 if (fp != NULL || !builtin_function(rfname, -1))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001938 {
1939 /*
1940 * User defined function.
1941 */
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001942 if (fp == NULL)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001943 fp = find_func(rfname, FALSE, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001944
Bram Moolenaare38eab22019-12-05 21:50:01 +01001945 // Trigger FuncUndefined event, may load the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001946 if (fp == NULL
1947 && apply_autocmds(EVENT_FUNCUNDEFINED,
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001948 rfname, rfname, TRUE, NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001949 && !aborting())
1950 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001951 // executed an autocommand, search for the function again
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001952 fp = find_func(rfname, FALSE, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001953 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001954 // Try loading a package.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001955 if (fp == NULL && script_autoload(rfname, TRUE) && !aborting())
1956 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001957 // loaded a package, search for the function again
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001958 fp = find_func(rfname, FALSE, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001959 }
Bram Moolenaara26b9702020-04-18 19:53:28 +02001960 if (fp == NULL)
1961 {
1962 char_u *p = untrans_function_name(rfname);
1963
1964 // If using Vim9 script try not local to the script.
1965 // TODO: should not do this if the name started with "s:".
1966 if (p != NULL)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001967 fp = find_func(p, FALSE, NULL);
Bram Moolenaara26b9702020-04-18 19:53:28 +02001968 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001969
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001970 if (fp != NULL && (fp->uf_flags & FC_DELETED))
Bram Moolenaaref140542019-12-31 21:27:13 +01001971 error = FCERR_DELETED;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001972 else if (fp != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001973 {
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001974 if (funcexe->argv_func != NULL)
Bram Moolenaarb0745b22019-11-09 22:28:11 +01001975 // postponed filling in the arguments, do it now
1976 argcount = funcexe->argv_func(argcount, argvars, argv_clear,
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001977 fp->uf_args.ga_len);
Bram Moolenaardf48fb42016-07-22 21:50:18 +02001978
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001979 if (funcexe->basetv != NULL)
1980 {
1981 // Method call: base->Method()
1982 mch_memmove(&argv[1], argvars, sizeof(typval_T) * argcount);
1983 argv[0] = *funcexe->basetv;
1984 argcount++;
Bram Moolenaar761fdf02019-08-05 23:10:16 +02001985 argvars = argv;
1986 argv_base = 1;
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001987 }
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001988
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001989 error = call_user_func_check(fp, argcount, argvars, rettv,
1990 funcexe, selfdict);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001991 }
1992 }
Bram Moolenaarac92e252019-08-03 21:58:38 +02001993 else if (funcexe->basetv != NULL)
1994 {
1995 /*
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001996 * expr->method(): Find the method name in the table, call its
1997 * implementation with the base as one of the arguments.
Bram Moolenaarac92e252019-08-03 21:58:38 +02001998 */
1999 error = call_internal_method(fname, argcount, argvars, rettv,
2000 funcexe->basetv);
2001 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002002 else
2003 {
2004 /*
2005 * Find the function name in the table, call its implementation.
2006 */
2007 error = call_internal_func(fname, argcount, argvars, rettv);
2008 }
2009 /*
2010 * The function call (or "FuncUndefined" autocommand sequence) might
2011 * have been aborted by an error, an interrupt, or an explicitly thrown
2012 * exception that has not been caught so far. This situation can be
2013 * tested for by calling aborting(). For an error in an internal
2014 * function or for the "E132" error in call_user_func(), however, the
2015 * throw point at which the "force_abort" flag (temporarily reset by
2016 * emsg()) is normally updated has not been reached yet. We need to
2017 * update that flag first to make aborting() reliable.
2018 */
2019 update_force_abort();
2020 }
Bram Moolenaaref140542019-12-31 21:27:13 +01002021 if (error == FCERR_NONE)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002022 ret = OK;
2023
Bram Moolenaar4c054e92019-11-10 00:13:50 +01002024theend:
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002025 /*
2026 * Report an error unless the argument evaluation or function call has been
2027 * cancelled due to an aborting error, an interrupt, or an exception.
2028 */
2029 if (!aborting())
2030 {
Bram Moolenaarf10806b2020-04-02 18:34:35 +02002031 user_func_error(error, (name != NULL) ? name : funcname);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002032 }
2033
Bram Moolenaar761fdf02019-08-05 23:10:16 +02002034 // clear the copies made from the partial
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002035 while (argv_clear > 0)
Bram Moolenaar761fdf02019-08-05 23:10:16 +02002036 clear_tv(&argv[--argv_clear + argv_base]);
2037
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002038 vim_free(tofree);
2039 vim_free(name);
2040
2041 return ret;
2042}
2043
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002044 static char_u *
2045printable_func_name(ufunc_T *fp)
2046{
2047 return fp->uf_name_exp != NULL ? fp->uf_name_exp : fp->uf_name;
2048}
2049
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002050/*
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002051 * List the head of the function: "function name(arg1, arg2)".
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002052 */
2053 static void
2054list_func_head(ufunc_T *fp, int indent)
2055{
2056 int j;
2057
2058 msg_start();
2059 if (indent)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002060 msg_puts(" ");
Bram Moolenaar822ba242020-05-24 23:00:18 +02002061 if (fp->uf_dfunc_idx != UF_NOT_COMPILED)
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002062 msg_puts("def ");
2063 else
2064 msg_puts("function ");
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002065 msg_puts((char *)printable_func_name(fp));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002066 msg_putchar('(');
2067 for (j = 0; j < fp->uf_args.ga_len; ++j)
2068 {
2069 if (j)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002070 msg_puts(", ");
2071 msg_puts((char *)FUNCARG(fp, j));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002072 if (fp->uf_arg_types != NULL)
2073 {
2074 char *tofree;
2075
2076 msg_puts(": ");
2077 msg_puts(type_name(fp->uf_arg_types[j], &tofree));
2078 vim_free(tofree);
2079 }
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002080 if (j >= fp->uf_args.ga_len - fp->uf_def_args.ga_len)
2081 {
2082 msg_puts(" = ");
2083 msg_puts(((char **)(fp->uf_def_args.ga_data))
2084 [j - fp->uf_args.ga_len + fp->uf_def_args.ga_len]);
2085 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002086 }
2087 if (fp->uf_varargs)
2088 {
2089 if (j)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002090 msg_puts(", ");
2091 msg_puts("...");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002092 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002093 if (fp->uf_va_name != NULL)
2094 {
2095 if (j)
2096 msg_puts(", ");
2097 msg_puts("...");
2098 msg_puts((char *)fp->uf_va_name);
2099 if (fp->uf_va_type)
2100 {
2101 char *tofree;
2102
2103 msg_puts(": ");
2104 msg_puts(type_name(fp->uf_va_type, &tofree));
2105 vim_free(tofree);
2106 }
2107 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002108 msg_putchar(')');
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002109
Bram Moolenaar822ba242020-05-24 23:00:18 +02002110 if (fp->uf_dfunc_idx != UF_NOT_COMPILED)
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002111 {
2112 if (fp->uf_ret_type != &t_void)
2113 {
2114 char *tofree;
2115
2116 msg_puts(": ");
2117 msg_puts(type_name(fp->uf_ret_type, &tofree));
2118 vim_free(tofree);
2119 }
2120 }
2121 else if (fp->uf_flags & FC_ABORT)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002122 msg_puts(" abort");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002123 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002124 msg_puts(" range");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002125 if (fp->uf_flags & FC_DICT)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002126 msg_puts(" dict");
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002127 if (fp->uf_flags & FC_CLOSURE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002128 msg_puts(" closure");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002129 msg_clr_eos();
2130 if (p_verbose > 0)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002131 last_set_msg(fp->uf_script_ctx);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002132}
2133
2134/*
2135 * Get a function name, translating "<SID>" and "<SNR>".
2136 * Also handles a Funcref in a List or Dictionary.
2137 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002138 * Set "*is_global" to TRUE when the function must be global, unless
2139 * "is_global" is NULL.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002140 * flags:
2141 * TFN_INT: internal function name OK
2142 * TFN_QUIET: be quiet
2143 * TFN_NO_AUTOLOAD: do not use script autoloading
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02002144 * TFN_NO_DEREF: do not dereference a Funcref
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002145 * Advances "pp" to just after the function name (if no error).
2146 */
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002147 char_u *
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002148trans_function_name(
2149 char_u **pp,
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002150 int *is_global,
Bram Moolenaare38eab22019-12-05 21:50:01 +01002151 int skip, // only find the end, don't evaluate
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002152 int flags,
Bram Moolenaare38eab22019-12-05 21:50:01 +01002153 funcdict_T *fdp, // return: info about dictionary used
2154 partial_T **partial) // return: partial of a FuncRef
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002155{
2156 char_u *name = NULL;
2157 char_u *start;
2158 char_u *end;
2159 int lead;
2160 char_u sid_buf[20];
2161 int len;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002162 int extra = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002163 lval_T lv;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002164 int vim9script;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002165
2166 if (fdp != NULL)
Bram Moolenaara80faa82020-04-12 19:37:17 +02002167 CLEAR_POINTER(fdp);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002168 start = *pp;
2169
Bram Moolenaare38eab22019-12-05 21:50:01 +01002170 // Check for hard coded <SNR>: already translated function ID (from a user
2171 // command).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002172 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
2173 && (*pp)[2] == (int)KE_SNR)
2174 {
2175 *pp += 3;
2176 len = get_id_len(pp) + 3;
2177 return vim_strnsave(start, len);
2178 }
2179
Bram Moolenaare38eab22019-12-05 21:50:01 +01002180 // A name starting with "<SID>" or "<SNR>" is local to a script. But
2181 // don't skip over "s:", get_lval() needs it for "s:dict.func".
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002182 lead = eval_fname_script(start);
2183 if (lead > 2)
2184 start += lead;
2185
Bram Moolenaare38eab22019-12-05 21:50:01 +01002186 // Note that TFN_ flags use the same values as GLV_ flags.
Bram Moolenaar6e65d592017-12-07 22:11:27 +01002187 end = get_lval(start, NULL, &lv, FALSE, skip, flags | GLV_READ_ONLY,
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002188 lead > 2 ? 0 : FNE_CHECK_START);
2189 if (end == start)
2190 {
2191 if (!skip)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002192 emsg(_("E129: Function name required"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002193 goto theend;
2194 }
2195 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
2196 {
2197 /*
2198 * Report an invalid expression in braces, unless the expression
2199 * evaluation has been cancelled due to an aborting error, an
2200 * interrupt, or an exception.
2201 */
2202 if (!aborting())
2203 {
2204 if (end != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002205 semsg(_(e_invarg2), start);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002206 }
2207 else
2208 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
2209 goto theend;
2210 }
2211
2212 if (lv.ll_tv != NULL)
2213 {
2214 if (fdp != NULL)
2215 {
2216 fdp->fd_dict = lv.ll_dict;
2217 fdp->fd_newkey = lv.ll_newkey;
2218 lv.ll_newkey = NULL;
2219 fdp->fd_di = lv.ll_di;
2220 }
2221 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
2222 {
2223 name = vim_strsave(lv.ll_tv->vval.v_string);
2224 *pp = end;
2225 }
2226 else if (lv.ll_tv->v_type == VAR_PARTIAL
2227 && lv.ll_tv->vval.v_partial != NULL)
2228 {
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002229 name = vim_strsave(partial_name(lv.ll_tv->vval.v_partial));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002230 *pp = end;
2231 if (partial != NULL)
2232 *partial = lv.ll_tv->vval.v_partial;
2233 }
2234 else
2235 {
2236 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
2237 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002238 emsg(_(e_funcref));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002239 else
2240 *pp = end;
2241 name = NULL;
2242 }
2243 goto theend;
2244 }
2245
2246 if (lv.ll_name == NULL)
2247 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002248 // Error found, but continue after the function name.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002249 *pp = end;
2250 goto theend;
2251 }
2252
Bram Moolenaare38eab22019-12-05 21:50:01 +01002253 // Check if the name is a Funcref. If so, use the value.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002254 if (lv.ll_exp_name != NULL)
2255 {
2256 len = (int)STRLEN(lv.ll_exp_name);
2257 name = deref_func_name(lv.ll_exp_name, &len, partial,
2258 flags & TFN_NO_AUTOLOAD);
2259 if (name == lv.ll_exp_name)
2260 name = NULL;
2261 }
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02002262 else if (!(flags & TFN_NO_DEREF))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002263 {
2264 len = (int)(end - *pp);
2265 name = deref_func_name(*pp, &len, partial, flags & TFN_NO_AUTOLOAD);
2266 if (name == *pp)
2267 name = NULL;
2268 }
2269 if (name != NULL)
2270 {
2271 name = vim_strsave(name);
2272 *pp = end;
2273 if (STRNCMP(name, "<SNR>", 5) == 0)
2274 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002275 // Change "<SNR>" to the byte sequence.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002276 name[0] = K_SPECIAL;
2277 name[1] = KS_EXTRA;
2278 name[2] = (int)KE_SNR;
2279 mch_memmove(name + 3, name + 5, STRLEN(name + 5) + 1);
2280 }
2281 goto theend;
2282 }
2283
2284 if (lv.ll_exp_name != NULL)
2285 {
2286 len = (int)STRLEN(lv.ll_exp_name);
2287 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
2288 && STRNCMP(lv.ll_name, "s:", 2) == 0)
2289 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002290 // When there was "s:" already or the name expanded to get a
2291 // leading "s:" then remove it.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002292 lv.ll_name += 2;
2293 len -= 2;
2294 lead = 2;
2295 }
2296 }
2297 else
2298 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002299 // skip over "s:" and "g:"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002300 if (lead == 2 || (lv.ll_name[0] == 'g' && lv.ll_name[1] == ':'))
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002301 {
2302 if (is_global != NULL && lv.ll_name[0] == 'g')
2303 *is_global = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002304 lv.ll_name += 2;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002305 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002306 len = (int)(end - lv.ll_name);
2307 }
2308
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002309 // In Vim9 script a user function is script-local by default.
2310 vim9script = ASCII_ISUPPER(*start)
2311 && current_sctx.sc_version == SCRIPT_VERSION_VIM9;
2312
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002313 /*
2314 * Copy the function name to allocated memory.
2315 * Accept <SID>name() inside a script, translate into <SNR>123_name().
2316 * Accept <SNR>123_name() outside a script.
2317 */
2318 if (skip)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002319 lead = 0; // do nothing
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002320 else if (lead > 0 || vim9script)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002321 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002322 if (!vim9script)
2323 lead = 3;
2324 if (vim9script || (lv.ll_exp_name != NULL
2325 && eval_fname_sid(lv.ll_exp_name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002326 || eval_fname_sid(*pp))
2327 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002328 // It's script-local, "s:" or "<SID>"
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002329 if (current_sctx.sc_sid <= 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002330 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002331 emsg(_(e_usingsid));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002332 goto theend;
2333 }
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002334 sprintf((char *)sid_buf, "%ld_", (long)current_sctx.sc_sid);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002335 if (vim9script)
2336 extra = 3 + (int)STRLEN(sid_buf);
2337 else
2338 lead += (int)STRLEN(sid_buf);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002339 }
2340 }
2341 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name, len))
2342 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002343 semsg(_("E128: Function name must start with a capital or \"s:\": %s"),
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002344 start);
2345 goto theend;
2346 }
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02002347 if (!skip && !(flags & TFN_QUIET) && !(flags & TFN_NO_DEREF))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002348 {
2349 char_u *cp = vim_strchr(lv.ll_name, ':');
2350
2351 if (cp != NULL && cp < end)
2352 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002353 semsg(_("E884: Function name cannot contain a colon: %s"), start);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002354 goto theend;
2355 }
2356 }
2357
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002358 name = alloc(len + lead + extra + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002359 if (name != NULL)
2360 {
Bram Moolenaar9a5e5a32020-01-28 23:09:23 +01002361 if (!skip && (lead > 0 || vim9script))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002362 {
2363 name[0] = K_SPECIAL;
2364 name[1] = KS_EXTRA;
2365 name[2] = (int)KE_SNR;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002366 if (vim9script || lead > 3) // If it's "<SID>"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002367 STRCPY(name + 3, sid_buf);
2368 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002369 mch_memmove(name + lead + extra, lv.ll_name, (size_t)len);
2370 name[lead + extra + len] = NUL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002371 }
2372 *pp = end;
2373
2374theend:
2375 clear_lval(&lv);
2376 return name;
2377}
2378
2379/*
Bram Moolenaara26b9702020-04-18 19:53:28 +02002380 * Assuming "name" is the result of trans_function_name() and it was prefixed
2381 * to use the script-local name, return the unmodified name (points into
2382 * "name"). Otherwise return NULL.
2383 * This can be used to first search for a script-local function and fall back
2384 * to the global function if not found.
2385 */
2386 char_u *
2387untrans_function_name(char_u *name)
2388{
2389 char_u *p;
2390
2391 if (*name == K_SPECIAL && current_sctx.sc_version == SCRIPT_VERSION_VIM9)
2392 {
2393 p = vim_strchr(name, '_');
2394 if (p != NULL)
2395 return p + 1;
2396 }
2397 return NULL;
2398}
2399
2400/*
Bram Moolenaar3fffa972020-06-05 21:06:10 +02002401 * List functions. When "regmatch" is NULL all of then.
2402 * Otherwise functions matching "regmatch".
2403 */
2404 static void
2405list_functions(regmatch_T *regmatch)
2406{
2407 long_u used = func_hashtab.ht_used;
2408 long_u todo = used;
2409 hashitem_T *ht_array = func_hashtab.ht_array;
2410 hashitem_T *hi;
2411
2412 for (hi = ht_array; todo > 0 && !got_int; ++hi)
2413 {
2414 if (!HASHITEM_EMPTY(hi))
2415 {
2416 ufunc_T *fp = HI2UF(hi);
2417
2418 --todo;
2419 if ((fp->uf_flags & FC_DEAD) == 0
2420 && (regmatch == NULL
2421 ? !message_filtered(fp->uf_name)
2422 && !func_name_refcount(fp->uf_name)
2423 : !isdigit(*fp->uf_name)
2424 && vim_regexec(regmatch, fp->uf_name, 0)))
2425 {
2426 list_func_head(fp, FALSE);
2427 if (used != func_hashtab.ht_used
2428 || ht_array != func_hashtab.ht_array)
2429 {
2430 emsg(_("E454: function list was modified"));
2431 return;
2432 }
2433 }
2434 }
2435 }
2436}
2437
2438/*
Bram Moolenaar04b12692020-05-04 23:24:44 +02002439 * ":function" also supporting nested ":def".
2440 * Returns a pointer to the function or NULL if no function defined.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002441 */
Bram Moolenaar04b12692020-05-04 23:24:44 +02002442 ufunc_T *
Bram Moolenaar822ba242020-05-24 23:00:18 +02002443def_function(exarg_T *eap, char_u *name_arg)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002444{
2445 char_u *theline;
Bram Moolenaar53564f72017-06-24 14:48:11 +02002446 char_u *line_to_free = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002447 int j;
2448 int c;
2449 int saved_did_emsg;
2450 int saved_wait_return = need_wait_return;
Bram Moolenaar04b12692020-05-04 23:24:44 +02002451 char_u *name = name_arg;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002452 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002453 char_u *p;
2454 char_u *arg;
2455 char_u *line_arg = NULL;
2456 garray_T newargs;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002457 garray_T argtypes;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002458 garray_T default_args;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002459 garray_T newlines;
2460 int varargs = FALSE;
2461 int flags = 0;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002462 char_u *ret_type = NULL;
Bram Moolenaar04b12692020-05-04 23:24:44 +02002463 ufunc_T *fp = NULL;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002464 int overwrite = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002465 int indent;
2466 int nesting;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002467#define MAX_FUNC_NESTING 50
2468 char nesting_def[MAX_FUNC_NESTING];
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002469 dictitem_T *v;
2470 funcdict_T fudi;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002471 static int func_nr = 0; // number for nameless function
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002472 int paren;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002473 hashitem_T *hi;
Bram Moolenaare96a2492019-06-25 04:12:16 +02002474 int do_concat = TRUE;
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002475 linenr_T sourcing_lnum_off;
2476 linenr_T sourcing_lnum_top;
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002477 int is_heredoc = FALSE;
2478 char_u *skip_until = NULL;
2479 char_u *heredoc_trimmed = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002480
Bram Moolenaar822ba242020-05-24 23:00:18 +02002481 if (in_vim9script() && eap->forceit)
2482 {
2483 emsg(_(e_nobang));
2484 return NULL;
2485 }
2486
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002487 /*
2488 * ":function" without argument: list functions.
2489 */
Bram Moolenaara72cfb82020-04-23 17:07:30 +02002490 if (ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002491 {
2492 if (!eap->skip)
Bram Moolenaar3fffa972020-06-05 21:06:10 +02002493 list_functions(NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002494 eap->nextcmd = check_nextcmd(eap->arg);
Bram Moolenaar04b12692020-05-04 23:24:44 +02002495 return NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002496 }
2497
2498 /*
2499 * ":function /pat": list functions matching pattern.
2500 */
2501 if (*eap->arg == '/')
2502 {
Bram Moolenaare8c4abb2020-04-02 21:13:25 +02002503 p = skip_regexp(eap->arg + 1, '/', TRUE);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002504 if (!eap->skip)
2505 {
2506 regmatch_T regmatch;
2507
2508 c = *p;
2509 *p = NUL;
2510 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
2511 *p = c;
2512 if (regmatch.regprog != NULL)
2513 {
2514 regmatch.rm_ic = p_ic;
Bram Moolenaar3fffa972020-06-05 21:06:10 +02002515 list_functions(&regmatch);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002516 vim_regfree(regmatch.regprog);
2517 }
2518 }
2519 if (*p == '/')
2520 ++p;
2521 eap->nextcmd = check_nextcmd(p);
Bram Moolenaar04b12692020-05-04 23:24:44 +02002522 return NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002523 }
2524
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002525 ga_init(&newargs);
2526 ga_init(&argtypes);
2527 ga_init(&default_args);
2528
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002529 /*
2530 * Get the function name. There are these situations:
2531 * func normal function name
2532 * "name" == func, "fudi.fd_dict" == NULL
2533 * dict.func new dictionary entry
2534 * "name" == NULL, "fudi.fd_dict" set,
2535 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
2536 * dict.func existing dict entry with a Funcref
2537 * "name" == func, "fudi.fd_dict" set,
2538 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
2539 * dict.func existing dict entry that's not a Funcref
2540 * "name" == NULL, "fudi.fd_dict" set,
2541 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
2542 * s:func script-local function name
2543 * g:func global function name, same as "func"
2544 */
2545 p = eap->arg;
Bram Moolenaar04b12692020-05-04 23:24:44 +02002546 if (name_arg != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002547 {
Bram Moolenaar04b12692020-05-04 23:24:44 +02002548 // nested function, argument is (args).
2549 paren = TRUE;
2550 CLEAR_FIELD(fudi);
2551 }
2552 else
2553 {
2554 name = trans_function_name(&p, &is_global, eap->skip,
2555 TFN_NO_AUTOLOAD, &fudi, NULL);
2556 paren = (vim_strchr(p, '(') != NULL);
2557 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002558 {
Bram Moolenaar04b12692020-05-04 23:24:44 +02002559 /*
2560 * Return on an invalid expression in braces, unless the expression
2561 * evaluation has been cancelled due to an aborting error, an
2562 * interrupt, or an exception.
2563 */
2564 if (!aborting())
2565 {
2566 if (!eap->skip && fudi.fd_newkey != NULL)
2567 semsg(_(e_dictkey), fudi.fd_newkey);
2568 vim_free(fudi.fd_newkey);
2569 return NULL;
2570 }
2571 else
2572 eap->skip = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002573 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002574 }
2575
Bram Moolenaare38eab22019-12-05 21:50:01 +01002576 // An error in a function call during evaluation of an expression in magic
2577 // braces should not cause the function not to be defined.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002578 saved_did_emsg = did_emsg;
2579 did_emsg = FALSE;
2580
2581 /*
2582 * ":function func" with only function name: list function.
2583 */
2584 if (!paren)
2585 {
2586 if (!ends_excmd(*skipwhite(p)))
2587 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002588 emsg(_(e_trailing));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002589 goto ret_free;
2590 }
2591 eap->nextcmd = check_nextcmd(p);
2592 if (eap->nextcmd != NULL)
2593 *p = NUL;
2594 if (!eap->skip && !got_int)
2595 {
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002596 fp = find_func(name, is_global, NULL);
Bram Moolenaara26b9702020-04-18 19:53:28 +02002597 if (fp == NULL && ASCII_ISUPPER(*eap->arg))
2598 {
2599 char_u *up = untrans_function_name(name);
2600
2601 // With Vim9 script the name was made script-local, if not
2602 // found try again with the original name.
Bram Moolenaarec9749f2020-04-18 20:51:40 +02002603 if (up != NULL)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002604 fp = find_func(up, FALSE, NULL);
Bram Moolenaara26b9702020-04-18 19:53:28 +02002605 }
2606
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002607 if (fp != NULL)
2608 {
2609 list_func_head(fp, TRUE);
2610 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
2611 {
2612 if (FUNCLINE(fp, j) == NULL)
2613 continue;
2614 msg_putchar('\n');
2615 msg_outnum((long)(j + 1));
2616 if (j < 9)
2617 msg_putchar(' ');
2618 if (j < 99)
2619 msg_putchar(' ');
2620 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaare38eab22019-12-05 21:50:01 +01002621 out_flush(); // show a line at a time
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002622 ui_breakcheck();
2623 }
2624 if (!got_int)
2625 {
2626 msg_putchar('\n');
Bram Moolenaar822ba242020-05-24 23:00:18 +02002627 if (fp->uf_dfunc_idx != UF_NOT_COMPILED)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002628 msg_puts(" enddef");
2629 else
2630 msg_puts(" endfunction");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002631 }
2632 }
2633 else
Bram Moolenaara26b9702020-04-18 19:53:28 +02002634 emsg_funcname(N_("E123: Undefined function: %s"), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002635 }
2636 goto ret_free;
2637 }
2638
2639 /*
2640 * ":function name(arg1, arg2)" Define function.
2641 */
2642 p = skipwhite(p);
2643 if (*p != '(')
2644 {
2645 if (!eap->skip)
2646 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002647 semsg(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002648 goto ret_free;
2649 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002650 // attempt to continue by skipping some text
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002651 if (vim_strchr(p, '(') != NULL)
2652 p = vim_strchr(p, '(');
2653 }
2654 p = skipwhite(p + 1);
2655
2656 ga_init2(&newlines, (int)sizeof(char_u *), 3);
2657
Bram Moolenaar04b12692020-05-04 23:24:44 +02002658 if (!eap->skip && name_arg == NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002659 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002660 // Check the name of the function. Unless it's a dictionary function
2661 // (that we are overwriting).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002662 if (name != NULL)
2663 arg = name;
2664 else
2665 arg = fudi.fd_newkey;
2666 if (arg != NULL && (fudi.fd_di == NULL
2667 || (fudi.fd_di->di_tv.v_type != VAR_FUNC
2668 && fudi.fd_di->di_tv.v_type != VAR_PARTIAL)))
2669 {
2670 if (*arg == K_SPECIAL)
2671 j = 3;
2672 else
2673 j = 0;
2674 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
2675 : eval_isnamec(arg[j])))
2676 ++j;
2677 if (arg[j] != NUL)
2678 emsg_funcname((char *)e_invarg2, arg);
2679 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002680 // Disallow using the g: dict.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002681 if (fudi.fd_dict != NULL && fudi.fd_dict->dv_scope == VAR_DEF_SCOPE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002682 emsg(_("E862: Cannot use g: here"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002683 }
2684
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002685 // This may get more lines and make the pointers into the first line
2686 // invalid.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002687 if (get_function_args(&p, ')', &newargs,
2688 eap->cmdidx == CMD_def ? &argtypes : NULL,
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002689 &varargs, &default_args, eap->skip,
2690 eap, &line_to_free) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002691 goto errret_2;
2692
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002693 if (eap->cmdidx == CMD_def)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002694 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002695 // find the return type: :def Func(): type
2696 if (*p == ':')
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002697 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002698 ret_type = skipwhite(p + 1);
2699 p = skip_type(ret_type);
2700 if (p > ret_type)
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002701 {
Bram Moolenaar71ccd032020-06-12 22:59:11 +02002702 ret_type = vim_strnsave(ret_type, p - ret_type);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002703 p = skipwhite(p);
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002704 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002705 else
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002706 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002707 semsg(_("E1056: expected a type: %s"), ret_type);
Bram Moolenaarb8ce6b02020-04-23 22:23:14 +02002708 ret_type = NULL;
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002709 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002710 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002711 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002712 else
2713 // find extra arguments "range", "dict", "abort" and "closure"
2714 for (;;)
2715 {
2716 p = skipwhite(p);
2717 if (STRNCMP(p, "range", 5) == 0)
2718 {
2719 flags |= FC_RANGE;
2720 p += 5;
2721 }
2722 else if (STRNCMP(p, "dict", 4) == 0)
2723 {
2724 flags |= FC_DICT;
2725 p += 4;
2726 }
2727 else if (STRNCMP(p, "abort", 5) == 0)
2728 {
2729 flags |= FC_ABORT;
2730 p += 5;
2731 }
2732 else if (STRNCMP(p, "closure", 7) == 0)
2733 {
2734 flags |= FC_CLOSURE;
2735 p += 7;
2736 if (current_funccal == NULL)
2737 {
2738 emsg_funcname(N_("E932: Closure function should not be at top level: %s"),
2739 name == NULL ? (char_u *)"" : name);
2740 goto erret;
2741 }
2742 }
2743 else
2744 break;
2745 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002746
Bram Moolenaare38eab22019-12-05 21:50:01 +01002747 // When there is a line break use what follows for the function body.
2748 // Makes 'exe "func Test()\n...\nendfunc"' work.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002749 if (*p == '\n')
2750 line_arg = p + 1;
Bram Moolenaar2c330432020-04-13 14:41:35 +02002751 else if (*p != NUL && *p != '"' && !(eap->cmdidx == CMD_def && *p == '#')
2752 && !eap->skip && !did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002753 emsg(_(e_trailing));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002754
2755 /*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002756 * Read the body of the function, until "}", ":endfunction" or ":enddef" is
2757 * found.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002758 */
2759 if (KeyTyped)
2760 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002761 // Check if the function already exists, don't let the user type the
2762 // whole function before telling him it doesn't work! For a script we
2763 // need to skip the body to be able to find what follows.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002764 if (!eap->skip && !eap->forceit)
2765 {
2766 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002767 emsg(_(e_funcdict));
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002768 else if (name != NULL && find_func(name, is_global, NULL) != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002769 emsg_funcname(e_funcexts, name);
2770 }
2771
2772 if (!eap->skip && did_emsg)
2773 goto erret;
2774
Bram Moolenaare38eab22019-12-05 21:50:01 +01002775 msg_putchar('\n'); // don't overwrite the function name
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002776 cmdline_row = msg_row;
2777 }
2778
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002779 // Save the starting line number.
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002780 sourcing_lnum_top = SOURCING_LNUM;
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002781
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002782 indent = 2;
2783 nesting = 0;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002784 nesting_def[nesting] = (eap->cmdidx == CMD_def);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002785 for (;;)
2786 {
2787 if (KeyTyped)
2788 {
2789 msg_scroll = TRUE;
2790 saved_wait_return = FALSE;
2791 }
2792 need_wait_return = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002793
2794 if (line_arg != NULL)
2795 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002796 // Use eap->arg, split up in parts by line breaks.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002797 theline = line_arg;
2798 p = vim_strchr(theline, '\n');
2799 if (p == NULL)
2800 line_arg += STRLEN(line_arg);
2801 else
2802 {
2803 *p = NUL;
2804 line_arg = p + 1;
2805 }
2806 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002807 else
Bram Moolenaar53564f72017-06-24 14:48:11 +02002808 {
2809 vim_free(line_to_free);
2810 if (eap->getline == NULL)
Bram Moolenaare96a2492019-06-25 04:12:16 +02002811 theline = getcmdline(':', 0L, indent, do_concat);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002812 else
Bram Moolenaare96a2492019-06-25 04:12:16 +02002813 theline = eap->getline(':', eap->cookie, indent, do_concat);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002814 line_to_free = theline;
2815 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002816 if (KeyTyped)
2817 lines_left = Rows - 1;
2818 if (theline == NULL)
2819 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002820 if (eap->cmdidx == CMD_def)
2821 emsg(_("E1057: Missing :enddef"));
2822 else
2823 emsg(_("E126: Missing :endfunction"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002824 goto erret;
2825 }
2826
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002827 // Detect line continuation: SOURCING_LNUM increased more than one.
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002828 sourcing_lnum_off = get_sourced_lnum(eap->getline, eap->cookie);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002829 if (SOURCING_LNUM < sourcing_lnum_off)
2830 sourcing_lnum_off -= SOURCING_LNUM;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002831 else
2832 sourcing_lnum_off = 0;
2833
2834 if (skip_until != NULL)
2835 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002836 // Don't check for ":endfunc"/":enddef" between
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002837 // * ":append" and "."
2838 // * ":python <<EOF" and "EOF"
2839 // * ":let {var-name} =<< [trim] {marker}" and "{marker}"
2840 if (heredoc_trimmed == NULL
2841 || (is_heredoc && skipwhite(theline) == theline)
2842 || STRNCMP(theline, heredoc_trimmed,
2843 STRLEN(heredoc_trimmed)) == 0)
Bram Moolenaar8471e572019-05-19 21:37:18 +02002844 {
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002845 if (heredoc_trimmed == NULL)
2846 p = theline;
2847 else if (is_heredoc)
2848 p = skipwhite(theline) == theline
2849 ? theline : theline + STRLEN(heredoc_trimmed);
2850 else
2851 p = theline + STRLEN(heredoc_trimmed);
Bram Moolenaar8471e572019-05-19 21:37:18 +02002852 if (STRCMP(p, skip_until) == 0)
2853 {
2854 VIM_CLEAR(skip_until);
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002855 VIM_CLEAR(heredoc_trimmed);
Bram Moolenaare96a2492019-06-25 04:12:16 +02002856 do_concat = TRUE;
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002857 is_heredoc = FALSE;
Bram Moolenaar8471e572019-05-19 21:37:18 +02002858 }
2859 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002860 }
2861 else
2862 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002863 // skip ':' and blanks
Bram Moolenaar1c465442017-03-12 20:10:05 +01002864 for (p = theline; VIM_ISWHITE(*p) || *p == ':'; ++p)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002865 ;
2866
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002867 // Check for "endfunction" or "enddef".
2868 if (checkforcmd(&p, nesting_def[nesting]
2869 ? "enddef" : "endfunction", 4) && nesting-- == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002870 {
Bram Moolenaar53564f72017-06-24 14:48:11 +02002871 char_u *nextcmd = NULL;
2872
Bram Moolenaar663bb232017-06-22 19:12:10 +02002873 if (*p == '|')
Bram Moolenaar53564f72017-06-24 14:48:11 +02002874 nextcmd = p + 1;
Bram Moolenaar663bb232017-06-22 19:12:10 +02002875 else if (line_arg != NULL && *skipwhite(line_arg) != NUL)
Bram Moolenaar53564f72017-06-24 14:48:11 +02002876 nextcmd = line_arg;
Bram Moolenaar663bb232017-06-22 19:12:10 +02002877 else if (*p != NUL && *p != '"' && p_verbose > 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002878 give_warning2(eap->cmdidx == CMD_def
2879 ? (char_u *)_("W1001: Text found after :enddef: %s")
2880 : (char_u *)_("W22: Text found after :endfunction: %s"),
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002881 p, TRUE);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002882 if (nextcmd != NULL)
2883 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002884 // Another command follows. If the line came from "eap" we
2885 // can simply point into it, otherwise we need to change
2886 // "eap->cmdlinep".
Bram Moolenaar53564f72017-06-24 14:48:11 +02002887 eap->nextcmd = nextcmd;
2888 if (line_to_free != NULL)
2889 {
2890 vim_free(*eap->cmdlinep);
2891 *eap->cmdlinep = line_to_free;
2892 line_to_free = NULL;
2893 }
2894 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002895 break;
2896 }
2897
Bram Moolenaare38eab22019-12-05 21:50:01 +01002898 // Increase indent inside "if", "while", "for" and "try", decrease
2899 // at "end".
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002900 if (indent > 2 && (*p == '}' || STRNCMP(p, "end", 3) == 0))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002901 indent -= 2;
2902 else if (STRNCMP(p, "if", 2) == 0
2903 || STRNCMP(p, "wh", 2) == 0
2904 || STRNCMP(p, "for", 3) == 0
2905 || STRNCMP(p, "try", 3) == 0)
2906 indent += 2;
2907
Bram Moolenaare38eab22019-12-05 21:50:01 +01002908 // Check for defining a function inside this function.
Bram Moolenaar673660a2020-01-26 16:50:05 +01002909 // Only recognize "def" inside "def", not inside "function",
2910 // For backwards compatibility, see Test_function_python().
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002911 c = *p;
Bram Moolenaar673660a2020-01-26 16:50:05 +01002912 if (checkforcmd(&p, "function", 2)
2913 || (eap->cmdidx == CMD_def && checkforcmd(&p, "def", 3)))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002914 {
2915 if (*p == '!')
2916 p = skipwhite(p + 1);
2917 p += eval_fname_script(p);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002918 vim_free(trans_function_name(&p, NULL, TRUE, 0, NULL, NULL));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002919 if (*skipwhite(p) == '(')
2920 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002921 if (nesting == MAX_FUNC_NESTING - 1)
2922 emsg(_("E1058: function nesting too deep"));
2923 else
2924 {
2925 ++nesting;
2926 nesting_def[nesting] = (c == 'd');
2927 indent += 2;
2928 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002929 }
2930 }
2931
Bram Moolenaara259d8d2020-01-31 20:10:50 +01002932 // Check for ":append", ":change", ":insert". Not for :def.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002933 p = skip_range(p, NULL);
Bram Moolenaara259d8d2020-01-31 20:10:50 +01002934 if (eap->cmdidx != CMD_def
2935 && ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
Bram Moolenaar70bcd732017-01-12 22:20:54 +01002936 || (p[0] == 'c'
2937 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'h'
2938 && (!ASCII_ISALPHA(p[2]) || (p[2] == 'a'
2939 && (STRNCMP(&p[3], "nge", 3) != 0
2940 || !ASCII_ISALPHA(p[6])))))))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002941 || (p[0] == 'i'
2942 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
Bram Moolenaara259d8d2020-01-31 20:10:50 +01002943 && (!ASCII_ISALPHA(p[2])
2944 || (p[2] == 's'
2945 && (!ASCII_ISALPHA(p[3])
2946 || p[3] == 'e'))))))))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002947 skip_until = vim_strsave((char_u *)".");
2948
Bram Moolenaare38eab22019-12-05 21:50:01 +01002949 // Check for ":python <<EOF", ":tcl <<EOF", etc.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002950 arg = skipwhite(skiptowhite(p));
2951 if (arg[0] == '<' && arg[1] =='<'
2952 && ((p[0] == 'p' && p[1] == 'y'
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01002953 && (!ASCII_ISALNUM(p[2]) || p[2] == 't'
2954 || ((p[2] == '3' || p[2] == 'x')
2955 && !ASCII_ISALPHA(p[3]))))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002956 || (p[0] == 'p' && p[1] == 'e'
2957 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
2958 || (p[0] == 't' && p[1] == 'c'
2959 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
2960 || (p[0] == 'l' && p[1] == 'u' && p[2] == 'a'
2961 && !ASCII_ISALPHA(p[3]))
2962 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
2963 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
2964 || (p[0] == 'm' && p[1] == 'z'
2965 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
2966 ))
2967 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002968 // ":python <<" continues until a dot, like ":append"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002969 p = skipwhite(arg + 2);
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02002970 if (STRNCMP(p, "trim", 4) == 0)
2971 {
2972 // Ignore leading white space.
2973 p = skipwhite(p + 4);
2974 heredoc_trimmed = vim_strnsave(theline,
Bram Moolenaar71ccd032020-06-12 22:59:11 +02002975 skipwhite(theline) - theline);
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02002976 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002977 if (*p == NUL)
2978 skip_until = vim_strsave((char_u *)".");
2979 else
Bram Moolenaar71ccd032020-06-12 22:59:11 +02002980 skip_until = vim_strnsave(p, skiptowhite(p) - p);
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02002981 do_concat = FALSE;
2982 is_heredoc = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002983 }
Bram Moolenaar8471e572019-05-19 21:37:18 +02002984
2985 // Check for ":let v =<< [trim] EOF"
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002986 // and ":let [a, b] =<< [trim] EOF"
Bram Moolenaar8471e572019-05-19 21:37:18 +02002987 arg = skipwhite(skiptowhite(p));
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002988 if (*arg == '[')
2989 arg = vim_strchr(arg, ']');
2990 if (arg != NULL)
Bram Moolenaar8471e572019-05-19 21:37:18 +02002991 {
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002992 arg = skipwhite(skiptowhite(arg));
2993 if ( arg[0] == '=' && arg[1] == '<' && arg[2] =='<'
2994 && ((p[0] == 'l'
2995 && p[1] == 'e'
2996 && (!ASCII_ISALNUM(p[2])
2997 || (p[2] == 't' && !ASCII_ISALNUM(p[3]))))))
Bram Moolenaar8471e572019-05-19 21:37:18 +02002998 {
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002999 p = skipwhite(arg + 3);
3000 if (STRNCMP(p, "trim", 4) == 0)
3001 {
3002 // Ignore leading white space.
3003 p = skipwhite(p + 4);
3004 heredoc_trimmed = vim_strnsave(theline,
Bram Moolenaar71ccd032020-06-12 22:59:11 +02003005 skipwhite(theline) - theline);
Bram Moolenaar1e673b92019-11-06 15:02:50 +01003006 }
Bram Moolenaar71ccd032020-06-12 22:59:11 +02003007 skip_until = vim_strnsave(p, skiptowhite(p) - p);
Bram Moolenaar1e673b92019-11-06 15:02:50 +01003008 do_concat = FALSE;
3009 is_heredoc = TRUE;
Bram Moolenaar8471e572019-05-19 21:37:18 +02003010 }
Bram Moolenaar8471e572019-05-19 21:37:18 +02003011 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003012 }
3013
Bram Moolenaare38eab22019-12-05 21:50:01 +01003014 // Add the line to the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003015 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003016 goto erret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003017
Bram Moolenaare38eab22019-12-05 21:50:01 +01003018 // Copy the line to newly allocated memory. get_one_sourceline()
3019 // allocates 250 bytes per line, this saves 80% on average. The cost
3020 // is an extra alloc/free.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003021 p = vim_strsave(theline);
Bram Moolenaar53564f72017-06-24 14:48:11 +02003022 if (p == NULL)
3023 goto erret;
3024 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = p;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003025
Bram Moolenaare38eab22019-12-05 21:50:01 +01003026 // Add NULL lines for continuation lines, so that the line count is
3027 // equal to the index in the growarray.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003028 while (sourcing_lnum_off-- > 0)
3029 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
3030
Bram Moolenaare38eab22019-12-05 21:50:01 +01003031 // Check for end of eap->arg.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003032 if (line_arg != NULL && *line_arg == NUL)
3033 line_arg = NULL;
3034 }
3035
Bram Moolenaare38eab22019-12-05 21:50:01 +01003036 // Don't define the function when skipping commands or when an error was
3037 // detected.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003038 if (eap->skip || did_emsg)
3039 goto erret;
3040
3041 /*
3042 * If there are no errors, add the function
3043 */
3044 if (fudi.fd_dict == NULL)
3045 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003046 hashtab_T *ht;
3047
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003048 v = find_var(name, &ht, FALSE);
3049 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
3050 {
3051 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
3052 name);
3053 goto erret;
3054 }
3055
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003056 fp = find_func_even_dead(name, is_global, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003057 if (fp != NULL)
3058 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003059 int dead = fp->uf_flags & FC_DEAD;
3060
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003061 // Function can be replaced with "function!" and when sourcing the
3062 // same script again, but only once.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003063 if (!dead && !eap->forceit
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003064 && (fp->uf_script_ctx.sc_sid != current_sctx.sc_sid
3065 || fp->uf_script_ctx.sc_seq == current_sctx.sc_seq))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003066 {
3067 emsg_funcname(e_funcexts, name);
3068 goto erret;
3069 }
3070 if (fp->uf_calls > 0)
3071 {
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003072 emsg_funcname(
3073 N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003074 name);
3075 goto erret;
3076 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003077 if (fp->uf_refcount > 1)
3078 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003079 // This function is referenced somewhere, don't redefine it but
3080 // create a new one.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003081 --fp->uf_refcount;
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003082 fp->uf_flags |= FC_REMOVED;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003083 fp = NULL;
3084 overwrite = TRUE;
3085 }
3086 else
3087 {
Bram Moolenaarb9adef72020-01-02 14:31:22 +01003088 char_u *exp_name = fp->uf_name_exp;
3089
3090 // redefine existing function, keep the expanded name
Bram Moolenaard23a8232018-02-10 18:45:26 +01003091 VIM_CLEAR(name);
Bram Moolenaarb9adef72020-01-02 14:31:22 +01003092 fp->uf_name_exp = NULL;
Bram Moolenaar79c2ad52018-07-29 17:40:43 +02003093 func_clear_items(fp);
Bram Moolenaarb9adef72020-01-02 14:31:22 +01003094 fp->uf_name_exp = exp_name;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003095 fp->uf_flags &= ~FC_DEAD;
Bram Moolenaar79c2ad52018-07-29 17:40:43 +02003096#ifdef FEAT_PROFILE
3097 fp->uf_profiling = FALSE;
3098 fp->uf_prof_initialized = FALSE;
3099#endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003100 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003101 }
3102 }
3103 else
3104 {
3105 char numbuf[20];
3106
3107 fp = NULL;
3108 if (fudi.fd_newkey == NULL && !eap->forceit)
3109 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003110 emsg(_(e_funcdict));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003111 goto erret;
3112 }
3113 if (fudi.fd_di == NULL)
3114 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003115 // Can't add a function to a locked dictionary
Bram Moolenaar05c00c02019-02-11 22:00:11 +01003116 if (var_check_lock(fudi.fd_dict->dv_lock, eap->arg, FALSE))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003117 goto erret;
3118 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01003119 // Can't change an existing function if it is locked
Bram Moolenaar05c00c02019-02-11 22:00:11 +01003120 else if (var_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg, FALSE))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003121 goto erret;
3122
Bram Moolenaare38eab22019-12-05 21:50:01 +01003123 // Give the function a sequential number. Can only be used with a
3124 // Funcref!
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003125 vim_free(name);
3126 sprintf(numbuf, "%d", ++func_nr);
3127 name = vim_strsave((char_u *)numbuf);
3128 if (name == NULL)
3129 goto erret;
3130 }
3131
3132 if (fp == NULL)
3133 {
3134 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
3135 {
3136 int slen, plen;
3137 char_u *scriptname;
3138
Bram Moolenaare38eab22019-12-05 21:50:01 +01003139 // Check that the autoload name matches the script name.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003140 j = FAIL;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003141 if (SOURCING_NAME != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003142 {
3143 scriptname = autoload_name(name);
3144 if (scriptname != NULL)
3145 {
3146 p = vim_strchr(scriptname, '/');
3147 plen = (int)STRLEN(p);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003148 slen = (int)STRLEN(SOURCING_NAME);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003149 if (slen > plen && fnamecmp(p,
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003150 SOURCING_NAME + slen - plen) == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003151 j = OK;
3152 vim_free(scriptname);
3153 }
3154 }
3155 if (j == FAIL)
3156 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003157 semsg(_("E746: Function name does not match script file name: %s"), name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003158 goto erret;
3159 }
3160 }
3161
Bram Moolenaar47ed5532019-08-08 20:49:14 +02003162 fp = alloc_clear(offsetof(ufunc_T, uf_name) + STRLEN(name) + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003163 if (fp == NULL)
3164 goto erret;
Bram Moolenaar822ba242020-05-24 23:00:18 +02003165 fp->uf_dfunc_idx = eap->cmdidx == CMD_def ? UF_TO_BE_COMPILED
3166 : UF_NOT_COMPILED;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003167
3168 if (fudi.fd_dict != NULL)
3169 {
3170 if (fudi.fd_di == NULL)
3171 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003172 // add new dict entry
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003173 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
3174 if (fudi.fd_di == NULL)
3175 {
3176 vim_free(fp);
Bram Moolenaara14e6972020-05-25 23:29:28 +02003177 fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003178 goto erret;
3179 }
3180 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
3181 {
3182 vim_free(fudi.fd_di);
3183 vim_free(fp);
Bram Moolenaara14e6972020-05-25 23:29:28 +02003184 fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003185 goto erret;
3186 }
3187 }
3188 else
Bram Moolenaare38eab22019-12-05 21:50:01 +01003189 // overwrite existing dict entry
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003190 clear_tv(&fudi.fd_di->di_tv);
3191 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003192 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003193
Bram Moolenaare38eab22019-12-05 21:50:01 +01003194 // behave like "dict" was used
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003195 flags |= FC_DICT;
3196 }
3197
Bram Moolenaare38eab22019-12-05 21:50:01 +01003198 // insert the new function in the function list
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003199 set_ufunc_name(fp, name);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003200 if (overwrite)
3201 {
3202 hi = hash_find(&func_hashtab, name);
3203 hi->hi_key = UF2HIKEY(fp);
3204 }
3205 else if (hash_add(&func_hashtab, UF2HIKEY(fp)) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003206 {
3207 vim_free(fp);
Bram Moolenaara14e6972020-05-25 23:29:28 +02003208 fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003209 goto erret;
3210 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003211 fp->uf_refcount = 1;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003212 }
3213 fp->uf_args = newargs;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02003214 fp->uf_def_args = default_args;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003215 fp->uf_ret_type = &t_any;
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02003216 fp->uf_func_type = &t_func_any;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003217
3218 if (eap->cmdidx == CMD_def)
3219 {
Bram Moolenaar0b76b422020-04-07 22:05:08 +02003220 int lnum_save = SOURCING_LNUM;
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003221
Bram Moolenaar822ba242020-05-24 23:00:18 +02003222 fp->uf_dfunc_idx = UF_TO_BE_COMPILED;
3223
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003224 // error messages are for the first function line
3225 SOURCING_LNUM = sourcing_lnum_top;
3226
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003227 // parse the argument types
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02003228 ga_init2(&fp->uf_type_list, sizeof(type_T *), 10);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003229
3230 if (argtypes.ga_len > 0)
3231 {
3232 // When "varargs" is set the last name/type goes into uf_va_name
3233 // and uf_va_type.
3234 int len = argtypes.ga_len - (varargs ? 1 : 0);
3235
Bram Moolenaar0b76b422020-04-07 22:05:08 +02003236 if (len > 0)
3237 fp->uf_arg_types = ALLOC_CLEAR_MULT(type_T *, len);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003238 if (fp->uf_arg_types != NULL)
3239 {
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003240 int i;
3241 type_T *type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003242
3243 for (i = 0; i < len; ++ i)
3244 {
3245 p = ((char_u **)argtypes.ga_data)[i];
3246 if (p == NULL)
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02003247 // will get the type from the default value
3248 type = &t_unknown;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003249 else
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003250 type = parse_type(&p, &fp->uf_type_list);
3251 if (type == NULL)
3252 {
3253 SOURCING_LNUM = lnum_save;
3254 goto errret_2;
3255 }
3256 fp->uf_arg_types[i] = type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003257 }
3258 }
3259 if (varargs)
3260 {
3261 // Move the last argument "...name: type" to uf_va_name and
3262 // uf_va_type.
3263 fp->uf_va_name = ((char_u **)fp->uf_args.ga_data)
3264 [fp->uf_args.ga_len - 1];
3265 --fp->uf_args.ga_len;
3266 p = ((char_u **)argtypes.ga_data)[len];
3267 if (p == NULL)
3268 // todo: get type from default value
3269 fp->uf_va_type = &t_any;
3270 else
3271 fp->uf_va_type = parse_type(&p, &fp->uf_type_list);
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003272 if (fp->uf_va_type == NULL)
3273 {
3274 SOURCING_LNUM = lnum_save;
3275 goto errret_2;
3276 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003277 }
3278 varargs = FALSE;
3279 }
3280
3281 // parse the return type, if any
3282 if (ret_type == NULL)
3283 fp->uf_ret_type = &t_void;
3284 else
3285 {
3286 p = ret_type;
3287 fp->uf_ret_type = parse_type(&p, &fp->uf_type_list);
3288 }
Bram Moolenaar09689a02020-05-09 22:50:08 +02003289 SOURCING_LNUM = lnum_save;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003290 }
Bram Moolenaar822ba242020-05-24 23:00:18 +02003291 else
3292 fp->uf_dfunc_idx = UF_NOT_COMPILED;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003293
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003294 fp->uf_lines = newlines;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02003295 if ((flags & FC_CLOSURE) != 0)
3296 {
Bram Moolenaar58016442016-07-31 18:30:22 +02003297 if (register_closure(fp) == FAIL)
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02003298 goto erret;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02003299 }
3300 else
3301 fp->uf_scoped = NULL;
3302
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003303#ifdef FEAT_PROFILE
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003304 if (prof_def_func())
3305 func_do_profile(fp);
3306#endif
3307 fp->uf_varargs = varargs;
Bram Moolenaar93343722018-07-10 19:39:18 +02003308 if (sandbox)
3309 flags |= FC_SANDBOX;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003310 if (in_vim9script() && !ASCII_ISUPPER(*fp->uf_name))
3311 flags |= FC_VIM9;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003312 fp->uf_flags = flags;
3313 fp->uf_calls = 0;
Bram Moolenaar63ce4842020-02-19 15:46:48 +01003314 fp->uf_cleared = FALSE;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003315 fp->uf_script_ctx = current_sctx;
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02003316 fp->uf_script_ctx.sc_lnum += sourcing_lnum_top;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003317 if (is_export)
3318 {
3319 fp->uf_flags |= FC_EXPORT;
3320 // let ex_export() know the export worked.
3321 is_export = FALSE;
3322 }
3323
Bram Moolenaar6ff71d82020-05-24 23:45:24 +02003324 if (eap->cmdidx == CMD_def)
3325 set_function_type(fp);
3326
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003327 goto ret_free;
3328
3329erret:
3330 ga_clear_strings(&newargs);
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02003331 ga_clear_strings(&default_args);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003332errret_2:
3333 ga_clear_strings(&newlines);
3334ret_free:
Bram Moolenaar292b90d2020-03-18 15:23:16 +01003335 ga_clear_strings(&argtypes);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003336 vim_free(skip_until);
Bram Moolenaar53564f72017-06-24 14:48:11 +02003337 vim_free(line_to_free);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003338 vim_free(fudi.fd_newkey);
Bram Moolenaar04b12692020-05-04 23:24:44 +02003339 if (name != name_arg)
3340 vim_free(name);
Bram Moolenaar5e774c72020-04-12 21:53:00 +02003341 vim_free(ret_type);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003342 did_emsg |= saved_did_emsg;
3343 need_wait_return |= saved_wait_return;
Bram Moolenaar04b12692020-05-04 23:24:44 +02003344
3345 return fp;
3346}
3347
3348/*
3349 * ":function"
3350 */
3351 void
3352ex_function(exarg_T *eap)
3353{
Bram Moolenaar822ba242020-05-24 23:00:18 +02003354 (void)def_function(eap, NULL);
3355}
3356
3357/*
3358 * :defcompile - compile all :def functions in the current script.
3359 */
3360 void
3361ex_defcompile(exarg_T *eap UNUSED)
3362{
Bram Moolenaarebc3de62020-05-26 11:08:28 +02003363 long_u ht_used = func_hashtab.ht_used;
3364 int todo = (int)ht_used;
Bram Moolenaar822ba242020-05-24 23:00:18 +02003365 hashitem_T *hi;
3366 ufunc_T *ufunc;
3367
3368 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
3369 {
3370 if (!HASHITEM_EMPTY(hi))
3371 {
3372 --todo;
3373 ufunc = HI2UF(hi);
3374 if (ufunc->uf_script_ctx.sc_sid == current_sctx.sc_sid
3375 && ufunc->uf_dfunc_idx == UF_TO_BE_COMPILED)
Bram Moolenaarebc3de62020-05-26 11:08:28 +02003376 {
Bram Moolenaar822ba242020-05-24 23:00:18 +02003377 compile_def_function(ufunc, FALSE, NULL);
Bram Moolenaarebc3de62020-05-26 11:08:28 +02003378
3379 if (func_hashtab.ht_used != ht_used)
3380 {
3381 // another function has been defined, need to start over
3382 hi = func_hashtab.ht_array;
3383 ht_used = func_hashtab.ht_used;
3384 todo = (int)ht_used;
Bram Moolenaar285b1892020-05-26 11:37:26 +02003385 --hi;
Bram Moolenaarebc3de62020-05-26 11:08:28 +02003386 }
3387 }
Bram Moolenaar822ba242020-05-24 23:00:18 +02003388 }
3389 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003390}
3391
3392/*
3393 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
3394 * Return 2 if "p" starts with "s:".
3395 * Return 0 otherwise.
3396 */
3397 int
3398eval_fname_script(char_u *p)
3399{
Bram Moolenaare38eab22019-12-05 21:50:01 +01003400 // Use MB_STRICMP() because in Turkish comparing the "I" may not work with
3401 // the standard library function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003402 if (p[0] == '<' && (MB_STRNICMP(p + 1, "SID>", 4) == 0
3403 || MB_STRNICMP(p + 1, "SNR>", 4) == 0))
3404 return 5;
3405 if (p[0] == 's' && p[1] == ':')
3406 return 2;
3407 return 0;
3408}
3409
3410 int
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003411translated_function_exists(char_u *name, int is_global)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003412{
3413 if (builtin_function(name, -1))
Bram Moolenaarac92e252019-08-03 21:58:38 +02003414 return has_internal_func(name);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003415 return find_func(name, is_global, NULL) != NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003416}
3417
3418/*
3419 * Return TRUE when "ufunc" has old-style "..." varargs
3420 * or named varargs "...name: type".
3421 */
3422 int
3423has_varargs(ufunc_T *ufunc)
3424{
3425 return ufunc->uf_varargs || ufunc->uf_va_name != NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003426}
3427
3428/*
3429 * Return TRUE if a function "name" exists.
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003430 * If "no_defef" is TRUE, do not dereference a Funcref.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003431 */
3432 int
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003433function_exists(char_u *name, int no_deref)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003434{
3435 char_u *nm = name;
3436 char_u *p;
3437 int n = FALSE;
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003438 int flag;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003439 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003440
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003441 flag = TFN_INT | TFN_QUIET | TFN_NO_AUTOLOAD;
3442 if (no_deref)
3443 flag |= TFN_NO_DEREF;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003444 p = trans_function_name(&nm, &is_global, FALSE, flag, NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003445 nm = skipwhite(nm);
3446
Bram Moolenaare38eab22019-12-05 21:50:01 +01003447 // Only accept "funcname", "funcname ", "funcname (..." and
3448 // "funcname(...", not "funcname!...".
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003449 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003450 n = translated_function_exists(p, is_global);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003451 vim_free(p);
3452 return n;
3453}
3454
Bram Moolenaar113e1072019-01-20 15:30:40 +01003455#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003456 char_u *
3457get_expanded_name(char_u *name, int check)
3458{
3459 char_u *nm = name;
3460 char_u *p;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003461 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003462
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003463 p = trans_function_name(&nm, &is_global, FALSE,
3464 TFN_INT|TFN_QUIET, NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003465
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003466 if (p != NULL && *nm == NUL
3467 && (!check || translated_function_exists(p, is_global)))
3468 return p;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003469
3470 vim_free(p);
3471 return NULL;
3472}
Bram Moolenaar113e1072019-01-20 15:30:40 +01003473#endif
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003474
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003475/*
3476 * Function given to ExpandGeneric() to obtain the list of user defined
3477 * function names.
3478 */
3479 char_u *
3480get_user_func_name(expand_T *xp, int idx)
3481{
3482 static long_u done;
3483 static hashitem_T *hi;
3484 ufunc_T *fp;
3485
3486 if (idx == 0)
3487 {
3488 done = 0;
3489 hi = func_hashtab.ht_array;
3490 }
3491 if (done < func_hashtab.ht_used)
3492 {
3493 if (done++ > 0)
3494 ++hi;
3495 while (HASHITEM_EMPTY(hi))
3496 ++hi;
3497 fp = HI2UF(hi);
3498
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003499 // don't show dead, dict and lambda functions
3500 if ((fp->uf_flags & FC_DEAD) || (fp->uf_flags & FC_DICT)
Bram Moolenaarb49edc12016-07-23 15:47:34 +02003501 || STRNCMP(fp->uf_name, "<lambda>", 8) == 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003502 return (char_u *)"";
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003503
3504 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003505 return fp->uf_name; // prevents overflow
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003506
3507 cat_func_name(IObuff, fp);
3508 if (xp->xp_context != EXPAND_USER_FUNC)
3509 {
3510 STRCAT(IObuff, "(");
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003511 if (!has_varargs(fp) && fp->uf_args.ga_len == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003512 STRCAT(IObuff, ")");
3513 }
3514 return IObuff;
3515 }
3516 return NULL;
3517}
3518
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003519/*
3520 * ":delfunction {name}"
3521 */
3522 void
3523ex_delfunction(exarg_T *eap)
3524{
3525 ufunc_T *fp = NULL;
3526 char_u *p;
3527 char_u *name;
3528 funcdict_T fudi;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003529 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003530
3531 p = eap->arg;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003532 name = trans_function_name(&p, &is_global, eap->skip, 0, &fudi, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003533 vim_free(fudi.fd_newkey);
3534 if (name == NULL)
3535 {
3536 if (fudi.fd_dict != NULL && !eap->skip)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003537 emsg(_(e_funcref));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003538 return;
3539 }
3540 if (!ends_excmd(*skipwhite(p)))
3541 {
3542 vim_free(name);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003543 emsg(_(e_trailing));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003544 return;
3545 }
3546 eap->nextcmd = check_nextcmd(p);
3547 if (eap->nextcmd != NULL)
3548 *p = NUL;
3549
3550 if (!eap->skip)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003551 fp = find_func(name, is_global, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003552 vim_free(name);
3553
3554 if (!eap->skip)
3555 {
3556 if (fp == NULL)
3557 {
Bram Moolenaard6abcd12017-06-22 19:15:24 +02003558 if (!eap->forceit)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003559 semsg(_(e_nofunc), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003560 return;
3561 }
3562 if (fp->uf_calls > 0)
3563 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003564 semsg(_("E131: Cannot delete function %s: It is in use"), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003565 return;
3566 }
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003567 if (fp->uf_flags & FC_VIM9)
3568 {
3569 semsg(_("E1084: Cannot delete Vim9 script function %s"), eap->arg);
3570 return;
3571 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003572
3573 if (fudi.fd_dict != NULL)
3574 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003575 // Delete the dict item that refers to the function, it will
3576 // invoke func_unref() and possibly delete the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003577 dictitem_remove(fudi.fd_dict, fudi.fd_di);
3578 }
3579 else
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003580 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003581 // A normal function (not a numbered function or lambda) has a
3582 // refcount of 1 for the entry in the hashtable. When deleting
3583 // it and the refcount is more than one, it should be kept.
3584 // A numbered function and lambda should be kept if the refcount is
3585 // one or more.
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003586 if (fp->uf_refcount > (func_name_refcount(fp->uf_name) ? 0 : 1))
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003587 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003588 // Function is still referenced somewhere. Don't free it but
3589 // do remove it from the hashtable.
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003590 if (func_remove(fp))
3591 fp->uf_refcount--;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003592 fp->uf_flags |= FC_DELETED;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003593 }
3594 else
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01003595 func_clear_free(fp, FALSE);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003596 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003597 }
3598}
3599
3600/*
3601 * Unreference a Function: decrement the reference count and free it when it
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003602 * becomes zero.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003603 */
3604 void
3605func_unref(char_u *name)
3606{
Bram Moolenaar97baee82016-07-26 20:46:08 +02003607 ufunc_T *fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003608
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003609 if (name == NULL || !func_name_refcount(name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003610 return;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003611 fp = find_func(name, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003612 if (fp == NULL && isdigit(*name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003613 {
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003614#ifdef EXITFREE
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003615 if (!entered_free_all_mem)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003616#endif
Bram Moolenaar95f09602016-11-10 20:01:45 +01003617 internal_error("func_unref()");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003618 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003619 if (fp != NULL && --fp->uf_refcount <= 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003620 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003621 // Only delete it when it's not being used. Otherwise it's done
3622 // when "uf_calls" becomes zero.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003623 if (fp->uf_calls == 0)
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01003624 func_clear_free(fp, FALSE);
Bram Moolenaar97baee82016-07-26 20:46:08 +02003625 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003626}
3627
3628/*
3629 * Unreference a Function: decrement the reference count and free it when it
3630 * becomes zero.
3631 */
3632 void
3633func_ptr_unref(ufunc_T *fp)
3634{
Bram Moolenaar97baee82016-07-26 20:46:08 +02003635 if (fp != NULL && --fp->uf_refcount <= 0)
3636 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003637 // Only delete it when it's not being used. Otherwise it's done
3638 // when "uf_calls" becomes zero.
Bram Moolenaar97baee82016-07-26 20:46:08 +02003639 if (fp->uf_calls == 0)
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01003640 func_clear_free(fp, FALSE);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003641 }
3642}
3643
3644/*
3645 * Count a reference to a Function.
3646 */
3647 void
3648func_ref(char_u *name)
3649{
3650 ufunc_T *fp;
3651
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003652 if (name == NULL || !func_name_refcount(name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003653 return;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003654 fp = find_func(name, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003655 if (fp != NULL)
3656 ++fp->uf_refcount;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003657 else if (isdigit(*name))
Bram Moolenaare38eab22019-12-05 21:50:01 +01003658 // Only give an error for a numbered function.
3659 // Fail silently, when named or lambda function isn't found.
Bram Moolenaar95f09602016-11-10 20:01:45 +01003660 internal_error("func_ref()");
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003661}
3662
3663/*
3664 * Count a reference to a Function.
3665 */
3666 void
3667func_ptr_ref(ufunc_T *fp)
3668{
3669 if (fp != NULL)
3670 ++fp->uf_refcount;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003671}
3672
3673/*
3674 * Return TRUE if items in "fc" do not have "copyID". That means they are not
3675 * referenced from anywhere that is in use.
3676 */
3677 static int
3678can_free_funccal(funccall_T *fc, int copyID)
3679{
3680 return (fc->l_varlist.lv_copyID != copyID
3681 && fc->l_vars.dv_copyID != copyID
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02003682 && fc->l_avars.dv_copyID != copyID
3683 && fc->fc_copyID != copyID);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003684}
3685
3686/*
3687 * ":return [expr]"
3688 */
3689 void
3690ex_return(exarg_T *eap)
3691{
3692 char_u *arg = eap->arg;
3693 typval_T rettv;
3694 int returning = FALSE;
3695
3696 if (current_funccal == NULL)
3697 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003698 emsg(_("E133: :return not inside a function"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003699 return;
3700 }
3701
3702 if (eap->skip)
3703 ++emsg_skip;
3704
3705 eap->nextcmd = NULL;
3706 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaar32e35112020-05-14 22:41:15 +02003707 && eval0(arg, &rettv, &eap->nextcmd, eap->skip ? 0 : EVAL_EVALUATE)
3708 != FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003709 {
3710 if (!eap->skip)
3711 returning = do_return(eap, FALSE, TRUE, &rettv);
3712 else
3713 clear_tv(&rettv);
3714 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01003715 // It's safer to return also on error.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003716 else if (!eap->skip)
3717 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003718 // In return statement, cause_abort should be force_abort.
Bram Moolenaarfabaf752017-12-23 17:26:11 +01003719 update_force_abort();
3720
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003721 /*
3722 * Return unless the expression evaluation has been cancelled due to an
3723 * aborting error, an interrupt, or an exception.
3724 */
3725 if (!aborting())
3726 returning = do_return(eap, FALSE, TRUE, NULL);
3727 }
3728
Bram Moolenaare38eab22019-12-05 21:50:01 +01003729 // When skipping or the return gets pending, advance to the next command
3730 // in this line (!returning). Otherwise, ignore the rest of the line.
3731 // Following lines will be ignored by get_func_line().
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003732 if (returning)
3733 eap->nextcmd = NULL;
Bram Moolenaare38eab22019-12-05 21:50:01 +01003734 else if (eap->nextcmd == NULL) // no argument
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003735 eap->nextcmd = check_nextcmd(arg);
3736
3737 if (eap->skip)
3738 --emsg_skip;
3739}
3740
3741/*
3742 * ":1,25call func(arg1, arg2)" function call.
3743 */
3744 void
3745ex_call(exarg_T *eap)
3746{
3747 char_u *arg = eap->arg;
3748 char_u *startarg;
3749 char_u *name;
3750 char_u *tofree;
3751 int len;
3752 typval_T rettv;
3753 linenr_T lnum;
3754 int doesrange;
3755 int failed = FALSE;
3756 funcdict_T fudi;
3757 partial_T *partial = NULL;
3758
3759 if (eap->skip)
3760 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003761 // trans_function_name() doesn't work well when skipping, use eval0()
3762 // instead to skip to any following command, e.g. for:
3763 // :if 0 | call dict.foo().bar() | endif
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003764 ++emsg_skip;
Bram Moolenaar32e35112020-05-14 22:41:15 +02003765 if (eval0(eap->arg, &rettv, &eap->nextcmd, 0) != FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003766 clear_tv(&rettv);
3767 --emsg_skip;
3768 return;
3769 }
3770
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003771 tofree = trans_function_name(&arg, NULL, eap->skip,
3772 TFN_INT, &fudi, &partial);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003773 if (fudi.fd_newkey != NULL)
3774 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003775 // Still need to give an error message for missing key.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003776 semsg(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003777 vim_free(fudi.fd_newkey);
3778 }
3779 if (tofree == NULL)
3780 return;
3781
Bram Moolenaare38eab22019-12-05 21:50:01 +01003782 // Increase refcount on dictionary, it could get deleted when evaluating
3783 // the arguments.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003784 if (fudi.fd_dict != NULL)
3785 ++fudi.fd_dict->dv_refcount;
3786
Bram Moolenaare38eab22019-12-05 21:50:01 +01003787 // If it is the name of a variable of type VAR_FUNC or VAR_PARTIAL use its
3788 // contents. For VAR_PARTIAL get its partial, unless we already have one
3789 // from trans_function_name().
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003790 len = (int)STRLEN(tofree);
3791 name = deref_func_name(tofree, &len,
3792 partial != NULL ? NULL : &partial, FALSE);
3793
Bram Moolenaare38eab22019-12-05 21:50:01 +01003794 // Skip white space to allow ":call func ()". Not good, but required for
3795 // backward compatibility.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003796 startarg = skipwhite(arg);
Bram Moolenaare38eab22019-12-05 21:50:01 +01003797 rettv.v_type = VAR_UNKNOWN; // clear_tv() uses this
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003798
3799 if (*startarg != '(')
3800 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003801 semsg(_(e_missing_paren), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003802 goto end;
3803 }
3804
3805 /*
3806 * When skipping, evaluate the function once, to find the end of the
3807 * arguments.
3808 * When the function takes a range, this is discovered after the first
3809 * call, and the loop is broken.
3810 */
3811 if (eap->skip)
3812 {
3813 ++emsg_skip;
Bram Moolenaare38eab22019-12-05 21:50:01 +01003814 lnum = eap->line2; // do it once, also with an invalid range
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003815 }
3816 else
3817 lnum = eap->line1;
3818 for ( ; lnum <= eap->line2; ++lnum)
3819 {
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02003820 funcexe_T funcexe;
3821
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003822 if (!eap->skip && eap->addr_count > 0)
3823 {
Bram Moolenaar9e353b52018-11-04 23:39:38 +01003824 if (lnum > curbuf->b_ml.ml_line_count)
3825 {
3826 // If the function deleted lines or switched to another buffer
3827 // the line number may become invalid.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003828 emsg(_(e_invrange));
Bram Moolenaar9e353b52018-11-04 23:39:38 +01003829 break;
3830 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003831 curwin->w_cursor.lnum = lnum;
3832 curwin->w_cursor.col = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003833 curwin->w_cursor.coladd = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003834 }
3835 arg = startarg;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02003836
Bram Moolenaara80faa82020-04-12 19:37:17 +02003837 CLEAR_FIELD(funcexe);
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02003838 funcexe.firstline = eap->line1;
3839 funcexe.lastline = eap->line2;
3840 funcexe.doesrange = &doesrange;
3841 funcexe.evaluate = !eap->skip;
3842 funcexe.partial = partial;
3843 funcexe.selfdict = fudi.fd_dict;
3844 if (get_func_tv(name, -1, &rettv, &arg, &funcexe) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003845 {
3846 failed = TRUE;
3847 break;
3848 }
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01003849 if (has_watchexpr())
3850 dbg_check_breakpoint(eap);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003851
Bram Moolenaar9cfe8f62019-08-17 21:04:16 +02003852 // Handle a function returning a Funcref, Dictionary or List.
Bram Moolenaar32e35112020-05-14 22:41:15 +02003853 if (handle_subscript(&arg, &rettv, eap->skip ? 0 : EVAL_EVALUATE,
3854 TRUE, name, &name) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003855 {
3856 failed = TRUE;
3857 break;
3858 }
3859
3860 clear_tv(&rettv);
3861 if (doesrange || eap->skip)
3862 break;
3863
Bram Moolenaare38eab22019-12-05 21:50:01 +01003864 // Stop when immediately aborting on error, or when an interrupt
3865 // occurred or an exception was thrown but not caught.
3866 // get_func_tv() returned OK, so that the check for trailing
3867 // characters below is executed.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003868 if (aborting())
3869 break;
3870 }
3871 if (eap->skip)
3872 --emsg_skip;
3873
Bram Moolenaare51bb172020-02-16 19:42:23 +01003874 // When inside :try we need to check for following "| catch".
3875 if (!failed || eap->cstack->cs_trylevel > 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003876 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003877 // Check for trailing illegal characters and a following command.
Bram Moolenaara72cfb82020-04-23 17:07:30 +02003878 if (!ends_excmd2(eap->arg, arg))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003879 {
Bram Moolenaar40d9da22020-02-17 10:01:24 +01003880 if (!failed)
3881 {
3882 emsg_severe = TRUE;
3883 emsg(_(e_trailing));
3884 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003885 }
3886 else
3887 eap->nextcmd = check_nextcmd(arg);
3888 }
3889
3890end:
3891 dict_unref(fudi.fd_dict);
3892 vim_free(tofree);
3893}
3894
3895/*
3896 * Return from a function. Possibly makes the return pending. Also called
3897 * for a pending return at the ":endtry" or after returning from an extra
3898 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
3899 * when called due to a ":return" command. "rettv" may point to a typval_T
3900 * with the return rettv. Returns TRUE when the return can be carried out,
3901 * FALSE when the return gets pending.
3902 */
3903 int
3904do_return(
3905 exarg_T *eap,
3906 int reanimate,
3907 int is_cmd,
3908 void *rettv)
3909{
3910 int idx;
Bram Moolenaarddef1292019-12-16 17:10:33 +01003911 cstack_T *cstack = eap->cstack;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003912
3913 if (reanimate)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003914 // Undo the return.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003915 current_funccal->returned = FALSE;
3916
3917 /*
3918 * Cleanup (and inactivate) conditionals, but stop when a try conditional
3919 * not in its finally clause (which then is to be executed next) is found.
3920 * In this case, make the ":return" pending for execution at the ":endtry".
3921 * Otherwise, return normally.
3922 */
3923 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
3924 if (idx >= 0)
3925 {
3926 cstack->cs_pending[idx] = CSTP_RETURN;
3927
3928 if (!is_cmd && !reanimate)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003929 // A pending return again gets pending. "rettv" points to an
3930 // allocated variable with the rettv of the original ":return"'s
3931 // argument if present or is NULL else.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003932 cstack->cs_rettv[idx] = rettv;
3933 else
3934 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003935 // When undoing a return in order to make it pending, get the stored
3936 // return rettv.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003937 if (reanimate)
3938 rettv = current_funccal->rettv;
3939
3940 if (rettv != NULL)
3941 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003942 // Store the value of the pending return.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003943 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
3944 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
3945 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003946 emsg(_(e_outofmem));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003947 }
3948 else
3949 cstack->cs_rettv[idx] = NULL;
3950
3951 if (reanimate)
3952 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003953 // The pending return value could be overwritten by a ":return"
3954 // without argument in a finally clause; reset the default
3955 // return value.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003956 current_funccal->rettv->v_type = VAR_NUMBER;
3957 current_funccal->rettv->vval.v_number = 0;
3958 }
3959 }
3960 report_make_pending(CSTP_RETURN, rettv);
3961 }
3962 else
3963 {
3964 current_funccal->returned = TRUE;
3965
Bram Moolenaare38eab22019-12-05 21:50:01 +01003966 // If the return is carried out now, store the return value. For
3967 // a return immediately after reanimation, the value is already
3968 // there.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003969 if (!reanimate && rettv != NULL)
3970 {
3971 clear_tv(current_funccal->rettv);
3972 *current_funccal->rettv = *(typval_T *)rettv;
3973 if (!is_cmd)
3974 vim_free(rettv);
3975 }
3976 }
3977
3978 return idx < 0;
3979}
3980
3981/*
3982 * Free the variable with a pending return value.
3983 */
3984 void
3985discard_pending_return(void *rettv)
3986{
3987 free_tv((typval_T *)rettv);
3988}
3989
3990/*
3991 * Generate a return command for producing the value of "rettv". The result
3992 * is an allocated string. Used by report_pending() for verbose messages.
3993 */
3994 char_u *
3995get_return_cmd(void *rettv)
3996{
3997 char_u *s = NULL;
3998 char_u *tofree = NULL;
3999 char_u numbuf[NUMBUFLEN];
4000
4001 if (rettv != NULL)
4002 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
4003 if (s == NULL)
4004 s = (char_u *)"";
4005
4006 STRCPY(IObuff, ":return ");
4007 STRNCPY(IObuff + 8, s, IOSIZE - 8);
4008 if (STRLEN(s) + 8 >= IOSIZE)
4009 STRCPY(IObuff + IOSIZE - 4, "...");
4010 vim_free(tofree);
4011 return vim_strsave(IObuff);
4012}
4013
4014/*
4015 * Get next function line.
4016 * Called by do_cmdline() to get the next line.
4017 * Returns allocated string, or NULL for end of function.
4018 */
4019 char_u *
4020get_func_line(
4021 int c UNUSED,
4022 void *cookie,
Bram Moolenaare96a2492019-06-25 04:12:16 +02004023 int indent UNUSED,
4024 int do_concat UNUSED)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004025{
4026 funccall_T *fcp = (funccall_T *)cookie;
4027 ufunc_T *fp = fcp->func;
4028 char_u *retval;
Bram Moolenaare38eab22019-12-05 21:50:01 +01004029 garray_T *gap; // growarray with function lines
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004030
Bram Moolenaare38eab22019-12-05 21:50:01 +01004031 // If breakpoints have been added/deleted need to check for it.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004032 if (fcp->dbg_tick != debug_tick)
4033 {
4034 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01004035 SOURCING_LNUM);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004036 fcp->dbg_tick = debug_tick;
4037 }
4038#ifdef FEAT_PROFILE
4039 if (do_profiling == PROF_YES)
4040 func_line_end(cookie);
4041#endif
4042
4043 gap = &fp->uf_lines;
4044 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
4045 || fcp->returned)
4046 retval = NULL;
4047 else
4048 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01004049 // Skip NULL lines (continuation lines).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004050 while (fcp->linenr < gap->ga_len
4051 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
4052 ++fcp->linenr;
4053 if (fcp->linenr >= gap->ga_len)
4054 retval = NULL;
4055 else
4056 {
4057 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01004058 SOURCING_LNUM = fcp->linenr;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004059#ifdef FEAT_PROFILE
4060 if (do_profiling == PROF_YES)
4061 func_line_start(cookie);
4062#endif
4063 }
4064 }
4065
Bram Moolenaare38eab22019-12-05 21:50:01 +01004066 // Did we encounter a breakpoint?
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01004067 if (fcp->breakpoint != 0 && fcp->breakpoint <= SOURCING_LNUM)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004068 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01004069 dbg_breakpoint(fp->uf_name, SOURCING_LNUM);
Bram Moolenaare38eab22019-12-05 21:50:01 +01004070 // Find next breakpoint.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004071 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01004072 SOURCING_LNUM);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004073 fcp->dbg_tick = debug_tick;
4074 }
4075
4076 return retval;
4077}
4078
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004079/*
4080 * Return TRUE if the currently active function should be ended, because a
4081 * return was encountered or an error occurred. Used inside a ":while".
4082 */
4083 int
4084func_has_ended(void *cookie)
4085{
4086 funccall_T *fcp = (funccall_T *)cookie;
4087
Bram Moolenaare38eab22019-12-05 21:50:01 +01004088 // Ignore the "abort" flag if the abortion behavior has been changed due to
4089 // an error inside a try conditional.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004090 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
4091 || fcp->returned);
4092}
4093
4094/*
4095 * return TRUE if cookie indicates a function which "abort"s on errors.
4096 */
4097 int
4098func_has_abort(
4099 void *cookie)
4100{
4101 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
4102}
4103
4104
4105/*
4106 * Turn "dict.Func" into a partial for "Func" bound to "dict".
4107 * Don't do this when "Func" is already a partial that was bound
4108 * explicitly (pt_auto is FALSE).
4109 * Changes "rettv" in-place.
4110 * Returns the updated "selfdict_in".
4111 */
4112 dict_T *
4113make_partial(dict_T *selfdict_in, typval_T *rettv)
4114{
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004115 char_u *fname;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004116 char_u *tofree = NULL;
4117 ufunc_T *fp;
4118 char_u fname_buf[FLEN_FIXED + 1];
4119 int error;
4120 dict_T *selfdict = selfdict_in;
4121
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004122 if (rettv->v_type == VAR_PARTIAL && rettv->vval.v_partial->pt_func != NULL)
4123 fp = rettv->vval.v_partial->pt_func;
4124 else
4125 {
4126 fname = rettv->v_type == VAR_FUNC ? rettv->vval.v_string
4127 : rettv->vval.v_partial->pt_name;
Bram Moolenaare38eab22019-12-05 21:50:01 +01004128 // Translate "s:func" to the stored function name.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004129 fname = fname_trans_sid(fname, fname_buf, &tofree, &error);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02004130 fp = find_func(fname, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004131 vim_free(tofree);
4132 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004133
4134 if (fp != NULL && (fp->uf_flags & FC_DICT))
4135 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004136 partial_T *pt = ALLOC_CLEAR_ONE(partial_T);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004137
4138 if (pt != NULL)
4139 {
4140 pt->pt_refcount = 1;
4141 pt->pt_dict = selfdict;
4142 pt->pt_auto = TRUE;
4143 selfdict = NULL;
4144 if (rettv->v_type == VAR_FUNC)
4145 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01004146 // Just a function: Take over the function name and use
4147 // selfdict.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004148 pt->pt_name = rettv->vval.v_string;
4149 }
4150 else
4151 {
4152 partial_T *ret_pt = rettv->vval.v_partial;
4153 int i;
4154
Bram Moolenaare38eab22019-12-05 21:50:01 +01004155 // Partial: copy the function name, use selfdict and copy
4156 // args. Can't take over name or args, the partial might
4157 // be referenced elsewhere.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004158 if (ret_pt->pt_name != NULL)
4159 {
4160 pt->pt_name = vim_strsave(ret_pt->pt_name);
4161 func_ref(pt->pt_name);
4162 }
4163 else
4164 {
4165 pt->pt_func = ret_pt->pt_func;
4166 func_ptr_ref(pt->pt_func);
4167 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004168 if (ret_pt->pt_argc > 0)
4169 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004170 pt->pt_argv = ALLOC_MULT(typval_T, ret_pt->pt_argc);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004171 if (pt->pt_argv == NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01004172 // out of memory: drop the arguments
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004173 pt->pt_argc = 0;
4174 else
4175 {
4176 pt->pt_argc = ret_pt->pt_argc;
4177 for (i = 0; i < pt->pt_argc; i++)
4178 copy_tv(&ret_pt->pt_argv[i], &pt->pt_argv[i]);
4179 }
4180 }
4181 partial_unref(ret_pt);
4182 }
4183 rettv->v_type = VAR_PARTIAL;
4184 rettv->vval.v_partial = pt;
4185 }
4186 }
4187 return selfdict;
4188}
4189
4190/*
4191 * Return the name of the executed function.
4192 */
4193 char_u *
4194func_name(void *cookie)
4195{
4196 return ((funccall_T *)cookie)->func->uf_name;
4197}
4198
4199/*
4200 * Return the address holding the next breakpoint line for a funccall cookie.
4201 */
4202 linenr_T *
4203func_breakpoint(void *cookie)
4204{
4205 return &((funccall_T *)cookie)->breakpoint;
4206}
4207
4208/*
4209 * Return the address holding the debug tick for a funccall cookie.
4210 */
4211 int *
4212func_dbg_tick(void *cookie)
4213{
4214 return &((funccall_T *)cookie)->dbg_tick;
4215}
4216
4217/*
4218 * Return the nesting level for a funccall cookie.
4219 */
4220 int
4221func_level(void *cookie)
4222{
4223 return ((funccall_T *)cookie)->level;
4224}
4225
4226/*
4227 * Return TRUE when a function was ended by a ":return" command.
4228 */
4229 int
4230current_func_returned(void)
4231{
4232 return current_funccal->returned;
4233}
4234
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004235 int
4236free_unref_funccal(int copyID, int testing)
4237{
4238 int did_free = FALSE;
4239 int did_free_funccal = FALSE;
4240 funccall_T *fc, **pfc;
4241
4242 for (pfc = &previous_funccal; *pfc != NULL; )
4243 {
4244 if (can_free_funccal(*pfc, copyID))
4245 {
4246 fc = *pfc;
4247 *pfc = fc->caller;
Bram Moolenaar209b8e32019-03-14 13:43:24 +01004248 free_funccal_contents(fc);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004249 did_free = TRUE;
4250 did_free_funccal = TRUE;
4251 }
4252 else
4253 pfc = &(*pfc)->caller;
4254 }
4255 if (did_free_funccal)
Bram Moolenaare38eab22019-12-05 21:50:01 +01004256 // When a funccal was freed some more items might be garbage
4257 // collected, so run again.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004258 (void)garbage_collect(testing);
4259
4260 return did_free;
4261}
4262
4263/*
Bram Moolenaarba209902016-08-24 22:06:38 +02004264 * Get function call environment based on backtrace debug level
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004265 */
4266 static funccall_T *
4267get_funccal(void)
4268{
4269 int i;
4270 funccall_T *funccal;
4271 funccall_T *temp_funccal;
4272
4273 funccal = current_funccal;
4274 if (debug_backtrace_level > 0)
4275 {
4276 for (i = 0; i < debug_backtrace_level; i++)
4277 {
4278 temp_funccal = funccal->caller;
4279 if (temp_funccal)
4280 funccal = temp_funccal;
4281 else
Bram Moolenaare38eab22019-12-05 21:50:01 +01004282 // backtrace level overflow. reset to max
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004283 debug_backtrace_level = i;
4284 }
4285 }
4286 return funccal;
4287}
4288
4289/*
4290 * Return the hashtable used for local variables in the current funccal.
4291 * Return NULL if there is no current funccal.
4292 */
4293 hashtab_T *
4294get_funccal_local_ht()
4295{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004296 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004297 return NULL;
4298 return &get_funccal()->l_vars.dv_hashtab;
4299}
4300
4301/*
4302 * Return the l: scope variable.
4303 * Return NULL if there is no current funccal.
4304 */
4305 dictitem_T *
4306get_funccal_local_var()
4307{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004308 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004309 return NULL;
4310 return &get_funccal()->l_vars_var;
4311}
4312
4313/*
4314 * Return the hashtable used for argument in the current funccal.
4315 * Return NULL if there is no current funccal.
4316 */
4317 hashtab_T *
4318get_funccal_args_ht()
4319{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004320 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004321 return NULL;
4322 return &get_funccal()->l_avars.dv_hashtab;
4323}
4324
4325/*
4326 * Return the a: scope variable.
4327 * Return NULL if there is no current funccal.
4328 */
4329 dictitem_T *
4330get_funccal_args_var()
4331{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004332 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004333 return NULL;
Bram Moolenaarc7d9eac2017-02-01 20:26:51 +01004334 return &get_funccal()->l_avars_var;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004335}
4336
4337/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004338 * List function variables, if there is a function.
4339 */
4340 void
4341list_func_vars(int *first)
4342{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004343 if (current_funccal != NULL && current_funccal->l_vars.dv_refcount > 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004344 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar32526b32019-01-19 17:43:09 +01004345 "l:", FALSE, first);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004346}
4347
4348/*
4349 * If "ht" is the hashtable for local variables in the current funccal, return
4350 * the dict that contains it.
4351 * Otherwise return NULL.
4352 */
4353 dict_T *
4354get_current_funccal_dict(hashtab_T *ht)
4355{
4356 if (current_funccal != NULL
4357 && ht == &current_funccal->l_vars.dv_hashtab)
4358 return &current_funccal->l_vars;
4359 return NULL;
4360}
4361
4362/*
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004363 * Search hashitem in parent scope.
4364 */
4365 hashitem_T *
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004366find_hi_in_scoped_ht(char_u *name, hashtab_T **pht)
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004367{
4368 funccall_T *old_current_funccal = current_funccal;
4369 hashtab_T *ht;
4370 hashitem_T *hi = NULL;
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004371 char_u *varname;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004372
4373 if (current_funccal == NULL || current_funccal->func->uf_scoped == NULL)
4374 return NULL;
4375
Bram Moolenaar6f5b6df2020-05-16 21:20:12 +02004376 // Search in parent scope, which can be referenced from a lambda.
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004377 current_funccal = current_funccal->func->uf_scoped;
Bram Moolenaar58016442016-07-31 18:30:22 +02004378 while (current_funccal != NULL)
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004379 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004380 ht = find_var_ht(name, &varname);
4381 if (ht != NULL && *varname != NUL)
Bram Moolenaar58016442016-07-31 18:30:22 +02004382 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004383 hi = hash_find(ht, varname);
Bram Moolenaar58016442016-07-31 18:30:22 +02004384 if (!HASHITEM_EMPTY(hi))
4385 {
4386 *pht = ht;
4387 break;
4388 }
4389 }
4390 if (current_funccal == current_funccal->func->uf_scoped)
4391 break;
4392 current_funccal = current_funccal->func->uf_scoped;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004393 }
4394 current_funccal = old_current_funccal;
4395
4396 return hi;
4397}
4398
4399/*
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004400 * Search variable in parent scope.
4401 */
4402 dictitem_T *
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004403find_var_in_scoped_ht(char_u *name, int no_autoload)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004404{
4405 dictitem_T *v = NULL;
4406 funccall_T *old_current_funccal = current_funccal;
4407 hashtab_T *ht;
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004408 char_u *varname;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004409
4410 if (current_funccal == NULL || current_funccal->func->uf_scoped == NULL)
4411 return NULL;
4412
Bram Moolenaare38eab22019-12-05 21:50:01 +01004413 // Search in parent scope which is possible to reference from lambda
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004414 current_funccal = current_funccal->func->uf_scoped;
4415 while (current_funccal)
4416 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004417 ht = find_var_ht(name, &varname);
4418 if (ht != NULL && *varname != NUL)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004419 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004420 v = find_var_in_ht(ht, *name, varname, no_autoload);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004421 if (v != NULL)
4422 break;
4423 }
4424 if (current_funccal == current_funccal->func->uf_scoped)
4425 break;
4426 current_funccal = current_funccal->func->uf_scoped;
4427 }
4428 current_funccal = old_current_funccal;
4429
4430 return v;
4431}
4432
4433/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004434 * Set "copyID + 1" in previous_funccal and callers.
4435 */
4436 int
4437set_ref_in_previous_funccal(int copyID)
4438{
4439 int abort = FALSE;
4440 funccall_T *fc;
4441
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004442 for (fc = previous_funccal; !abort && fc != NULL; fc = fc->caller)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004443 {
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004444 fc->fc_copyID = copyID + 1;
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004445 abort = abort
4446 || set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1, NULL)
4447 || set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1, NULL)
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02004448 || set_ref_in_list_items(&fc->l_varlist, copyID + 1, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004449 }
4450 return abort;
4451}
4452
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004453 static int
4454set_ref_in_funccal(funccall_T *fc, int copyID)
4455{
4456 int abort = FALSE;
4457
4458 if (fc->fc_copyID != copyID)
4459 {
4460 fc->fc_copyID = copyID;
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004461 abort = abort
4462 || set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID, NULL)
4463 || set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID, NULL)
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02004464 || set_ref_in_list_items(&fc->l_varlist, copyID, NULL)
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004465 || set_ref_in_func(NULL, fc->func, copyID);
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004466 }
4467 return abort;
4468}
4469
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004470/*
4471 * Set "copyID" in all local vars and arguments in the call stack.
4472 */
4473 int
4474set_ref_in_call_stack(int copyID)
4475{
Bram Moolenaarc07f67a2019-06-06 19:03:17 +02004476 int abort = FALSE;
4477 funccall_T *fc;
4478 funccal_entry_T *entry;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004479
Bram Moolenaar75a1a942019-06-20 03:45:36 +02004480 for (fc = current_funccal; !abort && fc != NULL; fc = fc->caller)
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004481 abort = abort || set_ref_in_funccal(fc, copyID);
Bram Moolenaarc07f67a2019-06-06 19:03:17 +02004482
4483 // Also go through the funccal_stack.
Bram Moolenaar75a1a942019-06-20 03:45:36 +02004484 for (entry = funccal_stack; !abort && entry != NULL; entry = entry->next)
4485 for (fc = entry->top_funccal; !abort && fc != NULL; fc = fc->caller)
Bram Moolenaarc07f67a2019-06-06 19:03:17 +02004486 abort = abort || set_ref_in_funccal(fc, copyID);
4487
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004488 return abort;
4489}
4490
4491/*
4492 * Set "copyID" in all functions available by name.
4493 */
4494 int
4495set_ref_in_functions(int copyID)
4496{
4497 int todo;
4498 hashitem_T *hi = NULL;
4499 int abort = FALSE;
4500 ufunc_T *fp;
4501
4502 todo = (int)func_hashtab.ht_used;
4503 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004504 {
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004505 if (!HASHITEM_EMPTY(hi))
4506 {
4507 --todo;
4508 fp = HI2UF(hi);
4509 if (!func_name_refcount(fp->uf_name))
4510 abort = abort || set_ref_in_func(NULL, fp, copyID);
4511 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004512 }
4513 return abort;
4514}
4515
4516/*
4517 * Set "copyID" in all function arguments.
4518 */
4519 int
4520set_ref_in_func_args(int copyID)
4521{
4522 int i;
4523 int abort = FALSE;
4524
4525 for (i = 0; i < funcargs.ga_len; ++i)
4526 abort = abort || set_ref_in_item(((typval_T **)funcargs.ga_data)[i],
4527 copyID, NULL, NULL);
4528 return abort;
4529}
4530
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004531/*
4532 * Mark all lists and dicts referenced through function "name" with "copyID".
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004533 * Returns TRUE if setting references failed somehow.
4534 */
4535 int
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004536set_ref_in_func(char_u *name, ufunc_T *fp_in, int copyID)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004537{
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004538 ufunc_T *fp = fp_in;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004539 funccall_T *fc;
Bram Moolenaaref140542019-12-31 21:27:13 +01004540 int error = FCERR_NONE;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004541 char_u fname_buf[FLEN_FIXED + 1];
4542 char_u *tofree = NULL;
4543 char_u *fname;
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004544 int abort = FALSE;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004545
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004546 if (name == NULL && fp_in == NULL)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004547 return FALSE;
4548
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004549 if (fp_in == NULL)
4550 {
4551 fname = fname_trans_sid(name, fname_buf, &tofree, &error);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02004552 fp = find_func(fname, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004553 }
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004554 if (fp != NULL)
4555 {
4556 for (fc = fp->uf_scoped; fc != NULL; fc = fc->func->uf_scoped)
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004557 abort = abort || set_ref_in_funccal(fc, copyID);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004558 }
Bram Moolenaar5adc55c2020-05-02 23:12:58 +02004559
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004560 vim_free(tofree);
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004561 return abort;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004562}
4563
Bram Moolenaare38eab22019-12-05 21:50:01 +01004564#endif // FEAT_EVAL