1 /* vi:set ts=8 sts=4 sw=4 noet: 2 * 3 * VIM - Vi IMproved by Bram Moolenaar 4 * 5 * Do ":help uganda" in Vim to read copying and usage conditions. 6 * Do ":help credits" in Vim to see a list of people who contributed. 7 * See README.txt for an overview of the Vim source code. 8 */ 9 10 /* 11 * vim9.h: types and globals used for Vim9 script. 12 */ 13 14 typedef enum { 15 ISN_EXEC, // execute Ex command line isn_arg.string 16 ISN_EXECCONCAT, // execute Ex command from isn_arg.number items on stack 17 ISN_ECHO, // echo isn_arg.echo.echo_count items on top of stack 18 ISN_EXECUTE, // execute Ex commands isn_arg.number items on top of stack 19 ISN_ECHOMSG, // echo Ex commands isn_arg.number items on top of stack 20 ISN_ECHOERR, // echo Ex commands isn_arg.number items on top of stack 21 22 // get and set variables 23 ISN_LOAD, // push local variable isn_arg.number 24 ISN_LOADV, // push v: variable isn_arg.number 25 ISN_LOADG, // push g: variable isn_arg.string 26 ISN_LOADB, // push b: variable isn_arg.string 27 ISN_LOADW, // push w: variable isn_arg.string 28 ISN_LOADT, // push t: variable isn_arg.string 29 ISN_LOADS, // push s: variable isn_arg.loadstore 30 ISN_LOADOUTER, // push variable from outer scope isn_arg.number 31 ISN_LOADSCRIPT, // push script-local variable isn_arg.script. 32 ISN_LOADOPT, // push option isn_arg.string 33 ISN_LOADENV, // push environment variable isn_arg.string 34 ISN_LOADREG, // push register isn_arg.number 35 36 ISN_STORE, // pop into local variable isn_arg.number 37 ISN_STOREV, // pop into v: variable isn_arg.number 38 ISN_STOREG, // pop into global variable isn_arg.string 39 ISN_STOREB, // pop into buffer-local variable isn_arg.string 40 ISN_STOREW, // pop into window-local variable isn_arg.string 41 ISN_STORET, // pop into tab-local variable isn_arg.string 42 ISN_STORES, // pop into script variable isn_arg.loadstore 43 ISN_STOREOUTER, // pop variable into outer scope isn_arg.number 44 ISN_STORESCRIPT, // pop into script variable isn_arg.script 45 ISN_STOREOPT, // pop into option isn_arg.string 46 ISN_STOREENV, // pop into environment variable isn_arg.string 47 ISN_STOREREG, // pop into register isn_arg.number 48 // ISN_STOREOTHER, // pop into other script variable isn_arg.other. 49 50 ISN_STORENR, // store number into local variable isn_arg.storenr.stnr_idx 51 ISN_STORELIST, // store into list, value/index/varable on stack 52 ISN_STOREDICT, // store into dictionary, value/index/variable on stack 53 54 ISN_UNLET, // unlet variable isn_arg.unlet.ul_name 55 ISN_UNLETENV, // unlet environment variable isn_arg.unlet.ul_name 56 57 // constants 58 ISN_PUSHNR, // push number isn_arg.number 59 ISN_PUSHBOOL, // push bool value isn_arg.number 60 ISN_PUSHSPEC, // push special value isn_arg.number 61 ISN_PUSHF, // push float isn_arg.fnumber 62 ISN_PUSHS, // push string isn_arg.string 63 ISN_PUSHBLOB, // push blob isn_arg.blob 64 ISN_PUSHFUNC, // push func isn_arg.string 65 ISN_PUSHCHANNEL, // push channel isn_arg.channel 66 ISN_PUSHJOB, // push channel isn_arg.job 67 ISN_NEWLIST, // push list from stack items, size is isn_arg.number 68 ISN_NEWDICT, // push dict from stack items, size is isn_arg.number 69 70 // function call 71 ISN_BCALL, // call builtin function isn_arg.bfunc 72 ISN_DCALL, // call def function isn_arg.dfunc 73 ISN_UCALL, // call user function or funcref/partial isn_arg.ufunc 74 ISN_PCALL, // call partial, use isn_arg.pfunc 75 ISN_PCALL_END, // cleanup after ISN_PCALL with cpf_top set 76 ISN_RETURN, // return, result is on top of stack 77 ISN_FUNCREF, // push a function ref to dfunc isn_arg.funcref 78 79 // expression operations 80 ISN_JUMP, // jump if condition is matched isn_arg.jump 81 82 // loop 83 ISN_FOR, // get next item from a list, uses isn_arg.forloop 84 85 ISN_TRY, // add entry to ec_trystack, uses isn_arg.try 86 ISN_THROW, // pop value of stack, store in v:exception 87 ISN_PUSHEXC, // push v:exception 88 ISN_CATCH, // drop v:exception 89 ISN_ENDTRY, // take entry off from ec_trystack 90 91 // moreexpression operations 92 ISN_ADDLIST, 93 ISN_ADDBLOB, 94 95 // operation with two arguments; isn_arg.op.op_type is exptype_T 96 ISN_OPNR, 97 ISN_OPFLOAT, 98 ISN_OPANY, 99 100 // comparative operations; isn_arg.op.op_type is exptype_T, op_ic used 101 ISN_COMPAREBOOL, 102 ISN_COMPARESPECIAL, 103 ISN_COMPARENR, 104 ISN_COMPAREFLOAT, 105 ISN_COMPARESTRING, 106 ISN_COMPAREBLOB, 107 ISN_COMPARELIST, 108 ISN_COMPAREDICT, 109 ISN_COMPAREFUNC, 110 ISN_COMPAREANY, 111 112 // expression operations 113 ISN_CONCAT, 114 ISN_INDEX, // [expr] list index 115 ISN_MEMBER, // dict[member] 116 ISN_STRINGMEMBER, // dict.member using isn_arg.string 117 ISN_2BOOL, // convert value to bool, invert if isn_arg.number != 0 118 ISN_2STRING, // convert value to string at isn_arg.number on stack 119 ISN_NEGATENR, // apply "-" to number 120 121 ISN_CHECKNR, // check value can be used as a number 122 ISN_CHECKTYPE, // check value type is isn_arg.type.tc_type 123 124 ISN_DROP // pop stack and discard value 125 } isntype_T; 126 127 128 // arguments to ISN_BCALL 129 typedef struct { 130 int cbf_idx; // index in "global_functions" 131 int cbf_argcount; // number of arguments on top of stack 132 } cbfunc_T; 133 134 // arguments to ISN_DCALL 135 typedef struct { 136 int cdf_idx; // index in "def_functions" for ISN_DCALL 137 int cdf_argcount; // number of arguments on top of stack 138 } cdfunc_T; 139 140 // arguments to ISN_PCALL 141 typedef struct { 142 int cpf_top; // when TRUE partial is above the arguments 143 int cpf_argcount; // number of arguments on top of stack 144 } cpfunc_T; 145 146 // arguments to ISN_UCALL and ISN_XCALL 147 typedef struct { 148 char_u *cuf_name; 149 int cuf_argcount; // number of arguments on top of stack 150 } cufunc_T; 151 152 typedef enum { 153 JUMP_ALWAYS, 154 JUMP_IF_FALSE, // pop and jump if false 155 JUMP_AND_KEEP_IF_TRUE, // jump if top of stack is true, drop if not 156 JUMP_AND_KEEP_IF_FALSE, // jump if top of stack is false, drop if not 157 } jumpwhen_T; 158 159 // arguments to ISN_JUMP 160 typedef struct { 161 jumpwhen_T jump_when; 162 int jump_where; // position to jump to 163 } jump_T; 164 165 // arguments to ISN_FOR 166 typedef struct { 167 int for_idx; // loop variable index 168 int for_end; // position to jump to after done 169 } forloop_T; 170 171 // arguments to ISN_TRY 172 typedef struct { 173 int try_catch; // position to jump to on throw 174 int try_finally; // position to jump to for return 175 } try_T; 176 177 // arguments to ISN_ECHO 178 typedef struct { 179 int echo_with_white; // :echo instead of :echon 180 int echo_count; // number of expressions 181 } echo_T; 182 183 // arguments to ISN_OPNR, ISN_OPFLOAT, etc. 184 typedef struct { 185 exptype_T op_type; 186 int op_ic; // TRUE with '#', FALSE with '?', else MAYBE 187 } opexpr_T; 188 189 // arguments to ISN_CHECKTYPE 190 typedef struct { 191 vartype_T ct_type; 192 int ct_off; // offset in stack, -1 is bottom 193 } checktype_T; 194 195 // arguments to ISN_STORENR 196 typedef struct { 197 int stnr_idx; 198 varnumber_T stnr_val; 199 } storenr_T; 200 201 // arguments to ISN_STOREOPT 202 typedef struct { 203 char_u *so_name; 204 int so_flags; 205 } storeopt_T; 206 207 // arguments to ISN_LOADS and ISN_STORES 208 typedef struct { 209 char_u *ls_name; // variable name (with s: for ISN_STORES) 210 int ls_sid; // script ID 211 } loadstore_T; 212 213 // arguments to ISN_LOADSCRIPT and ISN_STORESCRIPT 214 typedef struct { 215 int script_sid; // script ID 216 int script_idx; // index in sn_var_vals 217 } script_T; 218 219 // arguments to ISN_UNLET 220 typedef struct { 221 char_u *ul_name; // variable name with g:, w:, etc. 222 int ul_forceit; // forceit flag 223 } unlet_T; 224 225 // arguments to ISN_FUNCREF 226 typedef struct { 227 int fr_func; // function index 228 int fr_var_idx; // variable to store partial 229 } funcref_T; 230 231 /* 232 * Instruction 233 */ 234 struct isn_S { 235 isntype_T isn_type; 236 int isn_lnum; 237 union { 238 char_u *string; 239 varnumber_T number; 240 blob_T *blob; 241 #ifdef FEAT_FLOAT 242 float_T fnumber; 243 #endif 244 channel_T *channel; 245 job_T *job; 246 partial_T *partial; 247 jump_T jump; 248 forloop_T forloop; 249 try_T try; 250 cbfunc_T bfunc; 251 cdfunc_T dfunc; 252 cpfunc_T pfunc; 253 cufunc_T ufunc; 254 echo_T echo; 255 opexpr_T op; 256 checktype_T type; 257 storenr_T storenr; 258 storeopt_T storeopt; 259 loadstore_T loadstore; 260 script_T script; 261 unlet_T unlet; 262 funcref_T funcref; 263 } isn_arg; 264 }; 265 266 /* 267 * Info about a function defined with :def. Used in "def_functions". 268 */ 269 struct dfunc_S { 270 ufunc_T *df_ufunc; // struct containing most stuff 271 int df_idx; // index in def_functions 272 int df_deleted; // if TRUE function was deleted 273 274 garray_T df_def_args_isn; // default argument instructions 275 isn_T *df_instr; // function body to be executed 276 int df_instr_count; 277 278 int df_varcount; // number of local variables 279 int df_closure_count; // number of closures created 280 }; 281 282 // Number of entries used by stack frame for a function call. 283 // - function index 284 // - instruction index 285 // - previous frame index 286 #define STACK_FRAME_SIZE 3 287 288 289 #ifdef DEFINE_VIM9_GLOBALS 290 // Functions defined with :def are stored in this growarray. 291 // They are never removed, so that they can be found by index. 292 // Deleted functions have the df_deleted flag set. 293 garray_T def_functions = {0, 0, sizeof(dfunc_T), 50, NULL}; 294 #else 295 extern garray_T def_functions; 296 #endif 297 298