blob: 6fb6fc4d2d1f16e754398b3455c6e3ee29fdd03f [file] [log] [blame]
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001/* vi:set ts=8 sts=4 sw=4 noet:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * vim9cmds.c: Dealing with compiled function expressions
12 */
13
14#define USING_FLOAT_STUFF
15#include "vim.h"
16
17#if defined(FEAT_EVAL) || defined(PROTO)
18
19// When not generating protos this is included in proto.h
20#ifdef PROTO
21# include "vim9.h"
22#endif
23
Bram Moolenaard02dce22022-01-18 17:43:04 +000024// flag passed from compile_subscript() to compile_load_scriptvar()
25static int paren_follows_after_expr = 0;
26
Bram Moolenaardc7c3662021-12-20 15:04:29 +000027/*
28 * Generate code for any ppconst entries.
29 */
30 int
31generate_ppconst(cctx_T *cctx, ppconst_T *ppconst)
32{
33 int i;
34 int ret = OK;
35 int save_skip = cctx->ctx_skip;
36
37 cctx->ctx_skip = SKIP_NOT;
38 for (i = 0; i < ppconst->pp_used; ++i)
39 if (generate_tv_PUSH(cctx, &ppconst->pp_tv[i]) == FAIL)
40 ret = FAIL;
41 ppconst->pp_used = 0;
42 cctx->ctx_skip = save_skip;
43 return ret;
44}
45
46/*
47 * Check that the last item of "ppconst" is a bool, if there is an item.
48 */
49 static int
50check_ppconst_bool(ppconst_T *ppconst)
51{
52 if (ppconst->pp_used > 0)
53 {
54 typval_T *tv = &ppconst->pp_tv[ppconst->pp_used - 1];
55 where_T where = WHERE_INIT;
56
57 return check_typval_type(&t_bool, tv, where);
58 }
59 return OK;
60}
61
62/*
63 * Clear ppconst constants. Used when failing.
64 */
65 void
66clear_ppconst(ppconst_T *ppconst)
67{
68 int i;
69
70 for (i = 0; i < ppconst->pp_used; ++i)
71 clear_tv(&ppconst->pp_tv[i]);
72 ppconst->pp_used = 0;
73}
74
75/*
76 * Compile getting a member from a list/dict/string/blob. Stack has the
77 * indexable value and the index or the two indexes of a slice.
78 * "keeping_dict" is used for dict[func](arg) to pass dict to func.
79 */
80 int
81compile_member(int is_slice, int *keeping_dict, cctx_T *cctx)
82{
Bram Moolenaar078a4612022-01-04 15:17:03 +000083 type2_T *typep;
Bram Moolenaardc7c3662021-12-20 15:04:29 +000084 garray_T *stack = &cctx->ctx_type_stack;
85 vartype_T vartype;
86 type_T *idxtype;
87
88 // We can index a list, dict and blob. If we don't know the type
89 // we can use the index value type. If we still don't know use an "ANY"
90 // instruction.
Bram Moolenaar078a4612022-01-04 15:17:03 +000091 // TODO: what about the decl type?
92 typep = (((type2_T *)stack->ga_data) + stack->ga_len - (is_slice ? 3 : 2));
93 vartype = typep->type_curr->tt_type;
94 idxtype = (((type2_T *)stack->ga_data) + stack->ga_len - 1)->type_curr;
Bram Moolenaardc7c3662021-12-20 15:04:29 +000095 // If the index is a string, the variable must be a Dict.
Bram Moolenaar078a4612022-01-04 15:17:03 +000096 if ((typep->type_curr == &t_any || typep->type_curr == &t_unknown)
97 && idxtype == &t_string)
Bram Moolenaardc7c3662021-12-20 15:04:29 +000098 vartype = VAR_DICT;
99 if (vartype == VAR_STRING || vartype == VAR_LIST || vartype == VAR_BLOB)
100 {
101 if (need_type(idxtype, &t_number, -1, 0, cctx, FALSE, FALSE) == FAIL)
102 return FAIL;
103 if (is_slice)
104 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000105 idxtype = get_type_on_stack(cctx, 1);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000106 if (need_type(idxtype, &t_number, -2, 0, cctx,
107 FALSE, FALSE) == FAIL)
108 return FAIL;
109 }
110 }
111
112 if (vartype == VAR_DICT)
113 {
114 if (is_slice)
115 {
116 emsg(_(e_cannot_slice_dictionary));
117 return FAIL;
118 }
Bram Moolenaar078a4612022-01-04 15:17:03 +0000119 if (typep->type_curr->tt_type == VAR_DICT)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000120 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000121 typep->type_curr = typep->type_curr->tt_member;
122 if (typep->type_curr == &t_unknown)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000123 // empty dict was used
Bram Moolenaar078a4612022-01-04 15:17:03 +0000124 typep->type_curr = &t_any;
125 if (typep->type_decl->tt_type == VAR_DICT)
126 {
127 typep->type_decl = typep->type_decl->tt_member;
128 if (typep->type_decl == &t_unknown)
129 // empty dict was used
130 typep->type_decl = &t_any;
131 }
132 else
133 typep->type_decl = typep->type_curr;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000134 }
135 else
136 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000137 if (need_type(typep->type_curr, &t_dict_any, -2, 0, cctx,
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000138 FALSE, FALSE) == FAIL)
139 return FAIL;
Bram Moolenaar078a4612022-01-04 15:17:03 +0000140 typep->type_curr = &t_any;
141 typep->type_decl = &t_any;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000142 }
Bram Moolenaard0132f42022-05-12 11:05:40 +0100143 if (may_generate_2STRING(-1, FALSE, cctx) == FAIL
144 || generate_instr_drop(cctx, ISN_MEMBER, 1) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000145 return FAIL;
146 if (keeping_dict != NULL)
147 *keeping_dict = TRUE;
148 }
149 else if (vartype == VAR_STRING)
150 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000151 typep->type_curr = &t_string;
152 typep->type_decl = &t_string;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000153 if ((is_slice
154 ? generate_instr_drop(cctx, ISN_STRSLICE, 2)
155 : generate_instr_drop(cctx, ISN_STRINDEX, 1)) == FAIL)
156 return FAIL;
157 }
158 else if (vartype == VAR_BLOB)
159 {
160 if (is_slice)
161 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000162 typep->type_curr = &t_blob;
163 typep->type_decl = &t_blob;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000164 if (generate_instr_drop(cctx, ISN_BLOBSLICE, 2) == FAIL)
165 return FAIL;
166 }
167 else
168 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000169 typep->type_curr = &t_number;
170 typep->type_decl = &t_number;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000171 if (generate_instr_drop(cctx, ISN_BLOBINDEX, 1) == FAIL)
172 return FAIL;
173 }
174 }
Bram Moolenaar078a4612022-01-04 15:17:03 +0000175 else if (vartype == VAR_LIST || typep->type_curr == &t_any
176 || typep->type_curr == &t_unknown)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000177 {
178 if (is_slice)
179 {
180 if (generate_instr_drop(cctx,
181 vartype == VAR_LIST ? ISN_LISTSLICE : ISN_ANYSLICE,
182 2) == FAIL)
183 return FAIL;
Bram Moolenaar5f4ef5f2022-02-06 18:36:53 +0000184 // a copy is made so the member type is no longer declared
185 if (typep->type_decl->tt_type == VAR_LIST)
186 typep->type_decl = &t_list_any;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000187 }
188 else
189 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000190 if (typep->type_curr->tt_type == VAR_LIST)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000191 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000192 typep->type_curr = typep->type_curr->tt_member;
193 if (typep->type_curr == &t_unknown)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000194 // empty list was used
Bram Moolenaar078a4612022-01-04 15:17:03 +0000195 typep->type_curr = &t_any;
196 if (typep->type_decl->tt_type == VAR_LIST)
197 {
198 typep->type_decl = typep->type_decl->tt_member;
199 if (typep->type_decl == &t_unknown)
200 // empty list was used
201 typep->type_decl = &t_any;
202 }
203 else
204 typep->type_decl = typep->type_curr;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000205 }
206 if (generate_instr_drop(cctx,
207 vartype == VAR_LIST ? ISN_LISTINDEX : ISN_ANYINDEX, 1)
208 == FAIL)
209 return FAIL;
210 }
211 }
212 else
213 {
214 switch (vartype)
215 {
216 case VAR_FUNC:
217 case VAR_PARTIAL:
218 emsg(_(e_cannot_index_a_funcref));
219 break;
220 case VAR_BOOL:
221 case VAR_SPECIAL:
222 case VAR_JOB:
223 case VAR_CHANNEL:
224 case VAR_INSTR:
225 case VAR_UNKNOWN:
226 case VAR_ANY:
227 case VAR_VOID:
228 emsg(_(e_cannot_index_special_variable));
229 break;
230 default:
231 emsg(_(e_string_list_dict_or_blob_required));
232 }
233 return FAIL;
234 }
235 return OK;
236}
237
238/*
239 * Generate an instruction to load script-local variable "name", without the
240 * leading "s:".
241 * Also finds imported variables.
242 */
243 int
244compile_load_scriptvar(
245 cctx_T *cctx,
246 char_u *name, // variable NUL terminated
247 char_u *start, // start of variable
Bram Moolenaard0132f42022-05-12 11:05:40 +0100248 char_u **end) // end of variable, may be NULL
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000249{
250 scriptitem_T *si;
251 int idx;
252 imported_T *import;
253
254 if (!SCRIPT_ID_VALID(current_sctx.sc_sid))
255 return FAIL;
256 si = SCRIPT_ITEM(current_sctx.sc_sid);
Bram Moolenaarb6a138e2022-02-08 21:17:22 +0000257 idx = get_script_item_idx(current_sctx.sc_sid, name, 0, cctx, NULL);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000258 if (idx >= 0)
259 {
260 svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + idx;
261
262 generate_VIM9SCRIPT(cctx, ISN_LOADSCRIPT,
263 current_sctx.sc_sid, idx, sv->sv_type);
264 return OK;
265 }
266
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000267 import = end == NULL ? NULL : find_imported(name, 0, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000268 if (import != NULL)
269 {
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000270 char_u *p = skipwhite(*end);
271 char_u *exp_name;
272 int cc;
Bram Moolenaarffe6e642022-04-01 13:23:47 +0100273 ufunc_T *ufunc = NULL;
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000274 type_T *type;
Bram Moolenaard041f422022-01-12 19:54:00 +0000275 int done = FALSE;
276 int res = OK;
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000277
278 // Need to lookup the member.
279 if (*p != '.')
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000280 {
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000281 semsg(_(e_expected_dot_after_name_str), start);
282 return FAIL;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000283 }
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000284 ++p;
285 if (VIM_ISWHITE(*p))
286 {
287 emsg(_(e_no_white_space_allowed_after_dot));
288 return FAIL;
289 }
290
291 // isolate one name
292 exp_name = p;
293 while (eval_isnamec(*p))
294 ++p;
295 cc = *p;
296 *p = NUL;
297
Bram Moolenaard041f422022-01-12 19:54:00 +0000298 si = SCRIPT_ITEM(import->imp_sid);
Bram Moolenaarccbfd482022-03-31 16:18:23 +0100299 if (si->sn_import_autoload && si->sn_state == SN_STATE_NOT_LOADED)
300 // "import autoload './dir/script.vim'" or
301 // "import autoload './autoload/script.vim'" - load script first
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +0100302 res = generate_SOURCE(cctx, import->imp_sid);
Bram Moolenaarccbfd482022-03-31 16:18:23 +0100303
304 if (res == OK)
305 {
306 if (si->sn_autoload_prefix != NULL
307 && si->sn_state == SN_STATE_NOT_LOADED)
308 {
309 char_u *auto_name =
310 concat_str(si->sn_autoload_prefix, exp_name);
311
312 // autoload script must be loaded later, access by the autoload
313 // name. If a '(' follows it must be a function. Otherwise we
314 // don't know, it can be "script.Func".
315 if (cc == '(' || paren_follows_after_expr)
316 res = generate_PUSHFUNC(cctx, auto_name, &t_func_any);
317 else
318 res = generate_AUTOLOAD(cctx, auto_name, &t_any);
319 vim_free(auto_name);
320 done = TRUE;
321 }
322 else if (si->sn_import_autoload
323 && si->sn_state == SN_STATE_NOT_LOADED)
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +0100324 {
325 // If a '(' follows it must be a function. Otherwise we don't
326 // know, it can be "script.Func".
327 if (cc == '(' || paren_follows_after_expr)
328 {
329 char_u sid_name[MAX_FUNC_NAME_LEN];
330
331 func_name_with_sid(exp_name, import->imp_sid, sid_name);
332 res = generate_PUSHFUNC(cctx, sid_name, &t_func_any);
333 }
334 else
335 res = generate_OLDSCRIPT(cctx, ISN_LOADEXPORT, exp_name,
336 import->imp_sid, &t_any);
Bram Moolenaarccbfd482022-03-31 16:18:23 +0100337 done = TRUE;
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +0100338 }
Bram Moolenaarccbfd482022-03-31 16:18:23 +0100339 else
340 {
341 idx = find_exported(import->imp_sid, exp_name, &ufunc, &type,
342 cctx, NULL, TRUE);
343 }
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +0100344 }
Bram Moolenaarccbfd482022-03-31 16:18:23 +0100345
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000346 *p = cc;
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000347 *end = p;
Bram Moolenaard041f422022-01-12 19:54:00 +0000348 if (done)
349 return res;
Bram Moolenaard5f400c2022-01-06 21:10:28 +0000350
351 if (idx < 0)
352 {
353 if (ufunc != NULL)
354 {
355 // function call or function reference
356 generate_PUSHFUNC(cctx, ufunc->uf_name, NULL);
357 return OK;
358 }
359 return FAIL;
360 }
361
362 generate_VIM9SCRIPT(cctx, ISN_LOADSCRIPT,
363 import->imp_sid,
364 idx,
365 type);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000366 return OK;
367 }
368
Bram Moolenaard0132f42022-05-12 11:05:40 +0100369 // Can only get here if we know "name" is a script variable and not in a
370 // Vim9 script (variable is not in sn_var_vals): old style script.
371 return generate_OLDSCRIPT(cctx, ISN_LOADS, name, current_sctx.sc_sid,
Bram Moolenaar62aec932022-01-29 21:45:34 +0000372 &t_any);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000373}
374
375 static int
Bram Moolenaar848fadd2022-01-30 15:28:30 +0000376generate_funcref(cctx_T *cctx, char_u *name, int has_g_prefix)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000377{
Bram Moolenaard9d2fd02022-01-13 21:15:21 +0000378 ufunc_T *ufunc = find_func(name, FALSE);
Bram Moolenaar139575d2022-03-15 19:29:30 +0000379 compiletype_T compile_type;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000380
Bram Moolenaar848fadd2022-01-30 15:28:30 +0000381 // Reject a global non-autoload function found without the "g:" prefix.
382 if (ufunc == NULL || (!has_g_prefix && func_requires_g_prefix(ufunc)))
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000383 return FAIL;
384
385 // Need to compile any default values to get the argument types.
Bram Moolenaar139575d2022-03-15 19:29:30 +0000386 compile_type = get_compile_type(ufunc);
387 if (func_needs_compiling(ufunc, compile_type)
Bram Moolenaar21dc8f12022-03-16 17:54:17 +0000388 && compile_def_function(ufunc, TRUE, compile_type, NULL) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000389 return FAIL;
390 return generate_PUSHFUNC(cctx, ufunc->uf_name, ufunc->uf_func_type);
391}
392
393/*
394 * Compile a variable name into a load instruction.
395 * "end" points to just after the name.
396 * "is_expr" is TRUE when evaluating an expression, might be a funcref.
397 * When "error" is FALSE do not give an error when not found.
398 */
399 int
400compile_load(
401 char_u **arg,
402 char_u *end_arg,
403 cctx_T *cctx,
404 int is_expr,
405 int error)
406{
407 type_T *type;
408 char_u *name = NULL;
409 char_u *end = end_arg;
410 int res = FAIL;
411 int prev_called_emsg = called_emsg;
412
413 if (*(*arg + 1) == ':')
414 {
415 if (end <= *arg + 2)
416 {
417 isntype_T isn_type;
418
419 // load dictionary of namespace
420 switch (**arg)
421 {
422 case 'g': isn_type = ISN_LOADGDICT; break;
423 case 'w': isn_type = ISN_LOADWDICT; break;
424 case 't': isn_type = ISN_LOADTDICT; break;
425 case 'b': isn_type = ISN_LOADBDICT; break;
426 default:
427 semsg(_(e_namespace_not_supported_str), *arg);
428 goto theend;
429 }
430 if (generate_instr_type(cctx, isn_type, &t_dict_any) == NULL)
431 goto theend;
432 res = OK;
433 }
434 else
435 {
436 isntype_T isn_type = ISN_DROP;
437
438 // load namespaced variable
439 name = vim_strnsave(*arg + 2, end - (*arg + 2));
440 if (name == NULL)
441 return FAIL;
442
443 switch (**arg)
444 {
445 case 'v': res = generate_LOADV(cctx, name, error);
446 break;
Bram Moolenaarafa048f2022-02-22 20:43:36 +0000447 case 's': if (current_script_is_vim9())
448 {
449 semsg(_(e_cannot_use_s_colon_in_vim9_script_str),
450 *arg);
451 vim_free(name);
452 return FAIL;
453 }
454 if (is_expr && ASCII_ISUPPER(*name)
455 && find_func(name, FALSE) != NULL)
Bram Moolenaar848fadd2022-01-30 15:28:30 +0000456 res = generate_funcref(cctx, name, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000457 else
458 res = compile_load_scriptvar(cctx, name,
Bram Moolenaard0132f42022-05-12 11:05:40 +0100459 NULL, &end);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000460 break;
461 case 'g': if (vim_strchr(name, AUTOLOAD_CHAR) == NULL)
462 {
463 if (is_expr && ASCII_ISUPPER(*name)
Bram Moolenaard9d2fd02022-01-13 21:15:21 +0000464 && find_func(name, FALSE) != NULL)
Bram Moolenaar848fadd2022-01-30 15:28:30 +0000465 res = generate_funcref(cctx, name, TRUE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000466 else
467 isn_type = ISN_LOADG;
468 }
469 else
470 {
471 isn_type = ISN_LOADAUTO;
472 vim_free(name);
473 name = vim_strnsave(*arg, end - *arg);
474 if (name == NULL)
475 return FAIL;
476 }
477 break;
478 case 'w': isn_type = ISN_LOADW; break;
479 case 't': isn_type = ISN_LOADT; break;
480 case 'b': isn_type = ISN_LOADB; break;
481 default: // cannot happen, just in case
482 semsg(_(e_namespace_not_supported_str), *arg);
483 goto theend;
484 }
485 if (isn_type != ISN_DROP)
486 {
487 // Global, Buffer-local, Window-local and Tabpage-local
488 // variables can be defined later, thus we don't check if it
489 // exists, give an error at runtime.
Bram Moolenaarfa46ead2021-12-22 13:18:39 +0000490 res = generate_LOAD(cctx, isn_type, 0, name, &t_any);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000491 }
492 }
493 }
494 else
495 {
496 size_t len = end - *arg;
497 int idx;
498 int gen_load = FALSE;
499 int gen_load_outer = 0;
500
501 name = vim_strnsave(*arg, end - *arg);
502 if (name == NULL)
503 return FAIL;
504
505 if (vim_strchr(name, AUTOLOAD_CHAR) != NULL)
506 {
507 script_autoload(name, FALSE);
508 res = generate_LOAD(cctx, ISN_LOADAUTO, 0, name, &t_any);
509 }
510 else if (arg_exists(*arg, len, &idx, &type, &gen_load_outer, cctx)
511 == OK)
512 {
513 if (gen_load_outer == 0)
514 gen_load = TRUE;
515 }
516 else
517 {
518 lvar_T lvar;
519
520 if (lookup_local(*arg, len, &lvar, cctx) == OK)
521 {
522 type = lvar.lv_type;
523 idx = lvar.lv_idx;
524 if (lvar.lv_from_outer != 0)
525 gen_load_outer = lvar.lv_from_outer;
526 else
527 gen_load = TRUE;
528 }
529 else
530 {
531 // "var" can be script-local even without using "s:" if it
532 // already exists in a Vim9 script or when it's imported.
Bram Moolenaardce24412022-02-08 20:35:30 +0000533 if (script_var_exists(*arg, len, cctx, NULL) == OK
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000534 || find_imported(name, 0, FALSE) != NULL)
Bram Moolenaard0132f42022-05-12 11:05:40 +0100535 res = compile_load_scriptvar(cctx, name, *arg, &end);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000536
537 // When evaluating an expression and the name starts with an
538 // uppercase letter it can be a user defined function.
539 // generate_funcref() will fail if the function can't be found.
540 if (res == FAIL && is_expr && ASCII_ISUPPER(*name))
Bram Moolenaar848fadd2022-01-30 15:28:30 +0000541 res = generate_funcref(cctx, name, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000542 }
543 }
544 if (gen_load)
545 res = generate_LOAD(cctx, ISN_LOAD, idx, NULL, type);
546 if (gen_load_outer > 0)
547 {
548 res = generate_LOADOUTER(cctx, idx, gen_load_outer, type);
549 cctx->ctx_outer_used = TRUE;
550 }
551 }
552
553 *arg = end;
554
555theend:
556 if (res == FAIL && error && called_emsg == prev_called_emsg)
557 semsg(_(e_variable_not_found_str), name);
558 vim_free(name);
559 return res;
560}
561
562/*
563 * Compile a string in a ISN_PUSHS instruction into an ISN_INSTR.
LemonBoyf3b48952022-05-05 13:53:03 +0100564 * "str_offset" is the number of leading bytes to skip from the string.
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000565 * Returns FAIL if compilation fails.
566 */
567 static int
LemonBoyf3b48952022-05-05 13:53:03 +0100568compile_string(isn_T *isn, cctx_T *cctx, int str_offset)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000569{
LemonBoyf3b48952022-05-05 13:53:03 +0100570 char_u *s = isn->isn_arg.string + str_offset;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000571 garray_T save_ga = cctx->ctx_instr;
572 int expr_res;
573 int trailing_error;
574 int instr_count;
575 isn_T *instr = NULL;
576
577 // Remove the string type from the stack.
578 --cctx->ctx_type_stack.ga_len;
579
580 // Temporarily reset the list of instructions so that the jump labels are
581 // correct.
582 cctx->ctx_instr.ga_len = 0;
583 cctx->ctx_instr.ga_maxlen = 0;
584 cctx->ctx_instr.ga_data = NULL;
585 expr_res = compile_expr0(&s, cctx);
586 s = skipwhite(s);
587 trailing_error = *s != NUL;
588
589 if (expr_res == FAIL || trailing_error
590 || GA_GROW_FAILS(&cctx->ctx_instr, 1))
591 {
592 if (trailing_error)
Bram Moolenaar74409f62022-01-01 15:58:22 +0000593 semsg(_(e_trailing_characters_str), s);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000594 clear_instr_ga(&cctx->ctx_instr);
595 cctx->ctx_instr = save_ga;
596 ++cctx->ctx_type_stack.ga_len;
597 return FAIL;
598 }
599
600 // Move the generated instructions into the ISN_INSTR instruction, then
601 // restore the list of instructions.
602 instr_count = cctx->ctx_instr.ga_len;
603 instr = cctx->ctx_instr.ga_data;
604 instr[instr_count].isn_type = ISN_FINISH;
605
606 cctx->ctx_instr = save_ga;
607 vim_free(isn->isn_arg.string);
608 isn->isn_type = ISN_INSTR;
609 isn->isn_arg.instr = instr;
610 return OK;
611}
612
613/*
LemonBoyf3b48952022-05-05 13:53:03 +0100614 * List of special functions for "compile_arguments".
615 */
616typedef enum {
617 CA_NOT_SPECIAL,
618 CA_SEARCHPAIR, // {skip} in searchpair() and searchpairpos()
619 CA_SUBSTITUTE, // {sub} in substitute(), when prefixed with \=
620} ca_special_T;
621
622/*
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000623 * Compile the argument expressions.
624 * "arg" points to just after the "(" and is advanced to after the ")"
625 */
626 static int
LemonBoyf3b48952022-05-05 13:53:03 +0100627compile_arguments(
628 char_u **arg,
629 cctx_T *cctx,
630 int *argcount,
631 ca_special_T special_fn)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000632{
633 char_u *p = *arg;
634 char_u *whitep = *arg;
635 int must_end = FALSE;
636 int instr_count;
637
638 for (;;)
639 {
640 if (may_get_next_line(whitep, &p, cctx) == FAIL)
641 goto failret;
642 if (*p == ')')
643 {
644 *arg = p + 1;
645 return OK;
646 }
647 if (must_end)
648 {
649 semsg(_(e_missing_comma_before_argument_str), p);
650 return FAIL;
651 }
652
653 instr_count = cctx->ctx_instr.ga_len;
654 if (compile_expr0(&p, cctx) == FAIL)
655 return FAIL;
656 ++*argcount;
657
LemonBoyf3b48952022-05-05 13:53:03 +0100658 if (special_fn == CA_SEARCHPAIR && *argcount == 5
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000659 && cctx->ctx_instr.ga_len == instr_count + 1)
660 {
661 isn_T *isn = ((isn_T *)cctx->ctx_instr.ga_data) + instr_count;
662
663 // {skip} argument of searchpair() can be compiled if not empty
664 if (isn->isn_type == ISN_PUSHS && *isn->isn_arg.string != NUL)
LemonBoyf3b48952022-05-05 13:53:03 +0100665 compile_string(isn, cctx, 0);
666 }
667 else if (special_fn == CA_SUBSTITUTE && *argcount == 3
668 && cctx->ctx_instr.ga_len == instr_count + 1)
669 {
670 isn_T *isn = ((isn_T *)cctx->ctx_instr.ga_data) + instr_count;
671
672 // {sub} argument of substitute() can be compiled if it starts
673 // with \=
674 if (isn->isn_type == ISN_PUSHS && isn->isn_arg.string[0] == '\\'
675 && isn->isn_arg.string[1] == '=')
676 compile_string(isn, cctx, 2);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000677 }
678
679 if (*p != ',' && *skipwhite(p) == ',')
680 {
681 semsg(_(e_no_white_space_allowed_before_str_str), ",", p);
682 p = skipwhite(p);
683 }
684 if (*p == ',')
685 {
686 ++p;
687 if (*p != NUL && !VIM_ISWHITE(*p))
688 semsg(_(e_white_space_required_after_str_str), ",", p - 1);
689 }
690 else
691 must_end = TRUE;
692 whitep = p;
693 p = skipwhite(p);
694 }
695failret:
696 emsg(_(e_missing_closing_paren));
697 return FAIL;
698}
699
700/*
701 * Compile a function call: name(arg1, arg2)
702 * "arg" points to "name", "arg + varlen" to the "(".
703 * "argcount_init" is 1 for "value->method()"
704 * Instructions:
705 * EVAL arg1
706 * EVAL arg2
707 * BCALL / DCALL / UCALL
708 */
709 static int
710compile_call(
711 char_u **arg,
712 size_t varlen,
713 cctx_T *cctx,
714 ppconst_T *ppconst,
715 int argcount_init)
716{
717 char_u *name = *arg;
718 char_u *p;
719 int argcount = argcount_init;
Bram Moolenaara6c18d32022-03-31 20:02:56 +0100720 char_u namebuf[MAX_FUNC_NAME_LEN];
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000721 char_u fname_buf[FLEN_FIXED + 1];
722 char_u *tofree = NULL;
723 int error = FCERR_NONE;
724 ufunc_T *ufunc = NULL;
725 int res = FAIL;
726 int is_autoload;
Bram Moolenaar62aec932022-01-29 21:45:34 +0000727 int has_g_namespace;
LemonBoyf3b48952022-05-05 13:53:03 +0100728 ca_special_T special_fn;
Bram Moolenaarf67c7172022-01-19 17:23:05 +0000729 imported_T *import;
730
731 if (varlen >= sizeof(namebuf))
732 {
733 semsg(_(e_name_too_long_str), name);
734 return FAIL;
735 }
736 vim_strncpy(namebuf, *arg, varlen);
737
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000738 import = find_imported(name, varlen, FALSE);
Bram Moolenaarf67c7172022-01-19 17:23:05 +0000739 if (import != NULL)
740 {
741 semsg(_(e_cannot_use_str_itself_it_is_imported), namebuf);
742 return FAIL;
743 }
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000744
745 // We can evaluate "has('name')" at compile time.
LemonBoy58f331a2022-04-02 21:59:06 +0100746 // We can evaluate "len('string')" at compile time.
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000747 // We always evaluate "exists_compiled()" at compile time.
LemonBoy58f331a2022-04-02 21:59:06 +0100748 if ((varlen == 3
749 && (STRNCMP(*arg, "has", 3) == 0 || STRNCMP(*arg, "len", 3) == 0))
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000750 || (varlen == 15 && STRNCMP(*arg, "exists_compiled", 6) == 0))
751 {
752 char_u *s = skipwhite(*arg + varlen + 1);
753 typval_T argvars[2];
754 int is_has = **arg == 'h';
LemonBoy58f331a2022-04-02 21:59:06 +0100755 int is_len = **arg == 'l';
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000756
757 argvars[0].v_type = VAR_UNKNOWN;
758 if (*s == '"')
Bram Moolenaar0abc2872022-05-10 13:24:30 +0100759 (void)eval_string(&s, &argvars[0], TRUE, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000760 else if (*s == '\'')
Bram Moolenaar0abc2872022-05-10 13:24:30 +0100761 (void)eval_lit_string(&s, &argvars[0], TRUE, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000762 s = skipwhite(s);
763 if (*s == ')' && argvars[0].v_type == VAR_STRING
764 && ((is_has && !dynamic_feature(argvars[0].vval.v_string))
765 || !is_has))
766 {
767 typval_T *tv = &ppconst->pp_tv[ppconst->pp_used];
768
769 *arg = s + 1;
770 argvars[1].v_type = VAR_UNKNOWN;
771 tv->v_type = VAR_NUMBER;
772 tv->vval.v_number = 0;
773 if (is_has)
774 f_has(argvars, tv);
LemonBoy58f331a2022-04-02 21:59:06 +0100775 else if (is_len)
776 f_len(argvars, tv);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000777 else
778 f_exists(argvars, tv);
779 clear_tv(&argvars[0]);
780 ++ppconst->pp_used;
781 return OK;
782 }
783 clear_tv(&argvars[0]);
LemonBoy58f331a2022-04-02 21:59:06 +0100784 if (!is_has && !is_len)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000785 {
786 emsg(_(e_argument_of_exists_compiled_must_be_literal_string));
787 return FAIL;
788 }
789 }
790
791 if (generate_ppconst(cctx, ppconst) == FAIL)
792 return FAIL;
793
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000794 name = fname_trans_sid(namebuf, fname_buf, &tofree, &error);
795
796 // We handle the "skip" argument of searchpair() and searchpairpos()
797 // differently.
LemonBoyf3b48952022-05-05 13:53:03 +0100798 if ((varlen == 6 && STRNCMP(*arg, "search", 6) == 0)
799 || (varlen == 9 && STRNCMP(*arg, "searchpos", 9) == 0)
800 || (varlen == 10 && STRNCMP(*arg, "searchpair", 10) == 0)
801 || (varlen == 13 && STRNCMP(*arg, "searchpairpos", 13) == 0))
802 special_fn = CA_SEARCHPAIR;
803 else if (varlen == 10 && STRNCMP(*arg, "substitute", 10) == 0)
804 special_fn = CA_SUBSTITUTE;
805 else
806 special_fn = CA_NOT_SPECIAL;
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000807
808 *arg = skipwhite(*arg + varlen + 1);
LemonBoyf3b48952022-05-05 13:53:03 +0100809 if (compile_arguments(arg, cctx, &argcount, special_fn) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000810 goto theend;
811
812 is_autoload = vim_strchr(name, AUTOLOAD_CHAR) != NULL;
813 if (ASCII_ISLOWER(*name) && name[1] != ':' && !is_autoload)
814 {
815 int idx;
816
817 // builtin function
818 idx = find_internal_func(name);
819 if (idx >= 0)
820 {
821 if (STRCMP(name, "flatten") == 0)
822 {
823 emsg(_(e_cannot_use_flatten_in_vim9_script));
824 goto theend;
825 }
826
827 if (STRCMP(name, "add") == 0 && argcount == 2)
828 {
Bram Moolenaareb4a9ba2022-02-01 12:47:07 +0000829 type_T *type = get_decl_type_on_stack(cctx, 1);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000830
831 // add() can be compiled to instructions if we know the type
832 if (type->tt_type == VAR_LIST)
833 {
834 // inline "add(list, item)" so that the type can be checked
835 res = generate_LISTAPPEND(cctx);
836 idx = -1;
837 }
838 else if (type->tt_type == VAR_BLOB)
839 {
840 // inline "add(blob, nr)" so that the type can be checked
841 res = generate_BLOBAPPEND(cctx);
842 idx = -1;
843 }
844 }
845
846 if (idx >= 0)
847 res = generate_BCALL(cctx, idx, argcount, argcount_init == 1);
848 }
849 else
Bram Moolenaara6c18d32022-03-31 20:02:56 +0100850 emsg_funcname(e_unknown_function_str, namebuf);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000851 goto theend;
852 }
853
Bram Moolenaar62aec932022-01-29 21:45:34 +0000854 has_g_namespace = STRNCMP(namebuf, "g:", 2) == 0;
855
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000856 // An argument or local variable can be a function reference, this
857 // overrules a function name.
858 if (lookup_local(namebuf, varlen, NULL, cctx) == FAIL
859 && arg_exists(namebuf, varlen, NULL, NULL, NULL, cctx) != OK)
860 {
861 // If we can find the function by name generate the right call.
862 // Skip global functions here, a local funcref takes precedence.
Bram Moolenaard9d2fd02022-01-13 21:15:21 +0000863 ufunc = find_func(name, FALSE);
Bram Moolenaar62aec932022-01-29 21:45:34 +0000864 if (ufunc != NULL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000865 {
Bram Moolenaar62aec932022-01-29 21:45:34 +0000866 if (!func_is_global(ufunc))
867 {
868 res = generate_CALL(cctx, ufunc, argcount);
869 goto theend;
870 }
871 if (!has_g_namespace
872 && vim_strchr(ufunc->uf_name, AUTOLOAD_CHAR) == NULL)
873 {
874 // A function name without g: prefix must be found locally.
Bram Moolenaara6c18d32022-03-31 20:02:56 +0100875 emsg_funcname(e_unknown_function_str, namebuf);
Bram Moolenaar62aec932022-01-29 21:45:34 +0000876 goto theend;
877 }
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000878 }
879 }
880
881 // If the name is a variable, load it and use PCALL.
882 // Not for g:Func(), we don't know if it is a variable or not.
Bram Moolenaar848fadd2022-01-30 15:28:30 +0000883 // Not for some#Func(), it will be loaded later.
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000884 p = namebuf;
Bram Moolenaar62aec932022-01-29 21:45:34 +0000885 if (!has_g_namespace && !is_autoload
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000886 && compile_load(&p, namebuf + varlen, cctx, FALSE, FALSE) == OK)
887 {
Bram Moolenaar078a4612022-01-04 15:17:03 +0000888 type_T *type = get_type_on_stack(cctx, 0);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000889
890 res = generate_PCALL(cctx, argcount, namebuf, type, FALSE);
891 goto theend;
892 }
893
894 // If we can find a global function by name generate the right call.
895 if (ufunc != NULL)
896 {
897 res = generate_CALL(cctx, ufunc, argcount);
898 goto theend;
899 }
900
901 // A global function may be defined only later. Need to figure out at
902 // runtime. Also handles a FuncRef at runtime.
Bram Moolenaar62aec932022-01-29 21:45:34 +0000903 if (has_g_namespace || is_autoload)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000904 res = generate_UCALL(cctx, name, argcount);
905 else
Bram Moolenaara6c18d32022-03-31 20:02:56 +0100906 emsg_funcname(e_unknown_function_str, namebuf);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000907
908theend:
909 vim_free(tofree);
910 return res;
911}
912
913// like NAMESPACE_CHAR but with 'a' and 'l'.
914#define VIM9_NAMESPACE_CHAR (char_u *)"bgstvw"
915
916/*
917 * Find the end of a variable or function name. Unlike find_name_end() this
918 * does not recognize magic braces.
919 * When "use_namespace" is TRUE recognize "b:", "s:", etc.
920 * Return a pointer to just after the name. Equal to "arg" if there is no
921 * valid name.
922 */
923 char_u *
924to_name_end(char_u *arg, int use_namespace)
925{
926 char_u *p;
927
928 // Quick check for valid starting character.
929 if (!eval_isnamec1(*arg))
930 return arg;
931
932 for (p = arg + 1; *p != NUL && eval_isnamec(*p); MB_PTR_ADV(p))
933 // Include a namespace such as "s:var" and "v:var". But "n:" is not
934 // and can be used in slice "[n:]".
935 if (*p == ':' && (p != arg + 1
936 || !use_namespace
937 || vim_strchr(VIM9_NAMESPACE_CHAR, *arg) == NULL))
938 break;
939 return p;
940}
941
942/*
943 * Like to_name_end() but also skip over a list or dict constant.
944 * Also accept "<SNR>123_Func".
945 * This intentionally does not handle line continuation.
946 */
947 char_u *
948to_name_const_end(char_u *arg)
949{
950 char_u *p = arg;
951 typval_T rettv;
952
953 if (STRNCMP(p, "<SNR>", 5) == 0)
954 p = skipdigits(p + 5);
955 p = to_name_end(p, TRUE);
956 if (p == arg && *arg == '[')
957 {
958
959 // Can be "[1, 2, 3]->Func()".
960 if (eval_list(&p, &rettv, NULL, FALSE) == FAIL)
961 p = arg;
962 }
963 return p;
964}
965
966/*
967 * parse a list: [expr, expr]
968 * "*arg" points to the '['.
969 * ppconst->pp_is_const is set if all items are a constant.
970 */
971 static int
972compile_list(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
973{
974 char_u *p = skipwhite(*arg + 1);
975 char_u *whitep = *arg + 1;
976 int count = 0;
977 int is_const;
978 int is_all_const = TRUE; // reset when non-const encountered
979
980 for (;;)
981 {
982 if (may_get_next_line(whitep, &p, cctx) == FAIL)
983 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000984 semsg(_(e_missing_end_of_list_rsb_str), *arg);
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000985 return FAIL;
986 }
987 if (*p == ',')
988 {
989 semsg(_(e_no_white_space_allowed_before_str_str), ",", p);
990 return FAIL;
991 }
992 if (*p == ']')
993 {
994 ++p;
995 break;
996 }
997 if (compile_expr0_ext(&p, cctx, &is_const) == FAIL)
998 return FAIL;
999 if (!is_const)
1000 is_all_const = FALSE;
1001 ++count;
1002 if (*p == ',')
1003 {
1004 ++p;
1005 if (*p != ']' && !IS_WHITE_OR_NUL(*p))
1006 {
1007 semsg(_(e_white_space_required_after_str_str), ",", p - 1);
1008 return FAIL;
1009 }
1010 }
1011 whitep = p;
1012 p = skipwhite(p);
1013 }
1014 *arg = p;
1015
1016 ppconst->pp_is_const = is_all_const;
Bram Moolenaarec15b1c2022-03-27 16:29:53 +01001017 return generate_NEWLIST(cctx, count, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001018}
1019
1020/*
1021 * Parse a lambda: "(arg, arg) => expr"
1022 * "*arg" points to the '('.
1023 * Returns OK/FAIL when a lambda is recognized, NOTDONE if it's not a lambda.
1024 */
1025 static int
1026compile_lambda(char_u **arg, cctx_T *cctx)
1027{
1028 int r;
1029 typval_T rettv;
1030 ufunc_T *ufunc;
1031 evalarg_T evalarg;
1032
1033 init_evalarg(&evalarg);
1034 evalarg.eval_flags = EVAL_EVALUATE;
1035 evalarg.eval_cctx = cctx;
1036
1037 // Get the funcref in "rettv".
1038 r = get_lambda_tv(arg, &rettv, TRUE, &evalarg);
1039 if (r != OK)
1040 {
1041 clear_evalarg(&evalarg, NULL);
1042 return r;
1043 }
1044
1045 // "rettv" will now be a partial referencing the function.
1046 ufunc = rettv.vval.v_partial->pt_func;
1047 ++ufunc->uf_refcount;
1048 clear_tv(&rettv);
1049
1050 // Compile it here to get the return type. The return type is optional,
1051 // when it's missing use t_unknown. This is recognized in
1052 // compile_return().
1053 if (ufunc->uf_ret_type->tt_type == VAR_VOID)
1054 ufunc->uf_ret_type = &t_unknown;
1055 compile_def_function(ufunc, FALSE, cctx->ctx_compile_type, cctx);
1056
1057 // When the outer function is compiled for profiling or debugging, the
1058 // lambda may be called without profiling or debugging. Compile it here in
1059 // the right context.
1060 if (cctx->ctx_compile_type == CT_DEBUG
1061#ifdef FEAT_PROFILE
1062 || cctx->ctx_compile_type == CT_PROFILE
1063#endif
1064 )
1065 compile_def_function(ufunc, FALSE, CT_NONE, cctx);
1066
Bram Moolenaar139575d2022-03-15 19:29:30 +00001067 // if the outer function is not compiled for debugging or profiling, this
1068 // one might be
1069 if (cctx->ctx_compile_type == CT_NONE)
Bram Moolenaar96923b72022-03-15 15:57:04 +00001070 {
Bram Moolenaar139575d2022-03-15 19:29:30 +00001071 compiletype_T compile_type = get_compile_type(ufunc);
1072
1073 if (compile_type != CT_NONE)
1074 compile_def_function(ufunc, FALSE, compile_type, cctx);
Bram Moolenaar96923b72022-03-15 15:57:04 +00001075 }
1076
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001077 // The last entry in evalarg.eval_tofree_ga is a copy of the last line and
1078 // "*arg" may point into it. Point into the original line to avoid a
1079 // dangling pointer.
1080 if (evalarg.eval_using_cmdline)
1081 {
1082 garray_T *gap = &evalarg.eval_tofree_ga;
1083 size_t off = *arg - ((char_u **)gap->ga_data)[gap->ga_len - 1];
1084
1085 *arg = ((char_u **)cctx->ctx_ufunc->uf_lines.ga_data)[cctx->ctx_lnum]
1086 + off;
1087 }
1088
1089 clear_evalarg(&evalarg, NULL);
1090
1091 if (ufunc->uf_def_status == UF_COMPILED)
1092 {
1093 // The return type will now be known.
1094 set_function_type(ufunc);
1095
1096 // The function reference count will be 1. When the ISN_FUNCREF
1097 // instruction is deleted the reference count is decremented and the
1098 // function is freed.
Bram Moolenaara915fa02022-03-23 11:29:15 +00001099 return generate_FUNCREF(cctx, ufunc, NULL);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001100 }
1101
1102 func_ptr_unref(ufunc);
1103 return FAIL;
1104}
1105
1106/*
1107 * Get a lambda and compile it. Uses Vim9 syntax.
1108 */
1109 int
1110get_lambda_tv_and_compile(
1111 char_u **arg,
1112 typval_T *rettv,
1113 int types_optional,
1114 evalarg_T *evalarg)
1115{
1116 int r;
1117 ufunc_T *ufunc;
1118 int save_sc_version = current_sctx.sc_version;
1119
1120 // Get the funcref in "rettv".
1121 current_sctx.sc_version = SCRIPT_VERSION_VIM9;
1122 r = get_lambda_tv(arg, rettv, types_optional, evalarg);
1123 current_sctx.sc_version = save_sc_version;
1124 if (r != OK)
Bram Moolenaar7f8a3b12022-05-12 22:03:01 +01001125 return r; // currently unreachable
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001126
1127 // "rettv" will now be a partial referencing the function.
1128 ufunc = rettv->vval.v_partial->pt_func;
1129
1130 // Compile it here to get the return type. The return type is optional,
1131 // when it's missing use t_unknown. This is recognized in
1132 // compile_return().
1133 if (ufunc->uf_ret_type == NULL || ufunc->uf_ret_type->tt_type == VAR_VOID)
1134 ufunc->uf_ret_type = &t_unknown;
1135 compile_def_function(ufunc, FALSE, CT_NONE, NULL);
1136
1137 if (ufunc->uf_def_status == UF_COMPILED)
1138 {
1139 // The return type will now be known.
1140 set_function_type(ufunc);
1141 return OK;
1142 }
1143 clear_tv(rettv);
1144 return FAIL;
1145}
1146
1147/*
1148 * parse a dict: {key: val, [key]: val}
1149 * "*arg" points to the '{'.
1150 * ppconst->pp_is_const is set if all item values are a constant.
1151 */
1152 static int
1153compile_dict(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
1154{
1155 garray_T *instr = &cctx->ctx_instr;
1156 int count = 0;
1157 dict_T *d = dict_alloc();
1158 dictitem_T *item;
1159 char_u *whitep = *arg + 1;
1160 char_u *p;
1161 int is_const;
1162 int is_all_const = TRUE; // reset when non-const encountered
1163
1164 if (d == NULL)
1165 return FAIL;
1166 if (generate_ppconst(cctx, ppconst) == FAIL)
1167 return FAIL;
1168 for (;;)
1169 {
1170 char_u *key = NULL;
1171
1172 if (may_get_next_line(whitep, arg, cctx) == FAIL)
1173 {
1174 *arg = NULL;
1175 goto failret;
1176 }
1177
1178 if (**arg == '}')
1179 break;
1180
1181 if (**arg == '[')
1182 {
1183 isn_T *isn;
1184
1185 // {[expr]: value} uses an evaluated key.
1186 *arg = skipwhite(*arg + 1);
1187 if (compile_expr0(arg, cctx) == FAIL)
1188 return FAIL;
1189 isn = ((isn_T *)instr->ga_data) + instr->ga_len - 1;
1190 if (isn->isn_type == ISN_PUSHNR)
1191 {
1192 char buf[NUMBUFLEN];
1193
1194 // Convert to string at compile time.
1195 vim_snprintf(buf, NUMBUFLEN, "%lld", isn->isn_arg.number);
1196 isn->isn_type = ISN_PUSHS;
1197 isn->isn_arg.string = vim_strsave((char_u *)buf);
1198 }
1199 if (isn->isn_type == ISN_PUSHS)
1200 key = isn->isn_arg.string;
1201 else if (may_generate_2STRING(-1, FALSE, cctx) == FAIL)
1202 return FAIL;
1203 *arg = skipwhite(*arg);
1204 if (**arg != ']')
1205 {
1206 emsg(_(e_missing_matching_bracket_after_dict_key));
1207 return FAIL;
1208 }
1209 ++*arg;
1210 }
1211 else
1212 {
1213 // {"name": value},
1214 // {'name': value},
1215 // {name: value} use "name" as a literal key
1216 key = get_literal_key(arg);
1217 if (key == NULL)
1218 return FAIL;
1219 if (generate_PUSHS(cctx, &key) == FAIL)
1220 return FAIL;
1221 }
1222
1223 // Check for duplicate keys, if using string keys.
1224 if (key != NULL)
1225 {
1226 item = dict_find(d, key, -1);
1227 if (item != NULL)
1228 {
Bram Moolenaar74409f62022-01-01 15:58:22 +00001229 semsg(_(e_duplicate_key_in_dicitonary), key);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001230 goto failret;
1231 }
1232 item = dictitem_alloc(key);
1233 if (item != NULL)
1234 {
1235 item->di_tv.v_type = VAR_UNKNOWN;
1236 item->di_tv.v_lock = 0;
1237 if (dict_add(d, item) == FAIL)
1238 dictitem_free(item);
1239 }
1240 }
1241
1242 if (**arg != ':')
1243 {
1244 if (*skipwhite(*arg) == ':')
1245 semsg(_(e_no_white_space_allowed_before_str_str), ":", *arg);
1246 else
Bram Moolenaar74409f62022-01-01 15:58:22 +00001247 semsg(_(e_missing_colon_in_dictionary), *arg);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001248 return FAIL;
1249 }
1250 whitep = *arg + 1;
1251 if (!IS_WHITE_OR_NUL(*whitep))
1252 {
1253 semsg(_(e_white_space_required_after_str_str), ":", *arg);
1254 return FAIL;
1255 }
1256
1257 if (may_get_next_line(whitep, arg, cctx) == FAIL)
1258 {
1259 *arg = NULL;
1260 goto failret;
1261 }
1262
1263 if (compile_expr0_ext(arg, cctx, &is_const) == FAIL)
1264 return FAIL;
1265 if (!is_const)
1266 is_all_const = FALSE;
1267 ++count;
1268
1269 whitep = *arg;
1270 if (may_get_next_line(whitep, arg, cctx) == FAIL)
1271 {
1272 *arg = NULL;
1273 goto failret;
1274 }
1275 if (**arg == '}')
1276 break;
1277 if (**arg != ',')
1278 {
Bram Moolenaar74409f62022-01-01 15:58:22 +00001279 semsg(_(e_missing_comma_in_dictionary), *arg);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001280 goto failret;
1281 }
1282 if (IS_WHITE_OR_NUL(*whitep))
1283 {
1284 semsg(_(e_no_white_space_allowed_before_str_str), ",", whitep);
1285 return FAIL;
1286 }
1287 whitep = *arg + 1;
1288 if (!IS_WHITE_OR_NUL(*whitep))
1289 {
1290 semsg(_(e_white_space_required_after_str_str), ",", *arg);
1291 return FAIL;
1292 }
1293 *arg = skipwhite(whitep);
1294 }
1295
1296 *arg = *arg + 1;
1297
1298 // Allow for following comment, after at least one space.
1299 p = skipwhite(*arg);
1300 if (VIM_ISWHITE(**arg) && vim9_comment_start(p))
1301 *arg += STRLEN(*arg);
1302
1303 dict_unref(d);
1304 ppconst->pp_is_const = is_all_const;
Bram Moolenaarec15b1c2022-03-27 16:29:53 +01001305 return generate_NEWDICT(cctx, count, FALSE);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001306
1307failret:
1308 if (*arg == NULL)
1309 {
1310 semsg(_(e_missing_dict_end), _("[end of lines]"));
1311 *arg = (char_u *)"";
1312 }
1313 dict_unref(d);
1314 return FAIL;
1315}
1316
1317/*
1318 * Compile "&option".
1319 */
1320 static int
1321compile_get_option(char_u **arg, cctx_T *cctx)
1322{
1323 typval_T rettv;
1324 char_u *start = *arg;
1325 int ret;
1326
1327 // parse the option and get the current value to get the type.
1328 rettv.v_type = VAR_UNKNOWN;
1329 ret = eval_option(arg, &rettv, TRUE);
1330 if (ret == OK)
1331 {
1332 // include the '&' in the name, eval_option() expects it.
1333 char_u *name = vim_strnsave(start, *arg - start);
1334 type_T *type = rettv.v_type == VAR_BOOL ? &t_bool
1335 : rettv.v_type == VAR_NUMBER ? &t_number : &t_string;
1336
1337 ret = generate_LOAD(cctx, ISN_LOADOPT, 0, name, type);
1338 vim_free(name);
1339 }
1340 clear_tv(&rettv);
1341
1342 return ret;
1343}
1344
1345/*
1346 * Compile "$VAR".
1347 */
1348 static int
1349compile_get_env(char_u **arg, cctx_T *cctx)
1350{
1351 char_u *start = *arg;
1352 int len;
1353 int ret;
1354 char_u *name;
1355
1356 ++*arg;
1357 len = get_env_len(arg);
1358 if (len == 0)
1359 {
Bram Moolenaar5f25c382022-01-09 13:36:28 +00001360 semsg(_(e_syntax_error_at_str), start);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001361 return FAIL;
1362 }
1363
1364 // include the '$' in the name, eval_env_var() expects it.
1365 name = vim_strnsave(start, len + 1);
1366 ret = generate_LOAD(cctx, ISN_LOADENV, 0, name, &t_string);
1367 vim_free(name);
1368 return ret;
1369}
1370
1371/*
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001372 * Compile $"string" or $'string'.
LemonBoy2eaef102022-05-06 13:14:50 +01001373 */
1374 static int
1375compile_interp_string(char_u **arg, cctx_T *cctx)
1376{
1377 typval_T tv;
1378 int ret;
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001379 int quote;
LemonBoy2eaef102022-05-06 13:14:50 +01001380 int evaluate = cctx->ctx_skip != SKIP_YES;
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001381 int count = 0;
1382 char_u *p;
LemonBoy2eaef102022-05-06 13:14:50 +01001383
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001384 // *arg is on the '$' character, move it to the first string character.
1385 ++*arg;
1386 quote = **arg;
1387 ++*arg;
LemonBoy2eaef102022-05-06 13:14:50 +01001388
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001389 for (;;)
1390 {
1391 // Get the string up to the matching quote or to a single '{'.
1392 // "arg" is advanced to either the quote or the '{'.
1393 if (quote == '"')
1394 ret = eval_string(arg, &tv, evaluate, TRUE);
1395 else
1396 ret = eval_lit_string(arg, &tv, evaluate, TRUE);
1397 if (ret == FAIL)
1398 break;
1399 if (evaluate)
1400 {
1401 if ((tv.vval.v_string != NULL && *tv.vval.v_string != NUL)
1402 || (**arg != '{' && count == 0))
1403 {
1404 // generate non-empty string or empty string if it's the only
1405 // one
1406 if (generate_PUSHS(cctx, &tv.vval.v_string) == FAIL)
1407 return FAIL;
1408 tv.vval.v_string = NULL; // don't free it now
1409 ++count;
1410 }
1411 clear_tv(&tv);
1412 }
1413
1414 if (**arg != '{')
1415 {
1416 // found terminating quote
1417 ++*arg;
1418 break;
1419 }
1420
1421 p = compile_one_expr_in_str(*arg, cctx);
1422 if (p == NULL)
1423 {
1424 ret = FAIL;
1425 break;
1426 }
1427 ++count;
1428 *arg = p;
1429 }
LemonBoy2eaef102022-05-06 13:14:50 +01001430
1431 if (ret == FAIL || !evaluate)
1432 return ret;
1433
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001434 // Small optimization, if there's only a single piece skip the ISN_CONCAT.
1435 if (count > 1)
1436 return generate_CONCAT(cctx, count);
LemonBoy2eaef102022-05-06 13:14:50 +01001437
Bram Moolenaar0abc2872022-05-10 13:24:30 +01001438 return OK;
LemonBoy2eaef102022-05-06 13:14:50 +01001439}
1440
1441/*
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001442 * Compile "@r".
1443 */
1444 static int
1445compile_get_register(char_u **arg, cctx_T *cctx)
1446{
1447 int ret;
1448
1449 ++*arg;
1450 if (**arg == NUL)
1451 {
1452 semsg(_(e_syntax_error_at_str), *arg - 1);
1453 return FAIL;
1454 }
1455 if (!valid_yank_reg(**arg, FALSE))
1456 {
1457 emsg_invreg(**arg);
1458 return FAIL;
1459 }
1460 ret = generate_LOAD(cctx, ISN_LOADREG, **arg, NULL, &t_string);
1461 ++*arg;
1462 return ret;
1463}
1464
1465/*
1466 * Apply leading '!', '-' and '+' to constant "rettv".
1467 * When "numeric_only" is TRUE do not apply '!'.
1468 */
1469 static int
1470apply_leader(typval_T *rettv, int numeric_only, char_u *start, char_u **end)
1471{
1472 char_u *p = *end;
1473
1474 // this works from end to start
1475 while (p > start)
1476 {
1477 --p;
1478 if (*p == '-' || *p == '+')
1479 {
1480 // only '-' has an effect, for '+' we only check the type
1481#ifdef FEAT_FLOAT
1482 if (rettv->v_type == VAR_FLOAT)
1483 {
1484 if (*p == '-')
1485 rettv->vval.v_float = -rettv->vval.v_float;
1486 }
1487 else
1488#endif
1489 {
1490 varnumber_T val;
1491 int error = FALSE;
1492
1493 // tv_get_number_chk() accepts a string, but we don't want that
1494 // here
1495 if (check_not_string(rettv) == FAIL)
1496 return FAIL;
1497 val = tv_get_number_chk(rettv, &error);
1498 clear_tv(rettv);
1499 if (error)
1500 return FAIL;
1501 if (*p == '-')
1502 val = -val;
1503 rettv->v_type = VAR_NUMBER;
1504 rettv->vval.v_number = val;
1505 }
1506 }
1507 else if (numeric_only)
1508 {
1509 ++p;
1510 break;
1511 }
1512 else if (*p == '!')
1513 {
1514 int v = tv2bool(rettv);
1515
1516 // '!' is permissive in the type.
1517 clear_tv(rettv);
1518 rettv->v_type = VAR_BOOL;
1519 rettv->vval.v_number = v ? VVAL_FALSE : VVAL_TRUE;
1520 }
1521 }
1522 *end = p;
1523 return OK;
1524}
1525
1526/*
1527 * Recognize v: variables that are constants and set "rettv".
1528 */
1529 static void
1530get_vim_constant(char_u **arg, typval_T *rettv)
1531{
1532 if (STRNCMP(*arg, "v:true", 6) == 0)
1533 {
1534 rettv->v_type = VAR_BOOL;
1535 rettv->vval.v_number = VVAL_TRUE;
1536 *arg += 6;
1537 }
1538 else if (STRNCMP(*arg, "v:false", 7) == 0)
1539 {
1540 rettv->v_type = VAR_BOOL;
1541 rettv->vval.v_number = VVAL_FALSE;
1542 *arg += 7;
1543 }
1544 else if (STRNCMP(*arg, "v:null", 6) == 0)
1545 {
1546 rettv->v_type = VAR_SPECIAL;
1547 rettv->vval.v_number = VVAL_NULL;
1548 *arg += 6;
1549 }
1550 else if (STRNCMP(*arg, "v:none", 6) == 0)
1551 {
1552 rettv->v_type = VAR_SPECIAL;
1553 rettv->vval.v_number = VVAL_NONE;
1554 *arg += 6;
1555 }
1556}
1557
1558 exprtype_T
1559get_compare_type(char_u *p, int *len, int *type_is)
1560{
1561 exprtype_T type = EXPR_UNKNOWN;
1562 int i;
1563
1564 switch (p[0])
1565 {
1566 case '=': if (p[1] == '=')
1567 type = EXPR_EQUAL;
1568 else if (p[1] == '~')
1569 type = EXPR_MATCH;
1570 break;
1571 case '!': if (p[1] == '=')
1572 type = EXPR_NEQUAL;
1573 else if (p[1] == '~')
1574 type = EXPR_NOMATCH;
1575 break;
1576 case '>': if (p[1] != '=')
1577 {
1578 type = EXPR_GREATER;
1579 *len = 1;
1580 }
1581 else
1582 type = EXPR_GEQUAL;
1583 break;
1584 case '<': if (p[1] != '=')
1585 {
1586 type = EXPR_SMALLER;
1587 *len = 1;
1588 }
1589 else
1590 type = EXPR_SEQUAL;
1591 break;
1592 case 'i': if (p[1] == 's')
1593 {
1594 // "is" and "isnot"; but not a prefix of a name
1595 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
1596 *len = 5;
1597 i = p[*len];
1598 if (!isalnum(i) && i != '_')
1599 {
1600 type = *len == 2 ? EXPR_IS : EXPR_ISNOT;
1601 *type_is = TRUE;
1602 }
1603 }
1604 break;
1605 }
1606 return type;
1607}
1608
1609/*
1610 * Skip over an expression, ignoring most errors.
1611 */
1612 void
1613skip_expr_cctx(char_u **arg, cctx_T *cctx)
1614{
1615 evalarg_T evalarg;
1616
1617 init_evalarg(&evalarg);
1618 evalarg.eval_cctx = cctx;
1619 skip_expr(arg, &evalarg);
1620 clear_evalarg(&evalarg, NULL);
1621}
1622
1623/*
1624 * Check that the top of the type stack has a type that can be used as a
1625 * condition. Give an error and return FAIL if not.
1626 */
1627 int
1628bool_on_stack(cctx_T *cctx)
1629{
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001630 type_T *type;
1631
Bram Moolenaar078a4612022-01-04 15:17:03 +00001632 type = get_type_on_stack(cctx, 0);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001633 if (type == &t_bool)
1634 return OK;
1635
Bram Moolenaar59618fe2021-12-21 12:32:17 +00001636 if (type == &t_any
1637 || type == &t_unknown
1638 || type == &t_number
1639 || type == &t_number_bool)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001640 // Number 0 and 1 are OK to use as a bool. "any" could also be a bool.
1641 // This requires a runtime type check.
1642 return generate_COND2BOOL(cctx);
1643
1644 return need_type(type, &t_bool, -1, 0, cctx, FALSE, FALSE);
1645}
1646
1647/*
1648 * Give the "white on both sides" error, taking the operator from "p[len]".
1649 */
1650 void
1651error_white_both(char_u *op, int len)
1652{
1653 char_u buf[10];
1654
1655 vim_strncpy(buf, op, len);
1656 semsg(_(e_white_space_required_before_and_after_str_at_str), buf, op);
1657}
1658
1659/*
1660 * Compile code to apply '-', '+' and '!'.
1661 * When "numeric_only" is TRUE do not apply '!'.
1662 */
1663 static int
1664compile_leader(cctx_T *cctx, int numeric_only, char_u *start, char_u **end)
1665{
1666 char_u *p = *end;
1667
1668 // this works from end to start
1669 while (p > start)
1670 {
1671 --p;
1672 while (VIM_ISWHITE(*p))
1673 --p;
1674 if (*p == '-' || *p == '+')
1675 {
1676 int negate = *p == '-';
1677 isn_T *isn;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001678 type_T *type;
1679
Bram Moolenaar078a4612022-01-04 15:17:03 +00001680 type = get_type_on_stack(cctx, 0);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001681 if (type != &t_float && need_type(type, &t_number,
1682 -1, 0, cctx, FALSE, FALSE) == FAIL)
1683 return FAIL;
1684
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001685 // only '-' has an effect, for '+' we only check the type
1686 if (negate)
1687 {
1688 isn = generate_instr(cctx, ISN_NEGATENR);
1689 if (isn == NULL)
1690 return FAIL;
1691 }
1692 }
1693 else if (numeric_only)
1694 {
1695 ++p;
1696 break;
1697 }
1698 else
1699 {
1700 int invert = *p == '!';
1701
1702 while (p > start && (p[-1] == '!' || VIM_ISWHITE(p[-1])))
1703 {
1704 if (p[-1] == '!')
1705 invert = !invert;
1706 --p;
1707 }
1708 if (generate_2BOOL(cctx, invert, -1) == FAIL)
1709 return FAIL;
1710 }
1711 }
1712 *end = p;
1713 return OK;
1714}
1715
1716/*
1717 * Compile "(expression)": recursive!
1718 * Return FAIL/OK.
1719 */
1720 static int
1721compile_parenthesis(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
1722{
1723 int ret;
1724 char_u *p = *arg + 1;
1725
1726 if (may_get_next_line_error(p, arg, cctx) == FAIL)
1727 return FAIL;
1728 if (ppconst->pp_used <= PPSIZE - 10)
1729 {
1730 ret = compile_expr1(arg, cctx, ppconst);
1731 }
1732 else
1733 {
1734 // Not enough space in ppconst, flush constants.
1735 if (generate_ppconst(cctx, ppconst) == FAIL)
1736 return FAIL;
1737 ret = compile_expr0(arg, cctx);
1738 }
1739 if (may_get_next_line_error(*arg, arg, cctx) == FAIL)
1740 return FAIL;
1741 if (**arg == ')')
1742 ++*arg;
1743 else if (ret == OK)
1744 {
1745 emsg(_(e_missing_closing_paren));
1746 ret = FAIL;
1747 }
1748 return ret;
1749}
1750
Bram Moolenaarc7349932022-01-16 20:59:39 +00001751static int compile_expr8(char_u **arg, cctx_T *cctx, ppconst_T *ppconst);
1752
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001753/*
1754 * Compile whatever comes after "name" or "name()".
1755 * Advances "*arg" only when something was recognized.
1756 */
1757 static int
1758compile_subscript(
1759 char_u **arg,
1760 cctx_T *cctx,
1761 char_u *start_leader,
1762 char_u **end_leader,
1763 ppconst_T *ppconst)
1764{
1765 char_u *name_start = *end_leader;
1766 int keeping_dict = FALSE;
1767
1768 for (;;)
1769 {
1770 char_u *p = skipwhite(*arg);
1771
1772 if (*p == NUL || (VIM_ISWHITE(**arg) && vim9_comment_start(p)))
1773 {
1774 char_u *next = peek_next_line_from_context(cctx);
1775
1776 // If a following line starts with "->{" or "->X" advance to that
1777 // line, so that a line break before "->" is allowed.
1778 // Also if a following line starts with ".x".
1779 if (next != NULL &&
1780 ((next[0] == '-' && next[1] == '>'
1781 && (next[2] == '{'
1782 || ASCII_ISALPHA(*skipwhite(next + 2))))
1783 || (next[0] == '.' && eval_isdictc(next[1]))))
1784 {
1785 next = next_line_from_context(cctx, TRUE);
1786 if (next == NULL)
1787 return FAIL;
1788 *arg = next;
1789 p = skipwhite(*arg);
1790 }
1791 }
1792
1793 // Do not skip over white space to find the "(", "execute 'x' (expr)"
1794 // is not a function call.
1795 if (**arg == '(')
1796 {
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001797 type_T *type;
1798 int argcount = 0;
1799
1800 if (generate_ppconst(cctx, ppconst) == FAIL)
1801 return FAIL;
1802 ppconst->pp_is_const = FALSE;
1803
1804 // funcref(arg)
Bram Moolenaar078a4612022-01-04 15:17:03 +00001805 type = get_type_on_stack(cctx, 0);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001806
1807 *arg = skipwhite(p + 1);
LemonBoyf3b48952022-05-05 13:53:03 +01001808 if (compile_arguments(arg, cctx, &argcount, CA_NOT_SPECIAL) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001809 return FAIL;
1810 if (generate_PCALL(cctx, argcount, name_start, type, TRUE) == FAIL)
1811 return FAIL;
1812 if (keeping_dict)
1813 {
1814 keeping_dict = FALSE;
1815 if (generate_instr(cctx, ISN_CLEARDICT) == NULL)
1816 return FAIL;
1817 }
1818 }
1819 else if (*p == '-' && p[1] == '>')
1820 {
Bram Moolenaarc7349932022-01-16 20:59:39 +00001821 char_u *pstart = p;
1822 int alt;
1823 char_u *paren;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001824
Bram Moolenaarc7349932022-01-16 20:59:39 +00001825 // something->method()
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001826 if (generate_ppconst(cctx, ppconst) == FAIL)
1827 return FAIL;
1828 ppconst->pp_is_const = FALSE;
1829
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001830 // Apply the '!', '-' and '+' first:
1831 // -1.0->func() works like (-1.0)->func()
1832 if (compile_leader(cctx, TRUE, start_leader, end_leader) == FAIL)
1833 return FAIL;
1834
1835 p += 2;
1836 *arg = skipwhite(p);
1837 // No line break supported right after "->".
Bram Moolenaarc7349932022-01-16 20:59:39 +00001838
1839 // Three alternatives handled here:
1840 // 1. "base->name(" only a name, use compile_call()
1841 // 2. "base->(expr)(" evaluate "expr", then use PCALL
1842 // 3. "base->expr(" Same, find the end of "expr" by "("
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001843 if (**arg == '(')
Bram Moolenaarc7349932022-01-16 20:59:39 +00001844 alt = 2;
1845 else
1846 {
1847 // alternative 1 or 3
1848 p = *arg;
1849 if (!eval_isnamec1(*p))
1850 {
1851 semsg(_(e_trailing_characters_str), pstart);
1852 return FAIL;
1853 }
1854 if (ASCII_ISALPHA(*p) && p[1] == ':')
1855 p += 2;
1856 for ( ; eval_isnamec(*p); ++p)
1857 ;
1858 if (*p == '(')
1859 {
1860 // alternative 1
1861 alt = 1;
1862 if (compile_call(arg, p - *arg, cctx, ppconst, 1) == FAIL)
1863 return FAIL;
1864 }
1865 else
1866 {
1867 // Must be alternative 3, find the "(". Only works within
1868 // one line.
1869 alt = 3;
1870 paren = vim_strchr(p, '(');
1871 if (paren == NULL)
1872 {
1873 semsg(_(e_missing_parenthesis_str), *arg);
1874 return FAIL;
1875 }
1876 }
1877 }
1878
1879 if (alt != 1)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001880 {
1881 int argcount = 1;
1882 garray_T *stack = &cctx->ctx_type_stack;
1883 int type_idx_start = stack->ga_len;
1884 type_T *type;
1885 int expr_isn_start = cctx->ctx_instr.ga_len;
1886 int expr_isn_end;
1887 int arg_isn_count;
1888
Bram Moolenaarc7349932022-01-16 20:59:39 +00001889 if (alt == 2)
1890 {
1891 // Funcref call: list->(Refs[2])(arg)
1892 // or lambda: list->((arg) => expr)(arg)
1893 //
1894 // Fist compile the function expression.
1895 if (compile_parenthesis(arg, cctx, ppconst) == FAIL)
1896 return FAIL;
1897 }
1898 else
1899 {
Bram Moolenaar6389baa2022-01-17 20:50:40 +00001900 int fail;
1901 int save_len = cctx->ctx_ufunc->uf_lines.ga_len;
1902
Bram Moolenaarc7349932022-01-16 20:59:39 +00001903 *paren = NUL;
Bram Moolenaard02dce22022-01-18 17:43:04 +00001904
1905 // instead of using LOADG for "import.Func" use PUSHFUNC
1906 ++paren_follows_after_expr;
1907
Bram Moolenaar6389baa2022-01-17 20:50:40 +00001908 // do not look in the next line
1909 cctx->ctx_ufunc->uf_lines.ga_len = 1;
Bram Moolenaard02dce22022-01-18 17:43:04 +00001910
Bram Moolenaar6389baa2022-01-17 20:50:40 +00001911 fail = compile_expr8(arg, cctx, ppconst) == FAIL
1912 || *skipwhite(*arg) != NUL;
1913 *paren = '(';
Bram Moolenaard02dce22022-01-18 17:43:04 +00001914 --paren_follows_after_expr;
Bram Moolenaar6389baa2022-01-17 20:50:40 +00001915 cctx->ctx_ufunc->uf_lines.ga_len = save_len;
Bram Moolenaard02dce22022-01-18 17:43:04 +00001916
Bram Moolenaar6389baa2022-01-17 20:50:40 +00001917 if (fail)
Bram Moolenaarc7349932022-01-16 20:59:39 +00001918 {
Bram Moolenaarc7349932022-01-16 20:59:39 +00001919 semsg(_(e_invalid_expression_str), pstart);
1920 return FAIL;
1921 }
Bram Moolenaarc7349932022-01-16 20:59:39 +00001922 }
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001923
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001924 // Compile the arguments.
1925 if (**arg != '(')
1926 {
1927 if (*skipwhite(*arg) == '(')
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001928 emsg(_(e_no_white_space_allowed_before_parenthesis));
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001929 else
1930 semsg(_(e_missing_parenthesis_str), *arg);
1931 return FAIL;
1932 }
Bram Moolenaar6389baa2022-01-17 20:50:40 +00001933
1934 // Remember the next instruction index, where the instructions
1935 // for arguments are being written.
1936 expr_isn_end = cctx->ctx_instr.ga_len;
1937
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001938 *arg = skipwhite(*arg + 1);
LemonBoyf3b48952022-05-05 13:53:03 +01001939 if (compile_arguments(arg, cctx, &argcount, CA_NOT_SPECIAL)
1940 == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001941 return FAIL;
1942
1943 // Move the instructions for the arguments to before the
1944 // instructions of the expression and move the type of the
1945 // expression after the argument types. This is what ISN_PCALL
1946 // expects.
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001947 arg_isn_count = cctx->ctx_instr.ga_len - expr_isn_end;
1948 if (arg_isn_count > 0)
1949 {
1950 int expr_isn_count = expr_isn_end - expr_isn_start;
1951 isn_T *isn = ALLOC_MULT(isn_T, expr_isn_count);
Bram Moolenaar078a4612022-01-04 15:17:03 +00001952 type_T *decl_type;
1953 type2_T *typep;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001954
1955 if (isn == NULL)
1956 return FAIL;
1957 mch_memmove(isn, ((isn_T *)cctx->ctx_instr.ga_data)
1958 + expr_isn_start,
1959 sizeof(isn_T) * expr_isn_count);
1960 mch_memmove(((isn_T *)cctx->ctx_instr.ga_data)
1961 + expr_isn_start,
1962 ((isn_T *)cctx->ctx_instr.ga_data) + expr_isn_end,
1963 sizeof(isn_T) * arg_isn_count);
1964 mch_memmove(((isn_T *)cctx->ctx_instr.ga_data)
1965 + expr_isn_start + arg_isn_count,
1966 isn, sizeof(isn_T) * expr_isn_count);
1967 vim_free(isn);
1968
Bram Moolenaar078a4612022-01-04 15:17:03 +00001969 typep = ((type2_T *)stack->ga_data) + type_idx_start;
1970 type = typep->type_curr;
1971 decl_type = typep->type_decl;
1972 mch_memmove(((type2_T *)stack->ga_data) + type_idx_start,
1973 ((type2_T *)stack->ga_data) + type_idx_start + 1,
1974 sizeof(type2_T)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001975 * (stack->ga_len - type_idx_start - 1));
Bram Moolenaar078a4612022-01-04 15:17:03 +00001976 typep = ((type2_T *)stack->ga_data) + stack->ga_len - 1;
1977 typep->type_curr = type;
1978 typep->type_decl = decl_type;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001979 }
1980
Bram Moolenaar078a4612022-01-04 15:17:03 +00001981 type = get_type_on_stack(cctx, 0);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001982 if (generate_PCALL(cctx, argcount, p - 2, type, FALSE) == FAIL)
1983 return FAIL;
1984 }
Bram Moolenaarc7349932022-01-16 20:59:39 +00001985
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001986 if (keeping_dict)
1987 {
1988 keeping_dict = FALSE;
1989 if (generate_instr(cctx, ISN_CLEARDICT) == NULL)
1990 return FAIL;
1991 }
1992 }
1993 else if (**arg == '[')
1994 {
1995 int is_slice = FALSE;
1996
1997 // list index: list[123]
1998 // dict member: dict[key]
1999 // string index: text[123]
2000 // blob index: blob[123]
2001 if (generate_ppconst(cctx, ppconst) == FAIL)
2002 return FAIL;
2003 ppconst->pp_is_const = FALSE;
2004
2005 ++p;
2006 if (may_get_next_line_error(p, arg, cctx) == FAIL)
2007 return FAIL;
2008 if (**arg == ':')
2009 {
2010 // missing first index is equal to zero
2011 generate_PUSHNR(cctx, 0);
2012 }
2013 else
2014 {
2015 if (compile_expr0(arg, cctx) == FAIL)
2016 return FAIL;
2017 if (**arg == ':')
2018 {
2019 semsg(_(e_white_space_required_before_and_after_str_at_str),
2020 ":", *arg);
2021 return FAIL;
2022 }
2023 if (may_get_next_line_error(*arg, arg, cctx) == FAIL)
2024 return FAIL;
2025 *arg = skipwhite(*arg);
2026 }
2027 if (**arg == ':')
2028 {
2029 is_slice = TRUE;
2030 ++*arg;
2031 if (!IS_WHITE_OR_NUL(**arg) && **arg != ']')
2032 {
2033 semsg(_(e_white_space_required_before_and_after_str_at_str),
2034 ":", *arg);
2035 return FAIL;
2036 }
2037 if (may_get_next_line_error(*arg, arg, cctx) == FAIL)
2038 return FAIL;
2039 if (**arg == ']')
2040 // missing second index is equal to end of string
2041 generate_PUSHNR(cctx, -1);
2042 else
2043 {
2044 if (compile_expr0(arg, cctx) == FAIL)
2045 return FAIL;
2046 if (may_get_next_line_error(*arg, arg, cctx) == FAIL)
2047 return FAIL;
2048 *arg = skipwhite(*arg);
2049 }
2050 }
2051
2052 if (**arg != ']')
2053 {
2054 emsg(_(e_missing_closing_square_brace));
2055 return FAIL;
2056 }
2057 *arg = *arg + 1;
2058
2059 if (keeping_dict)
2060 {
2061 keeping_dict = FALSE;
2062 if (generate_instr(cctx, ISN_CLEARDICT) == NULL)
2063 return FAIL;
2064 }
2065 if (compile_member(is_slice, &keeping_dict, cctx) == FAIL)
2066 return FAIL;
2067 }
2068 else if (*p == '.' && p[1] != '.')
2069 {
2070 // dictionary member: dict.name
2071 if (generate_ppconst(cctx, ppconst) == FAIL)
2072 return FAIL;
2073 ppconst->pp_is_const = FALSE;
2074
2075 *arg = p + 1;
2076 if (IS_WHITE_OR_NUL(**arg))
2077 {
2078 emsg(_(e_missing_name_after_dot));
2079 return FAIL;
2080 }
2081 p = *arg;
2082 if (eval_isdictc(*p))
2083 while (eval_isnamec(*p))
2084 MB_PTR_ADV(p);
2085 if (p == *arg)
2086 {
2087 semsg(_(e_syntax_error_at_str), *arg);
2088 return FAIL;
2089 }
2090 if (keeping_dict && generate_instr(cctx, ISN_CLEARDICT) == NULL)
2091 return FAIL;
2092 if (generate_STRINGMEMBER(cctx, *arg, p - *arg) == FAIL)
2093 return FAIL;
2094 keeping_dict = TRUE;
2095 *arg = p;
2096 }
2097 else
2098 break;
2099 }
2100
2101 // Turn "dict.Func" into a partial for "Func" bound to "dict".
2102 // This needs to be done at runtime to be able to check the type.
2103 if (keeping_dict && generate_instr(cctx, ISN_USEDICT) == NULL)
2104 return FAIL;
2105
2106 return OK;
2107}
2108
2109/*
2110 * Compile an expression at "*arg" and add instructions to "cctx->ctx_instr".
2111 * "arg" is advanced until after the expression, skipping white space.
2112 *
2113 * If the value is a constant "ppconst->pp_used" will be non-zero.
2114 * Before instructions are generated, any values in "ppconst" will generated.
2115 *
2116 * This is the compiling equivalent of eval1(), eval2(), etc.
2117 */
2118
2119/*
2120 * number number constant
2121 * 0zFFFFFFFF Blob constant
2122 * "string" string constant
2123 * 'string' literal string constant
2124 * &option-name option value
2125 * @r register contents
2126 * identifier variable value
2127 * function() function call
2128 * $VAR environment variable
2129 * (expression) nested expression
2130 * [expr, expr] List
2131 * {key: val, [key]: val} Dictionary
2132 *
2133 * Also handle:
2134 * ! in front logical NOT
2135 * - in front unary minus
2136 * + in front unary plus (ignored)
2137 * trailing (arg) funcref/partial call
2138 * trailing [] subscript in String or List
2139 * trailing .name entry in Dictionary
2140 * trailing ->name() method call
2141 */
2142 static int
Bram Moolenaar5da36052021-12-27 15:39:57 +00002143compile_expr8(
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002144 char_u **arg,
2145 cctx_T *cctx,
2146 ppconst_T *ppconst)
2147{
2148 char_u *start_leader, *end_leader;
2149 int ret = OK;
2150 typval_T *rettv = &ppconst->pp_tv[ppconst->pp_used];
2151 int used_before = ppconst->pp_used;
2152
2153 ppconst->pp_is_const = FALSE;
2154
2155 /*
2156 * Skip '!', '-' and '+' characters. They are handled later.
2157 */
2158 start_leader = *arg;
2159 if (eval_leader(arg, TRUE) == FAIL)
2160 return FAIL;
2161 end_leader = *arg;
2162
2163 rettv->v_type = VAR_UNKNOWN;
2164 switch (**arg)
2165 {
2166 /*
2167 * Number constant.
2168 */
2169 case '0': // also for blob starting with 0z
2170 case '1':
2171 case '2':
2172 case '3':
2173 case '4':
2174 case '5':
2175 case '6':
2176 case '7':
2177 case '8':
2178 case '9':
2179 case '.': if (eval_number(arg, rettv, TRUE, FALSE) == FAIL)
2180 return FAIL;
2181 // Apply "-" and "+" just before the number now, right to
2182 // left. Matters especially when "->" follows. Stops at
2183 // '!'.
2184 if (apply_leader(rettv, TRUE,
2185 start_leader, &end_leader) == FAIL)
2186 {
2187 clear_tv(rettv);
2188 return FAIL;
2189 }
2190 break;
2191
2192 /*
2193 * String constant: "string".
2194 */
Bram Moolenaar0abc2872022-05-10 13:24:30 +01002195 case '"': if (eval_string(arg, rettv, TRUE, FALSE) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002196 return FAIL;
2197 break;
2198
2199 /*
2200 * Literal string constant: 'str''ing'.
2201 */
Bram Moolenaar0abc2872022-05-10 13:24:30 +01002202 case '\'': if (eval_lit_string(arg, rettv, TRUE, FALSE) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002203 return FAIL;
2204 break;
2205
2206 /*
2207 * Constant Vim variable.
2208 */
2209 case 'v': get_vim_constant(arg, rettv);
2210 ret = NOTDONE;
2211 break;
2212
2213 /*
2214 * "true" constant
2215 */
2216 case 't': if (STRNCMP(*arg, "true", 4) == 0
2217 && !eval_isnamec((*arg)[4]))
2218 {
2219 *arg += 4;
2220 rettv->v_type = VAR_BOOL;
2221 rettv->vval.v_number = VVAL_TRUE;
2222 }
2223 else
2224 ret = NOTDONE;
2225 break;
2226
2227 /*
2228 * "false" constant
2229 */
2230 case 'f': if (STRNCMP(*arg, "false", 5) == 0
2231 && !eval_isnamec((*arg)[5]))
2232 {
2233 *arg += 5;
2234 rettv->v_type = VAR_BOOL;
2235 rettv->vval.v_number = VVAL_FALSE;
2236 }
2237 else
2238 ret = NOTDONE;
2239 break;
2240
2241 /*
Bram Moolenaar8acb9cc2022-03-08 13:18:55 +00002242 * "null" or "null_*" constant
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002243 */
Bram Moolenaar8acb9cc2022-03-08 13:18:55 +00002244 case 'n': if (STRNCMP(*arg, "null", 4) == 0)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002245 {
Bram Moolenaar8acb9cc2022-03-08 13:18:55 +00002246 char_u *p = *arg + 4;
2247 int len;
2248
2249 for (len = 0; eval_isnamec(p[len]); ++len)
2250 ;
2251 ret = handle_predefined(*arg, len + 4, rettv);
2252 if (ret == FAIL)
2253 ret = NOTDONE;
2254 else
2255 *arg += len + 4;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002256 }
2257 else
2258 ret = NOTDONE;
2259 break;
2260
2261 /*
2262 * List: [expr, expr]
2263 */
2264 case '[': if (generate_ppconst(cctx, ppconst) == FAIL)
2265 return FAIL;
2266 ret = compile_list(arg, cctx, ppconst);
2267 break;
2268
2269 /*
2270 * Dictionary: {'key': val, 'key': val}
2271 */
2272 case '{': if (generate_ppconst(cctx, ppconst) == FAIL)
2273 return FAIL;
2274 ret = compile_dict(arg, cctx, ppconst);
2275 break;
2276
2277 /*
2278 * Option value: &name
2279 */
2280 case '&': if (generate_ppconst(cctx, ppconst) == FAIL)
2281 return FAIL;
2282 ret = compile_get_option(arg, cctx);
2283 break;
2284
2285 /*
2286 * Environment variable: $VAR.
LemonBoy2eaef102022-05-06 13:14:50 +01002287 * Interpolated string: $"string" or $'string'.
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002288 */
2289 case '$': if (generate_ppconst(cctx, ppconst) == FAIL)
2290 return FAIL;
LemonBoy2eaef102022-05-06 13:14:50 +01002291 if ((*arg)[1] == '"' || (*arg)[1] == '\'')
2292 ret = compile_interp_string(arg, cctx);
2293 else
2294 ret = compile_get_env(arg, cctx);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002295 break;
2296
2297 /*
2298 * Register contents: @r.
2299 */
2300 case '@': if (generate_ppconst(cctx, ppconst) == FAIL)
2301 return FAIL;
2302 ret = compile_get_register(arg, cctx);
2303 break;
2304 /*
2305 * nested expression: (expression).
2306 * lambda: (arg, arg) => expr
2307 * funcref: (arg, arg) => { statement }
2308 */
2309 case '(': // if compile_lambda returns NOTDONE then it must be (expr)
2310 ret = compile_lambda(arg, cctx);
2311 if (ret == NOTDONE)
2312 ret = compile_parenthesis(arg, cctx, ppconst);
2313 break;
2314
2315 default: ret = NOTDONE;
2316 break;
2317 }
2318 if (ret == FAIL)
2319 return FAIL;
2320
2321 if (rettv->v_type != VAR_UNKNOWN && used_before == ppconst->pp_used)
2322 {
2323 if (cctx->ctx_skip == SKIP_YES)
2324 clear_tv(rettv);
2325 else
2326 // A constant expression can possibly be handled compile time,
2327 // return the value instead of generating code.
2328 ++ppconst->pp_used;
2329 }
2330 else if (ret == NOTDONE)
2331 {
2332 char_u *p;
2333 int r;
2334
2335 if (!eval_isnamec1(**arg))
2336 {
2337 if (!vim9_bad_comment(*arg))
2338 {
2339 if (ends_excmd(*skipwhite(*arg)))
2340 semsg(_(e_empty_expression_str), *arg);
2341 else
2342 semsg(_(e_name_expected_str), *arg);
2343 }
2344 return FAIL;
2345 }
2346
2347 // "name" or "name()"
2348 p = to_name_end(*arg, TRUE);
2349 if (p - *arg == (size_t)1 && **arg == '_')
2350 {
2351 emsg(_(e_cannot_use_underscore_here));
2352 return FAIL;
2353 }
2354
2355 if (*p == '(')
2356 {
2357 r = compile_call(arg, p - *arg, cctx, ppconst, 0);
2358 }
2359 else
2360 {
2361 if (cctx->ctx_skip != SKIP_YES
2362 && generate_ppconst(cctx, ppconst) == FAIL)
2363 return FAIL;
2364 r = compile_load(arg, p, cctx, TRUE, TRUE);
2365 }
2366 if (r == FAIL)
2367 return FAIL;
2368 }
2369
2370 // Handle following "[]", ".member", etc.
2371 // Then deal with prefixed '-', '+' and '!', if not done already.
2372 if (compile_subscript(arg, cctx, start_leader, &end_leader,
2373 ppconst) == FAIL)
2374 return FAIL;
2375 if (ppconst->pp_used > 0)
2376 {
2377 // apply the '!', '-' and '+' before the constant
2378 rettv = &ppconst->pp_tv[ppconst->pp_used - 1];
2379 if (apply_leader(rettv, FALSE, start_leader, &end_leader) == FAIL)
2380 return FAIL;
2381 return OK;
2382 }
2383 if (compile_leader(cctx, FALSE, start_leader, &end_leader) == FAIL)
2384 return FAIL;
2385 return OK;
2386}
2387
2388/*
Bram Moolenaar5da36052021-12-27 15:39:57 +00002389 * <type>expr8: runtime type check / conversion
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002390 */
2391 static int
Bram Moolenaar5da36052021-12-27 15:39:57 +00002392compile_expr7(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002393{
2394 type_T *want_type = NULL;
2395
2396 // Recognize <type>
2397 if (**arg == '<' && eval_isnamec1((*arg)[1]))
2398 {
2399 ++*arg;
2400 want_type = parse_type(arg, cctx->ctx_type_list, TRUE);
2401 if (want_type == NULL)
2402 return FAIL;
2403
2404 if (**arg != '>')
2405 {
2406 if (*skipwhite(*arg) == '>')
2407 semsg(_(e_no_white_space_allowed_before_str_str), ">", *arg);
2408 else
2409 emsg(_(e_missing_gt));
2410 return FAIL;
2411 }
2412 ++*arg;
2413 if (may_get_next_line_error(*arg, arg, cctx) == FAIL)
2414 return FAIL;
2415 }
2416
Bram Moolenaar5da36052021-12-27 15:39:57 +00002417 if (compile_expr8(arg, cctx, ppconst) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002418 return FAIL;
2419
2420 if (want_type != NULL)
2421 {
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002422 type_T *actual;
2423 where_T where = WHERE_INIT;
2424
2425 generate_ppconst(cctx, ppconst);
Bram Moolenaar078a4612022-01-04 15:17:03 +00002426 actual = get_type_on_stack(cctx, 0);
Bram Moolenaar59618fe2021-12-21 12:32:17 +00002427 if (check_type_maybe(want_type, actual, FALSE, where) != OK)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002428 {
Bram Moolenaar59618fe2021-12-21 12:32:17 +00002429 if (need_type(actual, want_type, -1, 0, cctx, FALSE, FALSE)
2430 == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002431 return FAIL;
2432 }
2433 }
2434
2435 return OK;
2436}
2437
2438/*
2439 * * number multiplication
2440 * / number division
2441 * % number modulo
2442 */
2443 static int
2444compile_expr6(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
2445{
2446 char_u *op;
2447 char_u *next;
2448 int ppconst_used = ppconst->pp_used;
2449
2450 // get the first expression
Bram Moolenaar5da36052021-12-27 15:39:57 +00002451 if (compile_expr7(arg, cctx, ppconst) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002452 return FAIL;
2453
2454 /*
2455 * Repeat computing, until no "*", "/" or "%" is following.
2456 */
2457 for (;;)
2458 {
2459 op = may_peek_next_line(cctx, *arg, &next);
2460 if (*op != '*' && *op != '/' && *op != '%')
2461 break;
2462 if (next != NULL)
2463 {
2464 *arg = next_line_from_context(cctx, TRUE);
2465 op = skipwhite(*arg);
2466 }
2467
2468 if (!IS_WHITE_OR_NUL(**arg) || !IS_WHITE_OR_NUL(op[1]))
2469 {
2470 error_white_both(op, 1);
2471 return FAIL;
2472 }
2473 if (may_get_next_line_error(op + 1, arg, cctx) == FAIL)
2474 return FAIL;
2475
2476 // get the second expression
Bram Moolenaar5da36052021-12-27 15:39:57 +00002477 if (compile_expr7(arg, cctx, ppconst) == FAIL)
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002478 return FAIL;
2479
2480 if (ppconst->pp_used == ppconst_used + 2
2481 && ppconst->pp_tv[ppconst_used].v_type == VAR_NUMBER
2482 && ppconst->pp_tv[ppconst_used + 1].v_type == VAR_NUMBER)
2483 {
2484 typval_T *tv1 = &ppconst->pp_tv[ppconst_used];
2485 typval_T *tv2 = &ppconst->pp_tv[ppconst_used + 1];
2486 varnumber_T res = 0;
2487 int failed = FALSE;
2488
2489 // both are numbers: compute the result
2490 switch (*op)
2491 {
2492 case '*': res = tv1->vval.v_number * tv2->vval.v_number;
2493 break;
2494 case '/': res = num_divide(tv1->vval.v_number,
2495 tv2->vval.v_number, &failed);
2496 break;
2497 case '%': res = num_modulus(tv1->vval.v_number,
2498 tv2->vval.v_number, &failed);
2499 break;
2500 }
2501 if (failed)
2502 return FAIL;
2503 tv1->vval.v_number = res;
2504 --ppconst->pp_used;
2505 }
2506 else
2507 {
2508 generate_ppconst(cctx, ppconst);
2509 generate_two_op(cctx, op);
2510 }
2511 }
2512
2513 return OK;
2514}
2515
2516/*
2517 * + number addition or list/blobl concatenation
2518 * - number subtraction
2519 * .. string concatenation
2520 */
2521 static int
2522compile_expr5(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
2523{
2524 char_u *op;
2525 char_u *next;
2526 int oplen;
2527 int ppconst_used = ppconst->pp_used;
2528
2529 // get the first variable
2530 if (compile_expr6(arg, cctx, ppconst) == FAIL)
2531 return FAIL;
2532
2533 /*
2534 * Repeat computing, until no "+", "-" or ".." is following.
2535 */
2536 for (;;)
2537 {
2538 op = may_peek_next_line(cctx, *arg, &next);
2539 if (*op != '+' && *op != '-' && !(*op == '.' && *(op + 1) == '.'))
2540 break;
2541 if (op[0] == op[1] && *op != '.' && next)
2542 // Finding "++" or "--" on the next line is a separate command.
2543 // But ".." is concatenation.
2544 break;
2545 oplen = (*op == '.' ? 2 : 1);
2546 if (next != NULL)
2547 {
2548 *arg = next_line_from_context(cctx, TRUE);
2549 op = skipwhite(*arg);
2550 }
2551
2552 if (!IS_WHITE_OR_NUL(**arg) || !IS_WHITE_OR_NUL(op[oplen]))
2553 {
2554 error_white_both(op, oplen);
2555 return FAIL;
2556 }
2557
2558 if (may_get_next_line_error(op + oplen, arg, cctx) == FAIL)
2559 return FAIL;
2560
2561 // get the second expression
2562 if (compile_expr6(arg, cctx, ppconst) == FAIL)
2563 return FAIL;
2564
2565 if (ppconst->pp_used == ppconst_used + 2
2566 && (*op == '.'
2567 ? (ppconst->pp_tv[ppconst_used].v_type == VAR_STRING
2568 && ppconst->pp_tv[ppconst_used + 1].v_type == VAR_STRING)
2569 : (ppconst->pp_tv[ppconst_used].v_type == VAR_NUMBER
2570 && ppconst->pp_tv[ppconst_used + 1].v_type == VAR_NUMBER)))
2571 {
2572 typval_T *tv1 = &ppconst->pp_tv[ppconst_used];
2573 typval_T *tv2 = &ppconst->pp_tv[ppconst_used + 1];
2574
2575 // concat/subtract/add constant numbers
2576 if (*op == '+')
2577 tv1->vval.v_number = tv1->vval.v_number + tv2->vval.v_number;
2578 else if (*op == '-')
2579 tv1->vval.v_number = tv1->vval.v_number - tv2->vval.v_number;
2580 else
2581 {
2582 // concatenate constant strings
2583 char_u *s1 = tv1->vval.v_string;
2584 char_u *s2 = tv2->vval.v_string;
2585 size_t len1 = STRLEN(s1);
2586
2587 tv1->vval.v_string = alloc((int)(len1 + STRLEN(s2) + 1));
2588 if (tv1->vval.v_string == NULL)
2589 {
2590 clear_ppconst(ppconst);
2591 return FAIL;
2592 }
2593 mch_memmove(tv1->vval.v_string, s1, len1);
2594 STRCPY(tv1->vval.v_string + len1, s2);
2595 vim_free(s1);
2596 vim_free(s2);
2597 }
2598 --ppconst->pp_used;
2599 }
2600 else
2601 {
2602 generate_ppconst(cctx, ppconst);
2603 ppconst->pp_is_const = FALSE;
2604 if (*op == '.')
2605 {
2606 if (may_generate_2STRING(-2, FALSE, cctx) == FAIL
2607 || may_generate_2STRING(-1, FALSE, cctx) == FAIL)
2608 return FAIL;
LemonBoy372bcce2022-04-25 12:43:20 +01002609 if (generate_CONCAT(cctx, 2) == FAIL)
2610 return FAIL;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002611 }
2612 else
2613 generate_two_op(cctx, op);
2614 }
2615 }
2616
2617 return OK;
2618}
2619
2620/*
2621 * expr5a == expr5b
2622 * expr5a =~ expr5b
2623 * expr5a != expr5b
2624 * expr5a !~ expr5b
2625 * expr5a > expr5b
2626 * expr5a >= expr5b
2627 * expr5a < expr5b
2628 * expr5a <= expr5b
2629 * expr5a is expr5b
2630 * expr5a isnot expr5b
2631 *
2632 * Produces instructions:
2633 * EVAL expr5a Push result of "expr5a"
2634 * EVAL expr5b Push result of "expr5b"
2635 * COMPARE one of the compare instructions
2636 */
2637 static int
2638compile_expr4(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
2639{
2640 exprtype_T type = EXPR_UNKNOWN;
2641 char_u *p;
2642 char_u *next;
2643 int len = 2;
2644 int type_is = FALSE;
2645 int ppconst_used = ppconst->pp_used;
2646
2647 // get the first variable
2648 if (compile_expr5(arg, cctx, ppconst) == FAIL)
2649 return FAIL;
2650
2651 p = may_peek_next_line(cctx, *arg, &next);
2652 type = get_compare_type(p, &len, &type_is);
2653
2654 /*
2655 * If there is a comparative operator, use it.
2656 */
2657 if (type != EXPR_UNKNOWN)
2658 {
2659 int ic = FALSE; // Default: do not ignore case
2660
2661 if (next != NULL)
2662 {
2663 *arg = next_line_from_context(cctx, TRUE);
2664 p = skipwhite(*arg);
2665 }
2666 if (type_is && (p[len] == '?' || p[len] == '#'))
2667 {
2668 semsg(_(e_invalid_expression_str), *arg);
2669 return FAIL;
2670 }
2671 // extra question mark appended: ignore case
2672 if (p[len] == '?')
2673 {
2674 ic = TRUE;
2675 ++len;
2676 }
2677 // extra '#' appended: match case (ignored)
2678 else if (p[len] == '#')
2679 ++len;
2680 // nothing appended: match case
2681
2682 if (!IS_WHITE_OR_NUL(**arg) || !IS_WHITE_OR_NUL(p[len]))
2683 {
2684 error_white_both(p, len);
2685 return FAIL;
2686 }
2687
2688 // get the second variable
2689 if (may_get_next_line_error(p + len, arg, cctx) == FAIL)
2690 return FAIL;
2691
2692 if (compile_expr5(arg, cctx, ppconst) == FAIL)
2693 return FAIL;
2694
2695 if (ppconst->pp_used == ppconst_used + 2)
2696 {
2697 typval_T * tv1 = &ppconst->pp_tv[ppconst->pp_used - 2];
2698 typval_T *tv2 = &ppconst->pp_tv[ppconst->pp_used - 1];
2699 int ret;
2700
2701 // Both sides are a constant, compute the result now.
2702 // First check for a valid combination of types, this is more
2703 // strict than typval_compare().
2704 if (check_compare_types(type, tv1, tv2) == FAIL)
2705 ret = FAIL;
2706 else
2707 {
2708 ret = typval_compare(tv1, tv2, type, ic);
2709 tv1->v_type = VAR_BOOL;
2710 tv1->vval.v_number = tv1->vval.v_number
2711 ? VVAL_TRUE : VVAL_FALSE;
2712 clear_tv(tv2);
2713 --ppconst->pp_used;
2714 }
2715 return ret;
2716 }
2717
2718 generate_ppconst(cctx, ppconst);
2719 return generate_COMPARE(cctx, type, ic);
2720 }
2721
2722 return OK;
2723}
2724
2725static int compile_expr3(char_u **arg, cctx_T *cctx, ppconst_T *ppconst);
2726
2727/*
2728 * Compile || or &&.
2729 */
2730 static int
2731compile_and_or(
2732 char_u **arg,
2733 cctx_T *cctx,
2734 char *op,
2735 ppconst_T *ppconst,
2736 int ppconst_used UNUSED)
2737{
2738 char_u *next;
2739 char_u *p = may_peek_next_line(cctx, *arg, &next);
2740 int opchar = *op;
2741
2742 if (p[0] == opchar && p[1] == opchar)
2743 {
2744 garray_T *instr = &cctx->ctx_instr;
2745 garray_T end_ga;
2746 int save_skip = cctx->ctx_skip;
2747
2748 /*
2749 * Repeat until there is no following "||" or "&&"
2750 */
2751 ga_init2(&end_ga, sizeof(int), 10);
2752 while (p[0] == opchar && p[1] == opchar)
2753 {
2754 long start_lnum = SOURCING_LNUM;
2755 long save_sourcing_lnum;
2756 int start_ctx_lnum = cctx->ctx_lnum;
2757 int save_lnum;
2758 int const_used;
2759 int status;
2760 jumpwhen_T jump_when = opchar == '|'
2761 ? JUMP_IF_COND_TRUE : JUMP_IF_COND_FALSE;
2762
2763 if (next != NULL)
2764 {
2765 *arg = next_line_from_context(cctx, TRUE);
2766 p = skipwhite(*arg);
2767 }
2768
2769 if (!IS_WHITE_OR_NUL(**arg) || !IS_WHITE_OR_NUL(p[2]))
2770 {
2771 semsg(_(e_white_space_required_before_and_after_str_at_str),
2772 op, p);
2773 ga_clear(&end_ga);
2774 return FAIL;
2775 }
2776
2777 save_sourcing_lnum = SOURCING_LNUM;
2778 SOURCING_LNUM = start_lnum;
2779 save_lnum = cctx->ctx_lnum;
2780 cctx->ctx_lnum = start_ctx_lnum;
2781
2782 status = check_ppconst_bool(ppconst);
2783 if (status != FAIL)
2784 {
2785 // Use the last ppconst if possible.
2786 if (ppconst->pp_used > 0)
2787 {
2788 typval_T *tv = &ppconst->pp_tv[ppconst->pp_used - 1];
2789 int is_true = tv2bool(tv);
2790
2791 if ((is_true && opchar == '|')
2792 || (!is_true && opchar == '&'))
2793 {
2794 // For "false && expr" and "true || expr" the "expr"
2795 // does not need to be evaluated.
2796 cctx->ctx_skip = SKIP_YES;
2797 clear_tv(tv);
2798 tv->v_type = VAR_BOOL;
2799 tv->vval.v_number = is_true ? VVAL_TRUE : VVAL_FALSE;
2800 }
2801 else
2802 {
2803 // For "true && expr" and "false || expr" only "expr"
2804 // needs to be evaluated.
2805 --ppconst->pp_used;
2806 jump_when = JUMP_NEVER;
2807 }
2808 }
2809 else
2810 {
2811 // Every part must evaluate to a bool.
2812 status = bool_on_stack(cctx);
2813 }
2814 }
2815 if (status != FAIL)
2816 status = ga_grow(&end_ga, 1);
2817 cctx->ctx_lnum = save_lnum;
2818 if (status == FAIL)
2819 {
2820 ga_clear(&end_ga);
2821 return FAIL;
2822 }
2823
2824 if (jump_when != JUMP_NEVER)
2825 {
2826 if (cctx->ctx_skip != SKIP_YES)
2827 {
2828 *(((int *)end_ga.ga_data) + end_ga.ga_len) = instr->ga_len;
2829 ++end_ga.ga_len;
2830 }
2831 generate_JUMP(cctx, jump_when, 0);
2832 }
2833
2834 // eval the next expression
2835 SOURCING_LNUM = save_sourcing_lnum;
2836 if (may_get_next_line_error(p + 2, arg, cctx) == FAIL)
2837 {
2838 ga_clear(&end_ga);
2839 return FAIL;
2840 }
2841
2842 const_used = ppconst->pp_used;
2843 if ((opchar == '|' ? compile_expr3(arg, cctx, ppconst)
2844 : compile_expr4(arg, cctx, ppconst)) == FAIL)
2845 {
2846 ga_clear(&end_ga);
2847 return FAIL;
2848 }
2849
2850 // "0 || 1" results in true, "1 && 0" results in false.
2851 if (ppconst->pp_used == const_used + 1)
2852 {
2853 typval_T *tv = &ppconst->pp_tv[ppconst->pp_used - 1];
2854
2855 if (tv->v_type == VAR_NUMBER
2856 && (tv->vval.v_number == 1 || tv->vval.v_number == 0))
2857 {
2858 tv->vval.v_number = tv->vval.v_number == 1
2859 ? VVAL_TRUE : VVAL_FALSE;
2860 tv->v_type = VAR_BOOL;
2861 }
2862 }
2863
2864 p = may_peek_next_line(cctx, *arg, &next);
2865 }
2866
2867 if (check_ppconst_bool(ppconst) == FAIL)
2868 {
2869 ga_clear(&end_ga);
2870 return FAIL;
2871 }
2872
2873 if (cctx->ctx_skip != SKIP_YES && ppconst->pp_used == 0)
2874 // Every part must evaluate to a bool.
2875 if (bool_on_stack(cctx) == FAIL)
2876 {
2877 ga_clear(&end_ga);
2878 return FAIL;
2879 }
2880
2881 if (end_ga.ga_len > 0)
2882 {
2883 // Fill in the end label in all jumps.
2884 generate_ppconst(cctx, ppconst);
2885 while (end_ga.ga_len > 0)
2886 {
2887 isn_T *isn;
2888
2889 --end_ga.ga_len;
2890 isn = ((isn_T *)instr->ga_data)
2891 + *(((int *)end_ga.ga_data) + end_ga.ga_len);
2892 isn->isn_arg.jump.jump_where = instr->ga_len;
2893 }
2894 }
2895 ga_clear(&end_ga);
2896
2897 cctx->ctx_skip = save_skip;
2898 }
2899
2900 return OK;
2901}
2902
2903/*
2904 * expr4a && expr4a && expr4a logical AND
2905 *
2906 * Produces instructions:
2907 * EVAL expr4a Push result of "expr4a"
2908 * COND2BOOL convert to bool if needed
2909 * JUMP_IF_COND_FALSE end
2910 * EVAL expr4b Push result of "expr4b"
2911 * JUMP_IF_COND_FALSE end
2912 * EVAL expr4c Push result of "expr4c"
2913 * end:
2914 */
2915 static int
2916compile_expr3(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
2917{
2918 int ppconst_used = ppconst->pp_used;
2919
2920 // get the first variable
2921 if (compile_expr4(arg, cctx, ppconst) == FAIL)
2922 return FAIL;
2923
2924 // || and && work almost the same
2925 return compile_and_or(arg, cctx, "&&", ppconst, ppconst_used);
2926}
2927
2928/*
2929 * expr3a || expr3b || expr3c logical OR
2930 *
2931 * Produces instructions:
2932 * EVAL expr3a Push result of "expr3a"
2933 * COND2BOOL convert to bool if needed
2934 * JUMP_IF_COND_TRUE end
2935 * EVAL expr3b Push result of "expr3b"
2936 * JUMP_IF_COND_TRUE end
2937 * EVAL expr3c Push result of "expr3c"
2938 * end:
2939 */
2940 static int
2941compile_expr2(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
2942{
2943 int ppconst_used = ppconst->pp_used;
2944
2945 // eval the first expression
2946 if (compile_expr3(arg, cctx, ppconst) == FAIL)
2947 return FAIL;
2948
2949 // || and && work almost the same
2950 return compile_and_or(arg, cctx, "||", ppconst, ppconst_used);
2951}
2952
2953/*
2954 * Toplevel expression: expr2 ? expr1a : expr1b
2955 * Produces instructions:
2956 * EVAL expr2 Push result of "expr2"
2957 * JUMP_IF_FALSE alt jump if false
2958 * EVAL expr1a
2959 * JUMP_ALWAYS end
2960 * alt: EVAL expr1b
2961 * end:
2962 *
2963 * Toplevel expression: expr2 ?? expr1
2964 * Produces instructions:
2965 * EVAL expr2 Push result of "expr2"
2966 * JUMP_AND_KEEP_IF_TRUE end jump if true
2967 * EVAL expr1
2968 * end:
2969 */
2970 int
2971compile_expr1(char_u **arg, cctx_T *cctx, ppconst_T *ppconst)
2972{
2973 char_u *p;
2974 int ppconst_used = ppconst->pp_used;
2975 char_u *next;
2976
2977 // Ignore all kinds of errors when not producing code.
2978 if (cctx->ctx_skip == SKIP_YES)
2979 {
Bram Moolenaar83d0cec2022-02-04 21:17:58 +00002980 int prev_did_emsg = did_emsg;
2981
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002982 skip_expr_cctx(arg, cctx);
Bram Moolenaar83d0cec2022-02-04 21:17:58 +00002983 return did_emsg == prev_did_emsg ? OK : FAIL;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002984 }
2985
2986 // Evaluate the first expression.
2987 if (compile_expr2(arg, cctx, ppconst) == FAIL)
2988 return FAIL;
2989
2990 p = may_peek_next_line(cctx, *arg, &next);
2991 if (*p == '?')
2992 {
2993 int op_falsy = p[1] == '?';
2994 garray_T *instr = &cctx->ctx_instr;
2995 garray_T *stack = &cctx->ctx_type_stack;
2996 int alt_idx = instr->ga_len;
2997 int end_idx = 0;
2998 isn_T *isn;
2999 type_T *type1 = NULL;
3000 int has_const_expr = FALSE;
3001 int const_value = FALSE;
3002 int save_skip = cctx->ctx_skip;
3003
3004 if (next != NULL)
3005 {
3006 *arg = next_line_from_context(cctx, TRUE);
3007 p = skipwhite(*arg);
3008 }
3009
3010 if (!IS_WHITE_OR_NUL(**arg) || !IS_WHITE_OR_NUL(p[1 + op_falsy]))
3011 {
3012 semsg(_(e_white_space_required_before_and_after_str_at_str),
3013 op_falsy ? "??" : "?", p);
3014 return FAIL;
3015 }
3016
3017 if (ppconst->pp_used == ppconst_used + 1)
3018 {
3019 // the condition is a constant, we know whether the ? or the :
3020 // expression is to be evaluated.
3021 has_const_expr = TRUE;
3022 if (op_falsy)
3023 const_value = tv2bool(&ppconst->pp_tv[ppconst_used]);
3024 else
3025 {
3026 int error = FALSE;
3027
3028 const_value = tv_get_bool_chk(&ppconst->pp_tv[ppconst_used],
3029 &error);
3030 if (error)
3031 return FAIL;
3032 }
3033 cctx->ctx_skip = save_skip == SKIP_YES ||
3034 (op_falsy ? const_value : !const_value) ? SKIP_YES : SKIP_NOT;
3035
3036 if (op_falsy && cctx->ctx_skip == SKIP_YES)
3037 // "left ?? right" and "left" is truthy: produce "left"
3038 generate_ppconst(cctx, ppconst);
3039 else
3040 {
3041 clear_tv(&ppconst->pp_tv[ppconst_used]);
3042 --ppconst->pp_used;
3043 }
3044 }
3045 else
3046 {
3047 generate_ppconst(cctx, ppconst);
3048 if (op_falsy)
3049 end_idx = instr->ga_len;
3050 generate_JUMP(cctx, op_falsy
3051 ? JUMP_AND_KEEP_IF_TRUE : JUMP_IF_FALSE, 0);
3052 if (op_falsy)
Bram Moolenaar078a4612022-01-04 15:17:03 +00003053 type1 = get_type_on_stack(cctx, -1);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003054 }
3055
3056 // evaluate the second expression; any type is accepted
3057 if (may_get_next_line_error(p + 1 + op_falsy, arg, cctx) == FAIL)
3058 return FAIL;
3059 if (compile_expr1(arg, cctx, ppconst) == FAIL)
3060 return FAIL;
3061
3062 if (!has_const_expr)
3063 {
3064 generate_ppconst(cctx, ppconst);
3065
3066 if (!op_falsy)
3067 {
3068 // remember the type and drop it
Bram Moolenaar078a4612022-01-04 15:17:03 +00003069 type1 = get_type_on_stack(cctx, 0);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003070 --stack->ga_len;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003071
3072 end_idx = instr->ga_len;
3073 generate_JUMP(cctx, JUMP_ALWAYS, 0);
3074
3075 // jump here from JUMP_IF_FALSE
3076 isn = ((isn_T *)instr->ga_data) + alt_idx;
3077 isn->isn_arg.jump.jump_where = instr->ga_len;
3078 }
3079 }
3080
3081 if (!op_falsy)
3082 {
3083 // Check for the ":".
3084 p = may_peek_next_line(cctx, *arg, &next);
3085 if (*p != ':')
3086 {
3087 emsg(_(e_missing_colon_after_questionmark));
3088 return FAIL;
3089 }
3090 if (next != NULL)
3091 {
3092 *arg = next_line_from_context(cctx, TRUE);
3093 p = skipwhite(*arg);
3094 }
3095
3096 if (!IS_WHITE_OR_NUL(**arg) || !IS_WHITE_OR_NUL(p[1]))
3097 {
3098 semsg(_(e_white_space_required_before_and_after_str_at_str),
3099 ":", p);
3100 return FAIL;
3101 }
3102
3103 // evaluate the third expression
3104 if (has_const_expr)
3105 cctx->ctx_skip = save_skip == SKIP_YES || const_value
3106 ? SKIP_YES : SKIP_NOT;
3107 if (may_get_next_line_error(p + 1, arg, cctx) == FAIL)
3108 return FAIL;
3109 if (compile_expr1(arg, cctx, ppconst) == FAIL)
3110 return FAIL;
3111 }
3112
3113 if (!has_const_expr)
3114 {
3115 type_T **typep;
3116
3117 generate_ppconst(cctx, ppconst);
Bram Moolenaarfa46ead2021-12-22 13:18:39 +00003118 ppconst->pp_is_const = FALSE;
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003119
3120 // If the types differ, the result has a more generic type.
Bram Moolenaar078a4612022-01-04 15:17:03 +00003121 typep = &((((type2_T *)stack->ga_data)
3122 + stack->ga_len - 1)->type_curr);
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003123 common_type(type1, *typep, typep, cctx->ctx_type_list);
3124
3125 // jump here from JUMP_ALWAYS or JUMP_AND_KEEP_IF_TRUE
3126 isn = ((isn_T *)instr->ga_data) + end_idx;
3127 isn->isn_arg.jump.jump_where = instr->ga_len;
3128 }
3129
3130 cctx->ctx_skip = save_skip;
3131 }
3132 return OK;
3133}
3134
3135/*
3136 * Toplevel expression.
3137 * Sets "is_const" (if not NULL) to indicate the value is a constant.
3138 * Returns OK or FAIL.
3139 */
3140 int
3141compile_expr0_ext(char_u **arg, cctx_T *cctx, int *is_const)
3142{
3143 ppconst_T ppconst;
3144
3145 CLEAR_FIELD(ppconst);
3146 if (compile_expr1(arg, cctx, &ppconst) == FAIL)
3147 {
3148 clear_ppconst(&ppconst);
3149 return FAIL;
3150 }
3151 if (is_const != NULL)
3152 *is_const = ppconst.pp_used > 0 || ppconst.pp_is_const;
3153 if (generate_ppconst(cctx, &ppconst) == FAIL)
3154 return FAIL;
3155 return OK;
3156}
3157
3158/*
3159 * Toplevel expression.
3160 */
3161 int
3162compile_expr0(char_u **arg, cctx_T *cctx)
3163{
3164 return compile_expr0_ext(arg, cctx, NULL);
3165}
3166
3167
3168#endif // defined(FEAT_EVAL)