blob: 095fd275519ed2e5c680d67ed481d636f9478309 [file] [log] [blame]
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001/* 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 * vim9.h: types and globals used for Vim9 script.
12 */
13
Bram Moolenaardc7c3662021-12-20 15:04:29 +000014#ifdef VMS
15# include <float.h>
16#endif
17
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010018typedef enum {
19 ISN_EXEC, // execute Ex command line isn_arg.string
Bram Moolenaarcfe435d2020-04-25 20:02:55 +020020 ISN_EXECCONCAT, // execute Ex command from isn_arg.number items on stack
Bram Moolenaar20677332021-06-06 17:02:53 +020021 ISN_EXEC_SPLIT, // execute Ex command from isn_arg.string split at NL
Bram Moolenaare4eed8c2021-12-01 15:22:56 +000022 ISN_EXECRANGE, // execute EX command that is only a range
Bram Moolenaar3b1373b2021-05-17 00:01:42 +020023 ISN_LEGACY_EVAL, // evaluate expression isn_arg.string with legacy syntax.
Bram Moolenaar7de62622021-08-07 15:05:47 +020024 ISN_ECHO, // :echo with isn_arg.echo.echo_count items on top of stack
25 ISN_EXECUTE, // :execute with isn_arg.number items on top of stack
26 ISN_ECHOMSG, // :echomsg with isn_arg.number items on top of stack
27 ISN_ECHOCONSOLE, // :echoconsole with isn_arg.number items on top of stack
Bram Moolenaar7d7ad7b2022-09-01 16:00:53 +010028 ISN_ECHOWINDOW, // :echowindow with isn_arg.number items on top of stack
Bram Moolenaar7de62622021-08-07 15:05:47 +020029 ISN_ECHOERR, // :echoerr with isn_arg.number items on top of stack
Bram Moolenaar08597872020-12-10 19:43:40 +010030 ISN_RANGE, // compute range from isn_arg.string, push to stack
Bram Moolenaar4c137212021-04-19 16:48:48 +020031 ISN_SUBSTITUTE, // :s command with expression
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +010032
33 ISN_SOURCE, // source autoload script, isn_arg.number is the script ID
Bram Moolenaarf18332f2021-05-07 17:55:55 +020034 ISN_INSTR, // instructions compiled from expression
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010035
36 // get and set variables
37 ISN_LOAD, // push local variable isn_arg.number
38 ISN_LOADV, // push v: variable isn_arg.number
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010039 ISN_LOADG, // push g: variable isn_arg.string
Bram Moolenaar03290b82020-12-19 16:30:44 +010040 ISN_LOADAUTO, // push g: autoload variable isn_arg.string
Bram Moolenaard3aac292020-04-19 14:32:17 +020041 ISN_LOADB, // push b: variable isn_arg.string
42 ISN_LOADW, // push w: variable isn_arg.string
43 ISN_LOADT, // push t: variable isn_arg.string
Bram Moolenaar2f8ce0a2020-07-19 19:47:35 +020044 ISN_LOADGDICT, // push g: dict
45 ISN_LOADBDICT, // push b: dict
46 ISN_LOADWDICT, // push w: dict
47 ISN_LOADTDICT, // push t: dict
Bram Moolenaarb283a8a2020-02-02 22:24:04 +010048 ISN_LOADS, // push s: variable isn_arg.loadstore
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +010049 ISN_LOADEXPORT, // push exported variable isn_arg.loadstore
Bram Moolenaarab360522021-01-10 14:02:28 +010050 ISN_LOADOUTER, // push variable from outer scope isn_arg.outer
Bram Moolenaarb283a8a2020-02-02 22:24:04 +010051 ISN_LOADSCRIPT, // push script-local variable isn_arg.script.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010052 ISN_LOADOPT, // push option isn_arg.string
53 ISN_LOADENV, // push environment variable isn_arg.string
54 ISN_LOADREG, // push register isn_arg.number
55
56 ISN_STORE, // pop into local variable isn_arg.number
Bram Moolenaarb283a8a2020-02-02 22:24:04 +010057 ISN_STOREV, // pop into v: variable isn_arg.number
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010058 ISN_STOREG, // pop into global variable isn_arg.string
Bram Moolenaar03290b82020-12-19 16:30:44 +010059 ISN_STOREAUTO, // pop into global autoload variable isn_arg.string
Bram Moolenaard3aac292020-04-19 14:32:17 +020060 ISN_STOREB, // pop into buffer-local variable isn_arg.string
61 ISN_STOREW, // pop into window-local variable isn_arg.string
62 ISN_STORET, // pop into tab-local variable isn_arg.string
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +020063 ISN_STORES, // pop into script variable isn_arg.loadstore
Bram Moolenaarc0ceeeb2022-03-30 21:12:27 +010064 ISN_STOREEXPORT, // pop into exported script variable isn_arg.loadstore
Bram Moolenaarab360522021-01-10 14:02:28 +010065 ISN_STOREOUTER, // pop variable into outer scope isn_arg.outer
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +020066 ISN_STORESCRIPT, // pop into script variable isn_arg.script
Bram Moolenaardcb53be2021-12-09 14:23:43 +000067 ISN_STOREOPT, // pop into option isn_arg.storeopt
68 ISN_STOREFUNCOPT, // pop into option isn_arg.storeopt
Bram Moolenaarb283a8a2020-02-02 22:24:04 +010069 ISN_STOREENV, // pop into environment variable isn_arg.string
70 ISN_STOREREG, // pop into register isn_arg.number
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010071 // ISN_STOREOTHER, // pop into other script variable isn_arg.other.
72
Bram Moolenaara471eea2020-03-04 22:20:26 +010073 ISN_STORENR, // store number into local variable isn_arg.storenr.stnr_idx
Bram Moolenaar4f5e3972020-12-21 17:30:50 +010074 ISN_STOREINDEX, // store into list or dictionary, type isn_arg.vartype,
75 // value/index/variable on stack
Bram Moolenaar68452172021-04-12 21:21:02 +020076 ISN_STORERANGE, // store into blob,
77 // value/index 1/index 2/variable on stack
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010078
Bram Moolenaard72c1bf2020-04-19 16:28:59 +020079 ISN_UNLET, // unlet variable isn_arg.unlet.ul_name
Bram Moolenaar7bdaea62020-04-19 18:27:26 +020080 ISN_UNLETENV, // unlet environment variable isn_arg.unlet.ul_name
Bram Moolenaar752fc692021-01-04 21:57:11 +010081 ISN_UNLETINDEX, // unlet item of list or dict
Bram Moolenaar5b5ae292021-02-20 17:04:02 +010082 ISN_UNLETRANGE, // unlet items of list
Bram Moolenaard72c1bf2020-04-19 16:28:59 +020083
Bram Moolenaaraacc9662021-08-13 19:40:51 +020084 ISN_LOCKUNLOCK, // :lock and :unlock for local variable member
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +020085 ISN_LOCKCONST, // lock constant value
86
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010087 // constants
Bram Moolenaar42a480b2020-02-29 23:23:47 +010088 ISN_PUSHNR, // push number isn_arg.number
89 ISN_PUSHBOOL, // push bool value isn_arg.number
90 ISN_PUSHSPEC, // push special value isn_arg.number
91 ISN_PUSHF, // push float isn_arg.fnumber
92 ISN_PUSHS, // push string isn_arg.string
93 ISN_PUSHBLOB, // push blob isn_arg.blob
94 ISN_PUSHFUNC, // push func isn_arg.string
Bram Moolenaar397a87a2022-03-20 21:14:15 +000095 ISN_PUSHCHANNEL, // push NULL channel
96 ISN_PUSHJOB, // push NULL job
Bram Moolenaar42a480b2020-02-29 23:23:47 +010097 ISN_NEWLIST, // push list from stack items, size is isn_arg.number
Bram Moolenaarec15b1c2022-03-27 16:29:53 +010098 // -1 for null_list
Bram Moolenaar42a480b2020-02-29 23:23:47 +010099 ISN_NEWDICT, // push dict from stack items, size is isn_arg.number
Bram Moolenaarec15b1c2022-03-27 16:29:53 +0100100 // -1 for null_dict
Bram Moolenaar8acb9cc2022-03-08 13:18:55 +0000101 ISN_NEWPARTIAL, // push NULL partial
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100102
Bram Moolenaar06b77222022-01-25 15:51:56 +0000103 ISN_AUTOLOAD, // get item from autoload import, function or variable
104
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100105 // function call
106 ISN_BCALL, // call builtin function isn_arg.bfunc
107 ISN_DCALL, // call def function isn_arg.dfunc
108 ISN_UCALL, // call user function or funcref/partial isn_arg.ufunc
109 ISN_PCALL, // call partial, use isn_arg.pfunc
Bram Moolenaarbd5da372020-03-31 23:13:10 +0200110 ISN_PCALL_END, // cleanup after ISN_PCALL with cpf_top set
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100111 ISN_RETURN, // return, result is on top of stack
Bram Moolenaarf57b43c2021-06-15 22:13:27 +0200112 ISN_RETURN_VOID, // Push void, then return
Bram Moolenaarbf67ea12020-05-02 17:52:42 +0200113 ISN_FUNCREF, // push a function ref to dfunc isn_arg.funcref
Bram Moolenaar38ddf332020-07-31 22:05:04 +0200114 ISN_NEWFUNC, // create a global function from a lambda function
Bram Moolenaar6abdcf82020-11-22 18:15:44 +0100115 ISN_DEF, // list functions
Bram Moolenaar1d84f762022-09-03 21:35:53 +0100116 ISN_DEFER, // :defer argument count is isn_arg.number
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100117
118 // expression operations
119 ISN_JUMP, // jump if condition is matched isn_arg.jump
Bram Moolenaar4c137212021-04-19 16:48:48 +0200120 ISN_JUMP_IF_ARG_SET, // jump if argument is already set, uses
121 // isn_arg.jumparg
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100122
123 // loop
124 ISN_FOR, // get next item from a list, uses isn_arg.forloop
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100125 ISN_WHILE, // jump if condition false, store funcref count, uses
126 // isn_arg.whileloop
127 ISN_ENDLOOP, // handle variables for closures, uses isn_arg.endloop
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100128
Bram Moolenaar0d807102021-12-21 09:42:09 +0000129 ISN_TRY, // add entry to ec_trystack, uses isn_arg.tryref
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100130 ISN_THROW, // pop value of stack, store in v:exception
131 ISN_PUSHEXC, // push v:exception
132 ISN_CATCH, // drop v:exception
Bram Moolenaar7e82c5f2021-02-21 21:32:45 +0100133 ISN_FINALLY, // start of :finally block
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100134 ISN_ENDTRY, // take entry off from ec_trystack
Bram Moolenaar873f8242022-03-10 21:53:44 +0000135 ISN_TRYCONT, // handle :continue or :break inside a :try statement
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100136
Bram Moolenaar418f1df2020-08-12 21:34:49 +0200137 // more expression operations
Bram Moolenaar1dcae592020-10-19 19:02:42 +0200138 ISN_ADDLIST, // add two lists
139 ISN_ADDBLOB, // add two blobs
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100140
Bram Moolenaar657137c2021-01-09 15:45:23 +0100141 // operation with two arguments; isn_arg.op.op_type is exprtype_T
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100142 ISN_OPNR,
143 ISN_OPFLOAT,
144 ISN_OPANY,
145
Bram Moolenaar657137c2021-01-09 15:45:23 +0100146 // comparative operations; isn_arg.op.op_type is exprtype_T, op_ic used
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100147 ISN_COMPAREBOOL,
148 ISN_COMPARESPECIAL,
Bram Moolenaar7a222242022-03-01 19:23:24 +0000149 ISN_COMPARENULL,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100150 ISN_COMPARENR,
151 ISN_COMPAREFLOAT,
152 ISN_COMPARESTRING,
153 ISN_COMPAREBLOB,
154 ISN_COMPARELIST,
155 ISN_COMPAREDICT,
156 ISN_COMPAREFUNC,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100157 ISN_COMPAREANY,
158
159 // expression operations
LemonBoy372bcce2022-04-25 12:43:20 +0100160 ISN_CONCAT, // concatenate isn_arg.number strings
Bram Moolenaarbf9d8c32020-07-19 17:55:44 +0200161 ISN_STRINDEX, // [expr] string index
Bram Moolenaar11107ba2020-08-15 21:10:16 +0200162 ISN_STRSLICE, // [expr:expr] string slice
Bram Moolenaar1dcae592020-10-19 19:02:42 +0200163 ISN_LISTAPPEND, // append to a list, like add()
Bram Moolenaarbf9d8c32020-07-19 17:55:44 +0200164 ISN_LISTINDEX, // [expr] list index
Bram Moolenaared591872020-08-15 22:14:53 +0200165 ISN_LISTSLICE, // [expr:expr] list slice
Bram Moolenaarcfc30232021-04-11 20:26:34 +0200166 ISN_BLOBINDEX, // [expr] blob index
167 ISN_BLOBSLICE, // [expr:expr] blob slice
Bram Moolenaarcc673e72020-08-16 17:33:35 +0200168 ISN_ANYINDEX, // [expr] runtime index
169 ISN_ANYSLICE, // [expr:expr] runtime slice
Bram Moolenaar9af78762020-06-16 11:34:42 +0200170 ISN_SLICE, // drop isn_arg.number items from start of list
Bram Moolenaar80b0e5e2020-10-19 20:45:36 +0200171 ISN_BLOBAPPEND, // append to a blob, like add()
Bram Moolenaar47a519a2020-06-14 23:05:10 +0200172 ISN_GETITEM, // push list item, isn_arg.number is the index
Bram Moolenaar1cc2a942020-05-10 19:10:31 +0200173 ISN_MEMBER, // dict[member]
174 ISN_STRINGMEMBER, // dict.member using isn_arg.string
Bram Moolenaar5fa9b242021-06-04 21:00:32 +0200175 ISN_2BOOL, // falsy/truthy to bool, uses isn_arg.tobool
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200176 ISN_COND2BOOL, // convert value to bool
Bram Moolenaar5fa9b242021-06-04 21:00:32 +0200177 ISN_2STRING, // convert value to string at isn_arg.tostring on stack
Bram Moolenaar418f1df2020-08-12 21:34:49 +0200178 ISN_2STRING_ANY, // like ISN_2STRING but check type
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100179 ISN_NEGATENR, // apply "-" to number
180
Bram Moolenaar628c1022021-01-02 15:49:28 +0100181 ISN_CHECKTYPE, // check value type is isn_arg.type.ct_type
Bram Moolenaar9af78762020-06-16 11:34:42 +0200182 ISN_CHECKLEN, // check list length is isn_arg.checklen.cl_min_len
Bram Moolenaar628c1022021-01-02 15:49:28 +0100183 ISN_SETTYPE, // set dict type to isn_arg.type.ct_type
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100184
Bram Moolenaarb1b6f4d2021-09-13 18:25:54 +0200185 ISN_CLEARDICT, // clear dict saved by ISN_MEMBER/ISN_STRINGMEMBER
186 ISN_USEDICT, // use or clear dict saved by ISN_MEMBER/ISN_STRINGMEMBER
187
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200188 ISN_PUT, // ":put", uses isn_arg.put
189
Bram Moolenaar02194d22020-10-24 23:08:38 +0200190 ISN_CMDMOD, // set cmdmod
191 ISN_CMDMOD_REV, // undo ISN_CMDMOD
Bram Moolenaarf4c6e1e2020-10-23 18:02:32 +0200192
Bram Moolenaarb2049902021-01-24 12:53:53 +0100193 ISN_PROF_START, // start a line for profiling
194 ISN_PROF_END, // end a line for profiling
195
Bram Moolenaar8cec9272021-06-23 20:20:53 +0200196 ISN_DEBUG, // check for debug breakpoint, uses isn_arg.debug
Bram Moolenaare99d4222021-06-13 14:01:26 +0200197
Bram Moolenaar792f7862020-11-23 08:31:18 +0100198 ISN_UNPACK, // unpack list into items, uses isn_arg.unpack
Bram Moolenaar389df252020-07-09 21:20:47 +0200199 ISN_SHUFFLE, // move item on stack up or down
Bram Moolenaar4c137212021-04-19 16:48:48 +0200200 ISN_DROP, // pop stack and discard value
201
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +0200202 ISN_REDIRSTART, // :redir =>
203 ISN_REDIREND, // :redir END, isn_arg.number == 1 for append
204
Bram Moolenaar5f7d4c02021-05-05 21:31:39 +0200205 ISN_CEXPR_AUCMD, // first part of :cexpr isn_arg.number is cmdidx
206 ISN_CEXPR_CORE, // second part of :cexpr, uses isn_arg.cexpr
207
Bram Moolenaar4c137212021-04-19 16:48:48 +0200208 ISN_FINISH // end marker in list of instructions
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100209} isntype_T;
210
211
212// arguments to ISN_BCALL
213typedef struct {
214 int cbf_idx; // index in "global_functions"
215 int cbf_argcount; // number of arguments on top of stack
216} cbfunc_T;
217
218// arguments to ISN_DCALL
219typedef struct {
220 int cdf_idx; // index in "def_functions" for ISN_DCALL
221 int cdf_argcount; // number of arguments on top of stack
222} cdfunc_T;
223
224// arguments to ISN_PCALL
225typedef struct {
226 int cpf_top; // when TRUE partial is above the arguments
227 int cpf_argcount; // number of arguments on top of stack
228} cpfunc_T;
229
230// arguments to ISN_UCALL and ISN_XCALL
231typedef struct {
232 char_u *cuf_name;
233 int cuf_argcount; // number of arguments on top of stack
234} cufunc_T;
235
Bram Moolenaar035bd1c2021-06-21 19:44:11 +0200236// arguments to ISN_GETITEM
237typedef struct {
238 varnumber_T gi_index;
239 int gi_with_op;
240} getitem_T;
241
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100242typedef enum {
243 JUMP_ALWAYS,
Bram Moolenaar1a7ee4d2021-09-16 16:15:07 +0200244 JUMP_NEVER,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100245 JUMP_IF_FALSE, // pop and jump if false
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100246 JUMP_WHILE_FALSE, // pop and jump if false for :while
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200247 JUMP_AND_KEEP_IF_TRUE, // jump if top of stack is truthy, drop if not
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200248 JUMP_IF_COND_TRUE, // jump if top of stack is true, drop if not
249 JUMP_IF_COND_FALSE, // jump if top of stack is false, drop if not
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100250} jumpwhen_T;
251
252// arguments to ISN_JUMP
253typedef struct {
254 jumpwhen_T jump_when;
Bram Moolenaarcc341812022-09-19 15:54:34 +0100255 int jump_where; // position to jump to
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100256} jump_T;
257
Bram Moolenaar38a3bfa2021-03-29 22:14:55 +0200258// arguments to ISN_JUMP_IF_ARG_SET
259typedef struct {
Bram Moolenaarcc341812022-09-19 15:54:34 +0100260 int jump_arg_off; // argument index, negative
261 int jump_where; // position to jump to
Bram Moolenaar38a3bfa2021-03-29 22:14:55 +0200262} jumparg_T;
263
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100264// arguments to ISN_FOR
265typedef struct {
Bram Moolenaarcc341812022-09-19 15:54:34 +0100266 short for_loop_idx; // loop variable index
267 int for_end; // position to jump to after done
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100268} forloop_T;
269
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100270// arguments to ISN_WHILE
271typedef struct {
Bram Moolenaarcc341812022-09-19 15:54:34 +0100272 short while_funcref_idx; // variable index for funcref count
273 int while_end; // position to jump to after done
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100274} whileloop_T;
275
276// arguments to ISN_ENDLOOP
277typedef struct {
278 short end_funcref_idx; // variable index of funcrefs.ga_len
Bram Moolenaarcc341812022-09-19 15:54:34 +0100279 short end_depth; // nested loop depth
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100280 short end_var_idx; // first variable declared in the loop
281 short end_var_count; // number of variables declared in the loop
282} endloop_T;
283
Bram Moolenaar7e82c5f2021-02-21 21:32:45 +0100284// indirect arguments to ISN_TRY
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100285typedef struct {
286 int try_catch; // position to jump to on throw
Bram Moolenaarc150c092021-02-13 15:02:46 +0100287 int try_finally; // :finally or :endtry position to jump to
Bram Moolenaar7e82c5f2021-02-21 21:32:45 +0100288 int try_endtry; // :endtry position to jump to
289} tryref_T;
290
291// arguments to ISN_TRY
292typedef struct {
293 tryref_T *try_ref;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100294} try_T;
295
Bram Moolenaarc150c092021-02-13 15:02:46 +0100296// arguments to ISN_TRYCONT
297typedef struct {
298 int tct_levels; // number of nested try statements
299 int tct_where; // position to jump to, WHILE or FOR
300} trycont_T;
301
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100302// arguments to ISN_ECHO
303typedef struct {
304 int echo_with_white; // :echo instead of :echon
305 int echo_count; // number of expressions
306} echo_T;
307
308// arguments to ISN_OPNR, ISN_OPFLOAT, etc.
309typedef struct {
Bram Moolenaar657137c2021-01-09 15:45:23 +0100310 exprtype_T op_type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100311 int op_ic; // TRUE with '#', FALSE with '?', else MAYBE
312} opexpr_T;
313
314// arguments to ISN_CHECKTYPE
315typedef struct {
Bram Moolenaar5e654232020-09-16 15:22:00 +0200316 type_T *ct_type;
Bram Moolenaarb3005ce2021-01-22 17:51:06 +0100317 int8_T ct_off; // offset in stack, -1 is bottom
318 int8_T ct_arg_idx; // argument index or zero
Bram Moolenaarbd3a9d22022-05-17 16:12:39 +0100319 int8_T ct_is_var; // when TRUE checking variable instead of arg
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100320} checktype_T;
321
322// arguments to ISN_STORENR
323typedef struct {
Bram Moolenaara471eea2020-03-04 22:20:26 +0100324 int stnr_idx;
325 varnumber_T stnr_val;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100326} storenr_T;
327
Bram Moolenaardcb53be2021-12-09 14:23:43 +0000328// arguments to ISN_STOREOPT and ISN_STOREFUNCOPT
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100329typedef struct {
330 char_u *so_name;
331 int so_flags;
332} storeopt_T;
333
Bram Moolenaarb283a8a2020-02-02 22:24:04 +0100334// arguments to ISN_LOADS and ISN_STORES
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100335typedef struct {
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +0200336 char_u *ls_name; // variable name (with s: for ISN_STORES)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100337 int ls_sid; // script ID
Bram Moolenaarb283a8a2020-02-02 22:24:04 +0100338} loadstore_T;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100339
Bram Moolenaarb283a8a2020-02-02 22:24:04 +0100340// arguments to ISN_LOADSCRIPT and ISN_STORESCRIPT
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100341typedef struct {
Bram Moolenaar4aab88d2020-12-24 21:56:41 +0100342 int sref_sid; // script ID
343 int sref_idx; // index in sn_var_vals
344 int sref_seq; // sn_script_seq when compiled
Bram Moolenaar07a65d22020-12-26 20:09:15 +0100345 type_T *sref_type; // type of the variable when compiled
Bram Moolenaar4aab88d2020-12-24 21:56:41 +0100346} scriptref_T;
347
348typedef struct {
349 scriptref_T *scriptref;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100350} script_T;
351
Bram Moolenaard72c1bf2020-04-19 16:28:59 +0200352// arguments to ISN_UNLET
353typedef struct {
354 char_u *ul_name; // variable name with g:, w:, etc.
355 int ul_forceit; // forceit flag
356} unlet_T;
357
Bram Moolenaar8fa745e2022-09-16 19:04:24 +0100358// extra arguments for funcref_T
359typedef struct {
Bram Moolenaarcc341812022-09-19 15:54:34 +0100360 char_u *fre_func_name; // function name for legacy function
361 loopvarinfo_T fre_loopvar_info; // info about variables inside loops
Bram Moolenaar8fa745e2022-09-16 19:04:24 +0100362} funcref_extra_T;
363
Bram Moolenaarbf67ea12020-05-02 17:52:42 +0200364// arguments to ISN_FUNCREF
365typedef struct {
Bram Moolenaar8fa745e2022-09-16 19:04:24 +0100366 int fr_dfunc_idx; // function index for :def function
367 funcref_extra_T *fr_extra; // optional extra information
Bram Moolenaarbf67ea12020-05-02 17:52:42 +0200368} funcref_T;
369
Bram Moolenaar38ddf332020-07-31 22:05:04 +0200370// arguments to ISN_NEWFUNC
371typedef struct {
Bram Moolenaarcc341812022-09-19 15:54:34 +0100372 char_u *nfa_lambda; // name of the lambda already defined
373 char_u *nfa_global; // name of the global function to be created
374 loopvarinfo_T nfa_loopvar_info; // ifno about variables inside loops
Bram Moolenaar8fa745e2022-09-16 19:04:24 +0100375} newfuncarg_T;
376
377typedef struct {
378 newfuncarg_T *nf_arg;
Bram Moolenaar38ddf332020-07-31 22:05:04 +0200379} newfunc_T;
380
Bram Moolenaar9af78762020-06-16 11:34:42 +0200381// arguments to ISN_CHECKLEN
382typedef struct {
383 int cl_min_len; // minimum length
384 int cl_more_OK; // longer is allowed
385} checklen_T;
386
Bram Moolenaar389df252020-07-09 21:20:47 +0200387// arguments to ISN_SHUFFLE
388typedef struct {
389 int shfl_item; // item to move (relative to top of stack)
390 int shfl_up; // places to move upwards
391} shuffle_T;
392
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200393// arguments to ISN_PUT
394typedef struct {
395 int put_regname; // register, can be NUL
396 linenr_T put_lnum; // line number to put below
397} put_T;
398
Bram Moolenaar02194d22020-10-24 23:08:38 +0200399// arguments to ISN_CMDMOD
400typedef struct {
401 cmdmod_T *cf_cmdmod; // allocated
402} cmod_T;
403
Bram Moolenaar792f7862020-11-23 08:31:18 +0100404// arguments to ISN_UNPACK
405typedef struct {
406 int unp_count; // number of items to produce
407 int unp_semicolon; // last item gets list of remainder
408} unpack_T;
409
Bram Moolenaarab360522021-01-10 14:02:28 +0100410// arguments to ISN_LOADOUTER and ISN_STOREOUTER
411typedef struct {
412 int outer_idx; // index
413 int outer_depth; // nesting level, stack frames to go up
Bram Moolenaar0186e582021-01-10 18:33:11 +0100414} isn_outer_T;
Bram Moolenaarab360522021-01-10 14:02:28 +0100415
Bram Moolenaar8fa745e2022-09-16 19:04:24 +0100416#define OUTER_LOOP_DEPTH -9 // used for outer_depth for loop variables
417
Bram Moolenaar4c137212021-04-19 16:48:48 +0200418// arguments to ISN_SUBSTITUTE
419typedef struct {
420 char_u *subs_cmd; // :s command
421 isn_T *subs_instr; // sequence of instructions
422} subs_T;
423
Bram Moolenaar5f7d4c02021-05-05 21:31:39 +0200424// indirect arguments to ISN_TRY
425typedef struct {
426 int cer_cmdidx;
427 char_u *cer_cmdline;
428 int cer_forceit;
429} cexprref_T;
430
431// arguments to ISN_CEXPR_CORE
432typedef struct {
433 cexprref_T *cexpr_ref;
434} cexpr_T;
435
Bram Moolenaar5fa9b242021-06-04 21:00:32 +0200436// arguments to ISN_2STRING and ISN_2STRING_ANY
437typedef struct {
438 int offset;
439 int tolerant;
440} tostring_T;
441
442// arguments to ISN_2BOOL
443typedef struct {
444 int offset;
445 int invert;
446} tobool_T;
447
Bram Moolenaar8cec9272021-06-23 20:20:53 +0200448// arguments to ISN_DEBUG
449typedef struct {
450 varnumber_T dbg_var_names_len; // current number of local variables
451 int dbg_break_lnum; // first line to break after
452} debug_T;
453
Bram Moolenaar1d84f762022-09-03 21:35:53 +0100454// arguments to ISN_DEFER
455typedef struct {
456 int defer_var_idx; // local variable index for defer list
457 int defer_argcount; // number of arguments
458} deferins_T;
459
Bram Moolenaarbdc09a12022-10-07 14:31:45 +0100460// arguments to ISN_ECHOWINDOW
461typedef struct {
462 int ewin_count; // number of arguments
463 long ewin_time; // time argument (msec)
464} echowin_T;
465
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100466/*
467 * Instruction
468 */
Bram Moolenaar20431c92020-03-20 18:39:46 +0100469struct isn_S {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100470 isntype_T isn_type;
471 int isn_lnum;
472 union {
473 char_u *string;
474 varnumber_T number;
475 blob_T *blob;
Bram Moolenaar4f5e3972020-12-21 17:30:50 +0100476 vartype_T vartype;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100477 float_T fnumber;
Bram Moolenaar42a480b2020-02-29 23:23:47 +0100478 channel_T *channel;
479 job_T *job;
Bram Moolenaar087d2e12020-03-01 15:36:42 +0100480 partial_T *partial;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100481 jump_T jump;
Bram Moolenaar38a3bfa2021-03-29 22:14:55 +0200482 jumparg_T jumparg;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100483 forloop_T forloop;
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100484 whileloop_T whileloop;
485 endloop_T endloop;
Bram Moolenaar0d807102021-12-21 09:42:09 +0000486 try_T tryref;
Bram Moolenaarc150c092021-02-13 15:02:46 +0100487 trycont_T trycont;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100488 cbfunc_T bfunc;
489 cdfunc_T dfunc;
490 cpfunc_T pfunc;
491 cufunc_T ufunc;
492 echo_T echo;
493 opexpr_T op;
494 checktype_T type;
495 storenr_T storenr;
496 storeopt_T storeopt;
Bram Moolenaarb283a8a2020-02-02 22:24:04 +0100497 loadstore_T loadstore;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100498 script_T script;
Bram Moolenaard72c1bf2020-04-19 16:28:59 +0200499 unlet_T unlet;
Bram Moolenaarbf67ea12020-05-02 17:52:42 +0200500 funcref_T funcref;
Bram Moolenaar38ddf332020-07-31 22:05:04 +0200501 newfunc_T newfunc;
Bram Moolenaar9af78762020-06-16 11:34:42 +0200502 checklen_T checklen;
Bram Moolenaar389df252020-07-09 21:20:47 +0200503 shuffle_T shuffle;
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200504 put_T put;
Bram Moolenaar02194d22020-10-24 23:08:38 +0200505 cmod_T cmdmod;
Bram Moolenaar792f7862020-11-23 08:31:18 +0100506 unpack_T unpack;
Bram Moolenaar0186e582021-01-10 18:33:11 +0100507 isn_outer_T outer;
Bram Moolenaar4c137212021-04-19 16:48:48 +0200508 subs_T subs;
Bram Moolenaar5f7d4c02021-05-05 21:31:39 +0200509 cexpr_T cexpr;
Bram Moolenaarf18332f2021-05-07 17:55:55 +0200510 isn_T *instr;
Bram Moolenaar5fa9b242021-06-04 21:00:32 +0200511 tostring_T tostring;
512 tobool_T tobool;
Bram Moolenaar035bd1c2021-06-21 19:44:11 +0200513 getitem_T getitem;
Bram Moolenaar8cec9272021-06-23 20:20:53 +0200514 debug_T debug;
Bram Moolenaar1d84f762022-09-03 21:35:53 +0100515 deferins_T defer;
Bram Moolenaarbdc09a12022-10-07 14:31:45 +0100516 echowin_T echowin;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100517 } isn_arg;
Bram Moolenaar20431c92020-03-20 18:39:46 +0100518};
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100519
520/*
521 * Info about a function defined with :def. Used in "def_functions".
522 */
523struct dfunc_S {
524 ufunc_T *df_ufunc; // struct containing most stuff
Bram Moolenaarcd45ed02020-12-22 17:35:54 +0100525 int df_refcount; // how many ufunc_T point to this dfunc_T
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100526 int df_idx; // index in def_functions
527 int df_deleted; // if TRUE function was deleted
Bram Moolenaar4aab88d2020-12-24 21:56:41 +0100528 int df_script_seq; // Value of sctx_T sc_seq when the function
529 // was compiled.
Dominique Pelle3276f582021-08-07 12:44:41 +0200530 char_u *df_name; // name used for error messages
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100531
532 garray_T df_def_args_isn; // default argument instructions
Bram Moolenaarb69c6fb2021-06-14 20:40:37 +0200533 garray_T df_var_names; // names of local vars
Bram Moolenaarb2049902021-01-24 12:53:53 +0100534
535 // After compiling "df_instr" and/or "df_instr_prof" is not NULL.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100536 isn_T *df_instr; // function body to be executed
Bram Moolenaarb2049902021-01-24 12:53:53 +0100537 int df_instr_count; // size of "df_instr"
Dominique Pelle3276f582021-08-07 12:44:41 +0200538 int df_instr_debug_count; // size of "df_instr_debug"
539 isn_T *df_instr_debug; // like "df_instr" with debugging
Bram Moolenaarf002a412021-01-24 13:34:18 +0100540#ifdef FEAT_PROFILE
541 isn_T *df_instr_prof; // like "df_instr" with profiling
542 int df_instr_prof_count; // size of "df_instr_prof"
543#endif
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100544
545 int df_varcount; // number of local variables
Bram Moolenaar148ce7a2020-09-23 21:57:23 +0200546 int df_has_closure; // one if a closure was created
Bram Moolenaar1d84f762022-09-03 21:35:53 +0100547 int df_defer_var_idx; // index of local variable that has a list
548 // of deferred function calls; zero if not
549 // set
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100550};
551
552// Number of entries used by stack frame for a function call.
Bram Moolenaar5366e1a2020-10-01 13:01:34 +0200553// - ec_dfunc_idx: function index
Bram Moolenaar6ed545e2022-05-09 20:09:23 +0100554// - ec_iidx: instruction index
Bram Moolenaar5930ddc2021-04-26 20:32:59 +0200555// - ec_instr: instruction list pointer
Bram Moolenaar0186e582021-01-10 18:33:11 +0100556// - ec_outer: stack used for closures
Bram Moolenaar2fecb532021-03-24 22:00:56 +0100557// - funclocal: function-local data
Bram Moolenaar5366e1a2020-10-01 13:01:34 +0200558// - ec_frame_idx: previous frame index
Bram Moolenaar0186e582021-01-10 18:33:11 +0100559#define STACK_FRAME_FUNC_OFF 0
560#define STACK_FRAME_IIDX_OFF 1
Bram Moolenaar5930ddc2021-04-26 20:32:59 +0200561#define STACK_FRAME_INSTR_OFF 2
562#define STACK_FRAME_OUTER_OFF 3
563#define STACK_FRAME_FUNCLOCAL_OFF 4
564#define STACK_FRAME_IDX_OFF 5
565#define STACK_FRAME_SIZE 6
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100566
567
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100568extern garray_T def_functions;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100569
Bram Moolenaar08597872020-12-10 19:43:40 +0100570// Used for "lnum" when a range is to be taken from the stack.
kylo2529dac9b12022-03-27 20:05:17 +0100571#define LNUM_VARIABLE_RANGE (-999)
Bram Moolenaar08597872020-12-10 19:43:40 +0100572
573// Used for "lnum" when a range is to be taken from the stack and "!" is used.
kylo2529dac9b12022-03-27 20:05:17 +0100574#define LNUM_VARIABLE_RANGE_ABOVE (-888)
Bram Moolenaare5ea3462021-01-25 21:01:48 +0100575
Bram Moolenaar139575d2022-03-15 19:29:30 +0000576// Keep in sync with get_compile_type()
Bram Moolenaare5ea3462021-01-25 21:01:48 +0100577#ifdef FEAT_PROFILE
Bram Moolenaare5ea3462021-01-25 21:01:48 +0100578# define INSTRUCTIONS(dfunc) \
Bram Moolenaar26a44842021-09-02 18:49:06 +0200579 (debug_break_level > 0 || may_break_in_function(dfunc->df_ufunc) \
Bram Moolenaarc3a27bb2021-06-13 15:16:01 +0200580 ? (dfunc)->df_instr_debug \
581 : ((do_profiling == PROF_YES && (dfunc->df_ufunc)->uf_profiling) \
582 ? (dfunc)->df_instr_prof \
583 : (dfunc)->df_instr))
Bram Moolenaare5ea3462021-01-25 21:01:48 +0100584#else
Bram Moolenaarc3a27bb2021-06-13 15:16:01 +0200585# define INSTRUCTIONS(dfunc) \
kylo2529dac9b12022-03-27 20:05:17 +0100586 (debug_break_level > 0 || may_break_in_function((dfunc)->df_ufunc) \
Bram Moolenaarc3a27bb2021-06-13 15:16:01 +0200587 ? (dfunc)->df_instr_debug \
588 : (dfunc)->df_instr)
Bram Moolenaare5ea3462021-01-25 21:01:48 +0100589#endif
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000590
591// Structure passed between the compile_expr* functions to keep track of
592// constants that have been parsed but for which no code was produced yet. If
593// possible expressions on these constants are applied at compile time. If
594// that is not possible, the code to push the constants needs to be generated
595// before other instructions.
596// Using 50 should be more than enough of 5 levels of ().
597#define PPSIZE 50
598typedef struct {
599 typval_T pp_tv[PPSIZE]; // stack of ppconst constants
600 int pp_used; // active entries in pp_tv[]
601 int pp_is_const; // all generated code was constants, used for a
602 // list or dict with constant members
603} ppconst_T;
604
605// values for ctx_skip
606typedef enum {
607 SKIP_NOT, // condition is a constant, produce code
608 SKIP_YES, // condition is a constant, do NOT produce code
609 SKIP_UNKNOWN // condition is not a constant, produce code
610} skip_T;
611
612/*
613 * Chain of jump instructions where the end label needs to be set.
614 */
615typedef struct endlabel_S endlabel_T;
616struct endlabel_S {
617 endlabel_T *el_next; // chain end_label locations
618 int el_end_label; // instruction idx where to set end
619};
620
621/*
622 * info specific for the scope of :if / elseif / else
623 */
624typedef struct {
625 int is_seen_else;
626 int is_seen_skip_not; // a block was unconditionally executed
627 int is_had_return; // every block ends in :return
628 int is_if_label; // instruction idx at IF or ELSEIF
629 endlabel_T *is_end_label; // instructions to set end label
630} ifscope_T;
631
Bram Moolenaar8abb5842022-09-17 12:39:58 +0100632// info used by :for and :while needed for ENDLOOP
633typedef struct {
634 int li_local_count; // ctx_locals.ga_len at loop start
635 int li_closure_count; // ctx_closure_count at loop start
636 int li_funcref_idx; // index of var that holds funcref count
Bram Moolenaarcc341812022-09-19 15:54:34 +0100637 int li_depth; // nested loop depth
Bram Moolenaar8abb5842022-09-17 12:39:58 +0100638} loop_info_T;
639
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000640/*
641 * info specific for the scope of :while
642 */
643typedef struct {
644 int ws_top_label; // instruction idx at WHILE
645 endlabel_T *ws_end_label; // instructions to set end
Bram Moolenaar8abb5842022-09-17 12:39:58 +0100646 loop_info_T ws_loop_info; // info for LOOPEND
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000647} whilescope_T;
648
649/*
650 * info specific for the scope of :for
651 */
652typedef struct {
653 int fs_top_label; // instruction idx at FOR
654 endlabel_T *fs_end_label; // break instructions
Bram Moolenaar8abb5842022-09-17 12:39:58 +0100655 loop_info_T fs_loop_info; // info for LOOPEND
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000656} forscope_T;
657
658/*
659 * info specific for the scope of :try
660 */
661typedef struct {
662 int ts_try_label; // instruction idx at TRY
663 endlabel_T *ts_end_label; // jump to :finally or :endtry
664 int ts_catch_label; // instruction idx of last CATCH
665 int ts_caught_all; // "catch" without argument encountered
Bram Moolenaar53c29612022-01-12 16:18:18 +0000666 int ts_has_finally; // "finally" encountered
667 int ts_no_return; // one of the blocks did not end in return
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000668} tryscope_T;
669
670typedef enum {
671 NO_SCOPE,
672 IF_SCOPE,
673 WHILE_SCOPE,
674 FOR_SCOPE,
675 TRY_SCOPE,
676 BLOCK_SCOPE
677} scopetype_T;
678
679/*
680 * Info for one scope, pointed to by "ctx_scope".
681 */
682typedef struct scope_S scope_T;
683struct scope_S {
684 scope_T *se_outer; // scope containing this one
685 scopetype_T se_type;
686 int se_local_count; // ctx_locals.ga_len before scope
687 skip_T se_skip_save; // ctx_skip before the block
Bram Moolenaarcc341812022-09-19 15:54:34 +0100688 int se_loop_depth; // number of loop scopes, including this
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000689 union {
690 ifscope_T se_if;
691 whilescope_T se_while;
692 forscope_T se_for;
693 tryscope_T se_try;
694 } se_u;
695};
696
697/*
698 * Entry for "ctx_locals". Used for arguments and local variables.
699 */
700typedef struct {
701 char_u *lv_name;
702 type_T *lv_type;
703 int lv_idx; // index of the variable on the stack
Bram Moolenaarcc341812022-09-19 15:54:34 +0100704 int lv_loop_depth; // depth for variable inside a loop or -1
Bram Moolenaar8fa745e2022-09-16 19:04:24 +0100705 int lv_loop_idx; // index of first variable inside a loop or -1
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000706 int lv_from_outer; // nesting level, using ctx_outer scope
Bram Moolenaar6586a012022-09-30 11:04:50 +0100707 int lv_const; // ASSIGN_VAR (can be assigned to),
708 // ASSIGN_FINAL (no assignment) or ASSIGN_CONST
709 // (value cannot be changed)
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000710 int lv_arg; // when TRUE this is an argument
711} lvar_T;
712
713// Destination for an assignment or ":unlet" with an index.
714typedef enum {
715 dest_local,
716 dest_option,
717 dest_func_option,
718 dest_env,
719 dest_global,
720 dest_buffer,
721 dest_window,
722 dest_tab,
723 dest_vimvar,
724 dest_script,
725 dest_reg,
726 dest_expr,
727} assign_dest_T;
728
729// Used by compile_lhs() to store information about the LHS of an assignment
730// and one argument of ":unlet" with an index.
731typedef struct {
732 assign_dest_T lhs_dest; // type of destination
733
734 char_u *lhs_name; // allocated name excluding the last
735 // "[expr]" or ".name".
736 size_t lhs_varlen; // length of the variable without
737 // "[expr]" or ".name"
738 char_u *lhs_whole; // allocated name including the last
739 // "[expr]" or ".name" for :redir
740 size_t lhs_varlen_total; // length of the variable including
741 // any "[expr]" or ".name"
742 char_u *lhs_dest_end; // end of the destination, including
743 // "[expr]" or ".name".
744 char_u *lhs_end; // end including any type
745
746 int lhs_has_index; // has "[expr]" or ".name"
747
748 int lhs_new_local; // create new local variable
749 int lhs_opt_flags; // for when destination is an option
750 int lhs_vimvaridx; // for when destination is a v:var
751
752 lvar_T lhs_local_lvar; // used for existing local destination
753 lvar_T lhs_arg_lvar; // used for argument destination
754 lvar_T *lhs_lvar; // points to destination lvar
755 int lhs_scriptvar_sid;
756 int lhs_scriptvar_idx;
757
758 int lhs_has_type; // type was specified
759 type_T *lhs_type;
760 type_T *lhs_member_type;
761
762 int lhs_append; // used by ISN_REDIREND
763} lhs_T;
764
765/*
Bram Moolenaar4b1d9632022-02-13 21:51:08 +0000766 * Context for compiling lines of a :def function.
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000767 * Stores info about the local variables and condition stack.
768 */
769struct cctx_S {
770 ufunc_T *ctx_ufunc; // current function
771 int ctx_lnum; // line number in current function
772 char_u *ctx_line_start; // start of current line or NULL
773 garray_T ctx_instr; // generated instructions
774
775 int ctx_prev_lnum; // line number below previous command, for
776 // debugging
777
778 compiletype_T ctx_compile_type;
779
780 garray_T ctx_locals; // currently visible local variables
781
Bram Moolenaarb46c0832022-09-15 17:19:37 +0100782 int ctx_has_closure; // set to one if a FUNCREF was used in the
783 // function
784 int ctx_closure_count; // incremented for each closure created in
785 // the function.
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000786
Bram Moolenaardc7c3662021-12-20 15:04:29 +0000787 skip_T ctx_skip;
788 scope_T *ctx_scope; // current scope, NULL at toplevel
789 int ctx_had_return; // last seen statement was "return"
790
791 cctx_T *ctx_outer; // outer scope for lambda or nested
792 // function
793 int ctx_outer_used; // var in ctx_outer was used
794
795 garray_T ctx_type_stack; // type of each item on the stack
796 garray_T *ctx_type_list; // list of pointers to allocated types
797
798 int ctx_has_cmdmod; // ISN_CMDMOD was generated
799
800 lhs_T ctx_redir_lhs; // LHS for ":redir => var", valid when
801 // lhs_name is not NULL
802};
803
Bram Moolenaar1d84f762022-09-03 21:35:53 +0100804/*
805 * List of special functions for "compile_arguments()".
806 */
807typedef enum {
808 CA_NOT_SPECIAL,
809 CA_SEARCHPAIR, // {skip} in searchpair() and searchpairpos()
810 CA_SUBSTITUTE, // {sub} in substitute(), when prefixed with \=
811} ca_special_T;
812
Bram Moolenaar114dbda2022-01-03 12:28:03 +0000813// flags for typval2type()
814#define TVTT_DO_MEMBER 1
815#define TVTT_MORE_SPECIFIC 2 // get most specific type for member
816
Bram Moolenaarc9c967d2022-09-07 16:48:46 +0100817// flags for call_def_function()
818#define DEF_USE_PT_ARGV 1 // use the partial arguments