diff --git a/include/parrot/oplib/core_ops.h b/include/parrot/oplib/core_ops.h index f437f167c8..cfddd7929d 100644 --- a/include/parrot/oplib/core_ops.h +++ b/include/parrot/oplib/core_ops.h @@ -112,6 +112,8 @@ op_lib_t *Parrot_DynOp_core_3_10_0(PARROT_INTERP, long init); opcode_t * Parrot_errorson_ic(opcode_t *, PARROT_INTERP); opcode_t * Parrot_errorsoff_i(opcode_t *, PARROT_INTERP); opcode_t * Parrot_errorsoff_ic(opcode_t *, PARROT_INTERP); + opcode_t * Parrot_set_runcore_s(opcode_t *, PARROT_INTERP); + opcode_t * Parrot_set_runcore_sc(opcode_t *, PARROT_INTERP); opcode_t * Parrot_runinterp_p_i(opcode_t *, PARROT_INTERP); opcode_t * Parrot_runinterp_p_ic(opcode_t *, PARROT_INTERP); opcode_t * Parrot_getinterp_p(opcode_t *, PARROT_INTERP); diff --git a/include/parrot/oplib/ops.h b/include/parrot/oplib/ops.h index f5d9ff9cf2..d0091be498 100644 --- a/include/parrot/oplib/ops.h +++ b/include/parrot/oplib/ops.h @@ -106,1015 +106,1017 @@ typedef enum { PARROT_OP_errorson_ic, /* 88 */ PARROT_OP_errorsoff_i, /* 89 */ PARROT_OP_errorsoff_ic, /* 90 */ - PARROT_OP_runinterp_p_i, /* 91 */ - PARROT_OP_runinterp_p_ic, /* 92 */ - PARROT_OP_getinterp_p, /* 93 */ - PARROT_OP_sweep_ic, /* 94 */ - PARROT_OP_collect, /* 95 */ - PARROT_OP_sweepoff, /* 96 */ - PARROT_OP_sweepon, /* 97 */ - PARROT_OP_collectoff, /* 98 */ - PARROT_OP_collecton, /* 99 */ - PARROT_OP_needs_destroy_p, /* 100 */ - PARROT_OP_loadlib_p_s, /* 101 */ - PARROT_OP_loadlib_p_sc, /* 102 */ - PARROT_OP_loadlib_p_s_p, /* 103 */ - PARROT_OP_loadlib_p_sc_p, /* 104 */ - PARROT_OP_loadlib_p_s_pc, /* 105 */ - PARROT_OP_loadlib_p_sc_pc, /* 106 */ - PARROT_OP_dlfunc_p_p_s_s, /* 107 */ - PARROT_OP_dlfunc_p_p_sc_s, /* 108 */ - PARROT_OP_dlfunc_p_p_s_sc, /* 109 */ - PARROT_OP_dlfunc_p_p_sc_sc, /* 110 */ - PARROT_OP_dlfunc_p_p_s_p, /* 111 */ - PARROT_OP_dlfunc_p_p_sc_p, /* 112 */ - PARROT_OP_dlvar_p_p_s, /* 113 */ - PARROT_OP_dlvar_p_p_sc, /* 114 */ - PARROT_OP_compreg_s_p, /* 115 */ - PARROT_OP_compreg_sc_p, /* 116 */ - PARROT_OP_compreg_p_s, /* 117 */ - PARROT_OP_compreg_p_sc, /* 118 */ - PARROT_OP_new_callback_p_p_p_s, /* 119 */ - PARROT_OP_new_callback_p_p_p_sc, /* 120 */ - PARROT_OP_annotations_p, /* 121 */ - PARROT_OP_annotations_p_s, /* 122 */ - PARROT_OP_annotations_p_sc, /* 123 */ - PARROT_OP_band_i_i, /* 124 */ - PARROT_OP_band_i_ic, /* 125 */ - PARROT_OP_band_i_i_i, /* 126 */ - PARROT_OP_band_i_ic_i, /* 127 */ - PARROT_OP_band_i_i_ic, /* 128 */ - PARROT_OP_bor_i_i, /* 129 */ - PARROT_OP_bor_i_ic, /* 130 */ - PARROT_OP_bor_i_i_i, /* 131 */ - PARROT_OP_bor_i_ic_i, /* 132 */ - PARROT_OP_bor_i_i_ic, /* 133 */ - PARROT_OP_shl_i_i, /* 134 */ - PARROT_OP_shl_i_ic, /* 135 */ - PARROT_OP_shl_i_i_i, /* 136 */ - PARROT_OP_shl_i_ic_i, /* 137 */ - PARROT_OP_shl_i_i_ic, /* 138 */ - PARROT_OP_shr_i_i, /* 139 */ - PARROT_OP_shr_i_ic, /* 140 */ - PARROT_OP_shr_i_i_i, /* 141 */ - PARROT_OP_shr_i_ic_i, /* 142 */ - PARROT_OP_shr_i_i_ic, /* 143 */ - PARROT_OP_lsr_i_i, /* 144 */ - PARROT_OP_lsr_i_ic, /* 145 */ - PARROT_OP_lsr_i_i_i, /* 146 */ - PARROT_OP_lsr_i_ic_i, /* 147 */ - PARROT_OP_lsr_i_i_ic, /* 148 */ - PARROT_OP_bxor_i_i, /* 149 */ - PARROT_OP_bxor_i_ic, /* 150 */ - PARROT_OP_bxor_i_i_i, /* 151 */ - PARROT_OP_bxor_i_ic_i, /* 152 */ - PARROT_OP_bxor_i_i_ic, /* 153 */ - PARROT_OP_eq_i_i_ic, /* 154 */ - PARROT_OP_eq_ic_i_ic, /* 155 */ - PARROT_OP_eq_i_ic_ic, /* 156 */ - PARROT_OP_eq_n_n_ic, /* 157 */ - PARROT_OP_eq_nc_n_ic, /* 158 */ - PARROT_OP_eq_n_nc_ic, /* 159 */ - PARROT_OP_eq_s_s_ic, /* 160 */ - PARROT_OP_eq_sc_s_ic, /* 161 */ - PARROT_OP_eq_s_sc_ic, /* 162 */ - PARROT_OP_eq_p_p_ic, /* 163 */ - PARROT_OP_eq_p_i_ic, /* 164 */ - PARROT_OP_eq_p_ic_ic, /* 165 */ - PARROT_OP_eq_p_n_ic, /* 166 */ - PARROT_OP_eq_p_nc_ic, /* 167 */ - PARROT_OP_eq_p_s_ic, /* 168 */ - PARROT_OP_eq_p_sc_ic, /* 169 */ - PARROT_OP_eq_str_p_p_ic, /* 170 */ - PARROT_OP_eq_num_p_p_ic, /* 171 */ - PARROT_OP_eq_addr_s_s_ic, /* 172 */ - PARROT_OP_eq_addr_sc_s_ic, /* 173 */ - PARROT_OP_eq_addr_s_sc_ic, /* 174 */ - PARROT_OP_eq_addr_sc_sc_ic, /* 175 */ - PARROT_OP_eq_addr_p_p_ic, /* 176 */ - PARROT_OP_ne_i_i_ic, /* 177 */ - PARROT_OP_ne_ic_i_ic, /* 178 */ - PARROT_OP_ne_i_ic_ic, /* 179 */ - PARROT_OP_ne_n_n_ic, /* 180 */ - PARROT_OP_ne_nc_n_ic, /* 181 */ - PARROT_OP_ne_n_nc_ic, /* 182 */ - PARROT_OP_ne_s_s_ic, /* 183 */ - PARROT_OP_ne_sc_s_ic, /* 184 */ - PARROT_OP_ne_s_sc_ic, /* 185 */ - PARROT_OP_ne_p_p_ic, /* 186 */ - PARROT_OP_ne_p_i_ic, /* 187 */ - PARROT_OP_ne_p_ic_ic, /* 188 */ - PARROT_OP_ne_p_n_ic, /* 189 */ - PARROT_OP_ne_p_nc_ic, /* 190 */ - PARROT_OP_ne_p_s_ic, /* 191 */ - PARROT_OP_ne_p_sc_ic, /* 192 */ - PARROT_OP_ne_str_p_p_ic, /* 193 */ - PARROT_OP_ne_num_p_p_ic, /* 194 */ - PARROT_OP_ne_addr_s_s_ic, /* 195 */ - PARROT_OP_ne_addr_sc_s_ic, /* 196 */ - PARROT_OP_ne_addr_s_sc_ic, /* 197 */ - PARROT_OP_ne_addr_sc_sc_ic, /* 198 */ - PARROT_OP_ne_addr_p_p_ic, /* 199 */ - PARROT_OP_lt_i_i_ic, /* 200 */ - PARROT_OP_lt_ic_i_ic, /* 201 */ - PARROT_OP_lt_i_ic_ic, /* 202 */ - PARROT_OP_lt_n_n_ic, /* 203 */ - PARROT_OP_lt_nc_n_ic, /* 204 */ - PARROT_OP_lt_n_nc_ic, /* 205 */ - PARROT_OP_lt_s_s_ic, /* 206 */ - PARROT_OP_lt_sc_s_ic, /* 207 */ - PARROT_OP_lt_s_sc_ic, /* 208 */ - PARROT_OP_lt_p_p_ic, /* 209 */ - PARROT_OP_lt_p_i_ic, /* 210 */ - PARROT_OP_lt_p_ic_ic, /* 211 */ - PARROT_OP_lt_p_n_ic, /* 212 */ - PARROT_OP_lt_p_nc_ic, /* 213 */ - PARROT_OP_lt_p_s_ic, /* 214 */ - PARROT_OP_lt_p_sc_ic, /* 215 */ - PARROT_OP_lt_str_p_p_ic, /* 216 */ - PARROT_OP_lt_num_p_p_ic, /* 217 */ - PARROT_OP_le_i_i_ic, /* 218 */ - PARROT_OP_le_ic_i_ic, /* 219 */ - PARROT_OP_le_i_ic_ic, /* 220 */ - PARROT_OP_le_n_n_ic, /* 221 */ - PARROT_OP_le_nc_n_ic, /* 222 */ - PARROT_OP_le_n_nc_ic, /* 223 */ - PARROT_OP_le_s_s_ic, /* 224 */ - PARROT_OP_le_sc_s_ic, /* 225 */ - PARROT_OP_le_s_sc_ic, /* 226 */ - PARROT_OP_le_p_p_ic, /* 227 */ - PARROT_OP_le_p_i_ic, /* 228 */ - PARROT_OP_le_p_ic_ic, /* 229 */ - PARROT_OP_le_p_n_ic, /* 230 */ - PARROT_OP_le_p_nc_ic, /* 231 */ - PARROT_OP_le_p_s_ic, /* 232 */ - PARROT_OP_le_p_sc_ic, /* 233 */ - PARROT_OP_le_str_p_p_ic, /* 234 */ - PARROT_OP_le_num_p_p_ic, /* 235 */ - PARROT_OP_gt_p_p_ic, /* 236 */ - PARROT_OP_gt_p_i_ic, /* 237 */ - PARROT_OP_gt_p_ic_ic, /* 238 */ - PARROT_OP_gt_p_n_ic, /* 239 */ - PARROT_OP_gt_p_nc_ic, /* 240 */ - PARROT_OP_gt_p_s_ic, /* 241 */ - PARROT_OP_gt_p_sc_ic, /* 242 */ - PARROT_OP_gt_str_p_p_ic, /* 243 */ - PARROT_OP_gt_num_p_p_ic, /* 244 */ - PARROT_OP_ge_p_p_ic, /* 245 */ - PARROT_OP_ge_p_i_ic, /* 246 */ - PARROT_OP_ge_p_ic_ic, /* 247 */ - PARROT_OP_ge_p_n_ic, /* 248 */ - PARROT_OP_ge_p_nc_ic, /* 249 */ - PARROT_OP_ge_p_s_ic, /* 250 */ - PARROT_OP_ge_p_sc_ic, /* 251 */ - PARROT_OP_ge_str_p_p_ic, /* 252 */ - PARROT_OP_ge_num_p_p_ic, /* 253 */ - PARROT_OP_if_null_p_ic, /* 254 */ - PARROT_OP_if_null_s_ic, /* 255 */ - PARROT_OP_unless_null_p_ic, /* 256 */ - PARROT_OP_unless_null_s_ic, /* 257 */ - PARROT_OP_cmp_i_i_i, /* 258 */ - PARROT_OP_cmp_i_ic_i, /* 259 */ - PARROT_OP_cmp_i_i_ic, /* 260 */ - PARROT_OP_cmp_i_n_n, /* 261 */ - PARROT_OP_cmp_i_nc_n, /* 262 */ - PARROT_OP_cmp_i_n_nc, /* 263 */ - PARROT_OP_cmp_i_s_s, /* 264 */ - PARROT_OP_cmp_i_sc_s, /* 265 */ - PARROT_OP_cmp_i_s_sc, /* 266 */ - PARROT_OP_cmp_i_p_p, /* 267 */ - PARROT_OP_cmp_i_p_i, /* 268 */ - PARROT_OP_cmp_i_p_ic, /* 269 */ - PARROT_OP_cmp_i_p_n, /* 270 */ - PARROT_OP_cmp_i_p_nc, /* 271 */ - PARROT_OP_cmp_i_p_s, /* 272 */ - PARROT_OP_cmp_i_p_sc, /* 273 */ - PARROT_OP_cmp_str_i_p_p, /* 274 */ - PARROT_OP_cmp_num_i_p_p, /* 275 */ - PARROT_OP_cmp_pmc_p_p_p, /* 276 */ - PARROT_OP_issame_i_p_p, /* 277 */ - PARROT_OP_issame_i_s_s, /* 278 */ - PARROT_OP_issame_i_sc_s, /* 279 */ - PARROT_OP_issame_i_s_sc, /* 280 */ - PARROT_OP_issame_i_sc_sc, /* 281 */ - PARROT_OP_isntsame_i_p_p, /* 282 */ - PARROT_OP_isntsame_i_s_s, /* 283 */ - PARROT_OP_isntsame_i_sc_s, /* 284 */ - PARROT_OP_isntsame_i_s_sc, /* 285 */ - PARROT_OP_isntsame_i_sc_sc, /* 286 */ - PARROT_OP_istrue_i_p, /* 287 */ - PARROT_OP_isfalse_i_p, /* 288 */ - PARROT_OP_isnull_i_p, /* 289 */ - PARROT_OP_isnull_i_pc, /* 290 */ - PARROT_OP_isnull_i_s, /* 291 */ - PARROT_OP_isnull_i_sc, /* 292 */ - PARROT_OP_isgt_i_p_p, /* 293 */ - PARROT_OP_isge_i_p_p, /* 294 */ - PARROT_OP_isle_i_i_i, /* 295 */ - PARROT_OP_isle_i_ic_i, /* 296 */ - PARROT_OP_isle_i_i_ic, /* 297 */ - PARROT_OP_isle_i_n_n, /* 298 */ - PARROT_OP_isle_i_nc_n, /* 299 */ - PARROT_OP_isle_i_n_nc, /* 300 */ - PARROT_OP_isle_i_s_s, /* 301 */ - PARROT_OP_isle_i_sc_s, /* 302 */ - PARROT_OP_isle_i_s_sc, /* 303 */ - PARROT_OP_isle_i_p_p, /* 304 */ - PARROT_OP_islt_i_i_i, /* 305 */ - PARROT_OP_islt_i_ic_i, /* 306 */ - PARROT_OP_islt_i_i_ic, /* 307 */ - PARROT_OP_islt_i_n_n, /* 308 */ - PARROT_OP_islt_i_nc_n, /* 309 */ - PARROT_OP_islt_i_n_nc, /* 310 */ - PARROT_OP_islt_i_s_s, /* 311 */ - PARROT_OP_islt_i_sc_s, /* 312 */ - PARROT_OP_islt_i_s_sc, /* 313 */ - PARROT_OP_islt_i_p_p, /* 314 */ - PARROT_OP_iseq_i_i_i, /* 315 */ - PARROT_OP_iseq_i_ic_i, /* 316 */ - PARROT_OP_iseq_i_i_ic, /* 317 */ - PARROT_OP_iseq_i_n_n, /* 318 */ - PARROT_OP_iseq_i_nc_n, /* 319 */ - PARROT_OP_iseq_i_n_nc, /* 320 */ - PARROT_OP_iseq_i_s_s, /* 321 */ - PARROT_OP_iseq_i_sc_s, /* 322 */ - PARROT_OP_iseq_i_s_sc, /* 323 */ - PARROT_OP_iseq_i_p_p, /* 324 */ - PARROT_OP_isne_i_i_i, /* 325 */ - PARROT_OP_isne_i_ic_i, /* 326 */ - PARROT_OP_isne_i_i_ic, /* 327 */ - PARROT_OP_isne_i_n_n, /* 328 */ - PARROT_OP_isne_i_nc_n, /* 329 */ - PARROT_OP_isne_i_n_nc, /* 330 */ - PARROT_OP_isne_i_s_s, /* 331 */ - PARROT_OP_isne_i_sc_s, /* 332 */ - PARROT_OP_isne_i_s_sc, /* 333 */ - PARROT_OP_isne_i_p_p, /* 334 */ - PARROT_OP_and_i_i_i, /* 335 */ - PARROT_OP_and_i_ic_i, /* 336 */ - PARROT_OP_and_i_i_ic, /* 337 */ - PARROT_OP_and_p_p_p, /* 338 */ - PARROT_OP_not_i, /* 339 */ - PARROT_OP_not_i_i, /* 340 */ - PARROT_OP_not_p, /* 341 */ - PARROT_OP_not_p_p, /* 342 */ - PARROT_OP_or_i_i_i, /* 343 */ - PARROT_OP_or_i_ic_i, /* 344 */ - PARROT_OP_or_i_i_ic, /* 345 */ - PARROT_OP_or_p_p_p, /* 346 */ - PARROT_OP_xor_i_i_i, /* 347 */ - PARROT_OP_xor_i_ic_i, /* 348 */ - PARROT_OP_xor_i_i_ic, /* 349 */ - PARROT_OP_xor_p_p_p, /* 350 */ - PARROT_OP_print_i, /* 351 */ - PARROT_OP_print_ic, /* 352 */ - PARROT_OP_print_n, /* 353 */ - PARROT_OP_print_nc, /* 354 */ - PARROT_OP_print_s, /* 355 */ - PARROT_OP_print_sc, /* 356 */ - PARROT_OP_print_p, /* 357 */ - PARROT_OP_say_i, /* 358 */ - PARROT_OP_say_ic, /* 359 */ - PARROT_OP_say_n, /* 360 */ - PARROT_OP_say_nc, /* 361 */ - PARROT_OP_say_s, /* 362 */ - PARROT_OP_say_sc, /* 363 */ - PARROT_OP_say_p, /* 364 */ - PARROT_OP_print_p_i, /* 365 */ - PARROT_OP_print_p_ic, /* 366 */ - PARROT_OP_print_p_n, /* 367 */ - PARROT_OP_print_p_nc, /* 368 */ - PARROT_OP_print_p_s, /* 369 */ - PARROT_OP_print_p_sc, /* 370 */ - PARROT_OP_print_p_p, /* 371 */ - PARROT_OP_getstdin_p, /* 372 */ - PARROT_OP_getstdout_p, /* 373 */ - PARROT_OP_getstderr_p, /* 374 */ - PARROT_OP_abs_i, /* 375 */ - PARROT_OP_abs_n, /* 376 */ - PARROT_OP_abs_i_i, /* 377 */ - PARROT_OP_abs_n_n, /* 378 */ - PARROT_OP_abs_p, /* 379 */ - PARROT_OP_abs_p_p, /* 380 */ - PARROT_OP_add_i_i, /* 381 */ - PARROT_OP_add_i_ic, /* 382 */ - PARROT_OP_add_n_n, /* 383 */ - PARROT_OP_add_n_nc, /* 384 */ - PARROT_OP_add_p_p, /* 385 */ - PARROT_OP_add_p_i, /* 386 */ - PARROT_OP_add_p_ic, /* 387 */ - PARROT_OP_add_p_n, /* 388 */ - PARROT_OP_add_p_nc, /* 389 */ - PARROT_OP_add_i_i_i, /* 390 */ - PARROT_OP_add_i_ic_i, /* 391 */ - PARROT_OP_add_i_i_ic, /* 392 */ - PARROT_OP_add_n_n_n, /* 393 */ - PARROT_OP_add_n_nc_n, /* 394 */ - PARROT_OP_add_n_n_nc, /* 395 */ - PARROT_OP_add_p_p_p, /* 396 */ - PARROT_OP_add_p_p_i, /* 397 */ - PARROT_OP_add_p_p_ic, /* 398 */ - PARROT_OP_add_p_p_n, /* 399 */ - PARROT_OP_add_p_p_nc, /* 400 */ - PARROT_OP_dec_i, /* 401 */ - PARROT_OP_dec_n, /* 402 */ - PARROT_OP_dec_p, /* 403 */ - PARROT_OP_div_i_i, /* 404 */ - PARROT_OP_div_i_ic, /* 405 */ - PARROT_OP_div_n_n, /* 406 */ - PARROT_OP_div_n_nc, /* 407 */ - PARROT_OP_div_p_p, /* 408 */ - PARROT_OP_div_p_i, /* 409 */ - PARROT_OP_div_p_ic, /* 410 */ - PARROT_OP_div_p_n, /* 411 */ - PARROT_OP_div_p_nc, /* 412 */ - PARROT_OP_div_i_i_i, /* 413 */ - PARROT_OP_div_i_ic_i, /* 414 */ - PARROT_OP_div_i_i_ic, /* 415 */ - PARROT_OP_div_i_ic_ic, /* 416 */ - PARROT_OP_div_n_n_n, /* 417 */ - PARROT_OP_div_n_nc_n, /* 418 */ - PARROT_OP_div_n_n_nc, /* 419 */ - PARROT_OP_div_n_nc_nc, /* 420 */ - PARROT_OP_div_p_p_p, /* 421 */ - PARROT_OP_div_p_p_i, /* 422 */ - PARROT_OP_div_p_p_ic, /* 423 */ - PARROT_OP_div_p_p_n, /* 424 */ - PARROT_OP_div_p_p_nc, /* 425 */ - PARROT_OP_fdiv_i_i, /* 426 */ - PARROT_OP_fdiv_i_ic, /* 427 */ - PARROT_OP_fdiv_n_n, /* 428 */ - PARROT_OP_fdiv_n_nc, /* 429 */ - PARROT_OP_fdiv_p_p, /* 430 */ - PARROT_OP_fdiv_p_i, /* 431 */ - PARROT_OP_fdiv_p_ic, /* 432 */ - PARROT_OP_fdiv_p_n, /* 433 */ - PARROT_OP_fdiv_p_nc, /* 434 */ - PARROT_OP_fdiv_i_i_i, /* 435 */ - PARROT_OP_fdiv_i_ic_i, /* 436 */ - PARROT_OP_fdiv_i_i_ic, /* 437 */ - PARROT_OP_fdiv_n_n_n, /* 438 */ - PARROT_OP_fdiv_n_nc_n, /* 439 */ - PARROT_OP_fdiv_n_n_nc, /* 440 */ - PARROT_OP_fdiv_p_p_p, /* 441 */ - PARROT_OP_fdiv_p_p_i, /* 442 */ - PARROT_OP_fdiv_p_p_ic, /* 443 */ - PARROT_OP_fdiv_p_p_n, /* 444 */ - PARROT_OP_fdiv_p_p_nc, /* 445 */ - PARROT_OP_ceil_n, /* 446 */ - PARROT_OP_ceil_i_n, /* 447 */ - PARROT_OP_ceil_n_n, /* 448 */ - PARROT_OP_floor_n, /* 449 */ - PARROT_OP_floor_i_n, /* 450 */ - PARROT_OP_floor_n_n, /* 451 */ - PARROT_OP_inc_i, /* 452 */ - PARROT_OP_inc_n, /* 453 */ - PARROT_OP_inc_p, /* 454 */ - PARROT_OP_mod_i_i, /* 455 */ - PARROT_OP_mod_i_ic, /* 456 */ - PARROT_OP_mod_n_n, /* 457 */ - PARROT_OP_mod_n_nc, /* 458 */ - PARROT_OP_mod_p_p, /* 459 */ - PARROT_OP_mod_p_i, /* 460 */ - PARROT_OP_mod_p_ic, /* 461 */ - PARROT_OP_mod_p_n, /* 462 */ - PARROT_OP_mod_p_nc, /* 463 */ - PARROT_OP_mod_i_i_i, /* 464 */ - PARROT_OP_mod_i_ic_i, /* 465 */ - PARROT_OP_mod_i_i_ic, /* 466 */ - PARROT_OP_mod_n_n_n, /* 467 */ - PARROT_OP_mod_n_nc_n, /* 468 */ - PARROT_OP_mod_n_n_nc, /* 469 */ - PARROT_OP_mod_p_p_p, /* 470 */ - PARROT_OP_mod_p_p_i, /* 471 */ - PARROT_OP_mod_p_p_ic, /* 472 */ - PARROT_OP_mod_p_p_n, /* 473 */ - PARROT_OP_mod_p_p_nc, /* 474 */ - PARROT_OP_mul_i_i, /* 475 */ - PARROT_OP_mul_i_ic, /* 476 */ - PARROT_OP_mul_n_n, /* 477 */ - PARROT_OP_mul_n_nc, /* 478 */ - PARROT_OP_mul_p_p, /* 479 */ - PARROT_OP_mul_p_i, /* 480 */ - PARROT_OP_mul_p_ic, /* 481 */ - PARROT_OP_mul_p_n, /* 482 */ - PARROT_OP_mul_p_nc, /* 483 */ - PARROT_OP_mul_i_i_i, /* 484 */ - PARROT_OP_mul_i_ic_i, /* 485 */ - PARROT_OP_mul_i_i_ic, /* 486 */ - PARROT_OP_mul_n_n_n, /* 487 */ - PARROT_OP_mul_n_nc_n, /* 488 */ - PARROT_OP_mul_n_n_nc, /* 489 */ - PARROT_OP_mul_p_p_p, /* 490 */ - PARROT_OP_mul_p_p_i, /* 491 */ - PARROT_OP_mul_p_p_ic, /* 492 */ - PARROT_OP_mul_p_p_n, /* 493 */ - PARROT_OP_mul_p_p_nc, /* 494 */ - PARROT_OP_neg_i, /* 495 */ - PARROT_OP_neg_n, /* 496 */ - PARROT_OP_neg_p, /* 497 */ - PARROT_OP_neg_i_i, /* 498 */ - PARROT_OP_neg_n_n, /* 499 */ - PARROT_OP_neg_p_p, /* 500 */ - PARROT_OP_sub_i_i, /* 501 */ - PARROT_OP_sub_i_ic, /* 502 */ - PARROT_OP_sub_n_n, /* 503 */ - PARROT_OP_sub_n_nc, /* 504 */ - PARROT_OP_sub_p_p, /* 505 */ - PARROT_OP_sub_p_i, /* 506 */ - PARROT_OP_sub_p_ic, /* 507 */ - PARROT_OP_sub_p_n, /* 508 */ - PARROT_OP_sub_p_nc, /* 509 */ - PARROT_OP_sub_i_i_i, /* 510 */ - PARROT_OP_sub_i_ic_i, /* 511 */ - PARROT_OP_sub_i_i_ic, /* 512 */ - PARROT_OP_sub_n_n_n, /* 513 */ - PARROT_OP_sub_n_nc_n, /* 514 */ - PARROT_OP_sub_n_n_nc, /* 515 */ - PARROT_OP_sub_p_p_p, /* 516 */ - PARROT_OP_sub_p_p_i, /* 517 */ - PARROT_OP_sub_p_p_ic, /* 518 */ - PARROT_OP_sub_p_p_n, /* 519 */ - PARROT_OP_sub_p_p_nc, /* 520 */ - PARROT_OP_sqrt_n_n, /* 521 */ - PARROT_OP_callmethodcc_p_s, /* 522 */ - PARROT_OP_callmethodcc_p_sc, /* 523 */ - PARROT_OP_callmethodcc_p_p, /* 524 */ - PARROT_OP_callmethod_p_s_p, /* 525 */ - PARROT_OP_callmethod_p_sc_p, /* 526 */ - PARROT_OP_callmethod_p_p_p, /* 527 */ - PARROT_OP_tailcallmethod_p_s, /* 528 */ - PARROT_OP_tailcallmethod_p_sc, /* 529 */ - PARROT_OP_tailcallmethod_p_p, /* 530 */ - PARROT_OP_addmethod_p_s_p, /* 531 */ - PARROT_OP_addmethod_p_sc_p, /* 532 */ - PARROT_OP_can_i_p_s, /* 533 */ - PARROT_OP_can_i_p_sc, /* 534 */ - PARROT_OP_does_i_p_s, /* 535 */ - PARROT_OP_does_i_p_sc, /* 536 */ - PARROT_OP_does_i_p_p, /* 537 */ - PARROT_OP_does_i_p_pc, /* 538 */ - PARROT_OP_isa_i_p_s, /* 539 */ - PARROT_OP_isa_i_p_sc, /* 540 */ - PARROT_OP_isa_i_p_p, /* 541 */ - PARROT_OP_isa_i_p_pc, /* 542 */ - PARROT_OP_newclass_p_s, /* 543 */ - PARROT_OP_newclass_p_sc, /* 544 */ - PARROT_OP_newclass_p_p, /* 545 */ - PARROT_OP_newclass_p_pc, /* 546 */ - PARROT_OP_subclass_p_p, /* 547 */ - PARROT_OP_subclass_p_pc, /* 548 */ - PARROT_OP_subclass_p_p_s, /* 549 */ - PARROT_OP_subclass_p_pc_s, /* 550 */ - PARROT_OP_subclass_p_p_sc, /* 551 */ - PARROT_OP_subclass_p_pc_sc, /* 552 */ - PARROT_OP_subclass_p_p_p, /* 553 */ - PARROT_OP_subclass_p_pc_p, /* 554 */ - PARROT_OP_subclass_p_p_pc, /* 555 */ - PARROT_OP_subclass_p_pc_pc, /* 556 */ - PARROT_OP_subclass_p_s, /* 557 */ - PARROT_OP_subclass_p_sc, /* 558 */ - PARROT_OP_subclass_p_s_s, /* 559 */ - PARROT_OP_subclass_p_sc_s, /* 560 */ - PARROT_OP_subclass_p_s_sc, /* 561 */ - PARROT_OP_subclass_p_sc_sc, /* 562 */ - PARROT_OP_subclass_p_s_p, /* 563 */ - PARROT_OP_subclass_p_sc_p, /* 564 */ - PARROT_OP_subclass_p_s_pc, /* 565 */ - PARROT_OP_subclass_p_sc_pc, /* 566 */ - PARROT_OP_get_class_p_s, /* 567 */ - PARROT_OP_get_class_p_sc, /* 568 */ - PARROT_OP_get_class_p_p, /* 569 */ - PARROT_OP_get_class_p_pc, /* 570 */ - PARROT_OP_class_p_p, /* 571 */ - PARROT_OP_addparent_p_p, /* 572 */ - PARROT_OP_removeparent_p_p, /* 573 */ - PARROT_OP_addrole_p_p, /* 574 */ - PARROT_OP_addattribute_p_s, /* 575 */ - PARROT_OP_addattribute_p_sc, /* 576 */ - PARROT_OP_removeattribute_p_s, /* 577 */ - PARROT_OP_removeattribute_p_sc, /* 578 */ - PARROT_OP_getattribute_p_p_s, /* 579 */ - PARROT_OP_getattribute_p_p_sc, /* 580 */ - PARROT_OP_getattribute_p_p_p_s, /* 581 */ - PARROT_OP_getattribute_p_p_pc_s, /* 582 */ - PARROT_OP_getattribute_p_p_p_sc, /* 583 */ - PARROT_OP_getattribute_p_p_pc_sc, /* 584 */ - PARROT_OP_setattribute_p_s_p, /* 585 */ - PARROT_OP_setattribute_p_sc_p, /* 586 */ - PARROT_OP_setattribute_p_p_s_p, /* 587 */ - PARROT_OP_setattribute_p_pc_s_p, /* 588 */ - PARROT_OP_setattribute_p_p_sc_p, /* 589 */ - PARROT_OP_setattribute_p_pc_sc_p, /* 590 */ - PARROT_OP_inspect_p_p, /* 591 */ - PARROT_OP_inspect_p_pc, /* 592 */ - PARROT_OP_inspect_p_p_s, /* 593 */ - PARROT_OP_inspect_p_pc_s, /* 594 */ - PARROT_OP_inspect_p_p_sc, /* 595 */ - PARROT_OP_inspect_p_pc_sc, /* 596 */ - PARROT_OP_new_p_s, /* 597 */ - PARROT_OP_new_p_sc, /* 598 */ - PARROT_OP_new_p_s_p, /* 599 */ - PARROT_OP_new_p_sc_p, /* 600 */ - PARROT_OP_new_p_s_pc, /* 601 */ - PARROT_OP_new_p_sc_pc, /* 602 */ - PARROT_OP_new_p_p, /* 603 */ - PARROT_OP_new_p_pc, /* 604 */ - PARROT_OP_new_p_p_p, /* 605 */ - PARROT_OP_new_p_pc_p, /* 606 */ - PARROT_OP_new_p_p_pc, /* 607 */ - PARROT_OP_new_p_pc_pc, /* 608 */ - PARROT_OP_root_new_p_p, /* 609 */ - PARROT_OP_root_new_p_pc, /* 610 */ - PARROT_OP_root_new_p_p_p, /* 611 */ - PARROT_OP_root_new_p_pc_p, /* 612 */ - PARROT_OP_root_new_p_p_pc, /* 613 */ - PARROT_OP_root_new_p_pc_pc, /* 614 */ - PARROT_OP_typeof_s_p, /* 615 */ - PARROT_OP_typeof_p_p, /* 616 */ - PARROT_OP_get_repr_s_p, /* 617 */ - PARROT_OP_find_method_p_p_s, /* 618 */ - PARROT_OP_find_method_p_p_sc, /* 619 */ - PARROT_OP_defined_i_p, /* 620 */ - PARROT_OP_defined_i_p_ki, /* 621 */ - PARROT_OP_defined_i_p_kic, /* 622 */ - PARROT_OP_defined_i_p_k, /* 623 */ - PARROT_OP_defined_i_p_kc, /* 624 */ - PARROT_OP_exists_i_p_ki, /* 625 */ - PARROT_OP_exists_i_p_kic, /* 626 */ - PARROT_OP_exists_i_p_k, /* 627 */ - PARROT_OP_exists_i_p_kc, /* 628 */ - PARROT_OP_delete_p_k, /* 629 */ - PARROT_OP_delete_p_kc, /* 630 */ - PARROT_OP_delete_p_ki, /* 631 */ - PARROT_OP_delete_p_kic, /* 632 */ - PARROT_OP_elements_i_p, /* 633 */ - PARROT_OP_push_p_i, /* 634 */ - PARROT_OP_push_p_ic, /* 635 */ - PARROT_OP_push_p_n, /* 636 */ - PARROT_OP_push_p_nc, /* 637 */ - PARROT_OP_push_p_s, /* 638 */ - PARROT_OP_push_p_sc, /* 639 */ - PARROT_OP_push_p_p, /* 640 */ - PARROT_OP_pop_i_p, /* 641 */ - PARROT_OP_pop_n_p, /* 642 */ - PARROT_OP_pop_s_p, /* 643 */ - PARROT_OP_pop_p_p, /* 644 */ - PARROT_OP_unshift_p_i, /* 645 */ - PARROT_OP_unshift_p_ic, /* 646 */ - PARROT_OP_unshift_p_n, /* 647 */ - PARROT_OP_unshift_p_nc, /* 648 */ - PARROT_OP_unshift_p_s, /* 649 */ - PARROT_OP_unshift_p_sc, /* 650 */ - PARROT_OP_unshift_p_p, /* 651 */ - PARROT_OP_shift_i_p, /* 652 */ - PARROT_OP_shift_n_p, /* 653 */ - PARROT_OP_shift_s_p, /* 654 */ - PARROT_OP_shift_p_p, /* 655 */ - PARROT_OP_splice_p_p_i_i, /* 656 */ - PARROT_OP_splice_p_p_ic_i, /* 657 */ - PARROT_OP_splice_p_p_i_ic, /* 658 */ - PARROT_OP_splice_p_p_ic_ic, /* 659 */ - PARROT_OP_setprop_p_s_p, /* 660 */ - PARROT_OP_setprop_p_sc_p, /* 661 */ - PARROT_OP_getprop_p_s_p, /* 662 */ - PARROT_OP_getprop_p_sc_p, /* 663 */ - PARROT_OP_delprop_p_s, /* 664 */ - PARROT_OP_delprop_p_sc, /* 665 */ - PARROT_OP_prophash_p_p, /* 666 */ - PARROT_OP_freeze_s_p, /* 667 */ - PARROT_OP_thaw_p_s, /* 668 */ - PARROT_OP_thaw_p_sc, /* 669 */ - PARROT_OP_add_multi_s_s_p, /* 670 */ - PARROT_OP_add_multi_sc_s_p, /* 671 */ - PARROT_OP_add_multi_s_sc_p, /* 672 */ - PARROT_OP_add_multi_sc_sc_p, /* 673 */ - PARROT_OP_find_multi_p_s_s, /* 674 */ - PARROT_OP_find_multi_p_sc_s, /* 675 */ - PARROT_OP_find_multi_p_s_sc, /* 676 */ - PARROT_OP_find_multi_p_sc_sc, /* 677 */ - PARROT_OP_register_p, /* 678 */ - PARROT_OP_unregister_p, /* 679 */ - PARROT_OP_box_p_i, /* 680 */ - PARROT_OP_box_p_ic, /* 681 */ - PARROT_OP_box_p_n, /* 682 */ - PARROT_OP_box_p_nc, /* 683 */ - PARROT_OP_box_p_s, /* 684 */ - PARROT_OP_box_p_sc, /* 685 */ - PARROT_OP_iter_p_p, /* 686 */ - PARROT_OP_morph_p_p, /* 687 */ - PARROT_OP_morph_p_pc, /* 688 */ - PARROT_OP_clone_s_s, /* 689 */ - PARROT_OP_clone_s_sc, /* 690 */ - PARROT_OP_set_i_i, /* 691 */ - PARROT_OP_set_i_ic, /* 692 */ - PARROT_OP_set_i_n, /* 693 */ - PARROT_OP_set_i_nc, /* 694 */ - PARROT_OP_set_i_s, /* 695 */ - PARROT_OP_set_i_sc, /* 696 */ - PARROT_OP_set_n_n, /* 697 */ - PARROT_OP_set_n_nc, /* 698 */ - PARROT_OP_set_n_i, /* 699 */ - PARROT_OP_set_n_ic, /* 700 */ - PARROT_OP_set_n_s, /* 701 */ - PARROT_OP_set_n_sc, /* 702 */ - PARROT_OP_set_n_p, /* 703 */ - PARROT_OP_set_s_p, /* 704 */ - PARROT_OP_set_s_s, /* 705 */ - PARROT_OP_set_s_sc, /* 706 */ - PARROT_OP_set_s_i, /* 707 */ - PARROT_OP_set_s_ic, /* 708 */ - PARROT_OP_set_s_n, /* 709 */ - PARROT_OP_set_s_nc, /* 710 */ - PARROT_OP_set_p_pc, /* 711 */ - PARROT_OP_set_p_p, /* 712 */ - PARROT_OP_set_p_i, /* 713 */ - PARROT_OP_set_p_ic, /* 714 */ - PARROT_OP_set_p_n, /* 715 */ - PARROT_OP_set_p_nc, /* 716 */ - PARROT_OP_set_p_s, /* 717 */ - PARROT_OP_set_p_sc, /* 718 */ - PARROT_OP_set_i_p, /* 719 */ - PARROT_OP_assign_p_p, /* 720 */ - PARROT_OP_assign_p_i, /* 721 */ - PARROT_OP_assign_p_ic, /* 722 */ - PARROT_OP_assign_p_n, /* 723 */ - PARROT_OP_assign_p_nc, /* 724 */ - PARROT_OP_assign_p_s, /* 725 */ - PARROT_OP_assign_p_sc, /* 726 */ - PARROT_OP_assign_s_s, /* 727 */ - PARROT_OP_assign_s_sc, /* 728 */ - PARROT_OP_setref_p_p, /* 729 */ - PARROT_OP_deref_p_p, /* 730 */ - PARROT_OP_set_p_ki_i, /* 731 */ - PARROT_OP_set_p_kic_i, /* 732 */ - PARROT_OP_set_p_ki_ic, /* 733 */ - PARROT_OP_set_p_kic_ic, /* 734 */ - PARROT_OP_set_p_ki_n, /* 735 */ - PARROT_OP_set_p_kic_n, /* 736 */ - PARROT_OP_set_p_ki_nc, /* 737 */ - PARROT_OP_set_p_kic_nc, /* 738 */ - PARROT_OP_set_p_ki_s, /* 739 */ - PARROT_OP_set_p_kic_s, /* 740 */ - PARROT_OP_set_p_ki_sc, /* 741 */ - PARROT_OP_set_p_kic_sc, /* 742 */ - PARROT_OP_set_p_ki_p, /* 743 */ - PARROT_OP_set_p_kic_p, /* 744 */ - PARROT_OP_set_i_p_ki, /* 745 */ - PARROT_OP_set_i_p_kic, /* 746 */ - PARROT_OP_set_n_p_ki, /* 747 */ - PARROT_OP_set_n_p_kic, /* 748 */ - PARROT_OP_set_s_p_ki, /* 749 */ - PARROT_OP_set_s_p_kic, /* 750 */ - PARROT_OP_set_p_p_ki, /* 751 */ - PARROT_OP_set_p_p_kic, /* 752 */ - PARROT_OP_set_p_k_i, /* 753 */ - PARROT_OP_set_p_kc_i, /* 754 */ - PARROT_OP_set_p_k_ic, /* 755 */ - PARROT_OP_set_p_kc_ic, /* 756 */ - PARROT_OP_set_p_k_n, /* 757 */ - PARROT_OP_set_p_kc_n, /* 758 */ - PARROT_OP_set_p_k_nc, /* 759 */ - PARROT_OP_set_p_kc_nc, /* 760 */ - PARROT_OP_set_p_k_s, /* 761 */ - PARROT_OP_set_p_kc_s, /* 762 */ - PARROT_OP_set_p_k_sc, /* 763 */ - PARROT_OP_set_p_kc_sc, /* 764 */ - PARROT_OP_set_p_k_p, /* 765 */ - PARROT_OP_set_p_kc_p, /* 766 */ - PARROT_OP_set_i_p_k, /* 767 */ - PARROT_OP_set_i_p_kc, /* 768 */ - PARROT_OP_set_n_p_k, /* 769 */ - PARROT_OP_set_n_p_kc, /* 770 */ - PARROT_OP_set_s_p_k, /* 771 */ - PARROT_OP_set_s_p_kc, /* 772 */ - PARROT_OP_set_p_p_k, /* 773 */ - PARROT_OP_set_p_p_kc, /* 774 */ - PARROT_OP_clone_p_p, /* 775 */ - PARROT_OP_clone_p_p_p, /* 776 */ - PARROT_OP_clone_p_p_pc, /* 777 */ - PARROT_OP_copy_p_p, /* 778 */ - PARROT_OP_null_s, /* 779 */ - PARROT_OP_null_i, /* 780 */ - PARROT_OP_null_p, /* 781 */ - PARROT_OP_null_n, /* 782 */ - PARROT_OP_ord_i_s, /* 783 */ - PARROT_OP_ord_i_sc, /* 784 */ - PARROT_OP_ord_i_s_i, /* 785 */ - PARROT_OP_ord_i_sc_i, /* 786 */ - PARROT_OP_ord_i_s_ic, /* 787 */ - PARROT_OP_ord_i_sc_ic, /* 788 */ - PARROT_OP_chr_s_i, /* 789 */ - PARROT_OP_chr_s_ic, /* 790 */ - PARROT_OP_chopn_s_s_i, /* 791 */ - PARROT_OP_chopn_s_sc_i, /* 792 */ - PARROT_OP_chopn_s_s_ic, /* 793 */ - PARROT_OP_chopn_s_sc_ic, /* 794 */ - PARROT_OP_concat_p_p, /* 795 */ - PARROT_OP_concat_p_s, /* 796 */ - PARROT_OP_concat_p_sc, /* 797 */ - PARROT_OP_concat_s_s_s, /* 798 */ - PARROT_OP_concat_s_sc_s, /* 799 */ - PARROT_OP_concat_s_s_sc, /* 800 */ - PARROT_OP_concat_p_p_s, /* 801 */ - PARROT_OP_concat_p_p_sc, /* 802 */ - PARROT_OP_concat_p_p_p, /* 803 */ - PARROT_OP_repeat_s_s_i, /* 804 */ - PARROT_OP_repeat_s_sc_i, /* 805 */ - PARROT_OP_repeat_s_s_ic, /* 806 */ - PARROT_OP_repeat_s_sc_ic, /* 807 */ - PARROT_OP_repeat_p_p_i, /* 808 */ - PARROT_OP_repeat_p_p_ic, /* 809 */ - PARROT_OP_repeat_p_p_p, /* 810 */ - PARROT_OP_repeat_p_i, /* 811 */ - PARROT_OP_repeat_p_ic, /* 812 */ - PARROT_OP_repeat_p_p, /* 813 */ - PARROT_OP_length_i_s, /* 814 */ - PARROT_OP_length_i_sc, /* 815 */ - PARROT_OP_bytelength_i_s, /* 816 */ - PARROT_OP_bytelength_i_sc, /* 817 */ - PARROT_OP_pin_s, /* 818 */ - PARROT_OP_unpin_s, /* 819 */ - PARROT_OP_substr_s_s_i, /* 820 */ - PARROT_OP_substr_s_sc_i, /* 821 */ - PARROT_OP_substr_s_s_ic, /* 822 */ - PARROT_OP_substr_s_sc_ic, /* 823 */ - PARROT_OP_substr_s_s_i_i, /* 824 */ - PARROT_OP_substr_s_sc_i_i, /* 825 */ - PARROT_OP_substr_s_s_ic_i, /* 826 */ - PARROT_OP_substr_s_sc_ic_i, /* 827 */ - PARROT_OP_substr_s_s_i_ic, /* 828 */ - PARROT_OP_substr_s_sc_i_ic, /* 829 */ - PARROT_OP_substr_s_s_ic_ic, /* 830 */ - PARROT_OP_substr_s_sc_ic_ic, /* 831 */ - PARROT_OP_substr_s_p_i_i, /* 832 */ - PARROT_OP_substr_s_p_ic_i, /* 833 */ - PARROT_OP_substr_s_p_i_ic, /* 834 */ - PARROT_OP_substr_s_p_ic_ic, /* 835 */ - PARROT_OP_replace_s_s_i_i_s, /* 836 */ - PARROT_OP_replace_s_sc_i_i_s, /* 837 */ - PARROT_OP_replace_s_s_ic_i_s, /* 838 */ - PARROT_OP_replace_s_sc_ic_i_s, /* 839 */ - PARROT_OP_replace_s_s_i_ic_s, /* 840 */ - PARROT_OP_replace_s_sc_i_ic_s, /* 841 */ - PARROT_OP_replace_s_s_ic_ic_s, /* 842 */ - PARROT_OP_replace_s_sc_ic_ic_s, /* 843 */ - PARROT_OP_replace_s_s_i_i_sc, /* 844 */ - PARROT_OP_replace_s_sc_i_i_sc, /* 845 */ - PARROT_OP_replace_s_s_ic_i_sc, /* 846 */ - PARROT_OP_replace_s_sc_ic_i_sc, /* 847 */ - PARROT_OP_replace_s_s_i_ic_sc, /* 848 */ - PARROT_OP_replace_s_sc_i_ic_sc, /* 849 */ - PARROT_OP_replace_s_s_ic_ic_sc, /* 850 */ - PARROT_OP_replace_s_sc_ic_ic_sc, /* 851 */ - PARROT_OP_index_i_s_s, /* 852 */ - PARROT_OP_index_i_sc_s, /* 853 */ - PARROT_OP_index_i_s_sc, /* 854 */ - PARROT_OP_index_i_sc_sc, /* 855 */ - PARROT_OP_index_i_s_s_i, /* 856 */ - PARROT_OP_index_i_sc_s_i, /* 857 */ - PARROT_OP_index_i_s_sc_i, /* 858 */ - PARROT_OP_index_i_sc_sc_i, /* 859 */ - PARROT_OP_index_i_s_s_ic, /* 860 */ - PARROT_OP_index_i_sc_s_ic, /* 861 */ - PARROT_OP_index_i_s_sc_ic, /* 862 */ - PARROT_OP_index_i_sc_sc_ic, /* 863 */ - PARROT_OP_sprintf_s_s_p, /* 864 */ - PARROT_OP_sprintf_s_sc_p, /* 865 */ - PARROT_OP_sprintf_p_p_p, /* 866 */ - PARROT_OP_new_s, /* 867 */ - PARROT_OP_new_s_i, /* 868 */ - PARROT_OP_new_s_ic, /* 869 */ - PARROT_OP_stringinfo_i_s_i, /* 870 */ - PARROT_OP_stringinfo_i_sc_i, /* 871 */ - PARROT_OP_stringinfo_i_s_ic, /* 872 */ - PARROT_OP_stringinfo_i_sc_ic, /* 873 */ - PARROT_OP_upcase_s_s, /* 874 */ - PARROT_OP_upcase_s_sc, /* 875 */ - PARROT_OP_downcase_s_s, /* 876 */ - PARROT_OP_downcase_s_sc, /* 877 */ - PARROT_OP_titlecase_s_s, /* 878 */ - PARROT_OP_titlecase_s_sc, /* 879 */ - PARROT_OP_join_s_s_p, /* 880 */ - PARROT_OP_join_s_sc_p, /* 881 */ - PARROT_OP_split_p_s_s, /* 882 */ - PARROT_OP_split_p_sc_s, /* 883 */ - PARROT_OP_split_p_s_sc, /* 884 */ - PARROT_OP_split_p_sc_sc, /* 885 */ - PARROT_OP_encoding_i_s, /* 886 */ - PARROT_OP_encoding_i_sc, /* 887 */ - PARROT_OP_encodingname_s_i, /* 888 */ - PARROT_OP_encodingname_s_ic, /* 889 */ - PARROT_OP_find_encoding_i_s, /* 890 */ - PARROT_OP_find_encoding_i_sc, /* 891 */ - PARROT_OP_trans_encoding_s_s_i, /* 892 */ - PARROT_OP_trans_encoding_s_sc_i, /* 893 */ - PARROT_OP_trans_encoding_s_s_ic, /* 894 */ - PARROT_OP_trans_encoding_s_sc_ic, /* 895 */ - PARROT_OP_is_cclass_i_i_s_i, /* 896 */ - PARROT_OP_is_cclass_i_ic_s_i, /* 897 */ - PARROT_OP_is_cclass_i_i_sc_i, /* 898 */ - PARROT_OP_is_cclass_i_ic_sc_i, /* 899 */ - PARROT_OP_is_cclass_i_i_s_ic, /* 900 */ - PARROT_OP_is_cclass_i_ic_s_ic, /* 901 */ - PARROT_OP_is_cclass_i_i_sc_ic, /* 902 */ - PARROT_OP_is_cclass_i_ic_sc_ic, /* 903 */ - PARROT_OP_find_cclass_i_i_s_i_i, /* 904 */ - PARROT_OP_find_cclass_i_ic_s_i_i, /* 905 */ - PARROT_OP_find_cclass_i_i_sc_i_i, /* 906 */ - PARROT_OP_find_cclass_i_ic_sc_i_i, /* 907 */ - PARROT_OP_find_cclass_i_i_s_ic_i, /* 908 */ - PARROT_OP_find_cclass_i_ic_s_ic_i, /* 909 */ - PARROT_OP_find_cclass_i_i_sc_ic_i, /* 910 */ - PARROT_OP_find_cclass_i_ic_sc_ic_i, /* 911 */ - PARROT_OP_find_cclass_i_i_s_i_ic, /* 912 */ - PARROT_OP_find_cclass_i_ic_s_i_ic, /* 913 */ - PARROT_OP_find_cclass_i_i_sc_i_ic, /* 914 */ - PARROT_OP_find_cclass_i_ic_sc_i_ic, /* 915 */ - PARROT_OP_find_cclass_i_i_s_ic_ic, /* 916 */ - PARROT_OP_find_cclass_i_ic_s_ic_ic, /* 917 */ - PARROT_OP_find_cclass_i_i_sc_ic_ic, /* 918 */ - PARROT_OP_find_cclass_i_ic_sc_ic_ic, /* 919 */ - PARROT_OP_find_not_cclass_i_i_s_i_i, /* 920 */ - PARROT_OP_find_not_cclass_i_ic_s_i_i, /* 921 */ - PARROT_OP_find_not_cclass_i_i_sc_i_i, /* 922 */ - PARROT_OP_find_not_cclass_i_ic_sc_i_i, /* 923 */ - PARROT_OP_find_not_cclass_i_i_s_ic_i, /* 924 */ - PARROT_OP_find_not_cclass_i_ic_s_ic_i, /* 925 */ - PARROT_OP_find_not_cclass_i_i_sc_ic_i, /* 926 */ - PARROT_OP_find_not_cclass_i_ic_sc_ic_i, /* 927 */ - PARROT_OP_find_not_cclass_i_i_s_i_ic, /* 928 */ - PARROT_OP_find_not_cclass_i_ic_s_i_ic, /* 929 */ - PARROT_OP_find_not_cclass_i_i_sc_i_ic, /* 930 */ - PARROT_OP_find_not_cclass_i_ic_sc_i_ic, /* 931 */ - PARROT_OP_find_not_cclass_i_i_s_ic_ic, /* 932 */ - PARROT_OP_find_not_cclass_i_ic_s_ic_ic, /* 933 */ - PARROT_OP_find_not_cclass_i_i_sc_ic_ic, /* 934 */ - PARROT_OP_find_not_cclass_i_ic_sc_ic_ic, /* 935 */ - PARROT_OP_escape_s_s, /* 936 */ - PARROT_OP_compose_s_s, /* 937 */ - PARROT_OP_compose_s_sc, /* 938 */ - PARROT_OP_find_codepoint_i_s, /* 939 */ - PARROT_OP_find_codepoint_i_sc, /* 940 */ - PARROT_OP_spawnw_i_s, /* 941 */ - PARROT_OP_spawnw_i_sc, /* 942 */ - PARROT_OP_spawnw_i_p, /* 943 */ - PARROT_OP_err_i, /* 944 */ - PARROT_OP_err_s, /* 945 */ - PARROT_OP_err_s_i, /* 946 */ - PARROT_OP_err_s_ic, /* 947 */ - PARROT_OP_time_i, /* 948 */ - PARROT_OP_time_n, /* 949 */ - PARROT_OP_sleep_i, /* 950 */ - PARROT_OP_sleep_ic, /* 951 */ - PARROT_OP_sleep_n, /* 952 */ - PARROT_OP_sleep_nc, /* 953 */ - PARROT_OP_store_lex_s_p, /* 954 */ - PARROT_OP_store_lex_sc_p, /* 955 */ - PARROT_OP_store_lex_s_s, /* 956 */ - PARROT_OP_store_lex_sc_s, /* 957 */ - PARROT_OP_store_lex_s_sc, /* 958 */ - PARROT_OP_store_lex_sc_sc, /* 959 */ - PARROT_OP_store_lex_s_i, /* 960 */ - PARROT_OP_store_lex_sc_i, /* 961 */ - PARROT_OP_store_lex_s_ic, /* 962 */ - PARROT_OP_store_lex_sc_ic, /* 963 */ - PARROT_OP_store_lex_s_n, /* 964 */ - PARROT_OP_store_lex_sc_n, /* 965 */ - PARROT_OP_store_lex_s_nc, /* 966 */ - PARROT_OP_store_lex_sc_nc, /* 967 */ - PARROT_OP_store_dynamic_lex_s_p, /* 968 */ - PARROT_OP_store_dynamic_lex_sc_p, /* 969 */ - PARROT_OP_find_lex_p_s, /* 970 */ - PARROT_OP_find_lex_p_sc, /* 971 */ - PARROT_OP_find_lex_s_s, /* 972 */ - PARROT_OP_find_lex_s_sc, /* 973 */ - PARROT_OP_find_lex_i_s, /* 974 */ - PARROT_OP_find_lex_i_sc, /* 975 */ - PARROT_OP_find_lex_n_s, /* 976 */ - PARROT_OP_find_lex_n_sc, /* 977 */ - PARROT_OP_find_dynamic_lex_p_s, /* 978 */ - PARROT_OP_find_dynamic_lex_p_sc, /* 979 */ - PARROT_OP_find_caller_lex_p_s, /* 980 */ - PARROT_OP_find_caller_lex_p_sc, /* 981 */ - PARROT_OP_get_namespace_p, /* 982 */ - PARROT_OP_get_namespace_p_p, /* 983 */ - PARROT_OP_get_namespace_p_pc, /* 984 */ - PARROT_OP_get_hll_namespace_p, /* 985 */ - PARROT_OP_get_hll_namespace_p_p, /* 986 */ - PARROT_OP_get_hll_namespace_p_pc, /* 987 */ - PARROT_OP_get_root_namespace_p, /* 988 */ - PARROT_OP_get_root_namespace_p_p, /* 989 */ - PARROT_OP_get_root_namespace_p_pc, /* 990 */ - PARROT_OP_get_global_p_s, /* 991 */ - PARROT_OP_get_global_p_sc, /* 992 */ - PARROT_OP_get_global_p_p_s, /* 993 */ - PARROT_OP_get_global_p_pc_s, /* 994 */ - PARROT_OP_get_global_p_p_sc, /* 995 */ - PARROT_OP_get_global_p_pc_sc, /* 996 */ - PARROT_OP_get_hll_global_p_s, /* 997 */ - PARROT_OP_get_hll_global_p_sc, /* 998 */ - PARROT_OP_get_hll_global_p_p_s, /* 999 */ - PARROT_OP_get_hll_global_p_pc_s, /* 1000 */ - PARROT_OP_get_hll_global_p_p_sc, /* 1001 */ - PARROT_OP_get_hll_global_p_pc_sc, /* 1002 */ - PARROT_OP_get_root_global_p_s, /* 1003 */ - PARROT_OP_get_root_global_p_sc, /* 1004 */ - PARROT_OP_get_root_global_p_p_s, /* 1005 */ - PARROT_OP_get_root_global_p_pc_s, /* 1006 */ - PARROT_OP_get_root_global_p_p_sc, /* 1007 */ - PARROT_OP_get_root_global_p_pc_sc, /* 1008 */ - PARROT_OP_set_global_s_p, /* 1009 */ - PARROT_OP_set_global_sc_p, /* 1010 */ - PARROT_OP_set_global_p_s_p, /* 1011 */ - PARROT_OP_set_global_pc_s_p, /* 1012 */ - PARROT_OP_set_global_p_sc_p, /* 1013 */ - PARROT_OP_set_global_pc_sc_p, /* 1014 */ - PARROT_OP_set_hll_global_s_p, /* 1015 */ - PARROT_OP_set_hll_global_sc_p, /* 1016 */ - PARROT_OP_set_hll_global_p_s_p, /* 1017 */ - PARROT_OP_set_hll_global_pc_s_p, /* 1018 */ - PARROT_OP_set_hll_global_p_sc_p, /* 1019 */ - PARROT_OP_set_hll_global_pc_sc_p, /* 1020 */ - PARROT_OP_set_root_global_s_p, /* 1021 */ - PARROT_OP_set_root_global_sc_p, /* 1022 */ - PARROT_OP_set_root_global_p_s_p, /* 1023 */ - PARROT_OP_set_root_global_pc_s_p, /* 1024 */ - PARROT_OP_set_root_global_p_sc_p, /* 1025 */ - PARROT_OP_set_root_global_pc_sc_p, /* 1026 */ - PARROT_OP_find_name_p_s, /* 1027 */ - PARROT_OP_find_name_p_sc, /* 1028 */ - PARROT_OP_find_sub_not_null_p_s, /* 1029 */ - PARROT_OP_find_sub_not_null_p_sc, /* 1030 */ - PARROT_OP_trap, /* 1031 */ - PARROT_OP_set_label_p_ic, /* 1032 */ - PARROT_OP_get_label_i_p, /* 1033 */ - PARROT_OP_get_id_i_p, /* 1034 */ - PARROT_OP_get_id_i_pc, /* 1035 */ - PARROT_OP_fetch_p_p_p_p, /* 1036 */ - PARROT_OP_fetch_p_pc_p_p, /* 1037 */ - PARROT_OP_fetch_p_p_pc_p, /* 1038 */ - PARROT_OP_fetch_p_pc_pc_p, /* 1039 */ - PARROT_OP_fetch_p_p_p_pc, /* 1040 */ - PARROT_OP_fetch_p_pc_p_pc, /* 1041 */ - PARROT_OP_fetch_p_p_pc_pc, /* 1042 */ - PARROT_OP_fetch_p_pc_pc_pc, /* 1043 */ - PARROT_OP_fetch_p_p_i_p, /* 1044 */ - PARROT_OP_fetch_p_pc_i_p, /* 1045 */ - PARROT_OP_fetch_p_p_ic_p, /* 1046 */ - PARROT_OP_fetch_p_pc_ic_p, /* 1047 */ - PARROT_OP_fetch_p_p_i_pc, /* 1048 */ - PARROT_OP_fetch_p_pc_i_pc, /* 1049 */ - PARROT_OP_fetch_p_p_ic_pc, /* 1050 */ - PARROT_OP_fetch_p_pc_ic_pc, /* 1051 */ - PARROT_OP_fetch_p_p_s_p, /* 1052 */ - PARROT_OP_fetch_p_pc_s_p, /* 1053 */ - PARROT_OP_fetch_p_p_sc_p, /* 1054 */ - PARROT_OP_fetch_p_pc_sc_p, /* 1055 */ - PARROT_OP_fetch_p_p_s_pc, /* 1056 */ - PARROT_OP_fetch_p_pc_s_pc, /* 1057 */ - PARROT_OP_fetch_p_p_sc_pc, /* 1058 */ - PARROT_OP_fetch_p_pc_sc_pc, /* 1059 */ - PARROT_OP_vivify_p_p_p_p, /* 1060 */ - PARROT_OP_vivify_p_pc_p_p, /* 1061 */ - PARROT_OP_vivify_p_p_pc_p, /* 1062 */ - PARROT_OP_vivify_p_pc_pc_p, /* 1063 */ - PARROT_OP_vivify_p_p_p_pc, /* 1064 */ - PARROT_OP_vivify_p_pc_p_pc, /* 1065 */ - PARROT_OP_vivify_p_p_pc_pc, /* 1066 */ - PARROT_OP_vivify_p_pc_pc_pc, /* 1067 */ - PARROT_OP_vivify_p_p_i_p, /* 1068 */ - PARROT_OP_vivify_p_pc_i_p, /* 1069 */ - PARROT_OP_vivify_p_p_ic_p, /* 1070 */ - PARROT_OP_vivify_p_pc_ic_p, /* 1071 */ - PARROT_OP_vivify_p_p_i_pc, /* 1072 */ - PARROT_OP_vivify_p_pc_i_pc, /* 1073 */ - PARROT_OP_vivify_p_p_ic_pc, /* 1074 */ - PARROT_OP_vivify_p_pc_ic_pc, /* 1075 */ - PARROT_OP_vivify_p_p_s_p, /* 1076 */ - PARROT_OP_vivify_p_pc_s_p, /* 1077 */ - PARROT_OP_vivify_p_p_sc_p, /* 1078 */ - PARROT_OP_vivify_p_pc_sc_p, /* 1079 */ - PARROT_OP_vivify_p_p_s_pc, /* 1080 */ - PARROT_OP_vivify_p_pc_s_pc, /* 1081 */ - PARROT_OP_vivify_p_p_sc_pc, /* 1082 */ - PARROT_OP_vivify_p_pc_sc_pc, /* 1083 */ - PARROT_OP_new_p_s_i, /* 1084 */ - PARROT_OP_new_p_sc_i, /* 1085 */ - PARROT_OP_new_p_s_ic, /* 1086 */ - PARROT_OP_new_p_sc_ic, /* 1087 */ - PARROT_OP_new_p_p_i, /* 1088 */ - PARROT_OP_new_p_pc_i, /* 1089 */ - PARROT_OP_new_p_p_ic, /* 1090 */ - PARROT_OP_new_p_pc_ic, /* 1091 */ - PARROT_OP_root_new_p_p_i, /* 1092 */ - PARROT_OP_root_new_p_pc_i, /* 1093 */ - PARROT_OP_root_new_p_p_ic, /* 1094 */ - PARROT_OP_root_new_p_pc_ic, /* 1095 */ - PARROT_OP_receive_p, /* 1096 */ - PARROT_OP_wait_p, /* 1097 */ - PARROT_OP_wait_pc, /* 1098 */ - PARROT_OP_pass /* 1099 */ + PARROT_OP_set_runcore_s, /* 91 */ + PARROT_OP_set_runcore_sc, /* 92 */ + PARROT_OP_runinterp_p_i, /* 93 */ + PARROT_OP_runinterp_p_ic, /* 94 */ + PARROT_OP_getinterp_p, /* 95 */ + PARROT_OP_sweep_ic, /* 96 */ + PARROT_OP_collect, /* 97 */ + PARROT_OP_sweepoff, /* 98 */ + PARROT_OP_sweepon, /* 99 */ + PARROT_OP_collectoff, /* 100 */ + PARROT_OP_collecton, /* 101 */ + PARROT_OP_needs_destroy_p, /* 102 */ + PARROT_OP_loadlib_p_s, /* 103 */ + PARROT_OP_loadlib_p_sc, /* 104 */ + PARROT_OP_loadlib_p_s_p, /* 105 */ + PARROT_OP_loadlib_p_sc_p, /* 106 */ + PARROT_OP_loadlib_p_s_pc, /* 107 */ + PARROT_OP_loadlib_p_sc_pc, /* 108 */ + PARROT_OP_dlfunc_p_p_s_s, /* 109 */ + PARROT_OP_dlfunc_p_p_sc_s, /* 110 */ + PARROT_OP_dlfunc_p_p_s_sc, /* 111 */ + PARROT_OP_dlfunc_p_p_sc_sc, /* 112 */ + PARROT_OP_dlfunc_p_p_s_p, /* 113 */ + PARROT_OP_dlfunc_p_p_sc_p, /* 114 */ + PARROT_OP_dlvar_p_p_s, /* 115 */ + PARROT_OP_dlvar_p_p_sc, /* 116 */ + PARROT_OP_compreg_s_p, /* 117 */ + PARROT_OP_compreg_sc_p, /* 118 */ + PARROT_OP_compreg_p_s, /* 119 */ + PARROT_OP_compreg_p_sc, /* 120 */ + PARROT_OP_new_callback_p_p_p_s, /* 121 */ + PARROT_OP_new_callback_p_p_p_sc, /* 122 */ + PARROT_OP_annotations_p, /* 123 */ + PARROT_OP_annotations_p_s, /* 124 */ + PARROT_OP_annotations_p_sc, /* 125 */ + PARROT_OP_band_i_i, /* 126 */ + PARROT_OP_band_i_ic, /* 127 */ + PARROT_OP_band_i_i_i, /* 128 */ + PARROT_OP_band_i_ic_i, /* 129 */ + PARROT_OP_band_i_i_ic, /* 130 */ + PARROT_OP_bor_i_i, /* 131 */ + PARROT_OP_bor_i_ic, /* 132 */ + PARROT_OP_bor_i_i_i, /* 133 */ + PARROT_OP_bor_i_ic_i, /* 134 */ + PARROT_OP_bor_i_i_ic, /* 135 */ + PARROT_OP_shl_i_i, /* 136 */ + PARROT_OP_shl_i_ic, /* 137 */ + PARROT_OP_shl_i_i_i, /* 138 */ + PARROT_OP_shl_i_ic_i, /* 139 */ + PARROT_OP_shl_i_i_ic, /* 140 */ + PARROT_OP_shr_i_i, /* 141 */ + PARROT_OP_shr_i_ic, /* 142 */ + PARROT_OP_shr_i_i_i, /* 143 */ + PARROT_OP_shr_i_ic_i, /* 144 */ + PARROT_OP_shr_i_i_ic, /* 145 */ + PARROT_OP_lsr_i_i, /* 146 */ + PARROT_OP_lsr_i_ic, /* 147 */ + PARROT_OP_lsr_i_i_i, /* 148 */ + PARROT_OP_lsr_i_ic_i, /* 149 */ + PARROT_OP_lsr_i_i_ic, /* 150 */ + PARROT_OP_bxor_i_i, /* 151 */ + PARROT_OP_bxor_i_ic, /* 152 */ + PARROT_OP_bxor_i_i_i, /* 153 */ + PARROT_OP_bxor_i_ic_i, /* 154 */ + PARROT_OP_bxor_i_i_ic, /* 155 */ + PARROT_OP_eq_i_i_ic, /* 156 */ + PARROT_OP_eq_ic_i_ic, /* 157 */ + PARROT_OP_eq_i_ic_ic, /* 158 */ + PARROT_OP_eq_n_n_ic, /* 159 */ + PARROT_OP_eq_nc_n_ic, /* 160 */ + PARROT_OP_eq_n_nc_ic, /* 161 */ + PARROT_OP_eq_s_s_ic, /* 162 */ + PARROT_OP_eq_sc_s_ic, /* 163 */ + PARROT_OP_eq_s_sc_ic, /* 164 */ + PARROT_OP_eq_p_p_ic, /* 165 */ + PARROT_OP_eq_p_i_ic, /* 166 */ + PARROT_OP_eq_p_ic_ic, /* 167 */ + PARROT_OP_eq_p_n_ic, /* 168 */ + PARROT_OP_eq_p_nc_ic, /* 169 */ + PARROT_OP_eq_p_s_ic, /* 170 */ + PARROT_OP_eq_p_sc_ic, /* 171 */ + PARROT_OP_eq_str_p_p_ic, /* 172 */ + PARROT_OP_eq_num_p_p_ic, /* 173 */ + PARROT_OP_eq_addr_s_s_ic, /* 174 */ + PARROT_OP_eq_addr_sc_s_ic, /* 175 */ + PARROT_OP_eq_addr_s_sc_ic, /* 176 */ + PARROT_OP_eq_addr_sc_sc_ic, /* 177 */ + PARROT_OP_eq_addr_p_p_ic, /* 178 */ + PARROT_OP_ne_i_i_ic, /* 179 */ + PARROT_OP_ne_ic_i_ic, /* 180 */ + PARROT_OP_ne_i_ic_ic, /* 181 */ + PARROT_OP_ne_n_n_ic, /* 182 */ + PARROT_OP_ne_nc_n_ic, /* 183 */ + PARROT_OP_ne_n_nc_ic, /* 184 */ + PARROT_OP_ne_s_s_ic, /* 185 */ + PARROT_OP_ne_sc_s_ic, /* 186 */ + PARROT_OP_ne_s_sc_ic, /* 187 */ + PARROT_OP_ne_p_p_ic, /* 188 */ + PARROT_OP_ne_p_i_ic, /* 189 */ + PARROT_OP_ne_p_ic_ic, /* 190 */ + PARROT_OP_ne_p_n_ic, /* 191 */ + PARROT_OP_ne_p_nc_ic, /* 192 */ + PARROT_OP_ne_p_s_ic, /* 193 */ + PARROT_OP_ne_p_sc_ic, /* 194 */ + PARROT_OP_ne_str_p_p_ic, /* 195 */ + PARROT_OP_ne_num_p_p_ic, /* 196 */ + PARROT_OP_ne_addr_s_s_ic, /* 197 */ + PARROT_OP_ne_addr_sc_s_ic, /* 198 */ + PARROT_OP_ne_addr_s_sc_ic, /* 199 */ + PARROT_OP_ne_addr_sc_sc_ic, /* 200 */ + PARROT_OP_ne_addr_p_p_ic, /* 201 */ + PARROT_OP_lt_i_i_ic, /* 202 */ + PARROT_OP_lt_ic_i_ic, /* 203 */ + PARROT_OP_lt_i_ic_ic, /* 204 */ + PARROT_OP_lt_n_n_ic, /* 205 */ + PARROT_OP_lt_nc_n_ic, /* 206 */ + PARROT_OP_lt_n_nc_ic, /* 207 */ + PARROT_OP_lt_s_s_ic, /* 208 */ + PARROT_OP_lt_sc_s_ic, /* 209 */ + PARROT_OP_lt_s_sc_ic, /* 210 */ + PARROT_OP_lt_p_p_ic, /* 211 */ + PARROT_OP_lt_p_i_ic, /* 212 */ + PARROT_OP_lt_p_ic_ic, /* 213 */ + PARROT_OP_lt_p_n_ic, /* 214 */ + PARROT_OP_lt_p_nc_ic, /* 215 */ + PARROT_OP_lt_p_s_ic, /* 216 */ + PARROT_OP_lt_p_sc_ic, /* 217 */ + PARROT_OP_lt_str_p_p_ic, /* 218 */ + PARROT_OP_lt_num_p_p_ic, /* 219 */ + PARROT_OP_le_i_i_ic, /* 220 */ + PARROT_OP_le_ic_i_ic, /* 221 */ + PARROT_OP_le_i_ic_ic, /* 222 */ + PARROT_OP_le_n_n_ic, /* 223 */ + PARROT_OP_le_nc_n_ic, /* 224 */ + PARROT_OP_le_n_nc_ic, /* 225 */ + PARROT_OP_le_s_s_ic, /* 226 */ + PARROT_OP_le_sc_s_ic, /* 227 */ + PARROT_OP_le_s_sc_ic, /* 228 */ + PARROT_OP_le_p_p_ic, /* 229 */ + PARROT_OP_le_p_i_ic, /* 230 */ + PARROT_OP_le_p_ic_ic, /* 231 */ + PARROT_OP_le_p_n_ic, /* 232 */ + PARROT_OP_le_p_nc_ic, /* 233 */ + PARROT_OP_le_p_s_ic, /* 234 */ + PARROT_OP_le_p_sc_ic, /* 235 */ + PARROT_OP_le_str_p_p_ic, /* 236 */ + PARROT_OP_le_num_p_p_ic, /* 237 */ + PARROT_OP_gt_p_p_ic, /* 238 */ + PARROT_OP_gt_p_i_ic, /* 239 */ + PARROT_OP_gt_p_ic_ic, /* 240 */ + PARROT_OP_gt_p_n_ic, /* 241 */ + PARROT_OP_gt_p_nc_ic, /* 242 */ + PARROT_OP_gt_p_s_ic, /* 243 */ + PARROT_OP_gt_p_sc_ic, /* 244 */ + PARROT_OP_gt_str_p_p_ic, /* 245 */ + PARROT_OP_gt_num_p_p_ic, /* 246 */ + PARROT_OP_ge_p_p_ic, /* 247 */ + PARROT_OP_ge_p_i_ic, /* 248 */ + PARROT_OP_ge_p_ic_ic, /* 249 */ + PARROT_OP_ge_p_n_ic, /* 250 */ + PARROT_OP_ge_p_nc_ic, /* 251 */ + PARROT_OP_ge_p_s_ic, /* 252 */ + PARROT_OP_ge_p_sc_ic, /* 253 */ + PARROT_OP_ge_str_p_p_ic, /* 254 */ + PARROT_OP_ge_num_p_p_ic, /* 255 */ + PARROT_OP_if_null_p_ic, /* 256 */ + PARROT_OP_if_null_s_ic, /* 257 */ + PARROT_OP_unless_null_p_ic, /* 258 */ + PARROT_OP_unless_null_s_ic, /* 259 */ + PARROT_OP_cmp_i_i_i, /* 260 */ + PARROT_OP_cmp_i_ic_i, /* 261 */ + PARROT_OP_cmp_i_i_ic, /* 262 */ + PARROT_OP_cmp_i_n_n, /* 263 */ + PARROT_OP_cmp_i_nc_n, /* 264 */ + PARROT_OP_cmp_i_n_nc, /* 265 */ + PARROT_OP_cmp_i_s_s, /* 266 */ + PARROT_OP_cmp_i_sc_s, /* 267 */ + PARROT_OP_cmp_i_s_sc, /* 268 */ + PARROT_OP_cmp_i_p_p, /* 269 */ + PARROT_OP_cmp_i_p_i, /* 270 */ + PARROT_OP_cmp_i_p_ic, /* 271 */ + PARROT_OP_cmp_i_p_n, /* 272 */ + PARROT_OP_cmp_i_p_nc, /* 273 */ + PARROT_OP_cmp_i_p_s, /* 274 */ + PARROT_OP_cmp_i_p_sc, /* 275 */ + PARROT_OP_cmp_str_i_p_p, /* 276 */ + PARROT_OP_cmp_num_i_p_p, /* 277 */ + PARROT_OP_cmp_pmc_p_p_p, /* 278 */ + PARROT_OP_issame_i_p_p, /* 279 */ + PARROT_OP_issame_i_s_s, /* 280 */ + PARROT_OP_issame_i_sc_s, /* 281 */ + PARROT_OP_issame_i_s_sc, /* 282 */ + PARROT_OP_issame_i_sc_sc, /* 283 */ + PARROT_OP_isntsame_i_p_p, /* 284 */ + PARROT_OP_isntsame_i_s_s, /* 285 */ + PARROT_OP_isntsame_i_sc_s, /* 286 */ + PARROT_OP_isntsame_i_s_sc, /* 287 */ + PARROT_OP_isntsame_i_sc_sc, /* 288 */ + PARROT_OP_istrue_i_p, /* 289 */ + PARROT_OP_isfalse_i_p, /* 290 */ + PARROT_OP_isnull_i_p, /* 291 */ + PARROT_OP_isnull_i_pc, /* 292 */ + PARROT_OP_isnull_i_s, /* 293 */ + PARROT_OP_isnull_i_sc, /* 294 */ + PARROT_OP_isgt_i_p_p, /* 295 */ + PARROT_OP_isge_i_p_p, /* 296 */ + PARROT_OP_isle_i_i_i, /* 297 */ + PARROT_OP_isle_i_ic_i, /* 298 */ + PARROT_OP_isle_i_i_ic, /* 299 */ + PARROT_OP_isle_i_n_n, /* 300 */ + PARROT_OP_isle_i_nc_n, /* 301 */ + PARROT_OP_isle_i_n_nc, /* 302 */ + PARROT_OP_isle_i_s_s, /* 303 */ + PARROT_OP_isle_i_sc_s, /* 304 */ + PARROT_OP_isle_i_s_sc, /* 305 */ + PARROT_OP_isle_i_p_p, /* 306 */ + PARROT_OP_islt_i_i_i, /* 307 */ + PARROT_OP_islt_i_ic_i, /* 308 */ + PARROT_OP_islt_i_i_ic, /* 309 */ + PARROT_OP_islt_i_n_n, /* 310 */ + PARROT_OP_islt_i_nc_n, /* 311 */ + PARROT_OP_islt_i_n_nc, /* 312 */ + PARROT_OP_islt_i_s_s, /* 313 */ + PARROT_OP_islt_i_sc_s, /* 314 */ + PARROT_OP_islt_i_s_sc, /* 315 */ + PARROT_OP_islt_i_p_p, /* 316 */ + PARROT_OP_iseq_i_i_i, /* 317 */ + PARROT_OP_iseq_i_ic_i, /* 318 */ + PARROT_OP_iseq_i_i_ic, /* 319 */ + PARROT_OP_iseq_i_n_n, /* 320 */ + PARROT_OP_iseq_i_nc_n, /* 321 */ + PARROT_OP_iseq_i_n_nc, /* 322 */ + PARROT_OP_iseq_i_s_s, /* 323 */ + PARROT_OP_iseq_i_sc_s, /* 324 */ + PARROT_OP_iseq_i_s_sc, /* 325 */ + PARROT_OP_iseq_i_p_p, /* 326 */ + PARROT_OP_isne_i_i_i, /* 327 */ + PARROT_OP_isne_i_ic_i, /* 328 */ + PARROT_OP_isne_i_i_ic, /* 329 */ + PARROT_OP_isne_i_n_n, /* 330 */ + PARROT_OP_isne_i_nc_n, /* 331 */ + PARROT_OP_isne_i_n_nc, /* 332 */ + PARROT_OP_isne_i_s_s, /* 333 */ + PARROT_OP_isne_i_sc_s, /* 334 */ + PARROT_OP_isne_i_s_sc, /* 335 */ + PARROT_OP_isne_i_p_p, /* 336 */ + PARROT_OP_and_i_i_i, /* 337 */ + PARROT_OP_and_i_ic_i, /* 338 */ + PARROT_OP_and_i_i_ic, /* 339 */ + PARROT_OP_and_p_p_p, /* 340 */ + PARROT_OP_not_i, /* 341 */ + PARROT_OP_not_i_i, /* 342 */ + PARROT_OP_not_p, /* 343 */ + PARROT_OP_not_p_p, /* 344 */ + PARROT_OP_or_i_i_i, /* 345 */ + PARROT_OP_or_i_ic_i, /* 346 */ + PARROT_OP_or_i_i_ic, /* 347 */ + PARROT_OP_or_p_p_p, /* 348 */ + PARROT_OP_xor_i_i_i, /* 349 */ + PARROT_OP_xor_i_ic_i, /* 350 */ + PARROT_OP_xor_i_i_ic, /* 351 */ + PARROT_OP_xor_p_p_p, /* 352 */ + PARROT_OP_print_i, /* 353 */ + PARROT_OP_print_ic, /* 354 */ + PARROT_OP_print_n, /* 355 */ + PARROT_OP_print_nc, /* 356 */ + PARROT_OP_print_s, /* 357 */ + PARROT_OP_print_sc, /* 358 */ + PARROT_OP_print_p, /* 359 */ + PARROT_OP_say_i, /* 360 */ + PARROT_OP_say_ic, /* 361 */ + PARROT_OP_say_n, /* 362 */ + PARROT_OP_say_nc, /* 363 */ + PARROT_OP_say_s, /* 364 */ + PARROT_OP_say_sc, /* 365 */ + PARROT_OP_say_p, /* 366 */ + PARROT_OP_print_p_i, /* 367 */ + PARROT_OP_print_p_ic, /* 368 */ + PARROT_OP_print_p_n, /* 369 */ + PARROT_OP_print_p_nc, /* 370 */ + PARROT_OP_print_p_s, /* 371 */ + PARROT_OP_print_p_sc, /* 372 */ + PARROT_OP_print_p_p, /* 373 */ + PARROT_OP_getstdin_p, /* 374 */ + PARROT_OP_getstdout_p, /* 375 */ + PARROT_OP_getstderr_p, /* 376 */ + PARROT_OP_abs_i, /* 377 */ + PARROT_OP_abs_n, /* 378 */ + PARROT_OP_abs_i_i, /* 379 */ + PARROT_OP_abs_n_n, /* 380 */ + PARROT_OP_abs_p, /* 381 */ + PARROT_OP_abs_p_p, /* 382 */ + PARROT_OP_add_i_i, /* 383 */ + PARROT_OP_add_i_ic, /* 384 */ + PARROT_OP_add_n_n, /* 385 */ + PARROT_OP_add_n_nc, /* 386 */ + PARROT_OP_add_p_p, /* 387 */ + PARROT_OP_add_p_i, /* 388 */ + PARROT_OP_add_p_ic, /* 389 */ + PARROT_OP_add_p_n, /* 390 */ + PARROT_OP_add_p_nc, /* 391 */ + PARROT_OP_add_i_i_i, /* 392 */ + PARROT_OP_add_i_ic_i, /* 393 */ + PARROT_OP_add_i_i_ic, /* 394 */ + PARROT_OP_add_n_n_n, /* 395 */ + PARROT_OP_add_n_nc_n, /* 396 */ + PARROT_OP_add_n_n_nc, /* 397 */ + PARROT_OP_add_p_p_p, /* 398 */ + PARROT_OP_add_p_p_i, /* 399 */ + PARROT_OP_add_p_p_ic, /* 400 */ + PARROT_OP_add_p_p_n, /* 401 */ + PARROT_OP_add_p_p_nc, /* 402 */ + PARROT_OP_dec_i, /* 403 */ + PARROT_OP_dec_n, /* 404 */ + PARROT_OP_dec_p, /* 405 */ + PARROT_OP_div_i_i, /* 406 */ + PARROT_OP_div_i_ic, /* 407 */ + PARROT_OP_div_n_n, /* 408 */ + PARROT_OP_div_n_nc, /* 409 */ + PARROT_OP_div_p_p, /* 410 */ + PARROT_OP_div_p_i, /* 411 */ + PARROT_OP_div_p_ic, /* 412 */ + PARROT_OP_div_p_n, /* 413 */ + PARROT_OP_div_p_nc, /* 414 */ + PARROT_OP_div_i_i_i, /* 415 */ + PARROT_OP_div_i_ic_i, /* 416 */ + PARROT_OP_div_i_i_ic, /* 417 */ + PARROT_OP_div_i_ic_ic, /* 418 */ + PARROT_OP_div_n_n_n, /* 419 */ + PARROT_OP_div_n_nc_n, /* 420 */ + PARROT_OP_div_n_n_nc, /* 421 */ + PARROT_OP_div_n_nc_nc, /* 422 */ + PARROT_OP_div_p_p_p, /* 423 */ + PARROT_OP_div_p_p_i, /* 424 */ + PARROT_OP_div_p_p_ic, /* 425 */ + PARROT_OP_div_p_p_n, /* 426 */ + PARROT_OP_div_p_p_nc, /* 427 */ + PARROT_OP_fdiv_i_i, /* 428 */ + PARROT_OP_fdiv_i_ic, /* 429 */ + PARROT_OP_fdiv_n_n, /* 430 */ + PARROT_OP_fdiv_n_nc, /* 431 */ + PARROT_OP_fdiv_p_p, /* 432 */ + PARROT_OP_fdiv_p_i, /* 433 */ + PARROT_OP_fdiv_p_ic, /* 434 */ + PARROT_OP_fdiv_p_n, /* 435 */ + PARROT_OP_fdiv_p_nc, /* 436 */ + PARROT_OP_fdiv_i_i_i, /* 437 */ + PARROT_OP_fdiv_i_ic_i, /* 438 */ + PARROT_OP_fdiv_i_i_ic, /* 439 */ + PARROT_OP_fdiv_n_n_n, /* 440 */ + PARROT_OP_fdiv_n_nc_n, /* 441 */ + PARROT_OP_fdiv_n_n_nc, /* 442 */ + PARROT_OP_fdiv_p_p_p, /* 443 */ + PARROT_OP_fdiv_p_p_i, /* 444 */ + PARROT_OP_fdiv_p_p_ic, /* 445 */ + PARROT_OP_fdiv_p_p_n, /* 446 */ + PARROT_OP_fdiv_p_p_nc, /* 447 */ + PARROT_OP_ceil_n, /* 448 */ + PARROT_OP_ceil_i_n, /* 449 */ + PARROT_OP_ceil_n_n, /* 450 */ + PARROT_OP_floor_n, /* 451 */ + PARROT_OP_floor_i_n, /* 452 */ + PARROT_OP_floor_n_n, /* 453 */ + PARROT_OP_inc_i, /* 454 */ + PARROT_OP_inc_n, /* 455 */ + PARROT_OP_inc_p, /* 456 */ + PARROT_OP_mod_i_i, /* 457 */ + PARROT_OP_mod_i_ic, /* 458 */ + PARROT_OP_mod_n_n, /* 459 */ + PARROT_OP_mod_n_nc, /* 460 */ + PARROT_OP_mod_p_p, /* 461 */ + PARROT_OP_mod_p_i, /* 462 */ + PARROT_OP_mod_p_ic, /* 463 */ + PARROT_OP_mod_p_n, /* 464 */ + PARROT_OP_mod_p_nc, /* 465 */ + PARROT_OP_mod_i_i_i, /* 466 */ + PARROT_OP_mod_i_ic_i, /* 467 */ + PARROT_OP_mod_i_i_ic, /* 468 */ + PARROT_OP_mod_n_n_n, /* 469 */ + PARROT_OP_mod_n_nc_n, /* 470 */ + PARROT_OP_mod_n_n_nc, /* 471 */ + PARROT_OP_mod_p_p_p, /* 472 */ + PARROT_OP_mod_p_p_i, /* 473 */ + PARROT_OP_mod_p_p_ic, /* 474 */ + PARROT_OP_mod_p_p_n, /* 475 */ + PARROT_OP_mod_p_p_nc, /* 476 */ + PARROT_OP_mul_i_i, /* 477 */ + PARROT_OP_mul_i_ic, /* 478 */ + PARROT_OP_mul_n_n, /* 479 */ + PARROT_OP_mul_n_nc, /* 480 */ + PARROT_OP_mul_p_p, /* 481 */ + PARROT_OP_mul_p_i, /* 482 */ + PARROT_OP_mul_p_ic, /* 483 */ + PARROT_OP_mul_p_n, /* 484 */ + PARROT_OP_mul_p_nc, /* 485 */ + PARROT_OP_mul_i_i_i, /* 486 */ + PARROT_OP_mul_i_ic_i, /* 487 */ + PARROT_OP_mul_i_i_ic, /* 488 */ + PARROT_OP_mul_n_n_n, /* 489 */ + PARROT_OP_mul_n_nc_n, /* 490 */ + PARROT_OP_mul_n_n_nc, /* 491 */ + PARROT_OP_mul_p_p_p, /* 492 */ + PARROT_OP_mul_p_p_i, /* 493 */ + PARROT_OP_mul_p_p_ic, /* 494 */ + PARROT_OP_mul_p_p_n, /* 495 */ + PARROT_OP_mul_p_p_nc, /* 496 */ + PARROT_OP_neg_i, /* 497 */ + PARROT_OP_neg_n, /* 498 */ + PARROT_OP_neg_p, /* 499 */ + PARROT_OP_neg_i_i, /* 500 */ + PARROT_OP_neg_n_n, /* 501 */ + PARROT_OP_neg_p_p, /* 502 */ + PARROT_OP_sub_i_i, /* 503 */ + PARROT_OP_sub_i_ic, /* 504 */ + PARROT_OP_sub_n_n, /* 505 */ + PARROT_OP_sub_n_nc, /* 506 */ + PARROT_OP_sub_p_p, /* 507 */ + PARROT_OP_sub_p_i, /* 508 */ + PARROT_OP_sub_p_ic, /* 509 */ + PARROT_OP_sub_p_n, /* 510 */ + PARROT_OP_sub_p_nc, /* 511 */ + PARROT_OP_sub_i_i_i, /* 512 */ + PARROT_OP_sub_i_ic_i, /* 513 */ + PARROT_OP_sub_i_i_ic, /* 514 */ + PARROT_OP_sub_n_n_n, /* 515 */ + PARROT_OP_sub_n_nc_n, /* 516 */ + PARROT_OP_sub_n_n_nc, /* 517 */ + PARROT_OP_sub_p_p_p, /* 518 */ + PARROT_OP_sub_p_p_i, /* 519 */ + PARROT_OP_sub_p_p_ic, /* 520 */ + PARROT_OP_sub_p_p_n, /* 521 */ + PARROT_OP_sub_p_p_nc, /* 522 */ + PARROT_OP_sqrt_n_n, /* 523 */ + PARROT_OP_callmethodcc_p_s, /* 524 */ + PARROT_OP_callmethodcc_p_sc, /* 525 */ + PARROT_OP_callmethodcc_p_p, /* 526 */ + PARROT_OP_callmethod_p_s_p, /* 527 */ + PARROT_OP_callmethod_p_sc_p, /* 528 */ + PARROT_OP_callmethod_p_p_p, /* 529 */ + PARROT_OP_tailcallmethod_p_s, /* 530 */ + PARROT_OP_tailcallmethod_p_sc, /* 531 */ + PARROT_OP_tailcallmethod_p_p, /* 532 */ + PARROT_OP_addmethod_p_s_p, /* 533 */ + PARROT_OP_addmethod_p_sc_p, /* 534 */ + PARROT_OP_can_i_p_s, /* 535 */ + PARROT_OP_can_i_p_sc, /* 536 */ + PARROT_OP_does_i_p_s, /* 537 */ + PARROT_OP_does_i_p_sc, /* 538 */ + PARROT_OP_does_i_p_p, /* 539 */ + PARROT_OP_does_i_p_pc, /* 540 */ + PARROT_OP_isa_i_p_s, /* 541 */ + PARROT_OP_isa_i_p_sc, /* 542 */ + PARROT_OP_isa_i_p_p, /* 543 */ + PARROT_OP_isa_i_p_pc, /* 544 */ + PARROT_OP_newclass_p_s, /* 545 */ + PARROT_OP_newclass_p_sc, /* 546 */ + PARROT_OP_newclass_p_p, /* 547 */ + PARROT_OP_newclass_p_pc, /* 548 */ + PARROT_OP_subclass_p_p, /* 549 */ + PARROT_OP_subclass_p_pc, /* 550 */ + PARROT_OP_subclass_p_p_s, /* 551 */ + PARROT_OP_subclass_p_pc_s, /* 552 */ + PARROT_OP_subclass_p_p_sc, /* 553 */ + PARROT_OP_subclass_p_pc_sc, /* 554 */ + PARROT_OP_subclass_p_p_p, /* 555 */ + PARROT_OP_subclass_p_pc_p, /* 556 */ + PARROT_OP_subclass_p_p_pc, /* 557 */ + PARROT_OP_subclass_p_pc_pc, /* 558 */ + PARROT_OP_subclass_p_s, /* 559 */ + PARROT_OP_subclass_p_sc, /* 560 */ + PARROT_OP_subclass_p_s_s, /* 561 */ + PARROT_OP_subclass_p_sc_s, /* 562 */ + PARROT_OP_subclass_p_s_sc, /* 563 */ + PARROT_OP_subclass_p_sc_sc, /* 564 */ + PARROT_OP_subclass_p_s_p, /* 565 */ + PARROT_OP_subclass_p_sc_p, /* 566 */ + PARROT_OP_subclass_p_s_pc, /* 567 */ + PARROT_OP_subclass_p_sc_pc, /* 568 */ + PARROT_OP_get_class_p_s, /* 569 */ + PARROT_OP_get_class_p_sc, /* 570 */ + PARROT_OP_get_class_p_p, /* 571 */ + PARROT_OP_get_class_p_pc, /* 572 */ + PARROT_OP_class_p_p, /* 573 */ + PARROT_OP_addparent_p_p, /* 574 */ + PARROT_OP_removeparent_p_p, /* 575 */ + PARROT_OP_addrole_p_p, /* 576 */ + PARROT_OP_addattribute_p_s, /* 577 */ + PARROT_OP_addattribute_p_sc, /* 578 */ + PARROT_OP_removeattribute_p_s, /* 579 */ + PARROT_OP_removeattribute_p_sc, /* 580 */ + PARROT_OP_getattribute_p_p_s, /* 581 */ + PARROT_OP_getattribute_p_p_sc, /* 582 */ + PARROT_OP_getattribute_p_p_p_s, /* 583 */ + PARROT_OP_getattribute_p_p_pc_s, /* 584 */ + PARROT_OP_getattribute_p_p_p_sc, /* 585 */ + PARROT_OP_getattribute_p_p_pc_sc, /* 586 */ + PARROT_OP_setattribute_p_s_p, /* 587 */ + PARROT_OP_setattribute_p_sc_p, /* 588 */ + PARROT_OP_setattribute_p_p_s_p, /* 589 */ + PARROT_OP_setattribute_p_pc_s_p, /* 590 */ + PARROT_OP_setattribute_p_p_sc_p, /* 591 */ + PARROT_OP_setattribute_p_pc_sc_p, /* 592 */ + PARROT_OP_inspect_p_p, /* 593 */ + PARROT_OP_inspect_p_pc, /* 594 */ + PARROT_OP_inspect_p_p_s, /* 595 */ + PARROT_OP_inspect_p_pc_s, /* 596 */ + PARROT_OP_inspect_p_p_sc, /* 597 */ + PARROT_OP_inspect_p_pc_sc, /* 598 */ + PARROT_OP_new_p_s, /* 599 */ + PARROT_OP_new_p_sc, /* 600 */ + PARROT_OP_new_p_s_p, /* 601 */ + PARROT_OP_new_p_sc_p, /* 602 */ + PARROT_OP_new_p_s_pc, /* 603 */ + PARROT_OP_new_p_sc_pc, /* 604 */ + PARROT_OP_new_p_p, /* 605 */ + PARROT_OP_new_p_pc, /* 606 */ + PARROT_OP_new_p_p_p, /* 607 */ + PARROT_OP_new_p_pc_p, /* 608 */ + PARROT_OP_new_p_p_pc, /* 609 */ + PARROT_OP_new_p_pc_pc, /* 610 */ + PARROT_OP_root_new_p_p, /* 611 */ + PARROT_OP_root_new_p_pc, /* 612 */ + PARROT_OP_root_new_p_p_p, /* 613 */ + PARROT_OP_root_new_p_pc_p, /* 614 */ + PARROT_OP_root_new_p_p_pc, /* 615 */ + PARROT_OP_root_new_p_pc_pc, /* 616 */ + PARROT_OP_typeof_s_p, /* 617 */ + PARROT_OP_typeof_p_p, /* 618 */ + PARROT_OP_get_repr_s_p, /* 619 */ + PARROT_OP_find_method_p_p_s, /* 620 */ + PARROT_OP_find_method_p_p_sc, /* 621 */ + PARROT_OP_defined_i_p, /* 622 */ + PARROT_OP_defined_i_p_ki, /* 623 */ + PARROT_OP_defined_i_p_kic, /* 624 */ + PARROT_OP_defined_i_p_k, /* 625 */ + PARROT_OP_defined_i_p_kc, /* 626 */ + PARROT_OP_exists_i_p_ki, /* 627 */ + PARROT_OP_exists_i_p_kic, /* 628 */ + PARROT_OP_exists_i_p_k, /* 629 */ + PARROT_OP_exists_i_p_kc, /* 630 */ + PARROT_OP_delete_p_k, /* 631 */ + PARROT_OP_delete_p_kc, /* 632 */ + PARROT_OP_delete_p_ki, /* 633 */ + PARROT_OP_delete_p_kic, /* 634 */ + PARROT_OP_elements_i_p, /* 635 */ + PARROT_OP_push_p_i, /* 636 */ + PARROT_OP_push_p_ic, /* 637 */ + PARROT_OP_push_p_n, /* 638 */ + PARROT_OP_push_p_nc, /* 639 */ + PARROT_OP_push_p_s, /* 640 */ + PARROT_OP_push_p_sc, /* 641 */ + PARROT_OP_push_p_p, /* 642 */ + PARROT_OP_pop_i_p, /* 643 */ + PARROT_OP_pop_n_p, /* 644 */ + PARROT_OP_pop_s_p, /* 645 */ + PARROT_OP_pop_p_p, /* 646 */ + PARROT_OP_unshift_p_i, /* 647 */ + PARROT_OP_unshift_p_ic, /* 648 */ + PARROT_OP_unshift_p_n, /* 649 */ + PARROT_OP_unshift_p_nc, /* 650 */ + PARROT_OP_unshift_p_s, /* 651 */ + PARROT_OP_unshift_p_sc, /* 652 */ + PARROT_OP_unshift_p_p, /* 653 */ + PARROT_OP_shift_i_p, /* 654 */ + PARROT_OP_shift_n_p, /* 655 */ + PARROT_OP_shift_s_p, /* 656 */ + PARROT_OP_shift_p_p, /* 657 */ + PARROT_OP_splice_p_p_i_i, /* 658 */ + PARROT_OP_splice_p_p_ic_i, /* 659 */ + PARROT_OP_splice_p_p_i_ic, /* 660 */ + PARROT_OP_splice_p_p_ic_ic, /* 661 */ + PARROT_OP_setprop_p_s_p, /* 662 */ + PARROT_OP_setprop_p_sc_p, /* 663 */ + PARROT_OP_getprop_p_s_p, /* 664 */ + PARROT_OP_getprop_p_sc_p, /* 665 */ + PARROT_OP_delprop_p_s, /* 666 */ + PARROT_OP_delprop_p_sc, /* 667 */ + PARROT_OP_prophash_p_p, /* 668 */ + PARROT_OP_freeze_s_p, /* 669 */ + PARROT_OP_thaw_p_s, /* 670 */ + PARROT_OP_thaw_p_sc, /* 671 */ + PARROT_OP_add_multi_s_s_p, /* 672 */ + PARROT_OP_add_multi_sc_s_p, /* 673 */ + PARROT_OP_add_multi_s_sc_p, /* 674 */ + PARROT_OP_add_multi_sc_sc_p, /* 675 */ + PARROT_OP_find_multi_p_s_s, /* 676 */ + PARROT_OP_find_multi_p_sc_s, /* 677 */ + PARROT_OP_find_multi_p_s_sc, /* 678 */ + PARROT_OP_find_multi_p_sc_sc, /* 679 */ + PARROT_OP_register_p, /* 680 */ + PARROT_OP_unregister_p, /* 681 */ + PARROT_OP_box_p_i, /* 682 */ + PARROT_OP_box_p_ic, /* 683 */ + PARROT_OP_box_p_n, /* 684 */ + PARROT_OP_box_p_nc, /* 685 */ + PARROT_OP_box_p_s, /* 686 */ + PARROT_OP_box_p_sc, /* 687 */ + PARROT_OP_iter_p_p, /* 688 */ + PARROT_OP_morph_p_p, /* 689 */ + PARROT_OP_morph_p_pc, /* 690 */ + PARROT_OP_clone_s_s, /* 691 */ + PARROT_OP_clone_s_sc, /* 692 */ + PARROT_OP_set_i_i, /* 693 */ + PARROT_OP_set_i_ic, /* 694 */ + PARROT_OP_set_i_n, /* 695 */ + PARROT_OP_set_i_nc, /* 696 */ + PARROT_OP_set_i_s, /* 697 */ + PARROT_OP_set_i_sc, /* 698 */ + PARROT_OP_set_n_n, /* 699 */ + PARROT_OP_set_n_nc, /* 700 */ + PARROT_OP_set_n_i, /* 701 */ + PARROT_OP_set_n_ic, /* 702 */ + PARROT_OP_set_n_s, /* 703 */ + PARROT_OP_set_n_sc, /* 704 */ + PARROT_OP_set_n_p, /* 705 */ + PARROT_OP_set_s_p, /* 706 */ + PARROT_OP_set_s_s, /* 707 */ + PARROT_OP_set_s_sc, /* 708 */ + PARROT_OP_set_s_i, /* 709 */ + PARROT_OP_set_s_ic, /* 710 */ + PARROT_OP_set_s_n, /* 711 */ + PARROT_OP_set_s_nc, /* 712 */ + PARROT_OP_set_p_pc, /* 713 */ + PARROT_OP_set_p_p, /* 714 */ + PARROT_OP_set_p_i, /* 715 */ + PARROT_OP_set_p_ic, /* 716 */ + PARROT_OP_set_p_n, /* 717 */ + PARROT_OP_set_p_nc, /* 718 */ + PARROT_OP_set_p_s, /* 719 */ + PARROT_OP_set_p_sc, /* 720 */ + PARROT_OP_set_i_p, /* 721 */ + PARROT_OP_assign_p_p, /* 722 */ + PARROT_OP_assign_p_i, /* 723 */ + PARROT_OP_assign_p_ic, /* 724 */ + PARROT_OP_assign_p_n, /* 725 */ + PARROT_OP_assign_p_nc, /* 726 */ + PARROT_OP_assign_p_s, /* 727 */ + PARROT_OP_assign_p_sc, /* 728 */ + PARROT_OP_assign_s_s, /* 729 */ + PARROT_OP_assign_s_sc, /* 730 */ + PARROT_OP_setref_p_p, /* 731 */ + PARROT_OP_deref_p_p, /* 732 */ + PARROT_OP_set_p_ki_i, /* 733 */ + PARROT_OP_set_p_kic_i, /* 734 */ + PARROT_OP_set_p_ki_ic, /* 735 */ + PARROT_OP_set_p_kic_ic, /* 736 */ + PARROT_OP_set_p_ki_n, /* 737 */ + PARROT_OP_set_p_kic_n, /* 738 */ + PARROT_OP_set_p_ki_nc, /* 739 */ + PARROT_OP_set_p_kic_nc, /* 740 */ + PARROT_OP_set_p_ki_s, /* 741 */ + PARROT_OP_set_p_kic_s, /* 742 */ + PARROT_OP_set_p_ki_sc, /* 743 */ + PARROT_OP_set_p_kic_sc, /* 744 */ + PARROT_OP_set_p_ki_p, /* 745 */ + PARROT_OP_set_p_kic_p, /* 746 */ + PARROT_OP_set_i_p_ki, /* 747 */ + PARROT_OP_set_i_p_kic, /* 748 */ + PARROT_OP_set_n_p_ki, /* 749 */ + PARROT_OP_set_n_p_kic, /* 750 */ + PARROT_OP_set_s_p_ki, /* 751 */ + PARROT_OP_set_s_p_kic, /* 752 */ + PARROT_OP_set_p_p_ki, /* 753 */ + PARROT_OP_set_p_p_kic, /* 754 */ + PARROT_OP_set_p_k_i, /* 755 */ + PARROT_OP_set_p_kc_i, /* 756 */ + PARROT_OP_set_p_k_ic, /* 757 */ + PARROT_OP_set_p_kc_ic, /* 758 */ + PARROT_OP_set_p_k_n, /* 759 */ + PARROT_OP_set_p_kc_n, /* 760 */ + PARROT_OP_set_p_k_nc, /* 761 */ + PARROT_OP_set_p_kc_nc, /* 762 */ + PARROT_OP_set_p_k_s, /* 763 */ + PARROT_OP_set_p_kc_s, /* 764 */ + PARROT_OP_set_p_k_sc, /* 765 */ + PARROT_OP_set_p_kc_sc, /* 766 */ + PARROT_OP_set_p_k_p, /* 767 */ + PARROT_OP_set_p_kc_p, /* 768 */ + PARROT_OP_set_i_p_k, /* 769 */ + PARROT_OP_set_i_p_kc, /* 770 */ + PARROT_OP_set_n_p_k, /* 771 */ + PARROT_OP_set_n_p_kc, /* 772 */ + PARROT_OP_set_s_p_k, /* 773 */ + PARROT_OP_set_s_p_kc, /* 774 */ + PARROT_OP_set_p_p_k, /* 775 */ + PARROT_OP_set_p_p_kc, /* 776 */ + PARROT_OP_clone_p_p, /* 777 */ + PARROT_OP_clone_p_p_p, /* 778 */ + PARROT_OP_clone_p_p_pc, /* 779 */ + PARROT_OP_copy_p_p, /* 780 */ + PARROT_OP_null_s, /* 781 */ + PARROT_OP_null_i, /* 782 */ + PARROT_OP_null_p, /* 783 */ + PARROT_OP_null_n, /* 784 */ + PARROT_OP_ord_i_s, /* 785 */ + PARROT_OP_ord_i_sc, /* 786 */ + PARROT_OP_ord_i_s_i, /* 787 */ + PARROT_OP_ord_i_sc_i, /* 788 */ + PARROT_OP_ord_i_s_ic, /* 789 */ + PARROT_OP_ord_i_sc_ic, /* 790 */ + PARROT_OP_chr_s_i, /* 791 */ + PARROT_OP_chr_s_ic, /* 792 */ + PARROT_OP_chopn_s_s_i, /* 793 */ + PARROT_OP_chopn_s_sc_i, /* 794 */ + PARROT_OP_chopn_s_s_ic, /* 795 */ + PARROT_OP_chopn_s_sc_ic, /* 796 */ + PARROT_OP_concat_p_p, /* 797 */ + PARROT_OP_concat_p_s, /* 798 */ + PARROT_OP_concat_p_sc, /* 799 */ + PARROT_OP_concat_s_s_s, /* 800 */ + PARROT_OP_concat_s_sc_s, /* 801 */ + PARROT_OP_concat_s_s_sc, /* 802 */ + PARROT_OP_concat_p_p_s, /* 803 */ + PARROT_OP_concat_p_p_sc, /* 804 */ + PARROT_OP_concat_p_p_p, /* 805 */ + PARROT_OP_repeat_s_s_i, /* 806 */ + PARROT_OP_repeat_s_sc_i, /* 807 */ + PARROT_OP_repeat_s_s_ic, /* 808 */ + PARROT_OP_repeat_s_sc_ic, /* 809 */ + PARROT_OP_repeat_p_p_i, /* 810 */ + PARROT_OP_repeat_p_p_ic, /* 811 */ + PARROT_OP_repeat_p_p_p, /* 812 */ + PARROT_OP_repeat_p_i, /* 813 */ + PARROT_OP_repeat_p_ic, /* 814 */ + PARROT_OP_repeat_p_p, /* 815 */ + PARROT_OP_length_i_s, /* 816 */ + PARROT_OP_length_i_sc, /* 817 */ + PARROT_OP_bytelength_i_s, /* 818 */ + PARROT_OP_bytelength_i_sc, /* 819 */ + PARROT_OP_pin_s, /* 820 */ + PARROT_OP_unpin_s, /* 821 */ + PARROT_OP_substr_s_s_i, /* 822 */ + PARROT_OP_substr_s_sc_i, /* 823 */ + PARROT_OP_substr_s_s_ic, /* 824 */ + PARROT_OP_substr_s_sc_ic, /* 825 */ + PARROT_OP_substr_s_s_i_i, /* 826 */ + PARROT_OP_substr_s_sc_i_i, /* 827 */ + PARROT_OP_substr_s_s_ic_i, /* 828 */ + PARROT_OP_substr_s_sc_ic_i, /* 829 */ + PARROT_OP_substr_s_s_i_ic, /* 830 */ + PARROT_OP_substr_s_sc_i_ic, /* 831 */ + PARROT_OP_substr_s_s_ic_ic, /* 832 */ + PARROT_OP_substr_s_sc_ic_ic, /* 833 */ + PARROT_OP_substr_s_p_i_i, /* 834 */ + PARROT_OP_substr_s_p_ic_i, /* 835 */ + PARROT_OP_substr_s_p_i_ic, /* 836 */ + PARROT_OP_substr_s_p_ic_ic, /* 837 */ + PARROT_OP_replace_s_s_i_i_s, /* 838 */ + PARROT_OP_replace_s_sc_i_i_s, /* 839 */ + PARROT_OP_replace_s_s_ic_i_s, /* 840 */ + PARROT_OP_replace_s_sc_ic_i_s, /* 841 */ + PARROT_OP_replace_s_s_i_ic_s, /* 842 */ + PARROT_OP_replace_s_sc_i_ic_s, /* 843 */ + PARROT_OP_replace_s_s_ic_ic_s, /* 844 */ + PARROT_OP_replace_s_sc_ic_ic_s, /* 845 */ + PARROT_OP_replace_s_s_i_i_sc, /* 846 */ + PARROT_OP_replace_s_sc_i_i_sc, /* 847 */ + PARROT_OP_replace_s_s_ic_i_sc, /* 848 */ + PARROT_OP_replace_s_sc_ic_i_sc, /* 849 */ + PARROT_OP_replace_s_s_i_ic_sc, /* 850 */ + PARROT_OP_replace_s_sc_i_ic_sc, /* 851 */ + PARROT_OP_replace_s_s_ic_ic_sc, /* 852 */ + PARROT_OP_replace_s_sc_ic_ic_sc, /* 853 */ + PARROT_OP_index_i_s_s, /* 854 */ + PARROT_OP_index_i_sc_s, /* 855 */ + PARROT_OP_index_i_s_sc, /* 856 */ + PARROT_OP_index_i_sc_sc, /* 857 */ + PARROT_OP_index_i_s_s_i, /* 858 */ + PARROT_OP_index_i_sc_s_i, /* 859 */ + PARROT_OP_index_i_s_sc_i, /* 860 */ + PARROT_OP_index_i_sc_sc_i, /* 861 */ + PARROT_OP_index_i_s_s_ic, /* 862 */ + PARROT_OP_index_i_sc_s_ic, /* 863 */ + PARROT_OP_index_i_s_sc_ic, /* 864 */ + PARROT_OP_index_i_sc_sc_ic, /* 865 */ + PARROT_OP_sprintf_s_s_p, /* 866 */ + PARROT_OP_sprintf_s_sc_p, /* 867 */ + PARROT_OP_sprintf_p_p_p, /* 868 */ + PARROT_OP_new_s, /* 869 */ + PARROT_OP_new_s_i, /* 870 */ + PARROT_OP_new_s_ic, /* 871 */ + PARROT_OP_stringinfo_i_s_i, /* 872 */ + PARROT_OP_stringinfo_i_sc_i, /* 873 */ + PARROT_OP_stringinfo_i_s_ic, /* 874 */ + PARROT_OP_stringinfo_i_sc_ic, /* 875 */ + PARROT_OP_upcase_s_s, /* 876 */ + PARROT_OP_upcase_s_sc, /* 877 */ + PARROT_OP_downcase_s_s, /* 878 */ + PARROT_OP_downcase_s_sc, /* 879 */ + PARROT_OP_titlecase_s_s, /* 880 */ + PARROT_OP_titlecase_s_sc, /* 881 */ + PARROT_OP_join_s_s_p, /* 882 */ + PARROT_OP_join_s_sc_p, /* 883 */ + PARROT_OP_split_p_s_s, /* 884 */ + PARROT_OP_split_p_sc_s, /* 885 */ + PARROT_OP_split_p_s_sc, /* 886 */ + PARROT_OP_split_p_sc_sc, /* 887 */ + PARROT_OP_encoding_i_s, /* 888 */ + PARROT_OP_encoding_i_sc, /* 889 */ + PARROT_OP_encodingname_s_i, /* 890 */ + PARROT_OP_encodingname_s_ic, /* 891 */ + PARROT_OP_find_encoding_i_s, /* 892 */ + PARROT_OP_find_encoding_i_sc, /* 893 */ + PARROT_OP_trans_encoding_s_s_i, /* 894 */ + PARROT_OP_trans_encoding_s_sc_i, /* 895 */ + PARROT_OP_trans_encoding_s_s_ic, /* 896 */ + PARROT_OP_trans_encoding_s_sc_ic, /* 897 */ + PARROT_OP_is_cclass_i_i_s_i, /* 898 */ + PARROT_OP_is_cclass_i_ic_s_i, /* 899 */ + PARROT_OP_is_cclass_i_i_sc_i, /* 900 */ + PARROT_OP_is_cclass_i_ic_sc_i, /* 901 */ + PARROT_OP_is_cclass_i_i_s_ic, /* 902 */ + PARROT_OP_is_cclass_i_ic_s_ic, /* 903 */ + PARROT_OP_is_cclass_i_i_sc_ic, /* 904 */ + PARROT_OP_is_cclass_i_ic_sc_ic, /* 905 */ + PARROT_OP_find_cclass_i_i_s_i_i, /* 906 */ + PARROT_OP_find_cclass_i_ic_s_i_i, /* 907 */ + PARROT_OP_find_cclass_i_i_sc_i_i, /* 908 */ + PARROT_OP_find_cclass_i_ic_sc_i_i, /* 909 */ + PARROT_OP_find_cclass_i_i_s_ic_i, /* 910 */ + PARROT_OP_find_cclass_i_ic_s_ic_i, /* 911 */ + PARROT_OP_find_cclass_i_i_sc_ic_i, /* 912 */ + PARROT_OP_find_cclass_i_ic_sc_ic_i, /* 913 */ + PARROT_OP_find_cclass_i_i_s_i_ic, /* 914 */ + PARROT_OP_find_cclass_i_ic_s_i_ic, /* 915 */ + PARROT_OP_find_cclass_i_i_sc_i_ic, /* 916 */ + PARROT_OP_find_cclass_i_ic_sc_i_ic, /* 917 */ + PARROT_OP_find_cclass_i_i_s_ic_ic, /* 918 */ + PARROT_OP_find_cclass_i_ic_s_ic_ic, /* 919 */ + PARROT_OP_find_cclass_i_i_sc_ic_ic, /* 920 */ + PARROT_OP_find_cclass_i_ic_sc_ic_ic, /* 921 */ + PARROT_OP_find_not_cclass_i_i_s_i_i, /* 922 */ + PARROT_OP_find_not_cclass_i_ic_s_i_i, /* 923 */ + PARROT_OP_find_not_cclass_i_i_sc_i_i, /* 924 */ + PARROT_OP_find_not_cclass_i_ic_sc_i_i, /* 925 */ + PARROT_OP_find_not_cclass_i_i_s_ic_i, /* 926 */ + PARROT_OP_find_not_cclass_i_ic_s_ic_i, /* 927 */ + PARROT_OP_find_not_cclass_i_i_sc_ic_i, /* 928 */ + PARROT_OP_find_not_cclass_i_ic_sc_ic_i, /* 929 */ + PARROT_OP_find_not_cclass_i_i_s_i_ic, /* 930 */ + PARROT_OP_find_not_cclass_i_ic_s_i_ic, /* 931 */ + PARROT_OP_find_not_cclass_i_i_sc_i_ic, /* 932 */ + PARROT_OP_find_not_cclass_i_ic_sc_i_ic, /* 933 */ + PARROT_OP_find_not_cclass_i_i_s_ic_ic, /* 934 */ + PARROT_OP_find_not_cclass_i_ic_s_ic_ic, /* 935 */ + PARROT_OP_find_not_cclass_i_i_sc_ic_ic, /* 936 */ + PARROT_OP_find_not_cclass_i_ic_sc_ic_ic, /* 937 */ + PARROT_OP_escape_s_s, /* 938 */ + PARROT_OP_compose_s_s, /* 939 */ + PARROT_OP_compose_s_sc, /* 940 */ + PARROT_OP_find_codepoint_i_s, /* 941 */ + PARROT_OP_find_codepoint_i_sc, /* 942 */ + PARROT_OP_spawnw_i_s, /* 943 */ + PARROT_OP_spawnw_i_sc, /* 944 */ + PARROT_OP_spawnw_i_p, /* 945 */ + PARROT_OP_err_i, /* 946 */ + PARROT_OP_err_s, /* 947 */ + PARROT_OP_err_s_i, /* 948 */ + PARROT_OP_err_s_ic, /* 949 */ + PARROT_OP_time_i, /* 950 */ + PARROT_OP_time_n, /* 951 */ + PARROT_OP_sleep_i, /* 952 */ + PARROT_OP_sleep_ic, /* 953 */ + PARROT_OP_sleep_n, /* 954 */ + PARROT_OP_sleep_nc, /* 955 */ + PARROT_OP_store_lex_s_p, /* 956 */ + PARROT_OP_store_lex_sc_p, /* 957 */ + PARROT_OP_store_lex_s_s, /* 958 */ + PARROT_OP_store_lex_sc_s, /* 959 */ + PARROT_OP_store_lex_s_sc, /* 960 */ + PARROT_OP_store_lex_sc_sc, /* 961 */ + PARROT_OP_store_lex_s_i, /* 962 */ + PARROT_OP_store_lex_sc_i, /* 963 */ + PARROT_OP_store_lex_s_ic, /* 964 */ + PARROT_OP_store_lex_sc_ic, /* 965 */ + PARROT_OP_store_lex_s_n, /* 966 */ + PARROT_OP_store_lex_sc_n, /* 967 */ + PARROT_OP_store_lex_s_nc, /* 968 */ + PARROT_OP_store_lex_sc_nc, /* 969 */ + PARROT_OP_store_dynamic_lex_s_p, /* 970 */ + PARROT_OP_store_dynamic_lex_sc_p, /* 971 */ + PARROT_OP_find_lex_p_s, /* 972 */ + PARROT_OP_find_lex_p_sc, /* 973 */ + PARROT_OP_find_lex_s_s, /* 974 */ + PARROT_OP_find_lex_s_sc, /* 975 */ + PARROT_OP_find_lex_i_s, /* 976 */ + PARROT_OP_find_lex_i_sc, /* 977 */ + PARROT_OP_find_lex_n_s, /* 978 */ + PARROT_OP_find_lex_n_sc, /* 979 */ + PARROT_OP_find_dynamic_lex_p_s, /* 980 */ + PARROT_OP_find_dynamic_lex_p_sc, /* 981 */ + PARROT_OP_find_caller_lex_p_s, /* 982 */ + PARROT_OP_find_caller_lex_p_sc, /* 983 */ + PARROT_OP_get_namespace_p, /* 984 */ + PARROT_OP_get_namespace_p_p, /* 985 */ + PARROT_OP_get_namespace_p_pc, /* 986 */ + PARROT_OP_get_hll_namespace_p, /* 987 */ + PARROT_OP_get_hll_namespace_p_p, /* 988 */ + PARROT_OP_get_hll_namespace_p_pc, /* 989 */ + PARROT_OP_get_root_namespace_p, /* 990 */ + PARROT_OP_get_root_namespace_p_p, /* 991 */ + PARROT_OP_get_root_namespace_p_pc, /* 992 */ + PARROT_OP_get_global_p_s, /* 993 */ + PARROT_OP_get_global_p_sc, /* 994 */ + PARROT_OP_get_global_p_p_s, /* 995 */ + PARROT_OP_get_global_p_pc_s, /* 996 */ + PARROT_OP_get_global_p_p_sc, /* 997 */ + PARROT_OP_get_global_p_pc_sc, /* 998 */ + PARROT_OP_get_hll_global_p_s, /* 999 */ + PARROT_OP_get_hll_global_p_sc, /* 1000 */ + PARROT_OP_get_hll_global_p_p_s, /* 1001 */ + PARROT_OP_get_hll_global_p_pc_s, /* 1002 */ + PARROT_OP_get_hll_global_p_p_sc, /* 1003 */ + PARROT_OP_get_hll_global_p_pc_sc, /* 1004 */ + PARROT_OP_get_root_global_p_s, /* 1005 */ + PARROT_OP_get_root_global_p_sc, /* 1006 */ + PARROT_OP_get_root_global_p_p_s, /* 1007 */ + PARROT_OP_get_root_global_p_pc_s, /* 1008 */ + PARROT_OP_get_root_global_p_p_sc, /* 1009 */ + PARROT_OP_get_root_global_p_pc_sc, /* 1010 */ + PARROT_OP_set_global_s_p, /* 1011 */ + PARROT_OP_set_global_sc_p, /* 1012 */ + PARROT_OP_set_global_p_s_p, /* 1013 */ + PARROT_OP_set_global_pc_s_p, /* 1014 */ + PARROT_OP_set_global_p_sc_p, /* 1015 */ + PARROT_OP_set_global_pc_sc_p, /* 1016 */ + PARROT_OP_set_hll_global_s_p, /* 1017 */ + PARROT_OP_set_hll_global_sc_p, /* 1018 */ + PARROT_OP_set_hll_global_p_s_p, /* 1019 */ + PARROT_OP_set_hll_global_pc_s_p, /* 1020 */ + PARROT_OP_set_hll_global_p_sc_p, /* 1021 */ + PARROT_OP_set_hll_global_pc_sc_p, /* 1022 */ + PARROT_OP_set_root_global_s_p, /* 1023 */ + PARROT_OP_set_root_global_sc_p, /* 1024 */ + PARROT_OP_set_root_global_p_s_p, /* 1025 */ + PARROT_OP_set_root_global_pc_s_p, /* 1026 */ + PARROT_OP_set_root_global_p_sc_p, /* 1027 */ + PARROT_OP_set_root_global_pc_sc_p, /* 1028 */ + PARROT_OP_find_name_p_s, /* 1029 */ + PARROT_OP_find_name_p_sc, /* 1030 */ + PARROT_OP_find_sub_not_null_p_s, /* 1031 */ + PARROT_OP_find_sub_not_null_p_sc, /* 1032 */ + PARROT_OP_trap, /* 1033 */ + PARROT_OP_set_label_p_ic, /* 1034 */ + PARROT_OP_get_label_i_p, /* 1035 */ + PARROT_OP_get_id_i_p, /* 1036 */ + PARROT_OP_get_id_i_pc, /* 1037 */ + PARROT_OP_fetch_p_p_p_p, /* 1038 */ + PARROT_OP_fetch_p_pc_p_p, /* 1039 */ + PARROT_OP_fetch_p_p_pc_p, /* 1040 */ + PARROT_OP_fetch_p_pc_pc_p, /* 1041 */ + PARROT_OP_fetch_p_p_p_pc, /* 1042 */ + PARROT_OP_fetch_p_pc_p_pc, /* 1043 */ + PARROT_OP_fetch_p_p_pc_pc, /* 1044 */ + PARROT_OP_fetch_p_pc_pc_pc, /* 1045 */ + PARROT_OP_fetch_p_p_i_p, /* 1046 */ + PARROT_OP_fetch_p_pc_i_p, /* 1047 */ + PARROT_OP_fetch_p_p_ic_p, /* 1048 */ + PARROT_OP_fetch_p_pc_ic_p, /* 1049 */ + PARROT_OP_fetch_p_p_i_pc, /* 1050 */ + PARROT_OP_fetch_p_pc_i_pc, /* 1051 */ + PARROT_OP_fetch_p_p_ic_pc, /* 1052 */ + PARROT_OP_fetch_p_pc_ic_pc, /* 1053 */ + PARROT_OP_fetch_p_p_s_p, /* 1054 */ + PARROT_OP_fetch_p_pc_s_p, /* 1055 */ + PARROT_OP_fetch_p_p_sc_p, /* 1056 */ + PARROT_OP_fetch_p_pc_sc_p, /* 1057 */ + PARROT_OP_fetch_p_p_s_pc, /* 1058 */ + PARROT_OP_fetch_p_pc_s_pc, /* 1059 */ + PARROT_OP_fetch_p_p_sc_pc, /* 1060 */ + PARROT_OP_fetch_p_pc_sc_pc, /* 1061 */ + PARROT_OP_vivify_p_p_p_p, /* 1062 */ + PARROT_OP_vivify_p_pc_p_p, /* 1063 */ + PARROT_OP_vivify_p_p_pc_p, /* 1064 */ + PARROT_OP_vivify_p_pc_pc_p, /* 1065 */ + PARROT_OP_vivify_p_p_p_pc, /* 1066 */ + PARROT_OP_vivify_p_pc_p_pc, /* 1067 */ + PARROT_OP_vivify_p_p_pc_pc, /* 1068 */ + PARROT_OP_vivify_p_pc_pc_pc, /* 1069 */ + PARROT_OP_vivify_p_p_i_p, /* 1070 */ + PARROT_OP_vivify_p_pc_i_p, /* 1071 */ + PARROT_OP_vivify_p_p_ic_p, /* 1072 */ + PARROT_OP_vivify_p_pc_ic_p, /* 1073 */ + PARROT_OP_vivify_p_p_i_pc, /* 1074 */ + PARROT_OP_vivify_p_pc_i_pc, /* 1075 */ + PARROT_OP_vivify_p_p_ic_pc, /* 1076 */ + PARROT_OP_vivify_p_pc_ic_pc, /* 1077 */ + PARROT_OP_vivify_p_p_s_p, /* 1078 */ + PARROT_OP_vivify_p_pc_s_p, /* 1079 */ + PARROT_OP_vivify_p_p_sc_p, /* 1080 */ + PARROT_OP_vivify_p_pc_sc_p, /* 1081 */ + PARROT_OP_vivify_p_p_s_pc, /* 1082 */ + PARROT_OP_vivify_p_pc_s_pc, /* 1083 */ + PARROT_OP_vivify_p_p_sc_pc, /* 1084 */ + PARROT_OP_vivify_p_pc_sc_pc, /* 1085 */ + PARROT_OP_new_p_s_i, /* 1086 */ + PARROT_OP_new_p_sc_i, /* 1087 */ + PARROT_OP_new_p_s_ic, /* 1088 */ + PARROT_OP_new_p_sc_ic, /* 1089 */ + PARROT_OP_new_p_p_i, /* 1090 */ + PARROT_OP_new_p_pc_i, /* 1091 */ + PARROT_OP_new_p_p_ic, /* 1092 */ + PARROT_OP_new_p_pc_ic, /* 1093 */ + PARROT_OP_root_new_p_p_i, /* 1094 */ + PARROT_OP_root_new_p_pc_i, /* 1095 */ + PARROT_OP_root_new_p_p_ic, /* 1096 */ + PARROT_OP_root_new_p_pc_ic, /* 1097 */ + PARROT_OP_receive_p, /* 1098 */ + PARROT_OP_wait_p, /* 1099 */ + PARROT_OP_wait_pc, /* 1100 */ + PARROT_OP_pass /* 1101 */ } parrot_opcode_enums; diff --git a/include/parrot/opsenum.h b/include/parrot/opsenum.h index 84328a7ee2..a1e809d00f 100644 --- a/include/parrot/opsenum.h +++ b/include/parrot/opsenum.h @@ -105,1015 +105,1017 @@ enum OPS_ENUM { enum_ops_errorson_ic = 88, enum_ops_errorsoff_i = 89, enum_ops_errorsoff_ic = 90, - enum_ops_runinterp_p_i = 91, - enum_ops_runinterp_p_ic = 92, - enum_ops_getinterp_p = 93, - enum_ops_sweep_ic = 94, - enum_ops_collect = 95, - enum_ops_sweepoff = 96, - enum_ops_sweepon = 97, - enum_ops_collectoff = 98, - enum_ops_collecton = 99, - enum_ops_needs_destroy_p = 100, - enum_ops_loadlib_p_s = 101, - enum_ops_loadlib_p_sc = 102, - enum_ops_loadlib_p_s_p = 103, - enum_ops_loadlib_p_sc_p = 104, - enum_ops_loadlib_p_s_pc = 105, - enum_ops_loadlib_p_sc_pc = 106, - enum_ops_dlfunc_p_p_s_s = 107, - enum_ops_dlfunc_p_p_sc_s = 108, - enum_ops_dlfunc_p_p_s_sc = 109, - enum_ops_dlfunc_p_p_sc_sc = 110, - enum_ops_dlfunc_p_p_s_p = 111, - enum_ops_dlfunc_p_p_sc_p = 112, - enum_ops_dlvar_p_p_s = 113, - enum_ops_dlvar_p_p_sc = 114, - enum_ops_compreg_s_p = 115, - enum_ops_compreg_sc_p = 116, - enum_ops_compreg_p_s = 117, - enum_ops_compreg_p_sc = 118, - enum_ops_new_callback_p_p_p_s = 119, - enum_ops_new_callback_p_p_p_sc = 120, - enum_ops_annotations_p = 121, - enum_ops_annotations_p_s = 122, - enum_ops_annotations_p_sc = 123, - enum_ops_band_i_i = 124, - enum_ops_band_i_ic = 125, - enum_ops_band_i_i_i = 126, - enum_ops_band_i_ic_i = 127, - enum_ops_band_i_i_ic = 128, - enum_ops_bor_i_i = 129, - enum_ops_bor_i_ic = 130, - enum_ops_bor_i_i_i = 131, - enum_ops_bor_i_ic_i = 132, - enum_ops_bor_i_i_ic = 133, - enum_ops_shl_i_i = 134, - enum_ops_shl_i_ic = 135, - enum_ops_shl_i_i_i = 136, - enum_ops_shl_i_ic_i = 137, - enum_ops_shl_i_i_ic = 138, - enum_ops_shr_i_i = 139, - enum_ops_shr_i_ic = 140, - enum_ops_shr_i_i_i = 141, - enum_ops_shr_i_ic_i = 142, - enum_ops_shr_i_i_ic = 143, - enum_ops_lsr_i_i = 144, - enum_ops_lsr_i_ic = 145, - enum_ops_lsr_i_i_i = 146, - enum_ops_lsr_i_ic_i = 147, - enum_ops_lsr_i_i_ic = 148, - enum_ops_bxor_i_i = 149, - enum_ops_bxor_i_ic = 150, - enum_ops_bxor_i_i_i = 151, - enum_ops_bxor_i_ic_i = 152, - enum_ops_bxor_i_i_ic = 153, - enum_ops_eq_i_i_ic = 154, - enum_ops_eq_ic_i_ic = 155, - enum_ops_eq_i_ic_ic = 156, - enum_ops_eq_n_n_ic = 157, - enum_ops_eq_nc_n_ic = 158, - enum_ops_eq_n_nc_ic = 159, - enum_ops_eq_s_s_ic = 160, - enum_ops_eq_sc_s_ic = 161, - enum_ops_eq_s_sc_ic = 162, - enum_ops_eq_p_p_ic = 163, - enum_ops_eq_p_i_ic = 164, - enum_ops_eq_p_ic_ic = 165, - enum_ops_eq_p_n_ic = 166, - enum_ops_eq_p_nc_ic = 167, - enum_ops_eq_p_s_ic = 168, - enum_ops_eq_p_sc_ic = 169, - enum_ops_eq_str_p_p_ic = 170, - enum_ops_eq_num_p_p_ic = 171, - enum_ops_eq_addr_s_s_ic = 172, - enum_ops_eq_addr_sc_s_ic = 173, - enum_ops_eq_addr_s_sc_ic = 174, - enum_ops_eq_addr_sc_sc_ic = 175, - enum_ops_eq_addr_p_p_ic = 176, - enum_ops_ne_i_i_ic = 177, - enum_ops_ne_ic_i_ic = 178, - enum_ops_ne_i_ic_ic = 179, - enum_ops_ne_n_n_ic = 180, - enum_ops_ne_nc_n_ic = 181, - enum_ops_ne_n_nc_ic = 182, - enum_ops_ne_s_s_ic = 183, - enum_ops_ne_sc_s_ic = 184, - enum_ops_ne_s_sc_ic = 185, - enum_ops_ne_p_p_ic = 186, - enum_ops_ne_p_i_ic = 187, - enum_ops_ne_p_ic_ic = 188, - enum_ops_ne_p_n_ic = 189, - enum_ops_ne_p_nc_ic = 190, - enum_ops_ne_p_s_ic = 191, - enum_ops_ne_p_sc_ic = 192, - enum_ops_ne_str_p_p_ic = 193, - enum_ops_ne_num_p_p_ic = 194, - enum_ops_ne_addr_s_s_ic = 195, - enum_ops_ne_addr_sc_s_ic = 196, - enum_ops_ne_addr_s_sc_ic = 197, - enum_ops_ne_addr_sc_sc_ic = 198, - enum_ops_ne_addr_p_p_ic = 199, - enum_ops_lt_i_i_ic = 200, - enum_ops_lt_ic_i_ic = 201, - enum_ops_lt_i_ic_ic = 202, - enum_ops_lt_n_n_ic = 203, - enum_ops_lt_nc_n_ic = 204, - enum_ops_lt_n_nc_ic = 205, - enum_ops_lt_s_s_ic = 206, - enum_ops_lt_sc_s_ic = 207, - enum_ops_lt_s_sc_ic = 208, - enum_ops_lt_p_p_ic = 209, - enum_ops_lt_p_i_ic = 210, - enum_ops_lt_p_ic_ic = 211, - enum_ops_lt_p_n_ic = 212, - enum_ops_lt_p_nc_ic = 213, - enum_ops_lt_p_s_ic = 214, - enum_ops_lt_p_sc_ic = 215, - enum_ops_lt_str_p_p_ic = 216, - enum_ops_lt_num_p_p_ic = 217, - enum_ops_le_i_i_ic = 218, - enum_ops_le_ic_i_ic = 219, - enum_ops_le_i_ic_ic = 220, - enum_ops_le_n_n_ic = 221, - enum_ops_le_nc_n_ic = 222, - enum_ops_le_n_nc_ic = 223, - enum_ops_le_s_s_ic = 224, - enum_ops_le_sc_s_ic = 225, - enum_ops_le_s_sc_ic = 226, - enum_ops_le_p_p_ic = 227, - enum_ops_le_p_i_ic = 228, - enum_ops_le_p_ic_ic = 229, - enum_ops_le_p_n_ic = 230, - enum_ops_le_p_nc_ic = 231, - enum_ops_le_p_s_ic = 232, - enum_ops_le_p_sc_ic = 233, - enum_ops_le_str_p_p_ic = 234, - enum_ops_le_num_p_p_ic = 235, - enum_ops_gt_p_p_ic = 236, - enum_ops_gt_p_i_ic = 237, - enum_ops_gt_p_ic_ic = 238, - enum_ops_gt_p_n_ic = 239, - enum_ops_gt_p_nc_ic = 240, - enum_ops_gt_p_s_ic = 241, - enum_ops_gt_p_sc_ic = 242, - enum_ops_gt_str_p_p_ic = 243, - enum_ops_gt_num_p_p_ic = 244, - enum_ops_ge_p_p_ic = 245, - enum_ops_ge_p_i_ic = 246, - enum_ops_ge_p_ic_ic = 247, - enum_ops_ge_p_n_ic = 248, - enum_ops_ge_p_nc_ic = 249, - enum_ops_ge_p_s_ic = 250, - enum_ops_ge_p_sc_ic = 251, - enum_ops_ge_str_p_p_ic = 252, - enum_ops_ge_num_p_p_ic = 253, - enum_ops_if_null_p_ic = 254, - enum_ops_if_null_s_ic = 255, - enum_ops_unless_null_p_ic = 256, - enum_ops_unless_null_s_ic = 257, - enum_ops_cmp_i_i_i = 258, - enum_ops_cmp_i_ic_i = 259, - enum_ops_cmp_i_i_ic = 260, - enum_ops_cmp_i_n_n = 261, - enum_ops_cmp_i_nc_n = 262, - enum_ops_cmp_i_n_nc = 263, - enum_ops_cmp_i_s_s = 264, - enum_ops_cmp_i_sc_s = 265, - enum_ops_cmp_i_s_sc = 266, - enum_ops_cmp_i_p_p = 267, - enum_ops_cmp_i_p_i = 268, - enum_ops_cmp_i_p_ic = 269, - enum_ops_cmp_i_p_n = 270, - enum_ops_cmp_i_p_nc = 271, - enum_ops_cmp_i_p_s = 272, - enum_ops_cmp_i_p_sc = 273, - enum_ops_cmp_str_i_p_p = 274, - enum_ops_cmp_num_i_p_p = 275, - enum_ops_cmp_pmc_p_p_p = 276, - enum_ops_issame_i_p_p = 277, - enum_ops_issame_i_s_s = 278, - enum_ops_issame_i_sc_s = 279, - enum_ops_issame_i_s_sc = 280, - enum_ops_issame_i_sc_sc = 281, - enum_ops_isntsame_i_p_p = 282, - enum_ops_isntsame_i_s_s = 283, - enum_ops_isntsame_i_sc_s = 284, - enum_ops_isntsame_i_s_sc = 285, - enum_ops_isntsame_i_sc_sc = 286, - enum_ops_istrue_i_p = 287, - enum_ops_isfalse_i_p = 288, - enum_ops_isnull_i_p = 289, - enum_ops_isnull_i_pc = 290, - enum_ops_isnull_i_s = 291, - enum_ops_isnull_i_sc = 292, - enum_ops_isgt_i_p_p = 293, - enum_ops_isge_i_p_p = 294, - enum_ops_isle_i_i_i = 295, - enum_ops_isle_i_ic_i = 296, - enum_ops_isle_i_i_ic = 297, - enum_ops_isle_i_n_n = 298, - enum_ops_isle_i_nc_n = 299, - enum_ops_isle_i_n_nc = 300, - enum_ops_isle_i_s_s = 301, - enum_ops_isle_i_sc_s = 302, - enum_ops_isle_i_s_sc = 303, - enum_ops_isle_i_p_p = 304, - enum_ops_islt_i_i_i = 305, - enum_ops_islt_i_ic_i = 306, - enum_ops_islt_i_i_ic = 307, - enum_ops_islt_i_n_n = 308, - enum_ops_islt_i_nc_n = 309, - enum_ops_islt_i_n_nc = 310, - enum_ops_islt_i_s_s = 311, - enum_ops_islt_i_sc_s = 312, - enum_ops_islt_i_s_sc = 313, - enum_ops_islt_i_p_p = 314, - enum_ops_iseq_i_i_i = 315, - enum_ops_iseq_i_ic_i = 316, - enum_ops_iseq_i_i_ic = 317, - enum_ops_iseq_i_n_n = 318, - enum_ops_iseq_i_nc_n = 319, - enum_ops_iseq_i_n_nc = 320, - enum_ops_iseq_i_s_s = 321, - enum_ops_iseq_i_sc_s = 322, - enum_ops_iseq_i_s_sc = 323, - enum_ops_iseq_i_p_p = 324, - enum_ops_isne_i_i_i = 325, - enum_ops_isne_i_ic_i = 326, - enum_ops_isne_i_i_ic = 327, - enum_ops_isne_i_n_n = 328, - enum_ops_isne_i_nc_n = 329, - enum_ops_isne_i_n_nc = 330, - enum_ops_isne_i_s_s = 331, - enum_ops_isne_i_sc_s = 332, - enum_ops_isne_i_s_sc = 333, - enum_ops_isne_i_p_p = 334, - enum_ops_and_i_i_i = 335, - enum_ops_and_i_ic_i = 336, - enum_ops_and_i_i_ic = 337, - enum_ops_and_p_p_p = 338, - enum_ops_not_i = 339, - enum_ops_not_i_i = 340, - enum_ops_not_p = 341, - enum_ops_not_p_p = 342, - enum_ops_or_i_i_i = 343, - enum_ops_or_i_ic_i = 344, - enum_ops_or_i_i_ic = 345, - enum_ops_or_p_p_p = 346, - enum_ops_xor_i_i_i = 347, - enum_ops_xor_i_ic_i = 348, - enum_ops_xor_i_i_ic = 349, - enum_ops_xor_p_p_p = 350, - enum_ops_print_i = 351, - enum_ops_print_ic = 352, - enum_ops_print_n = 353, - enum_ops_print_nc = 354, - enum_ops_print_s = 355, - enum_ops_print_sc = 356, - enum_ops_print_p = 357, - enum_ops_say_i = 358, - enum_ops_say_ic = 359, - enum_ops_say_n = 360, - enum_ops_say_nc = 361, - enum_ops_say_s = 362, - enum_ops_say_sc = 363, - enum_ops_say_p = 364, - enum_ops_print_p_i = 365, - enum_ops_print_p_ic = 366, - enum_ops_print_p_n = 367, - enum_ops_print_p_nc = 368, - enum_ops_print_p_s = 369, - enum_ops_print_p_sc = 370, - enum_ops_print_p_p = 371, - enum_ops_getstdin_p = 372, - enum_ops_getstdout_p = 373, - enum_ops_getstderr_p = 374, - enum_ops_abs_i = 375, - enum_ops_abs_n = 376, - enum_ops_abs_i_i = 377, - enum_ops_abs_n_n = 378, - enum_ops_abs_p = 379, - enum_ops_abs_p_p = 380, - enum_ops_add_i_i = 381, - enum_ops_add_i_ic = 382, - enum_ops_add_n_n = 383, - enum_ops_add_n_nc = 384, - enum_ops_add_p_p = 385, - enum_ops_add_p_i = 386, - enum_ops_add_p_ic = 387, - enum_ops_add_p_n = 388, - enum_ops_add_p_nc = 389, - enum_ops_add_i_i_i = 390, - enum_ops_add_i_ic_i = 391, - enum_ops_add_i_i_ic = 392, - enum_ops_add_n_n_n = 393, - enum_ops_add_n_nc_n = 394, - enum_ops_add_n_n_nc = 395, - enum_ops_add_p_p_p = 396, - enum_ops_add_p_p_i = 397, - enum_ops_add_p_p_ic = 398, - enum_ops_add_p_p_n = 399, - enum_ops_add_p_p_nc = 400, - enum_ops_dec_i = 401, - enum_ops_dec_n = 402, - enum_ops_dec_p = 403, - enum_ops_div_i_i = 404, - enum_ops_div_i_ic = 405, - enum_ops_div_n_n = 406, - enum_ops_div_n_nc = 407, - enum_ops_div_p_p = 408, - enum_ops_div_p_i = 409, - enum_ops_div_p_ic = 410, - enum_ops_div_p_n = 411, - enum_ops_div_p_nc = 412, - enum_ops_div_i_i_i = 413, - enum_ops_div_i_ic_i = 414, - enum_ops_div_i_i_ic = 415, - enum_ops_div_i_ic_ic = 416, - enum_ops_div_n_n_n = 417, - enum_ops_div_n_nc_n = 418, - enum_ops_div_n_n_nc = 419, - enum_ops_div_n_nc_nc = 420, - enum_ops_div_p_p_p = 421, - enum_ops_div_p_p_i = 422, - enum_ops_div_p_p_ic = 423, - enum_ops_div_p_p_n = 424, - enum_ops_div_p_p_nc = 425, - enum_ops_fdiv_i_i = 426, - enum_ops_fdiv_i_ic = 427, - enum_ops_fdiv_n_n = 428, - enum_ops_fdiv_n_nc = 429, - enum_ops_fdiv_p_p = 430, - enum_ops_fdiv_p_i = 431, - enum_ops_fdiv_p_ic = 432, - enum_ops_fdiv_p_n = 433, - enum_ops_fdiv_p_nc = 434, - enum_ops_fdiv_i_i_i = 435, - enum_ops_fdiv_i_ic_i = 436, - enum_ops_fdiv_i_i_ic = 437, - enum_ops_fdiv_n_n_n = 438, - enum_ops_fdiv_n_nc_n = 439, - enum_ops_fdiv_n_n_nc = 440, - enum_ops_fdiv_p_p_p = 441, - enum_ops_fdiv_p_p_i = 442, - enum_ops_fdiv_p_p_ic = 443, - enum_ops_fdiv_p_p_n = 444, - enum_ops_fdiv_p_p_nc = 445, - enum_ops_ceil_n = 446, - enum_ops_ceil_i_n = 447, - enum_ops_ceil_n_n = 448, - enum_ops_floor_n = 449, - enum_ops_floor_i_n = 450, - enum_ops_floor_n_n = 451, - enum_ops_inc_i = 452, - enum_ops_inc_n = 453, - enum_ops_inc_p = 454, - enum_ops_mod_i_i = 455, - enum_ops_mod_i_ic = 456, - enum_ops_mod_n_n = 457, - enum_ops_mod_n_nc = 458, - enum_ops_mod_p_p = 459, - enum_ops_mod_p_i = 460, - enum_ops_mod_p_ic = 461, - enum_ops_mod_p_n = 462, - enum_ops_mod_p_nc = 463, - enum_ops_mod_i_i_i = 464, - enum_ops_mod_i_ic_i = 465, - enum_ops_mod_i_i_ic = 466, - enum_ops_mod_n_n_n = 467, - enum_ops_mod_n_nc_n = 468, - enum_ops_mod_n_n_nc = 469, - enum_ops_mod_p_p_p = 470, - enum_ops_mod_p_p_i = 471, - enum_ops_mod_p_p_ic = 472, - enum_ops_mod_p_p_n = 473, - enum_ops_mod_p_p_nc = 474, - enum_ops_mul_i_i = 475, - enum_ops_mul_i_ic = 476, - enum_ops_mul_n_n = 477, - enum_ops_mul_n_nc = 478, - enum_ops_mul_p_p = 479, - enum_ops_mul_p_i = 480, - enum_ops_mul_p_ic = 481, - enum_ops_mul_p_n = 482, - enum_ops_mul_p_nc = 483, - enum_ops_mul_i_i_i = 484, - enum_ops_mul_i_ic_i = 485, - enum_ops_mul_i_i_ic = 486, - enum_ops_mul_n_n_n = 487, - enum_ops_mul_n_nc_n = 488, - enum_ops_mul_n_n_nc = 489, - enum_ops_mul_p_p_p = 490, - enum_ops_mul_p_p_i = 491, - enum_ops_mul_p_p_ic = 492, - enum_ops_mul_p_p_n = 493, - enum_ops_mul_p_p_nc = 494, - enum_ops_neg_i = 495, - enum_ops_neg_n = 496, - enum_ops_neg_p = 497, - enum_ops_neg_i_i = 498, - enum_ops_neg_n_n = 499, - enum_ops_neg_p_p = 500, - enum_ops_sub_i_i = 501, - enum_ops_sub_i_ic = 502, - enum_ops_sub_n_n = 503, - enum_ops_sub_n_nc = 504, - enum_ops_sub_p_p = 505, - enum_ops_sub_p_i = 506, - enum_ops_sub_p_ic = 507, - enum_ops_sub_p_n = 508, - enum_ops_sub_p_nc = 509, - enum_ops_sub_i_i_i = 510, - enum_ops_sub_i_ic_i = 511, - enum_ops_sub_i_i_ic = 512, - enum_ops_sub_n_n_n = 513, - enum_ops_sub_n_nc_n = 514, - enum_ops_sub_n_n_nc = 515, - enum_ops_sub_p_p_p = 516, - enum_ops_sub_p_p_i = 517, - enum_ops_sub_p_p_ic = 518, - enum_ops_sub_p_p_n = 519, - enum_ops_sub_p_p_nc = 520, - enum_ops_sqrt_n_n = 521, - enum_ops_callmethodcc_p_s = 522, - enum_ops_callmethodcc_p_sc = 523, - enum_ops_callmethodcc_p_p = 524, - enum_ops_callmethod_p_s_p = 525, - enum_ops_callmethod_p_sc_p = 526, - enum_ops_callmethod_p_p_p = 527, - enum_ops_tailcallmethod_p_s = 528, - enum_ops_tailcallmethod_p_sc = 529, - enum_ops_tailcallmethod_p_p = 530, - enum_ops_addmethod_p_s_p = 531, - enum_ops_addmethod_p_sc_p = 532, - enum_ops_can_i_p_s = 533, - enum_ops_can_i_p_sc = 534, - enum_ops_does_i_p_s = 535, - enum_ops_does_i_p_sc = 536, - enum_ops_does_i_p_p = 537, - enum_ops_does_i_p_pc = 538, - enum_ops_isa_i_p_s = 539, - enum_ops_isa_i_p_sc = 540, - enum_ops_isa_i_p_p = 541, - enum_ops_isa_i_p_pc = 542, - enum_ops_newclass_p_s = 543, - enum_ops_newclass_p_sc = 544, - enum_ops_newclass_p_p = 545, - enum_ops_newclass_p_pc = 546, - enum_ops_subclass_p_p = 547, - enum_ops_subclass_p_pc = 548, - enum_ops_subclass_p_p_s = 549, - enum_ops_subclass_p_pc_s = 550, - enum_ops_subclass_p_p_sc = 551, - enum_ops_subclass_p_pc_sc = 552, - enum_ops_subclass_p_p_p = 553, - enum_ops_subclass_p_pc_p = 554, - enum_ops_subclass_p_p_pc = 555, - enum_ops_subclass_p_pc_pc = 556, - enum_ops_subclass_p_s = 557, - enum_ops_subclass_p_sc = 558, - enum_ops_subclass_p_s_s = 559, - enum_ops_subclass_p_sc_s = 560, - enum_ops_subclass_p_s_sc = 561, - enum_ops_subclass_p_sc_sc = 562, - enum_ops_subclass_p_s_p = 563, - enum_ops_subclass_p_sc_p = 564, - enum_ops_subclass_p_s_pc = 565, - enum_ops_subclass_p_sc_pc = 566, - enum_ops_get_class_p_s = 567, - enum_ops_get_class_p_sc = 568, - enum_ops_get_class_p_p = 569, - enum_ops_get_class_p_pc = 570, - enum_ops_class_p_p = 571, - enum_ops_addparent_p_p = 572, - enum_ops_removeparent_p_p = 573, - enum_ops_addrole_p_p = 574, - enum_ops_addattribute_p_s = 575, - enum_ops_addattribute_p_sc = 576, - enum_ops_removeattribute_p_s = 577, - enum_ops_removeattribute_p_sc = 578, - enum_ops_getattribute_p_p_s = 579, - enum_ops_getattribute_p_p_sc = 580, - enum_ops_getattribute_p_p_p_s = 581, - enum_ops_getattribute_p_p_pc_s = 582, - enum_ops_getattribute_p_p_p_sc = 583, - enum_ops_getattribute_p_p_pc_sc = 584, - enum_ops_setattribute_p_s_p = 585, - enum_ops_setattribute_p_sc_p = 586, - enum_ops_setattribute_p_p_s_p = 587, - enum_ops_setattribute_p_pc_s_p = 588, - enum_ops_setattribute_p_p_sc_p = 589, - enum_ops_setattribute_p_pc_sc_p = 590, - enum_ops_inspect_p_p = 591, - enum_ops_inspect_p_pc = 592, - enum_ops_inspect_p_p_s = 593, - enum_ops_inspect_p_pc_s = 594, - enum_ops_inspect_p_p_sc = 595, - enum_ops_inspect_p_pc_sc = 596, - enum_ops_new_p_s = 597, - enum_ops_new_p_sc = 598, - enum_ops_new_p_s_p = 599, - enum_ops_new_p_sc_p = 600, - enum_ops_new_p_s_pc = 601, - enum_ops_new_p_sc_pc = 602, - enum_ops_new_p_p = 603, - enum_ops_new_p_pc = 604, - enum_ops_new_p_p_p = 605, - enum_ops_new_p_pc_p = 606, - enum_ops_new_p_p_pc = 607, - enum_ops_new_p_pc_pc = 608, - enum_ops_root_new_p_p = 609, - enum_ops_root_new_p_pc = 610, - enum_ops_root_new_p_p_p = 611, - enum_ops_root_new_p_pc_p = 612, - enum_ops_root_new_p_p_pc = 613, - enum_ops_root_new_p_pc_pc = 614, - enum_ops_typeof_s_p = 615, - enum_ops_typeof_p_p = 616, - enum_ops_get_repr_s_p = 617, - enum_ops_find_method_p_p_s = 618, - enum_ops_find_method_p_p_sc = 619, - enum_ops_defined_i_p = 620, - enum_ops_defined_i_p_ki = 621, - enum_ops_defined_i_p_kic = 622, - enum_ops_defined_i_p_k = 623, - enum_ops_defined_i_p_kc = 624, - enum_ops_exists_i_p_ki = 625, - enum_ops_exists_i_p_kic = 626, - enum_ops_exists_i_p_k = 627, - enum_ops_exists_i_p_kc = 628, - enum_ops_delete_p_k = 629, - enum_ops_delete_p_kc = 630, - enum_ops_delete_p_ki = 631, - enum_ops_delete_p_kic = 632, - enum_ops_elements_i_p = 633, - enum_ops_push_p_i = 634, - enum_ops_push_p_ic = 635, - enum_ops_push_p_n = 636, - enum_ops_push_p_nc = 637, - enum_ops_push_p_s = 638, - enum_ops_push_p_sc = 639, - enum_ops_push_p_p = 640, - enum_ops_pop_i_p = 641, - enum_ops_pop_n_p = 642, - enum_ops_pop_s_p = 643, - enum_ops_pop_p_p = 644, - enum_ops_unshift_p_i = 645, - enum_ops_unshift_p_ic = 646, - enum_ops_unshift_p_n = 647, - enum_ops_unshift_p_nc = 648, - enum_ops_unshift_p_s = 649, - enum_ops_unshift_p_sc = 650, - enum_ops_unshift_p_p = 651, - enum_ops_shift_i_p = 652, - enum_ops_shift_n_p = 653, - enum_ops_shift_s_p = 654, - enum_ops_shift_p_p = 655, - enum_ops_splice_p_p_i_i = 656, - enum_ops_splice_p_p_ic_i = 657, - enum_ops_splice_p_p_i_ic = 658, - enum_ops_splice_p_p_ic_ic = 659, - enum_ops_setprop_p_s_p = 660, - enum_ops_setprop_p_sc_p = 661, - enum_ops_getprop_p_s_p = 662, - enum_ops_getprop_p_sc_p = 663, - enum_ops_delprop_p_s = 664, - enum_ops_delprop_p_sc = 665, - enum_ops_prophash_p_p = 666, - enum_ops_freeze_s_p = 667, - enum_ops_thaw_p_s = 668, - enum_ops_thaw_p_sc = 669, - enum_ops_add_multi_s_s_p = 670, - enum_ops_add_multi_sc_s_p = 671, - enum_ops_add_multi_s_sc_p = 672, - enum_ops_add_multi_sc_sc_p = 673, - enum_ops_find_multi_p_s_s = 674, - enum_ops_find_multi_p_sc_s = 675, - enum_ops_find_multi_p_s_sc = 676, - enum_ops_find_multi_p_sc_sc = 677, - enum_ops_register_p = 678, - enum_ops_unregister_p = 679, - enum_ops_box_p_i = 680, - enum_ops_box_p_ic = 681, - enum_ops_box_p_n = 682, - enum_ops_box_p_nc = 683, - enum_ops_box_p_s = 684, - enum_ops_box_p_sc = 685, - enum_ops_iter_p_p = 686, - enum_ops_morph_p_p = 687, - enum_ops_morph_p_pc = 688, - enum_ops_clone_s_s = 689, - enum_ops_clone_s_sc = 690, - enum_ops_set_i_i = 691, - enum_ops_set_i_ic = 692, - enum_ops_set_i_n = 693, - enum_ops_set_i_nc = 694, - enum_ops_set_i_s = 695, - enum_ops_set_i_sc = 696, - enum_ops_set_n_n = 697, - enum_ops_set_n_nc = 698, - enum_ops_set_n_i = 699, - enum_ops_set_n_ic = 700, - enum_ops_set_n_s = 701, - enum_ops_set_n_sc = 702, - enum_ops_set_n_p = 703, - enum_ops_set_s_p = 704, - enum_ops_set_s_s = 705, - enum_ops_set_s_sc = 706, - enum_ops_set_s_i = 707, - enum_ops_set_s_ic = 708, - enum_ops_set_s_n = 709, - enum_ops_set_s_nc = 710, - enum_ops_set_p_pc = 711, - enum_ops_set_p_p = 712, - enum_ops_set_p_i = 713, - enum_ops_set_p_ic = 714, - enum_ops_set_p_n = 715, - enum_ops_set_p_nc = 716, - enum_ops_set_p_s = 717, - enum_ops_set_p_sc = 718, - enum_ops_set_i_p = 719, - enum_ops_assign_p_p = 720, - enum_ops_assign_p_i = 721, - enum_ops_assign_p_ic = 722, - enum_ops_assign_p_n = 723, - enum_ops_assign_p_nc = 724, - enum_ops_assign_p_s = 725, - enum_ops_assign_p_sc = 726, - enum_ops_assign_s_s = 727, - enum_ops_assign_s_sc = 728, - enum_ops_setref_p_p = 729, - enum_ops_deref_p_p = 730, - enum_ops_set_p_ki_i = 731, - enum_ops_set_p_kic_i = 732, - enum_ops_set_p_ki_ic = 733, - enum_ops_set_p_kic_ic = 734, - enum_ops_set_p_ki_n = 735, - enum_ops_set_p_kic_n = 736, - enum_ops_set_p_ki_nc = 737, - enum_ops_set_p_kic_nc = 738, - enum_ops_set_p_ki_s = 739, - enum_ops_set_p_kic_s = 740, - enum_ops_set_p_ki_sc = 741, - enum_ops_set_p_kic_sc = 742, - enum_ops_set_p_ki_p = 743, - enum_ops_set_p_kic_p = 744, - enum_ops_set_i_p_ki = 745, - enum_ops_set_i_p_kic = 746, - enum_ops_set_n_p_ki = 747, - enum_ops_set_n_p_kic = 748, - enum_ops_set_s_p_ki = 749, - enum_ops_set_s_p_kic = 750, - enum_ops_set_p_p_ki = 751, - enum_ops_set_p_p_kic = 752, - enum_ops_set_p_k_i = 753, - enum_ops_set_p_kc_i = 754, - enum_ops_set_p_k_ic = 755, - enum_ops_set_p_kc_ic = 756, - enum_ops_set_p_k_n = 757, - enum_ops_set_p_kc_n = 758, - enum_ops_set_p_k_nc = 759, - enum_ops_set_p_kc_nc = 760, - enum_ops_set_p_k_s = 761, - enum_ops_set_p_kc_s = 762, - enum_ops_set_p_k_sc = 763, - enum_ops_set_p_kc_sc = 764, - enum_ops_set_p_k_p = 765, - enum_ops_set_p_kc_p = 766, - enum_ops_set_i_p_k = 767, - enum_ops_set_i_p_kc = 768, - enum_ops_set_n_p_k = 769, - enum_ops_set_n_p_kc = 770, - enum_ops_set_s_p_k = 771, - enum_ops_set_s_p_kc = 772, - enum_ops_set_p_p_k = 773, - enum_ops_set_p_p_kc = 774, - enum_ops_clone_p_p = 775, - enum_ops_clone_p_p_p = 776, - enum_ops_clone_p_p_pc = 777, - enum_ops_copy_p_p = 778, - enum_ops_null_s = 779, - enum_ops_null_i = 780, - enum_ops_null_p = 781, - enum_ops_null_n = 782, - enum_ops_ord_i_s = 783, - enum_ops_ord_i_sc = 784, - enum_ops_ord_i_s_i = 785, - enum_ops_ord_i_sc_i = 786, - enum_ops_ord_i_s_ic = 787, - enum_ops_ord_i_sc_ic = 788, - enum_ops_chr_s_i = 789, - enum_ops_chr_s_ic = 790, - enum_ops_chopn_s_s_i = 791, - enum_ops_chopn_s_sc_i = 792, - enum_ops_chopn_s_s_ic = 793, - enum_ops_chopn_s_sc_ic = 794, - enum_ops_concat_p_p = 795, - enum_ops_concat_p_s = 796, - enum_ops_concat_p_sc = 797, - enum_ops_concat_s_s_s = 798, - enum_ops_concat_s_sc_s = 799, - enum_ops_concat_s_s_sc = 800, - enum_ops_concat_p_p_s = 801, - enum_ops_concat_p_p_sc = 802, - enum_ops_concat_p_p_p = 803, - enum_ops_repeat_s_s_i = 804, - enum_ops_repeat_s_sc_i = 805, - enum_ops_repeat_s_s_ic = 806, - enum_ops_repeat_s_sc_ic = 807, - enum_ops_repeat_p_p_i = 808, - enum_ops_repeat_p_p_ic = 809, - enum_ops_repeat_p_p_p = 810, - enum_ops_repeat_p_i = 811, - enum_ops_repeat_p_ic = 812, - enum_ops_repeat_p_p = 813, - enum_ops_length_i_s = 814, - enum_ops_length_i_sc = 815, - enum_ops_bytelength_i_s = 816, - enum_ops_bytelength_i_sc = 817, - enum_ops_pin_s = 818, - enum_ops_unpin_s = 819, - enum_ops_substr_s_s_i = 820, - enum_ops_substr_s_sc_i = 821, - enum_ops_substr_s_s_ic = 822, - enum_ops_substr_s_sc_ic = 823, - enum_ops_substr_s_s_i_i = 824, - enum_ops_substr_s_sc_i_i = 825, - enum_ops_substr_s_s_ic_i = 826, - enum_ops_substr_s_sc_ic_i = 827, - enum_ops_substr_s_s_i_ic = 828, - enum_ops_substr_s_sc_i_ic = 829, - enum_ops_substr_s_s_ic_ic = 830, - enum_ops_substr_s_sc_ic_ic = 831, - enum_ops_substr_s_p_i_i = 832, - enum_ops_substr_s_p_ic_i = 833, - enum_ops_substr_s_p_i_ic = 834, - enum_ops_substr_s_p_ic_ic = 835, - enum_ops_replace_s_s_i_i_s = 836, - enum_ops_replace_s_sc_i_i_s = 837, - enum_ops_replace_s_s_ic_i_s = 838, - enum_ops_replace_s_sc_ic_i_s = 839, - enum_ops_replace_s_s_i_ic_s = 840, - enum_ops_replace_s_sc_i_ic_s = 841, - enum_ops_replace_s_s_ic_ic_s = 842, - enum_ops_replace_s_sc_ic_ic_s = 843, - enum_ops_replace_s_s_i_i_sc = 844, - enum_ops_replace_s_sc_i_i_sc = 845, - enum_ops_replace_s_s_ic_i_sc = 846, - enum_ops_replace_s_sc_ic_i_sc = 847, - enum_ops_replace_s_s_i_ic_sc = 848, - enum_ops_replace_s_sc_i_ic_sc = 849, - enum_ops_replace_s_s_ic_ic_sc = 850, - enum_ops_replace_s_sc_ic_ic_sc = 851, - enum_ops_index_i_s_s = 852, - enum_ops_index_i_sc_s = 853, - enum_ops_index_i_s_sc = 854, - enum_ops_index_i_sc_sc = 855, - enum_ops_index_i_s_s_i = 856, - enum_ops_index_i_sc_s_i = 857, - enum_ops_index_i_s_sc_i = 858, - enum_ops_index_i_sc_sc_i = 859, - enum_ops_index_i_s_s_ic = 860, - enum_ops_index_i_sc_s_ic = 861, - enum_ops_index_i_s_sc_ic = 862, - enum_ops_index_i_sc_sc_ic = 863, - enum_ops_sprintf_s_s_p = 864, - enum_ops_sprintf_s_sc_p = 865, - enum_ops_sprintf_p_p_p = 866, - enum_ops_new_s = 867, - enum_ops_new_s_i = 868, - enum_ops_new_s_ic = 869, - enum_ops_stringinfo_i_s_i = 870, - enum_ops_stringinfo_i_sc_i = 871, - enum_ops_stringinfo_i_s_ic = 872, - enum_ops_stringinfo_i_sc_ic = 873, - enum_ops_upcase_s_s = 874, - enum_ops_upcase_s_sc = 875, - enum_ops_downcase_s_s = 876, - enum_ops_downcase_s_sc = 877, - enum_ops_titlecase_s_s = 878, - enum_ops_titlecase_s_sc = 879, - enum_ops_join_s_s_p = 880, - enum_ops_join_s_sc_p = 881, - enum_ops_split_p_s_s = 882, - enum_ops_split_p_sc_s = 883, - enum_ops_split_p_s_sc = 884, - enum_ops_split_p_sc_sc = 885, - enum_ops_encoding_i_s = 886, - enum_ops_encoding_i_sc = 887, - enum_ops_encodingname_s_i = 888, - enum_ops_encodingname_s_ic = 889, - enum_ops_find_encoding_i_s = 890, - enum_ops_find_encoding_i_sc = 891, - enum_ops_trans_encoding_s_s_i = 892, - enum_ops_trans_encoding_s_sc_i = 893, - enum_ops_trans_encoding_s_s_ic = 894, - enum_ops_trans_encoding_s_sc_ic = 895, - enum_ops_is_cclass_i_i_s_i = 896, - enum_ops_is_cclass_i_ic_s_i = 897, - enum_ops_is_cclass_i_i_sc_i = 898, - enum_ops_is_cclass_i_ic_sc_i = 899, - enum_ops_is_cclass_i_i_s_ic = 900, - enum_ops_is_cclass_i_ic_s_ic = 901, - enum_ops_is_cclass_i_i_sc_ic = 902, - enum_ops_is_cclass_i_ic_sc_ic = 903, - enum_ops_find_cclass_i_i_s_i_i = 904, - enum_ops_find_cclass_i_ic_s_i_i = 905, - enum_ops_find_cclass_i_i_sc_i_i = 906, - enum_ops_find_cclass_i_ic_sc_i_i = 907, - enum_ops_find_cclass_i_i_s_ic_i = 908, - enum_ops_find_cclass_i_ic_s_ic_i = 909, - enum_ops_find_cclass_i_i_sc_ic_i = 910, - enum_ops_find_cclass_i_ic_sc_ic_i = 911, - enum_ops_find_cclass_i_i_s_i_ic = 912, - enum_ops_find_cclass_i_ic_s_i_ic = 913, - enum_ops_find_cclass_i_i_sc_i_ic = 914, - enum_ops_find_cclass_i_ic_sc_i_ic = 915, - enum_ops_find_cclass_i_i_s_ic_ic = 916, - enum_ops_find_cclass_i_ic_s_ic_ic = 917, - enum_ops_find_cclass_i_i_sc_ic_ic = 918, - enum_ops_find_cclass_i_ic_sc_ic_ic = 919, - enum_ops_find_not_cclass_i_i_s_i_i = 920, - enum_ops_find_not_cclass_i_ic_s_i_i = 921, - enum_ops_find_not_cclass_i_i_sc_i_i = 922, - enum_ops_find_not_cclass_i_ic_sc_i_i = 923, - enum_ops_find_not_cclass_i_i_s_ic_i = 924, - enum_ops_find_not_cclass_i_ic_s_ic_i = 925, - enum_ops_find_not_cclass_i_i_sc_ic_i = 926, - enum_ops_find_not_cclass_i_ic_sc_ic_i = 927, - enum_ops_find_not_cclass_i_i_s_i_ic = 928, - enum_ops_find_not_cclass_i_ic_s_i_ic = 929, - enum_ops_find_not_cclass_i_i_sc_i_ic = 930, - enum_ops_find_not_cclass_i_ic_sc_i_ic = 931, - enum_ops_find_not_cclass_i_i_s_ic_ic = 932, - enum_ops_find_not_cclass_i_ic_s_ic_ic = 933, - enum_ops_find_not_cclass_i_i_sc_ic_ic = 934, - enum_ops_find_not_cclass_i_ic_sc_ic_ic = 935, - enum_ops_escape_s_s = 936, - enum_ops_compose_s_s = 937, - enum_ops_compose_s_sc = 938, - enum_ops_find_codepoint_i_s = 939, - enum_ops_find_codepoint_i_sc = 940, - enum_ops_spawnw_i_s = 941, - enum_ops_spawnw_i_sc = 942, - enum_ops_spawnw_i_p = 943, - enum_ops_err_i = 944, - enum_ops_err_s = 945, - enum_ops_err_s_i = 946, - enum_ops_err_s_ic = 947, - enum_ops_time_i = 948, - enum_ops_time_n = 949, - enum_ops_sleep_i = 950, - enum_ops_sleep_ic = 951, - enum_ops_sleep_n = 952, - enum_ops_sleep_nc = 953, - enum_ops_store_lex_s_p = 954, - enum_ops_store_lex_sc_p = 955, - enum_ops_store_lex_s_s = 956, - enum_ops_store_lex_sc_s = 957, - enum_ops_store_lex_s_sc = 958, - enum_ops_store_lex_sc_sc = 959, - enum_ops_store_lex_s_i = 960, - enum_ops_store_lex_sc_i = 961, - enum_ops_store_lex_s_ic = 962, - enum_ops_store_lex_sc_ic = 963, - enum_ops_store_lex_s_n = 964, - enum_ops_store_lex_sc_n = 965, - enum_ops_store_lex_s_nc = 966, - enum_ops_store_lex_sc_nc = 967, - enum_ops_store_dynamic_lex_s_p = 968, - enum_ops_store_dynamic_lex_sc_p = 969, - enum_ops_find_lex_p_s = 970, - enum_ops_find_lex_p_sc = 971, - enum_ops_find_lex_s_s = 972, - enum_ops_find_lex_s_sc = 973, - enum_ops_find_lex_i_s = 974, - enum_ops_find_lex_i_sc = 975, - enum_ops_find_lex_n_s = 976, - enum_ops_find_lex_n_sc = 977, - enum_ops_find_dynamic_lex_p_s = 978, - enum_ops_find_dynamic_lex_p_sc = 979, - enum_ops_find_caller_lex_p_s = 980, - enum_ops_find_caller_lex_p_sc = 981, - enum_ops_get_namespace_p = 982, - enum_ops_get_namespace_p_p = 983, - enum_ops_get_namespace_p_pc = 984, - enum_ops_get_hll_namespace_p = 985, - enum_ops_get_hll_namespace_p_p = 986, - enum_ops_get_hll_namespace_p_pc = 987, - enum_ops_get_root_namespace_p = 988, - enum_ops_get_root_namespace_p_p = 989, - enum_ops_get_root_namespace_p_pc = 990, - enum_ops_get_global_p_s = 991, - enum_ops_get_global_p_sc = 992, - enum_ops_get_global_p_p_s = 993, - enum_ops_get_global_p_pc_s = 994, - enum_ops_get_global_p_p_sc = 995, - enum_ops_get_global_p_pc_sc = 996, - enum_ops_get_hll_global_p_s = 997, - enum_ops_get_hll_global_p_sc = 998, - enum_ops_get_hll_global_p_p_s = 999, - enum_ops_get_hll_global_p_pc_s = 1000, - enum_ops_get_hll_global_p_p_sc = 1001, - enum_ops_get_hll_global_p_pc_sc = 1002, - enum_ops_get_root_global_p_s = 1003, - enum_ops_get_root_global_p_sc = 1004, - enum_ops_get_root_global_p_p_s = 1005, - enum_ops_get_root_global_p_pc_s = 1006, - enum_ops_get_root_global_p_p_sc = 1007, - enum_ops_get_root_global_p_pc_sc = 1008, - enum_ops_set_global_s_p = 1009, - enum_ops_set_global_sc_p = 1010, - enum_ops_set_global_p_s_p = 1011, - enum_ops_set_global_pc_s_p = 1012, - enum_ops_set_global_p_sc_p = 1013, - enum_ops_set_global_pc_sc_p = 1014, - enum_ops_set_hll_global_s_p = 1015, - enum_ops_set_hll_global_sc_p = 1016, - enum_ops_set_hll_global_p_s_p = 1017, - enum_ops_set_hll_global_pc_s_p = 1018, - enum_ops_set_hll_global_p_sc_p = 1019, - enum_ops_set_hll_global_pc_sc_p = 1020, - enum_ops_set_root_global_s_p = 1021, - enum_ops_set_root_global_sc_p = 1022, - enum_ops_set_root_global_p_s_p = 1023, - enum_ops_set_root_global_pc_s_p = 1024, - enum_ops_set_root_global_p_sc_p = 1025, - enum_ops_set_root_global_pc_sc_p = 1026, - enum_ops_find_name_p_s = 1027, - enum_ops_find_name_p_sc = 1028, - enum_ops_find_sub_not_null_p_s = 1029, - enum_ops_find_sub_not_null_p_sc = 1030, - enum_ops_trap = 1031, - enum_ops_set_label_p_ic = 1032, - enum_ops_get_label_i_p = 1033, - enum_ops_get_id_i_p = 1034, - enum_ops_get_id_i_pc = 1035, - enum_ops_fetch_p_p_p_p = 1036, - enum_ops_fetch_p_pc_p_p = 1037, - enum_ops_fetch_p_p_pc_p = 1038, - enum_ops_fetch_p_pc_pc_p = 1039, - enum_ops_fetch_p_p_p_pc = 1040, - enum_ops_fetch_p_pc_p_pc = 1041, - enum_ops_fetch_p_p_pc_pc = 1042, - enum_ops_fetch_p_pc_pc_pc = 1043, - enum_ops_fetch_p_p_i_p = 1044, - enum_ops_fetch_p_pc_i_p = 1045, - enum_ops_fetch_p_p_ic_p = 1046, - enum_ops_fetch_p_pc_ic_p = 1047, - enum_ops_fetch_p_p_i_pc = 1048, - enum_ops_fetch_p_pc_i_pc = 1049, - enum_ops_fetch_p_p_ic_pc = 1050, - enum_ops_fetch_p_pc_ic_pc = 1051, - enum_ops_fetch_p_p_s_p = 1052, - enum_ops_fetch_p_pc_s_p = 1053, - enum_ops_fetch_p_p_sc_p = 1054, - enum_ops_fetch_p_pc_sc_p = 1055, - enum_ops_fetch_p_p_s_pc = 1056, - enum_ops_fetch_p_pc_s_pc = 1057, - enum_ops_fetch_p_p_sc_pc = 1058, - enum_ops_fetch_p_pc_sc_pc = 1059, - enum_ops_vivify_p_p_p_p = 1060, - enum_ops_vivify_p_pc_p_p = 1061, - enum_ops_vivify_p_p_pc_p = 1062, - enum_ops_vivify_p_pc_pc_p = 1063, - enum_ops_vivify_p_p_p_pc = 1064, - enum_ops_vivify_p_pc_p_pc = 1065, - enum_ops_vivify_p_p_pc_pc = 1066, - enum_ops_vivify_p_pc_pc_pc = 1067, - enum_ops_vivify_p_p_i_p = 1068, - enum_ops_vivify_p_pc_i_p = 1069, - enum_ops_vivify_p_p_ic_p = 1070, - enum_ops_vivify_p_pc_ic_p = 1071, - enum_ops_vivify_p_p_i_pc = 1072, - enum_ops_vivify_p_pc_i_pc = 1073, - enum_ops_vivify_p_p_ic_pc = 1074, - enum_ops_vivify_p_pc_ic_pc = 1075, - enum_ops_vivify_p_p_s_p = 1076, - enum_ops_vivify_p_pc_s_p = 1077, - enum_ops_vivify_p_p_sc_p = 1078, - enum_ops_vivify_p_pc_sc_p = 1079, - enum_ops_vivify_p_p_s_pc = 1080, - enum_ops_vivify_p_pc_s_pc = 1081, - enum_ops_vivify_p_p_sc_pc = 1082, - enum_ops_vivify_p_pc_sc_pc = 1083, - enum_ops_new_p_s_i = 1084, - enum_ops_new_p_sc_i = 1085, - enum_ops_new_p_s_ic = 1086, - enum_ops_new_p_sc_ic = 1087, - enum_ops_new_p_p_i = 1088, - enum_ops_new_p_pc_i = 1089, - enum_ops_new_p_p_ic = 1090, - enum_ops_new_p_pc_ic = 1091, - enum_ops_root_new_p_p_i = 1092, - enum_ops_root_new_p_pc_i = 1093, - enum_ops_root_new_p_p_ic = 1094, - enum_ops_root_new_p_pc_ic = 1095, - enum_ops_receive_p = 1096, - enum_ops_wait_p = 1097, - enum_ops_wait_pc = 1098, - enum_ops_pass = 1099, + enum_ops_set_runcore_s = 91, + enum_ops_set_runcore_sc = 92, + enum_ops_runinterp_p_i = 93, + enum_ops_runinterp_p_ic = 94, + enum_ops_getinterp_p = 95, + enum_ops_sweep_ic = 96, + enum_ops_collect = 97, + enum_ops_sweepoff = 98, + enum_ops_sweepon = 99, + enum_ops_collectoff = 100, + enum_ops_collecton = 101, + enum_ops_needs_destroy_p = 102, + enum_ops_loadlib_p_s = 103, + enum_ops_loadlib_p_sc = 104, + enum_ops_loadlib_p_s_p = 105, + enum_ops_loadlib_p_sc_p = 106, + enum_ops_loadlib_p_s_pc = 107, + enum_ops_loadlib_p_sc_pc = 108, + enum_ops_dlfunc_p_p_s_s = 109, + enum_ops_dlfunc_p_p_sc_s = 110, + enum_ops_dlfunc_p_p_s_sc = 111, + enum_ops_dlfunc_p_p_sc_sc = 112, + enum_ops_dlfunc_p_p_s_p = 113, + enum_ops_dlfunc_p_p_sc_p = 114, + enum_ops_dlvar_p_p_s = 115, + enum_ops_dlvar_p_p_sc = 116, + enum_ops_compreg_s_p = 117, + enum_ops_compreg_sc_p = 118, + enum_ops_compreg_p_s = 119, + enum_ops_compreg_p_sc = 120, + enum_ops_new_callback_p_p_p_s = 121, + enum_ops_new_callback_p_p_p_sc = 122, + enum_ops_annotations_p = 123, + enum_ops_annotations_p_s = 124, + enum_ops_annotations_p_sc = 125, + enum_ops_band_i_i = 126, + enum_ops_band_i_ic = 127, + enum_ops_band_i_i_i = 128, + enum_ops_band_i_ic_i = 129, + enum_ops_band_i_i_ic = 130, + enum_ops_bor_i_i = 131, + enum_ops_bor_i_ic = 132, + enum_ops_bor_i_i_i = 133, + enum_ops_bor_i_ic_i = 134, + enum_ops_bor_i_i_ic = 135, + enum_ops_shl_i_i = 136, + enum_ops_shl_i_ic = 137, + enum_ops_shl_i_i_i = 138, + enum_ops_shl_i_ic_i = 139, + enum_ops_shl_i_i_ic = 140, + enum_ops_shr_i_i = 141, + enum_ops_shr_i_ic = 142, + enum_ops_shr_i_i_i = 143, + enum_ops_shr_i_ic_i = 144, + enum_ops_shr_i_i_ic = 145, + enum_ops_lsr_i_i = 146, + enum_ops_lsr_i_ic = 147, + enum_ops_lsr_i_i_i = 148, + enum_ops_lsr_i_ic_i = 149, + enum_ops_lsr_i_i_ic = 150, + enum_ops_bxor_i_i = 151, + enum_ops_bxor_i_ic = 152, + enum_ops_bxor_i_i_i = 153, + enum_ops_bxor_i_ic_i = 154, + enum_ops_bxor_i_i_ic = 155, + enum_ops_eq_i_i_ic = 156, + enum_ops_eq_ic_i_ic = 157, + enum_ops_eq_i_ic_ic = 158, + enum_ops_eq_n_n_ic = 159, + enum_ops_eq_nc_n_ic = 160, + enum_ops_eq_n_nc_ic = 161, + enum_ops_eq_s_s_ic = 162, + enum_ops_eq_sc_s_ic = 163, + enum_ops_eq_s_sc_ic = 164, + enum_ops_eq_p_p_ic = 165, + enum_ops_eq_p_i_ic = 166, + enum_ops_eq_p_ic_ic = 167, + enum_ops_eq_p_n_ic = 168, + enum_ops_eq_p_nc_ic = 169, + enum_ops_eq_p_s_ic = 170, + enum_ops_eq_p_sc_ic = 171, + enum_ops_eq_str_p_p_ic = 172, + enum_ops_eq_num_p_p_ic = 173, + enum_ops_eq_addr_s_s_ic = 174, + enum_ops_eq_addr_sc_s_ic = 175, + enum_ops_eq_addr_s_sc_ic = 176, + enum_ops_eq_addr_sc_sc_ic = 177, + enum_ops_eq_addr_p_p_ic = 178, + enum_ops_ne_i_i_ic = 179, + enum_ops_ne_ic_i_ic = 180, + enum_ops_ne_i_ic_ic = 181, + enum_ops_ne_n_n_ic = 182, + enum_ops_ne_nc_n_ic = 183, + enum_ops_ne_n_nc_ic = 184, + enum_ops_ne_s_s_ic = 185, + enum_ops_ne_sc_s_ic = 186, + enum_ops_ne_s_sc_ic = 187, + enum_ops_ne_p_p_ic = 188, + enum_ops_ne_p_i_ic = 189, + enum_ops_ne_p_ic_ic = 190, + enum_ops_ne_p_n_ic = 191, + enum_ops_ne_p_nc_ic = 192, + enum_ops_ne_p_s_ic = 193, + enum_ops_ne_p_sc_ic = 194, + enum_ops_ne_str_p_p_ic = 195, + enum_ops_ne_num_p_p_ic = 196, + enum_ops_ne_addr_s_s_ic = 197, + enum_ops_ne_addr_sc_s_ic = 198, + enum_ops_ne_addr_s_sc_ic = 199, + enum_ops_ne_addr_sc_sc_ic = 200, + enum_ops_ne_addr_p_p_ic = 201, + enum_ops_lt_i_i_ic = 202, + enum_ops_lt_ic_i_ic = 203, + enum_ops_lt_i_ic_ic = 204, + enum_ops_lt_n_n_ic = 205, + enum_ops_lt_nc_n_ic = 206, + enum_ops_lt_n_nc_ic = 207, + enum_ops_lt_s_s_ic = 208, + enum_ops_lt_sc_s_ic = 209, + enum_ops_lt_s_sc_ic = 210, + enum_ops_lt_p_p_ic = 211, + enum_ops_lt_p_i_ic = 212, + enum_ops_lt_p_ic_ic = 213, + enum_ops_lt_p_n_ic = 214, + enum_ops_lt_p_nc_ic = 215, + enum_ops_lt_p_s_ic = 216, + enum_ops_lt_p_sc_ic = 217, + enum_ops_lt_str_p_p_ic = 218, + enum_ops_lt_num_p_p_ic = 219, + enum_ops_le_i_i_ic = 220, + enum_ops_le_ic_i_ic = 221, + enum_ops_le_i_ic_ic = 222, + enum_ops_le_n_n_ic = 223, + enum_ops_le_nc_n_ic = 224, + enum_ops_le_n_nc_ic = 225, + enum_ops_le_s_s_ic = 226, + enum_ops_le_sc_s_ic = 227, + enum_ops_le_s_sc_ic = 228, + enum_ops_le_p_p_ic = 229, + enum_ops_le_p_i_ic = 230, + enum_ops_le_p_ic_ic = 231, + enum_ops_le_p_n_ic = 232, + enum_ops_le_p_nc_ic = 233, + enum_ops_le_p_s_ic = 234, + enum_ops_le_p_sc_ic = 235, + enum_ops_le_str_p_p_ic = 236, + enum_ops_le_num_p_p_ic = 237, + enum_ops_gt_p_p_ic = 238, + enum_ops_gt_p_i_ic = 239, + enum_ops_gt_p_ic_ic = 240, + enum_ops_gt_p_n_ic = 241, + enum_ops_gt_p_nc_ic = 242, + enum_ops_gt_p_s_ic = 243, + enum_ops_gt_p_sc_ic = 244, + enum_ops_gt_str_p_p_ic = 245, + enum_ops_gt_num_p_p_ic = 246, + enum_ops_ge_p_p_ic = 247, + enum_ops_ge_p_i_ic = 248, + enum_ops_ge_p_ic_ic = 249, + enum_ops_ge_p_n_ic = 250, + enum_ops_ge_p_nc_ic = 251, + enum_ops_ge_p_s_ic = 252, + enum_ops_ge_p_sc_ic = 253, + enum_ops_ge_str_p_p_ic = 254, + enum_ops_ge_num_p_p_ic = 255, + enum_ops_if_null_p_ic = 256, + enum_ops_if_null_s_ic = 257, + enum_ops_unless_null_p_ic = 258, + enum_ops_unless_null_s_ic = 259, + enum_ops_cmp_i_i_i = 260, + enum_ops_cmp_i_ic_i = 261, + enum_ops_cmp_i_i_ic = 262, + enum_ops_cmp_i_n_n = 263, + enum_ops_cmp_i_nc_n = 264, + enum_ops_cmp_i_n_nc = 265, + enum_ops_cmp_i_s_s = 266, + enum_ops_cmp_i_sc_s = 267, + enum_ops_cmp_i_s_sc = 268, + enum_ops_cmp_i_p_p = 269, + enum_ops_cmp_i_p_i = 270, + enum_ops_cmp_i_p_ic = 271, + enum_ops_cmp_i_p_n = 272, + enum_ops_cmp_i_p_nc = 273, + enum_ops_cmp_i_p_s = 274, + enum_ops_cmp_i_p_sc = 275, + enum_ops_cmp_str_i_p_p = 276, + enum_ops_cmp_num_i_p_p = 277, + enum_ops_cmp_pmc_p_p_p = 278, + enum_ops_issame_i_p_p = 279, + enum_ops_issame_i_s_s = 280, + enum_ops_issame_i_sc_s = 281, + enum_ops_issame_i_s_sc = 282, + enum_ops_issame_i_sc_sc = 283, + enum_ops_isntsame_i_p_p = 284, + enum_ops_isntsame_i_s_s = 285, + enum_ops_isntsame_i_sc_s = 286, + enum_ops_isntsame_i_s_sc = 287, + enum_ops_isntsame_i_sc_sc = 288, + enum_ops_istrue_i_p = 289, + enum_ops_isfalse_i_p = 290, + enum_ops_isnull_i_p = 291, + enum_ops_isnull_i_pc = 292, + enum_ops_isnull_i_s = 293, + enum_ops_isnull_i_sc = 294, + enum_ops_isgt_i_p_p = 295, + enum_ops_isge_i_p_p = 296, + enum_ops_isle_i_i_i = 297, + enum_ops_isle_i_ic_i = 298, + enum_ops_isle_i_i_ic = 299, + enum_ops_isle_i_n_n = 300, + enum_ops_isle_i_nc_n = 301, + enum_ops_isle_i_n_nc = 302, + enum_ops_isle_i_s_s = 303, + enum_ops_isle_i_sc_s = 304, + enum_ops_isle_i_s_sc = 305, + enum_ops_isle_i_p_p = 306, + enum_ops_islt_i_i_i = 307, + enum_ops_islt_i_ic_i = 308, + enum_ops_islt_i_i_ic = 309, + enum_ops_islt_i_n_n = 310, + enum_ops_islt_i_nc_n = 311, + enum_ops_islt_i_n_nc = 312, + enum_ops_islt_i_s_s = 313, + enum_ops_islt_i_sc_s = 314, + enum_ops_islt_i_s_sc = 315, + enum_ops_islt_i_p_p = 316, + enum_ops_iseq_i_i_i = 317, + enum_ops_iseq_i_ic_i = 318, + enum_ops_iseq_i_i_ic = 319, + enum_ops_iseq_i_n_n = 320, + enum_ops_iseq_i_nc_n = 321, + enum_ops_iseq_i_n_nc = 322, + enum_ops_iseq_i_s_s = 323, + enum_ops_iseq_i_sc_s = 324, + enum_ops_iseq_i_s_sc = 325, + enum_ops_iseq_i_p_p = 326, + enum_ops_isne_i_i_i = 327, + enum_ops_isne_i_ic_i = 328, + enum_ops_isne_i_i_ic = 329, + enum_ops_isne_i_n_n = 330, + enum_ops_isne_i_nc_n = 331, + enum_ops_isne_i_n_nc = 332, + enum_ops_isne_i_s_s = 333, + enum_ops_isne_i_sc_s = 334, + enum_ops_isne_i_s_sc = 335, + enum_ops_isne_i_p_p = 336, + enum_ops_and_i_i_i = 337, + enum_ops_and_i_ic_i = 338, + enum_ops_and_i_i_ic = 339, + enum_ops_and_p_p_p = 340, + enum_ops_not_i = 341, + enum_ops_not_i_i = 342, + enum_ops_not_p = 343, + enum_ops_not_p_p = 344, + enum_ops_or_i_i_i = 345, + enum_ops_or_i_ic_i = 346, + enum_ops_or_i_i_ic = 347, + enum_ops_or_p_p_p = 348, + enum_ops_xor_i_i_i = 349, + enum_ops_xor_i_ic_i = 350, + enum_ops_xor_i_i_ic = 351, + enum_ops_xor_p_p_p = 352, + enum_ops_print_i = 353, + enum_ops_print_ic = 354, + enum_ops_print_n = 355, + enum_ops_print_nc = 356, + enum_ops_print_s = 357, + enum_ops_print_sc = 358, + enum_ops_print_p = 359, + enum_ops_say_i = 360, + enum_ops_say_ic = 361, + enum_ops_say_n = 362, + enum_ops_say_nc = 363, + enum_ops_say_s = 364, + enum_ops_say_sc = 365, + enum_ops_say_p = 366, + enum_ops_print_p_i = 367, + enum_ops_print_p_ic = 368, + enum_ops_print_p_n = 369, + enum_ops_print_p_nc = 370, + enum_ops_print_p_s = 371, + enum_ops_print_p_sc = 372, + enum_ops_print_p_p = 373, + enum_ops_getstdin_p = 374, + enum_ops_getstdout_p = 375, + enum_ops_getstderr_p = 376, + enum_ops_abs_i = 377, + enum_ops_abs_n = 378, + enum_ops_abs_i_i = 379, + enum_ops_abs_n_n = 380, + enum_ops_abs_p = 381, + enum_ops_abs_p_p = 382, + enum_ops_add_i_i = 383, + enum_ops_add_i_ic = 384, + enum_ops_add_n_n = 385, + enum_ops_add_n_nc = 386, + enum_ops_add_p_p = 387, + enum_ops_add_p_i = 388, + enum_ops_add_p_ic = 389, + enum_ops_add_p_n = 390, + enum_ops_add_p_nc = 391, + enum_ops_add_i_i_i = 392, + enum_ops_add_i_ic_i = 393, + enum_ops_add_i_i_ic = 394, + enum_ops_add_n_n_n = 395, + enum_ops_add_n_nc_n = 396, + enum_ops_add_n_n_nc = 397, + enum_ops_add_p_p_p = 398, + enum_ops_add_p_p_i = 399, + enum_ops_add_p_p_ic = 400, + enum_ops_add_p_p_n = 401, + enum_ops_add_p_p_nc = 402, + enum_ops_dec_i = 403, + enum_ops_dec_n = 404, + enum_ops_dec_p = 405, + enum_ops_div_i_i = 406, + enum_ops_div_i_ic = 407, + enum_ops_div_n_n = 408, + enum_ops_div_n_nc = 409, + enum_ops_div_p_p = 410, + enum_ops_div_p_i = 411, + enum_ops_div_p_ic = 412, + enum_ops_div_p_n = 413, + enum_ops_div_p_nc = 414, + enum_ops_div_i_i_i = 415, + enum_ops_div_i_ic_i = 416, + enum_ops_div_i_i_ic = 417, + enum_ops_div_i_ic_ic = 418, + enum_ops_div_n_n_n = 419, + enum_ops_div_n_nc_n = 420, + enum_ops_div_n_n_nc = 421, + enum_ops_div_n_nc_nc = 422, + enum_ops_div_p_p_p = 423, + enum_ops_div_p_p_i = 424, + enum_ops_div_p_p_ic = 425, + enum_ops_div_p_p_n = 426, + enum_ops_div_p_p_nc = 427, + enum_ops_fdiv_i_i = 428, + enum_ops_fdiv_i_ic = 429, + enum_ops_fdiv_n_n = 430, + enum_ops_fdiv_n_nc = 431, + enum_ops_fdiv_p_p = 432, + enum_ops_fdiv_p_i = 433, + enum_ops_fdiv_p_ic = 434, + enum_ops_fdiv_p_n = 435, + enum_ops_fdiv_p_nc = 436, + enum_ops_fdiv_i_i_i = 437, + enum_ops_fdiv_i_ic_i = 438, + enum_ops_fdiv_i_i_ic = 439, + enum_ops_fdiv_n_n_n = 440, + enum_ops_fdiv_n_nc_n = 441, + enum_ops_fdiv_n_n_nc = 442, + enum_ops_fdiv_p_p_p = 443, + enum_ops_fdiv_p_p_i = 444, + enum_ops_fdiv_p_p_ic = 445, + enum_ops_fdiv_p_p_n = 446, + enum_ops_fdiv_p_p_nc = 447, + enum_ops_ceil_n = 448, + enum_ops_ceil_i_n = 449, + enum_ops_ceil_n_n = 450, + enum_ops_floor_n = 451, + enum_ops_floor_i_n = 452, + enum_ops_floor_n_n = 453, + enum_ops_inc_i = 454, + enum_ops_inc_n = 455, + enum_ops_inc_p = 456, + enum_ops_mod_i_i = 457, + enum_ops_mod_i_ic = 458, + enum_ops_mod_n_n = 459, + enum_ops_mod_n_nc = 460, + enum_ops_mod_p_p = 461, + enum_ops_mod_p_i = 462, + enum_ops_mod_p_ic = 463, + enum_ops_mod_p_n = 464, + enum_ops_mod_p_nc = 465, + enum_ops_mod_i_i_i = 466, + enum_ops_mod_i_ic_i = 467, + enum_ops_mod_i_i_ic = 468, + enum_ops_mod_n_n_n = 469, + enum_ops_mod_n_nc_n = 470, + enum_ops_mod_n_n_nc = 471, + enum_ops_mod_p_p_p = 472, + enum_ops_mod_p_p_i = 473, + enum_ops_mod_p_p_ic = 474, + enum_ops_mod_p_p_n = 475, + enum_ops_mod_p_p_nc = 476, + enum_ops_mul_i_i = 477, + enum_ops_mul_i_ic = 478, + enum_ops_mul_n_n = 479, + enum_ops_mul_n_nc = 480, + enum_ops_mul_p_p = 481, + enum_ops_mul_p_i = 482, + enum_ops_mul_p_ic = 483, + enum_ops_mul_p_n = 484, + enum_ops_mul_p_nc = 485, + enum_ops_mul_i_i_i = 486, + enum_ops_mul_i_ic_i = 487, + enum_ops_mul_i_i_ic = 488, + enum_ops_mul_n_n_n = 489, + enum_ops_mul_n_nc_n = 490, + enum_ops_mul_n_n_nc = 491, + enum_ops_mul_p_p_p = 492, + enum_ops_mul_p_p_i = 493, + enum_ops_mul_p_p_ic = 494, + enum_ops_mul_p_p_n = 495, + enum_ops_mul_p_p_nc = 496, + enum_ops_neg_i = 497, + enum_ops_neg_n = 498, + enum_ops_neg_p = 499, + enum_ops_neg_i_i = 500, + enum_ops_neg_n_n = 501, + enum_ops_neg_p_p = 502, + enum_ops_sub_i_i = 503, + enum_ops_sub_i_ic = 504, + enum_ops_sub_n_n = 505, + enum_ops_sub_n_nc = 506, + enum_ops_sub_p_p = 507, + enum_ops_sub_p_i = 508, + enum_ops_sub_p_ic = 509, + enum_ops_sub_p_n = 510, + enum_ops_sub_p_nc = 511, + enum_ops_sub_i_i_i = 512, + enum_ops_sub_i_ic_i = 513, + enum_ops_sub_i_i_ic = 514, + enum_ops_sub_n_n_n = 515, + enum_ops_sub_n_nc_n = 516, + enum_ops_sub_n_n_nc = 517, + enum_ops_sub_p_p_p = 518, + enum_ops_sub_p_p_i = 519, + enum_ops_sub_p_p_ic = 520, + enum_ops_sub_p_p_n = 521, + enum_ops_sub_p_p_nc = 522, + enum_ops_sqrt_n_n = 523, + enum_ops_callmethodcc_p_s = 524, + enum_ops_callmethodcc_p_sc = 525, + enum_ops_callmethodcc_p_p = 526, + enum_ops_callmethod_p_s_p = 527, + enum_ops_callmethod_p_sc_p = 528, + enum_ops_callmethod_p_p_p = 529, + enum_ops_tailcallmethod_p_s = 530, + enum_ops_tailcallmethod_p_sc = 531, + enum_ops_tailcallmethod_p_p = 532, + enum_ops_addmethod_p_s_p = 533, + enum_ops_addmethod_p_sc_p = 534, + enum_ops_can_i_p_s = 535, + enum_ops_can_i_p_sc = 536, + enum_ops_does_i_p_s = 537, + enum_ops_does_i_p_sc = 538, + enum_ops_does_i_p_p = 539, + enum_ops_does_i_p_pc = 540, + enum_ops_isa_i_p_s = 541, + enum_ops_isa_i_p_sc = 542, + enum_ops_isa_i_p_p = 543, + enum_ops_isa_i_p_pc = 544, + enum_ops_newclass_p_s = 545, + enum_ops_newclass_p_sc = 546, + enum_ops_newclass_p_p = 547, + enum_ops_newclass_p_pc = 548, + enum_ops_subclass_p_p = 549, + enum_ops_subclass_p_pc = 550, + enum_ops_subclass_p_p_s = 551, + enum_ops_subclass_p_pc_s = 552, + enum_ops_subclass_p_p_sc = 553, + enum_ops_subclass_p_pc_sc = 554, + enum_ops_subclass_p_p_p = 555, + enum_ops_subclass_p_pc_p = 556, + enum_ops_subclass_p_p_pc = 557, + enum_ops_subclass_p_pc_pc = 558, + enum_ops_subclass_p_s = 559, + enum_ops_subclass_p_sc = 560, + enum_ops_subclass_p_s_s = 561, + enum_ops_subclass_p_sc_s = 562, + enum_ops_subclass_p_s_sc = 563, + enum_ops_subclass_p_sc_sc = 564, + enum_ops_subclass_p_s_p = 565, + enum_ops_subclass_p_sc_p = 566, + enum_ops_subclass_p_s_pc = 567, + enum_ops_subclass_p_sc_pc = 568, + enum_ops_get_class_p_s = 569, + enum_ops_get_class_p_sc = 570, + enum_ops_get_class_p_p = 571, + enum_ops_get_class_p_pc = 572, + enum_ops_class_p_p = 573, + enum_ops_addparent_p_p = 574, + enum_ops_removeparent_p_p = 575, + enum_ops_addrole_p_p = 576, + enum_ops_addattribute_p_s = 577, + enum_ops_addattribute_p_sc = 578, + enum_ops_removeattribute_p_s = 579, + enum_ops_removeattribute_p_sc = 580, + enum_ops_getattribute_p_p_s = 581, + enum_ops_getattribute_p_p_sc = 582, + enum_ops_getattribute_p_p_p_s = 583, + enum_ops_getattribute_p_p_pc_s = 584, + enum_ops_getattribute_p_p_p_sc = 585, + enum_ops_getattribute_p_p_pc_sc = 586, + enum_ops_setattribute_p_s_p = 587, + enum_ops_setattribute_p_sc_p = 588, + enum_ops_setattribute_p_p_s_p = 589, + enum_ops_setattribute_p_pc_s_p = 590, + enum_ops_setattribute_p_p_sc_p = 591, + enum_ops_setattribute_p_pc_sc_p = 592, + enum_ops_inspect_p_p = 593, + enum_ops_inspect_p_pc = 594, + enum_ops_inspect_p_p_s = 595, + enum_ops_inspect_p_pc_s = 596, + enum_ops_inspect_p_p_sc = 597, + enum_ops_inspect_p_pc_sc = 598, + enum_ops_new_p_s = 599, + enum_ops_new_p_sc = 600, + enum_ops_new_p_s_p = 601, + enum_ops_new_p_sc_p = 602, + enum_ops_new_p_s_pc = 603, + enum_ops_new_p_sc_pc = 604, + enum_ops_new_p_p = 605, + enum_ops_new_p_pc = 606, + enum_ops_new_p_p_p = 607, + enum_ops_new_p_pc_p = 608, + enum_ops_new_p_p_pc = 609, + enum_ops_new_p_pc_pc = 610, + enum_ops_root_new_p_p = 611, + enum_ops_root_new_p_pc = 612, + enum_ops_root_new_p_p_p = 613, + enum_ops_root_new_p_pc_p = 614, + enum_ops_root_new_p_p_pc = 615, + enum_ops_root_new_p_pc_pc = 616, + enum_ops_typeof_s_p = 617, + enum_ops_typeof_p_p = 618, + enum_ops_get_repr_s_p = 619, + enum_ops_find_method_p_p_s = 620, + enum_ops_find_method_p_p_sc = 621, + enum_ops_defined_i_p = 622, + enum_ops_defined_i_p_ki = 623, + enum_ops_defined_i_p_kic = 624, + enum_ops_defined_i_p_k = 625, + enum_ops_defined_i_p_kc = 626, + enum_ops_exists_i_p_ki = 627, + enum_ops_exists_i_p_kic = 628, + enum_ops_exists_i_p_k = 629, + enum_ops_exists_i_p_kc = 630, + enum_ops_delete_p_k = 631, + enum_ops_delete_p_kc = 632, + enum_ops_delete_p_ki = 633, + enum_ops_delete_p_kic = 634, + enum_ops_elements_i_p = 635, + enum_ops_push_p_i = 636, + enum_ops_push_p_ic = 637, + enum_ops_push_p_n = 638, + enum_ops_push_p_nc = 639, + enum_ops_push_p_s = 640, + enum_ops_push_p_sc = 641, + enum_ops_push_p_p = 642, + enum_ops_pop_i_p = 643, + enum_ops_pop_n_p = 644, + enum_ops_pop_s_p = 645, + enum_ops_pop_p_p = 646, + enum_ops_unshift_p_i = 647, + enum_ops_unshift_p_ic = 648, + enum_ops_unshift_p_n = 649, + enum_ops_unshift_p_nc = 650, + enum_ops_unshift_p_s = 651, + enum_ops_unshift_p_sc = 652, + enum_ops_unshift_p_p = 653, + enum_ops_shift_i_p = 654, + enum_ops_shift_n_p = 655, + enum_ops_shift_s_p = 656, + enum_ops_shift_p_p = 657, + enum_ops_splice_p_p_i_i = 658, + enum_ops_splice_p_p_ic_i = 659, + enum_ops_splice_p_p_i_ic = 660, + enum_ops_splice_p_p_ic_ic = 661, + enum_ops_setprop_p_s_p = 662, + enum_ops_setprop_p_sc_p = 663, + enum_ops_getprop_p_s_p = 664, + enum_ops_getprop_p_sc_p = 665, + enum_ops_delprop_p_s = 666, + enum_ops_delprop_p_sc = 667, + enum_ops_prophash_p_p = 668, + enum_ops_freeze_s_p = 669, + enum_ops_thaw_p_s = 670, + enum_ops_thaw_p_sc = 671, + enum_ops_add_multi_s_s_p = 672, + enum_ops_add_multi_sc_s_p = 673, + enum_ops_add_multi_s_sc_p = 674, + enum_ops_add_multi_sc_sc_p = 675, + enum_ops_find_multi_p_s_s = 676, + enum_ops_find_multi_p_sc_s = 677, + enum_ops_find_multi_p_s_sc = 678, + enum_ops_find_multi_p_sc_sc = 679, + enum_ops_register_p = 680, + enum_ops_unregister_p = 681, + enum_ops_box_p_i = 682, + enum_ops_box_p_ic = 683, + enum_ops_box_p_n = 684, + enum_ops_box_p_nc = 685, + enum_ops_box_p_s = 686, + enum_ops_box_p_sc = 687, + enum_ops_iter_p_p = 688, + enum_ops_morph_p_p = 689, + enum_ops_morph_p_pc = 690, + enum_ops_clone_s_s = 691, + enum_ops_clone_s_sc = 692, + enum_ops_set_i_i = 693, + enum_ops_set_i_ic = 694, + enum_ops_set_i_n = 695, + enum_ops_set_i_nc = 696, + enum_ops_set_i_s = 697, + enum_ops_set_i_sc = 698, + enum_ops_set_n_n = 699, + enum_ops_set_n_nc = 700, + enum_ops_set_n_i = 701, + enum_ops_set_n_ic = 702, + enum_ops_set_n_s = 703, + enum_ops_set_n_sc = 704, + enum_ops_set_n_p = 705, + enum_ops_set_s_p = 706, + enum_ops_set_s_s = 707, + enum_ops_set_s_sc = 708, + enum_ops_set_s_i = 709, + enum_ops_set_s_ic = 710, + enum_ops_set_s_n = 711, + enum_ops_set_s_nc = 712, + enum_ops_set_p_pc = 713, + enum_ops_set_p_p = 714, + enum_ops_set_p_i = 715, + enum_ops_set_p_ic = 716, + enum_ops_set_p_n = 717, + enum_ops_set_p_nc = 718, + enum_ops_set_p_s = 719, + enum_ops_set_p_sc = 720, + enum_ops_set_i_p = 721, + enum_ops_assign_p_p = 722, + enum_ops_assign_p_i = 723, + enum_ops_assign_p_ic = 724, + enum_ops_assign_p_n = 725, + enum_ops_assign_p_nc = 726, + enum_ops_assign_p_s = 727, + enum_ops_assign_p_sc = 728, + enum_ops_assign_s_s = 729, + enum_ops_assign_s_sc = 730, + enum_ops_setref_p_p = 731, + enum_ops_deref_p_p = 732, + enum_ops_set_p_ki_i = 733, + enum_ops_set_p_kic_i = 734, + enum_ops_set_p_ki_ic = 735, + enum_ops_set_p_kic_ic = 736, + enum_ops_set_p_ki_n = 737, + enum_ops_set_p_kic_n = 738, + enum_ops_set_p_ki_nc = 739, + enum_ops_set_p_kic_nc = 740, + enum_ops_set_p_ki_s = 741, + enum_ops_set_p_kic_s = 742, + enum_ops_set_p_ki_sc = 743, + enum_ops_set_p_kic_sc = 744, + enum_ops_set_p_ki_p = 745, + enum_ops_set_p_kic_p = 746, + enum_ops_set_i_p_ki = 747, + enum_ops_set_i_p_kic = 748, + enum_ops_set_n_p_ki = 749, + enum_ops_set_n_p_kic = 750, + enum_ops_set_s_p_ki = 751, + enum_ops_set_s_p_kic = 752, + enum_ops_set_p_p_ki = 753, + enum_ops_set_p_p_kic = 754, + enum_ops_set_p_k_i = 755, + enum_ops_set_p_kc_i = 756, + enum_ops_set_p_k_ic = 757, + enum_ops_set_p_kc_ic = 758, + enum_ops_set_p_k_n = 759, + enum_ops_set_p_kc_n = 760, + enum_ops_set_p_k_nc = 761, + enum_ops_set_p_kc_nc = 762, + enum_ops_set_p_k_s = 763, + enum_ops_set_p_kc_s = 764, + enum_ops_set_p_k_sc = 765, + enum_ops_set_p_kc_sc = 766, + enum_ops_set_p_k_p = 767, + enum_ops_set_p_kc_p = 768, + enum_ops_set_i_p_k = 769, + enum_ops_set_i_p_kc = 770, + enum_ops_set_n_p_k = 771, + enum_ops_set_n_p_kc = 772, + enum_ops_set_s_p_k = 773, + enum_ops_set_s_p_kc = 774, + enum_ops_set_p_p_k = 775, + enum_ops_set_p_p_kc = 776, + enum_ops_clone_p_p = 777, + enum_ops_clone_p_p_p = 778, + enum_ops_clone_p_p_pc = 779, + enum_ops_copy_p_p = 780, + enum_ops_null_s = 781, + enum_ops_null_i = 782, + enum_ops_null_p = 783, + enum_ops_null_n = 784, + enum_ops_ord_i_s = 785, + enum_ops_ord_i_sc = 786, + enum_ops_ord_i_s_i = 787, + enum_ops_ord_i_sc_i = 788, + enum_ops_ord_i_s_ic = 789, + enum_ops_ord_i_sc_ic = 790, + enum_ops_chr_s_i = 791, + enum_ops_chr_s_ic = 792, + enum_ops_chopn_s_s_i = 793, + enum_ops_chopn_s_sc_i = 794, + enum_ops_chopn_s_s_ic = 795, + enum_ops_chopn_s_sc_ic = 796, + enum_ops_concat_p_p = 797, + enum_ops_concat_p_s = 798, + enum_ops_concat_p_sc = 799, + enum_ops_concat_s_s_s = 800, + enum_ops_concat_s_sc_s = 801, + enum_ops_concat_s_s_sc = 802, + enum_ops_concat_p_p_s = 803, + enum_ops_concat_p_p_sc = 804, + enum_ops_concat_p_p_p = 805, + enum_ops_repeat_s_s_i = 806, + enum_ops_repeat_s_sc_i = 807, + enum_ops_repeat_s_s_ic = 808, + enum_ops_repeat_s_sc_ic = 809, + enum_ops_repeat_p_p_i = 810, + enum_ops_repeat_p_p_ic = 811, + enum_ops_repeat_p_p_p = 812, + enum_ops_repeat_p_i = 813, + enum_ops_repeat_p_ic = 814, + enum_ops_repeat_p_p = 815, + enum_ops_length_i_s = 816, + enum_ops_length_i_sc = 817, + enum_ops_bytelength_i_s = 818, + enum_ops_bytelength_i_sc = 819, + enum_ops_pin_s = 820, + enum_ops_unpin_s = 821, + enum_ops_substr_s_s_i = 822, + enum_ops_substr_s_sc_i = 823, + enum_ops_substr_s_s_ic = 824, + enum_ops_substr_s_sc_ic = 825, + enum_ops_substr_s_s_i_i = 826, + enum_ops_substr_s_sc_i_i = 827, + enum_ops_substr_s_s_ic_i = 828, + enum_ops_substr_s_sc_ic_i = 829, + enum_ops_substr_s_s_i_ic = 830, + enum_ops_substr_s_sc_i_ic = 831, + enum_ops_substr_s_s_ic_ic = 832, + enum_ops_substr_s_sc_ic_ic = 833, + enum_ops_substr_s_p_i_i = 834, + enum_ops_substr_s_p_ic_i = 835, + enum_ops_substr_s_p_i_ic = 836, + enum_ops_substr_s_p_ic_ic = 837, + enum_ops_replace_s_s_i_i_s = 838, + enum_ops_replace_s_sc_i_i_s = 839, + enum_ops_replace_s_s_ic_i_s = 840, + enum_ops_replace_s_sc_ic_i_s = 841, + enum_ops_replace_s_s_i_ic_s = 842, + enum_ops_replace_s_sc_i_ic_s = 843, + enum_ops_replace_s_s_ic_ic_s = 844, + enum_ops_replace_s_sc_ic_ic_s = 845, + enum_ops_replace_s_s_i_i_sc = 846, + enum_ops_replace_s_sc_i_i_sc = 847, + enum_ops_replace_s_s_ic_i_sc = 848, + enum_ops_replace_s_sc_ic_i_sc = 849, + enum_ops_replace_s_s_i_ic_sc = 850, + enum_ops_replace_s_sc_i_ic_sc = 851, + enum_ops_replace_s_s_ic_ic_sc = 852, + enum_ops_replace_s_sc_ic_ic_sc = 853, + enum_ops_index_i_s_s = 854, + enum_ops_index_i_sc_s = 855, + enum_ops_index_i_s_sc = 856, + enum_ops_index_i_sc_sc = 857, + enum_ops_index_i_s_s_i = 858, + enum_ops_index_i_sc_s_i = 859, + enum_ops_index_i_s_sc_i = 860, + enum_ops_index_i_sc_sc_i = 861, + enum_ops_index_i_s_s_ic = 862, + enum_ops_index_i_sc_s_ic = 863, + enum_ops_index_i_s_sc_ic = 864, + enum_ops_index_i_sc_sc_ic = 865, + enum_ops_sprintf_s_s_p = 866, + enum_ops_sprintf_s_sc_p = 867, + enum_ops_sprintf_p_p_p = 868, + enum_ops_new_s = 869, + enum_ops_new_s_i = 870, + enum_ops_new_s_ic = 871, + enum_ops_stringinfo_i_s_i = 872, + enum_ops_stringinfo_i_sc_i = 873, + enum_ops_stringinfo_i_s_ic = 874, + enum_ops_stringinfo_i_sc_ic = 875, + enum_ops_upcase_s_s = 876, + enum_ops_upcase_s_sc = 877, + enum_ops_downcase_s_s = 878, + enum_ops_downcase_s_sc = 879, + enum_ops_titlecase_s_s = 880, + enum_ops_titlecase_s_sc = 881, + enum_ops_join_s_s_p = 882, + enum_ops_join_s_sc_p = 883, + enum_ops_split_p_s_s = 884, + enum_ops_split_p_sc_s = 885, + enum_ops_split_p_s_sc = 886, + enum_ops_split_p_sc_sc = 887, + enum_ops_encoding_i_s = 888, + enum_ops_encoding_i_sc = 889, + enum_ops_encodingname_s_i = 890, + enum_ops_encodingname_s_ic = 891, + enum_ops_find_encoding_i_s = 892, + enum_ops_find_encoding_i_sc = 893, + enum_ops_trans_encoding_s_s_i = 894, + enum_ops_trans_encoding_s_sc_i = 895, + enum_ops_trans_encoding_s_s_ic = 896, + enum_ops_trans_encoding_s_sc_ic = 897, + enum_ops_is_cclass_i_i_s_i = 898, + enum_ops_is_cclass_i_ic_s_i = 899, + enum_ops_is_cclass_i_i_sc_i = 900, + enum_ops_is_cclass_i_ic_sc_i = 901, + enum_ops_is_cclass_i_i_s_ic = 902, + enum_ops_is_cclass_i_ic_s_ic = 903, + enum_ops_is_cclass_i_i_sc_ic = 904, + enum_ops_is_cclass_i_ic_sc_ic = 905, + enum_ops_find_cclass_i_i_s_i_i = 906, + enum_ops_find_cclass_i_ic_s_i_i = 907, + enum_ops_find_cclass_i_i_sc_i_i = 908, + enum_ops_find_cclass_i_ic_sc_i_i = 909, + enum_ops_find_cclass_i_i_s_ic_i = 910, + enum_ops_find_cclass_i_ic_s_ic_i = 911, + enum_ops_find_cclass_i_i_sc_ic_i = 912, + enum_ops_find_cclass_i_ic_sc_ic_i = 913, + enum_ops_find_cclass_i_i_s_i_ic = 914, + enum_ops_find_cclass_i_ic_s_i_ic = 915, + enum_ops_find_cclass_i_i_sc_i_ic = 916, + enum_ops_find_cclass_i_ic_sc_i_ic = 917, + enum_ops_find_cclass_i_i_s_ic_ic = 918, + enum_ops_find_cclass_i_ic_s_ic_ic = 919, + enum_ops_find_cclass_i_i_sc_ic_ic = 920, + enum_ops_find_cclass_i_ic_sc_ic_ic = 921, + enum_ops_find_not_cclass_i_i_s_i_i = 922, + enum_ops_find_not_cclass_i_ic_s_i_i = 923, + enum_ops_find_not_cclass_i_i_sc_i_i = 924, + enum_ops_find_not_cclass_i_ic_sc_i_i = 925, + enum_ops_find_not_cclass_i_i_s_ic_i = 926, + enum_ops_find_not_cclass_i_ic_s_ic_i = 927, + enum_ops_find_not_cclass_i_i_sc_ic_i = 928, + enum_ops_find_not_cclass_i_ic_sc_ic_i = 929, + enum_ops_find_not_cclass_i_i_s_i_ic = 930, + enum_ops_find_not_cclass_i_ic_s_i_ic = 931, + enum_ops_find_not_cclass_i_i_sc_i_ic = 932, + enum_ops_find_not_cclass_i_ic_sc_i_ic = 933, + enum_ops_find_not_cclass_i_i_s_ic_ic = 934, + enum_ops_find_not_cclass_i_ic_s_ic_ic = 935, + enum_ops_find_not_cclass_i_i_sc_ic_ic = 936, + enum_ops_find_not_cclass_i_ic_sc_ic_ic = 937, + enum_ops_escape_s_s = 938, + enum_ops_compose_s_s = 939, + enum_ops_compose_s_sc = 940, + enum_ops_find_codepoint_i_s = 941, + enum_ops_find_codepoint_i_sc = 942, + enum_ops_spawnw_i_s = 943, + enum_ops_spawnw_i_sc = 944, + enum_ops_spawnw_i_p = 945, + enum_ops_err_i = 946, + enum_ops_err_s = 947, + enum_ops_err_s_i = 948, + enum_ops_err_s_ic = 949, + enum_ops_time_i = 950, + enum_ops_time_n = 951, + enum_ops_sleep_i = 952, + enum_ops_sleep_ic = 953, + enum_ops_sleep_n = 954, + enum_ops_sleep_nc = 955, + enum_ops_store_lex_s_p = 956, + enum_ops_store_lex_sc_p = 957, + enum_ops_store_lex_s_s = 958, + enum_ops_store_lex_sc_s = 959, + enum_ops_store_lex_s_sc = 960, + enum_ops_store_lex_sc_sc = 961, + enum_ops_store_lex_s_i = 962, + enum_ops_store_lex_sc_i = 963, + enum_ops_store_lex_s_ic = 964, + enum_ops_store_lex_sc_ic = 965, + enum_ops_store_lex_s_n = 966, + enum_ops_store_lex_sc_n = 967, + enum_ops_store_lex_s_nc = 968, + enum_ops_store_lex_sc_nc = 969, + enum_ops_store_dynamic_lex_s_p = 970, + enum_ops_store_dynamic_lex_sc_p = 971, + enum_ops_find_lex_p_s = 972, + enum_ops_find_lex_p_sc = 973, + enum_ops_find_lex_s_s = 974, + enum_ops_find_lex_s_sc = 975, + enum_ops_find_lex_i_s = 976, + enum_ops_find_lex_i_sc = 977, + enum_ops_find_lex_n_s = 978, + enum_ops_find_lex_n_sc = 979, + enum_ops_find_dynamic_lex_p_s = 980, + enum_ops_find_dynamic_lex_p_sc = 981, + enum_ops_find_caller_lex_p_s = 982, + enum_ops_find_caller_lex_p_sc = 983, + enum_ops_get_namespace_p = 984, + enum_ops_get_namespace_p_p = 985, + enum_ops_get_namespace_p_pc = 986, + enum_ops_get_hll_namespace_p = 987, + enum_ops_get_hll_namespace_p_p = 988, + enum_ops_get_hll_namespace_p_pc = 989, + enum_ops_get_root_namespace_p = 990, + enum_ops_get_root_namespace_p_p = 991, + enum_ops_get_root_namespace_p_pc = 992, + enum_ops_get_global_p_s = 993, + enum_ops_get_global_p_sc = 994, + enum_ops_get_global_p_p_s = 995, + enum_ops_get_global_p_pc_s = 996, + enum_ops_get_global_p_p_sc = 997, + enum_ops_get_global_p_pc_sc = 998, + enum_ops_get_hll_global_p_s = 999, + enum_ops_get_hll_global_p_sc = 1000, + enum_ops_get_hll_global_p_p_s = 1001, + enum_ops_get_hll_global_p_pc_s = 1002, + enum_ops_get_hll_global_p_p_sc = 1003, + enum_ops_get_hll_global_p_pc_sc = 1004, + enum_ops_get_root_global_p_s = 1005, + enum_ops_get_root_global_p_sc = 1006, + enum_ops_get_root_global_p_p_s = 1007, + enum_ops_get_root_global_p_pc_s = 1008, + enum_ops_get_root_global_p_p_sc = 1009, + enum_ops_get_root_global_p_pc_sc = 1010, + enum_ops_set_global_s_p = 1011, + enum_ops_set_global_sc_p = 1012, + enum_ops_set_global_p_s_p = 1013, + enum_ops_set_global_pc_s_p = 1014, + enum_ops_set_global_p_sc_p = 1015, + enum_ops_set_global_pc_sc_p = 1016, + enum_ops_set_hll_global_s_p = 1017, + enum_ops_set_hll_global_sc_p = 1018, + enum_ops_set_hll_global_p_s_p = 1019, + enum_ops_set_hll_global_pc_s_p = 1020, + enum_ops_set_hll_global_p_sc_p = 1021, + enum_ops_set_hll_global_pc_sc_p = 1022, + enum_ops_set_root_global_s_p = 1023, + enum_ops_set_root_global_sc_p = 1024, + enum_ops_set_root_global_p_s_p = 1025, + enum_ops_set_root_global_pc_s_p = 1026, + enum_ops_set_root_global_p_sc_p = 1027, + enum_ops_set_root_global_pc_sc_p = 1028, + enum_ops_find_name_p_s = 1029, + enum_ops_find_name_p_sc = 1030, + enum_ops_find_sub_not_null_p_s = 1031, + enum_ops_find_sub_not_null_p_sc = 1032, + enum_ops_trap = 1033, + enum_ops_set_label_p_ic = 1034, + enum_ops_get_label_i_p = 1035, + enum_ops_get_id_i_p = 1036, + enum_ops_get_id_i_pc = 1037, + enum_ops_fetch_p_p_p_p = 1038, + enum_ops_fetch_p_pc_p_p = 1039, + enum_ops_fetch_p_p_pc_p = 1040, + enum_ops_fetch_p_pc_pc_p = 1041, + enum_ops_fetch_p_p_p_pc = 1042, + enum_ops_fetch_p_pc_p_pc = 1043, + enum_ops_fetch_p_p_pc_pc = 1044, + enum_ops_fetch_p_pc_pc_pc = 1045, + enum_ops_fetch_p_p_i_p = 1046, + enum_ops_fetch_p_pc_i_p = 1047, + enum_ops_fetch_p_p_ic_p = 1048, + enum_ops_fetch_p_pc_ic_p = 1049, + enum_ops_fetch_p_p_i_pc = 1050, + enum_ops_fetch_p_pc_i_pc = 1051, + enum_ops_fetch_p_p_ic_pc = 1052, + enum_ops_fetch_p_pc_ic_pc = 1053, + enum_ops_fetch_p_p_s_p = 1054, + enum_ops_fetch_p_pc_s_p = 1055, + enum_ops_fetch_p_p_sc_p = 1056, + enum_ops_fetch_p_pc_sc_p = 1057, + enum_ops_fetch_p_p_s_pc = 1058, + enum_ops_fetch_p_pc_s_pc = 1059, + enum_ops_fetch_p_p_sc_pc = 1060, + enum_ops_fetch_p_pc_sc_pc = 1061, + enum_ops_vivify_p_p_p_p = 1062, + enum_ops_vivify_p_pc_p_p = 1063, + enum_ops_vivify_p_p_pc_p = 1064, + enum_ops_vivify_p_pc_pc_p = 1065, + enum_ops_vivify_p_p_p_pc = 1066, + enum_ops_vivify_p_pc_p_pc = 1067, + enum_ops_vivify_p_p_pc_pc = 1068, + enum_ops_vivify_p_pc_pc_pc = 1069, + enum_ops_vivify_p_p_i_p = 1070, + enum_ops_vivify_p_pc_i_p = 1071, + enum_ops_vivify_p_p_ic_p = 1072, + enum_ops_vivify_p_pc_ic_p = 1073, + enum_ops_vivify_p_p_i_pc = 1074, + enum_ops_vivify_p_pc_i_pc = 1075, + enum_ops_vivify_p_p_ic_pc = 1076, + enum_ops_vivify_p_pc_ic_pc = 1077, + enum_ops_vivify_p_p_s_p = 1078, + enum_ops_vivify_p_pc_s_p = 1079, + enum_ops_vivify_p_p_sc_p = 1080, + enum_ops_vivify_p_pc_sc_p = 1081, + enum_ops_vivify_p_p_s_pc = 1082, + enum_ops_vivify_p_pc_s_pc = 1083, + enum_ops_vivify_p_p_sc_pc = 1084, + enum_ops_vivify_p_pc_sc_pc = 1085, + enum_ops_new_p_s_i = 1086, + enum_ops_new_p_sc_i = 1087, + enum_ops_new_p_s_ic = 1088, + enum_ops_new_p_sc_ic = 1089, + enum_ops_new_p_p_i = 1090, + enum_ops_new_p_pc_i = 1091, + enum_ops_new_p_p_ic = 1092, + enum_ops_new_p_pc_ic = 1093, + enum_ops_root_new_p_p_i = 1094, + enum_ops_root_new_p_pc_i = 1095, + enum_ops_root_new_p_p_ic = 1096, + enum_ops_root_new_p_pc_ic = 1097, + enum_ops_receive_p = 1098, + enum_ops_wait_p = 1099, + enum_ops_wait_pc = 1100, + enum_ops_pass = 1101, }; diff --git a/src/interp/inter_misc.c b/src/interp/inter_misc.c index 2f0bab6799..20f4f23026 100644 --- a/src/interp/inter_misc.c +++ b/src/interp/inter_misc.c @@ -443,6 +443,8 @@ interpinfo_s(PARROT_INTERP, INTVAL what) Parrot_warn_experimental(interp, "GC_SYS_NAME option is experimental"); return name; } + case CURRENT_RUNCORE: + return interp->run_core->name; default: Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_UNIMPLEMENTED, "illegal argument in interpinfo"); diff --git a/src/ops/core.ops b/src/ops/core.ops index 186e66477b..345b519fbb 100644 --- a/src/ops/core.ops +++ b/src/ops/core.ops @@ -1035,7 +1035,7 @@ CURRENT_SUB, CURRENT_CONT, CURRENT_OBJECT, CURRENT_LEXPAD =item B(out STR, in INT) -EXECUTABLE_FULLNAME, EXECUTABLE_BASENAME, RUNTIME_PREFIX +EXECUTABLE_FULLNAME, EXECUTABLE_BASENAME, RUNTIME_PREFIX, CURRENT_RUNCORE =back @@ -1130,6 +1130,19 @@ inline op errorsoff(in INT) { PARROT_ERRORS_off(interp, $1); } +=item B(in STR) + +Switch the current runcore to the one with the specified name. +Needs to be an op, as we need to restart the runops() call. +You can get the name of the current runcore with the interpinfo op. + +=cut + +inline op set_runcore(in STR) { + Parrot_runcore_switch(interp, $1); + restart NEXT(); +} + ######################################## =item B(invar PMC, in LABEL) diff --git a/src/ops/core_ops.c b/src/ops/core_ops.c index c4d8273e43..98f14aaacc 100644 --- a/src/ops/core_ops.c +++ b/src/ops/core_ops.c @@ -78,13 +78,13 @@ extern op_lib_t core_op_lib; -INTVAL core_numops = 1101; +INTVAL core_numops = 1103; /* ** Op Function Table: */ -static op_func_t core_op_func_table[1101] = { +static op_func_t core_op_func_table[1103] = { Parrot_end, /* 0 */ Parrot_noop, /* 1 */ Parrot_check_events, /* 2 */ @@ -176,1015 +176,1017 @@ static op_func_t core_op_func_table[1101] = { Parrot_errorson_ic, /* 88 */ Parrot_errorsoff_i, /* 89 */ Parrot_errorsoff_ic, /* 90 */ - Parrot_runinterp_p_i, /* 91 */ - Parrot_runinterp_p_ic, /* 92 */ - Parrot_getinterp_p, /* 93 */ - Parrot_sweep_ic, /* 94 */ - Parrot_collect, /* 95 */ - Parrot_sweepoff, /* 96 */ - Parrot_sweepon, /* 97 */ - Parrot_collectoff, /* 98 */ - Parrot_collecton, /* 99 */ - Parrot_needs_destroy_p, /* 100 */ - Parrot_loadlib_p_s, /* 101 */ - Parrot_loadlib_p_sc, /* 102 */ - Parrot_loadlib_p_s_p, /* 103 */ - Parrot_loadlib_p_sc_p, /* 104 */ - Parrot_loadlib_p_s_pc, /* 105 */ - Parrot_loadlib_p_sc_pc, /* 106 */ - Parrot_dlfunc_p_p_s_s, /* 107 */ - Parrot_dlfunc_p_p_sc_s, /* 108 */ - Parrot_dlfunc_p_p_s_sc, /* 109 */ - Parrot_dlfunc_p_p_sc_sc, /* 110 */ - Parrot_dlfunc_p_p_s_p, /* 111 */ - Parrot_dlfunc_p_p_sc_p, /* 112 */ - Parrot_dlvar_p_p_s, /* 113 */ - Parrot_dlvar_p_p_sc, /* 114 */ - Parrot_compreg_s_p, /* 115 */ - Parrot_compreg_sc_p, /* 116 */ - Parrot_compreg_p_s, /* 117 */ - Parrot_compreg_p_sc, /* 118 */ - Parrot_new_callback_p_p_p_s, /* 119 */ - Parrot_new_callback_p_p_p_sc, /* 120 */ - Parrot_annotations_p, /* 121 */ - Parrot_annotations_p_s, /* 122 */ - Parrot_annotations_p_sc, /* 123 */ - Parrot_band_i_i, /* 124 */ - Parrot_band_i_ic, /* 125 */ - Parrot_band_i_i_i, /* 126 */ - Parrot_band_i_ic_i, /* 127 */ - Parrot_band_i_i_ic, /* 128 */ - Parrot_bor_i_i, /* 129 */ - Parrot_bor_i_ic, /* 130 */ - Parrot_bor_i_i_i, /* 131 */ - Parrot_bor_i_ic_i, /* 132 */ - Parrot_bor_i_i_ic, /* 133 */ - Parrot_shl_i_i, /* 134 */ - Parrot_shl_i_ic, /* 135 */ - Parrot_shl_i_i_i, /* 136 */ - Parrot_shl_i_ic_i, /* 137 */ - Parrot_shl_i_i_ic, /* 138 */ - Parrot_shr_i_i, /* 139 */ - Parrot_shr_i_ic, /* 140 */ - Parrot_shr_i_i_i, /* 141 */ - Parrot_shr_i_ic_i, /* 142 */ - Parrot_shr_i_i_ic, /* 143 */ - Parrot_lsr_i_i, /* 144 */ - Parrot_lsr_i_ic, /* 145 */ - Parrot_lsr_i_i_i, /* 146 */ - Parrot_lsr_i_ic_i, /* 147 */ - Parrot_lsr_i_i_ic, /* 148 */ - Parrot_bxor_i_i, /* 149 */ - Parrot_bxor_i_ic, /* 150 */ - Parrot_bxor_i_i_i, /* 151 */ - Parrot_bxor_i_ic_i, /* 152 */ - Parrot_bxor_i_i_ic, /* 153 */ - Parrot_eq_i_i_ic, /* 154 */ - Parrot_eq_ic_i_ic, /* 155 */ - Parrot_eq_i_ic_ic, /* 156 */ - Parrot_eq_n_n_ic, /* 157 */ - Parrot_eq_nc_n_ic, /* 158 */ - Parrot_eq_n_nc_ic, /* 159 */ - Parrot_eq_s_s_ic, /* 160 */ - Parrot_eq_sc_s_ic, /* 161 */ - Parrot_eq_s_sc_ic, /* 162 */ - Parrot_eq_p_p_ic, /* 163 */ - Parrot_eq_p_i_ic, /* 164 */ - Parrot_eq_p_ic_ic, /* 165 */ - Parrot_eq_p_n_ic, /* 166 */ - Parrot_eq_p_nc_ic, /* 167 */ - Parrot_eq_p_s_ic, /* 168 */ - Parrot_eq_p_sc_ic, /* 169 */ - Parrot_eq_str_p_p_ic, /* 170 */ - Parrot_eq_num_p_p_ic, /* 171 */ - Parrot_eq_addr_s_s_ic, /* 172 */ - Parrot_eq_addr_sc_s_ic, /* 173 */ - Parrot_eq_addr_s_sc_ic, /* 174 */ - Parrot_eq_addr_sc_sc_ic, /* 175 */ - Parrot_eq_addr_p_p_ic, /* 176 */ - Parrot_ne_i_i_ic, /* 177 */ - Parrot_ne_ic_i_ic, /* 178 */ - Parrot_ne_i_ic_ic, /* 179 */ - Parrot_ne_n_n_ic, /* 180 */ - Parrot_ne_nc_n_ic, /* 181 */ - Parrot_ne_n_nc_ic, /* 182 */ - Parrot_ne_s_s_ic, /* 183 */ - Parrot_ne_sc_s_ic, /* 184 */ - Parrot_ne_s_sc_ic, /* 185 */ - Parrot_ne_p_p_ic, /* 186 */ - Parrot_ne_p_i_ic, /* 187 */ - Parrot_ne_p_ic_ic, /* 188 */ - Parrot_ne_p_n_ic, /* 189 */ - Parrot_ne_p_nc_ic, /* 190 */ - Parrot_ne_p_s_ic, /* 191 */ - Parrot_ne_p_sc_ic, /* 192 */ - Parrot_ne_str_p_p_ic, /* 193 */ - Parrot_ne_num_p_p_ic, /* 194 */ - Parrot_ne_addr_s_s_ic, /* 195 */ - Parrot_ne_addr_sc_s_ic, /* 196 */ - Parrot_ne_addr_s_sc_ic, /* 197 */ - Parrot_ne_addr_sc_sc_ic, /* 198 */ - Parrot_ne_addr_p_p_ic, /* 199 */ - Parrot_lt_i_i_ic, /* 200 */ - Parrot_lt_ic_i_ic, /* 201 */ - Parrot_lt_i_ic_ic, /* 202 */ - Parrot_lt_n_n_ic, /* 203 */ - Parrot_lt_nc_n_ic, /* 204 */ - Parrot_lt_n_nc_ic, /* 205 */ - Parrot_lt_s_s_ic, /* 206 */ - Parrot_lt_sc_s_ic, /* 207 */ - Parrot_lt_s_sc_ic, /* 208 */ - Parrot_lt_p_p_ic, /* 209 */ - Parrot_lt_p_i_ic, /* 210 */ - Parrot_lt_p_ic_ic, /* 211 */ - Parrot_lt_p_n_ic, /* 212 */ - Parrot_lt_p_nc_ic, /* 213 */ - Parrot_lt_p_s_ic, /* 214 */ - Parrot_lt_p_sc_ic, /* 215 */ - Parrot_lt_str_p_p_ic, /* 216 */ - Parrot_lt_num_p_p_ic, /* 217 */ - Parrot_le_i_i_ic, /* 218 */ - Parrot_le_ic_i_ic, /* 219 */ - Parrot_le_i_ic_ic, /* 220 */ - Parrot_le_n_n_ic, /* 221 */ - Parrot_le_nc_n_ic, /* 222 */ - Parrot_le_n_nc_ic, /* 223 */ - Parrot_le_s_s_ic, /* 224 */ - Parrot_le_sc_s_ic, /* 225 */ - Parrot_le_s_sc_ic, /* 226 */ - Parrot_le_p_p_ic, /* 227 */ - Parrot_le_p_i_ic, /* 228 */ - Parrot_le_p_ic_ic, /* 229 */ - Parrot_le_p_n_ic, /* 230 */ - Parrot_le_p_nc_ic, /* 231 */ - Parrot_le_p_s_ic, /* 232 */ - Parrot_le_p_sc_ic, /* 233 */ - Parrot_le_str_p_p_ic, /* 234 */ - Parrot_le_num_p_p_ic, /* 235 */ - Parrot_gt_p_p_ic, /* 236 */ - Parrot_gt_p_i_ic, /* 237 */ - Parrot_gt_p_ic_ic, /* 238 */ - Parrot_gt_p_n_ic, /* 239 */ - Parrot_gt_p_nc_ic, /* 240 */ - Parrot_gt_p_s_ic, /* 241 */ - Parrot_gt_p_sc_ic, /* 242 */ - Parrot_gt_str_p_p_ic, /* 243 */ - Parrot_gt_num_p_p_ic, /* 244 */ - Parrot_ge_p_p_ic, /* 245 */ - Parrot_ge_p_i_ic, /* 246 */ - Parrot_ge_p_ic_ic, /* 247 */ - Parrot_ge_p_n_ic, /* 248 */ - Parrot_ge_p_nc_ic, /* 249 */ - Parrot_ge_p_s_ic, /* 250 */ - Parrot_ge_p_sc_ic, /* 251 */ - Parrot_ge_str_p_p_ic, /* 252 */ - Parrot_ge_num_p_p_ic, /* 253 */ - Parrot_if_null_p_ic, /* 254 */ - Parrot_if_null_s_ic, /* 255 */ - Parrot_unless_null_p_ic, /* 256 */ - Parrot_unless_null_s_ic, /* 257 */ - Parrot_cmp_i_i_i, /* 258 */ - Parrot_cmp_i_ic_i, /* 259 */ - Parrot_cmp_i_i_ic, /* 260 */ - Parrot_cmp_i_n_n, /* 261 */ - Parrot_cmp_i_nc_n, /* 262 */ - Parrot_cmp_i_n_nc, /* 263 */ - Parrot_cmp_i_s_s, /* 264 */ - Parrot_cmp_i_sc_s, /* 265 */ - Parrot_cmp_i_s_sc, /* 266 */ - Parrot_cmp_i_p_p, /* 267 */ - Parrot_cmp_i_p_i, /* 268 */ - Parrot_cmp_i_p_ic, /* 269 */ - Parrot_cmp_i_p_n, /* 270 */ - Parrot_cmp_i_p_nc, /* 271 */ - Parrot_cmp_i_p_s, /* 272 */ - Parrot_cmp_i_p_sc, /* 273 */ - Parrot_cmp_str_i_p_p, /* 274 */ - Parrot_cmp_num_i_p_p, /* 275 */ - Parrot_cmp_pmc_p_p_p, /* 276 */ - Parrot_issame_i_p_p, /* 277 */ - Parrot_issame_i_s_s, /* 278 */ - Parrot_issame_i_sc_s, /* 279 */ - Parrot_issame_i_s_sc, /* 280 */ - Parrot_issame_i_sc_sc, /* 281 */ - Parrot_isntsame_i_p_p, /* 282 */ - Parrot_isntsame_i_s_s, /* 283 */ - Parrot_isntsame_i_sc_s, /* 284 */ - Parrot_isntsame_i_s_sc, /* 285 */ - Parrot_isntsame_i_sc_sc, /* 286 */ - Parrot_istrue_i_p, /* 287 */ - Parrot_isfalse_i_p, /* 288 */ - Parrot_isnull_i_p, /* 289 */ - Parrot_isnull_i_pc, /* 290 */ - Parrot_isnull_i_s, /* 291 */ - Parrot_isnull_i_sc, /* 292 */ - Parrot_isgt_i_p_p, /* 293 */ - Parrot_isge_i_p_p, /* 294 */ - Parrot_isle_i_i_i, /* 295 */ - Parrot_isle_i_ic_i, /* 296 */ - Parrot_isle_i_i_ic, /* 297 */ - Parrot_isle_i_n_n, /* 298 */ - Parrot_isle_i_nc_n, /* 299 */ - Parrot_isle_i_n_nc, /* 300 */ - Parrot_isle_i_s_s, /* 301 */ - Parrot_isle_i_sc_s, /* 302 */ - Parrot_isle_i_s_sc, /* 303 */ - Parrot_isle_i_p_p, /* 304 */ - Parrot_islt_i_i_i, /* 305 */ - Parrot_islt_i_ic_i, /* 306 */ - Parrot_islt_i_i_ic, /* 307 */ - Parrot_islt_i_n_n, /* 308 */ - Parrot_islt_i_nc_n, /* 309 */ - Parrot_islt_i_n_nc, /* 310 */ - Parrot_islt_i_s_s, /* 311 */ - Parrot_islt_i_sc_s, /* 312 */ - Parrot_islt_i_s_sc, /* 313 */ - Parrot_islt_i_p_p, /* 314 */ - Parrot_iseq_i_i_i, /* 315 */ - Parrot_iseq_i_ic_i, /* 316 */ - Parrot_iseq_i_i_ic, /* 317 */ - Parrot_iseq_i_n_n, /* 318 */ - Parrot_iseq_i_nc_n, /* 319 */ - Parrot_iseq_i_n_nc, /* 320 */ - Parrot_iseq_i_s_s, /* 321 */ - Parrot_iseq_i_sc_s, /* 322 */ - Parrot_iseq_i_s_sc, /* 323 */ - Parrot_iseq_i_p_p, /* 324 */ - Parrot_isne_i_i_i, /* 325 */ - Parrot_isne_i_ic_i, /* 326 */ - Parrot_isne_i_i_ic, /* 327 */ - Parrot_isne_i_n_n, /* 328 */ - Parrot_isne_i_nc_n, /* 329 */ - Parrot_isne_i_n_nc, /* 330 */ - Parrot_isne_i_s_s, /* 331 */ - Parrot_isne_i_sc_s, /* 332 */ - Parrot_isne_i_s_sc, /* 333 */ - Parrot_isne_i_p_p, /* 334 */ - Parrot_and_i_i_i, /* 335 */ - Parrot_and_i_ic_i, /* 336 */ - Parrot_and_i_i_ic, /* 337 */ - Parrot_and_p_p_p, /* 338 */ - Parrot_not_i, /* 339 */ - Parrot_not_i_i, /* 340 */ - Parrot_not_p, /* 341 */ - Parrot_not_p_p, /* 342 */ - Parrot_or_i_i_i, /* 343 */ - Parrot_or_i_ic_i, /* 344 */ - Parrot_or_i_i_ic, /* 345 */ - Parrot_or_p_p_p, /* 346 */ - Parrot_xor_i_i_i, /* 347 */ - Parrot_xor_i_ic_i, /* 348 */ - Parrot_xor_i_i_ic, /* 349 */ - Parrot_xor_p_p_p, /* 350 */ - Parrot_print_i, /* 351 */ - Parrot_print_ic, /* 352 */ - Parrot_print_n, /* 353 */ - Parrot_print_nc, /* 354 */ - Parrot_print_s, /* 355 */ - Parrot_print_sc, /* 356 */ - Parrot_print_p, /* 357 */ - Parrot_say_i, /* 358 */ - Parrot_say_ic, /* 359 */ - Parrot_say_n, /* 360 */ - Parrot_say_nc, /* 361 */ - Parrot_say_s, /* 362 */ - Parrot_say_sc, /* 363 */ - Parrot_say_p, /* 364 */ - Parrot_print_p_i, /* 365 */ - Parrot_print_p_ic, /* 366 */ - Parrot_print_p_n, /* 367 */ - Parrot_print_p_nc, /* 368 */ - Parrot_print_p_s, /* 369 */ - Parrot_print_p_sc, /* 370 */ - Parrot_print_p_p, /* 371 */ - Parrot_getstdin_p, /* 372 */ - Parrot_getstdout_p, /* 373 */ - Parrot_getstderr_p, /* 374 */ - Parrot_abs_i, /* 375 */ - Parrot_abs_n, /* 376 */ - Parrot_abs_i_i, /* 377 */ - Parrot_abs_n_n, /* 378 */ - Parrot_abs_p, /* 379 */ - Parrot_abs_p_p, /* 380 */ - Parrot_add_i_i, /* 381 */ - Parrot_add_i_ic, /* 382 */ - Parrot_add_n_n, /* 383 */ - Parrot_add_n_nc, /* 384 */ - Parrot_add_p_p, /* 385 */ - Parrot_add_p_i, /* 386 */ - Parrot_add_p_ic, /* 387 */ - Parrot_add_p_n, /* 388 */ - Parrot_add_p_nc, /* 389 */ - Parrot_add_i_i_i, /* 390 */ - Parrot_add_i_ic_i, /* 391 */ - Parrot_add_i_i_ic, /* 392 */ - Parrot_add_n_n_n, /* 393 */ - Parrot_add_n_nc_n, /* 394 */ - Parrot_add_n_n_nc, /* 395 */ - Parrot_add_p_p_p, /* 396 */ - Parrot_add_p_p_i, /* 397 */ - Parrot_add_p_p_ic, /* 398 */ - Parrot_add_p_p_n, /* 399 */ - Parrot_add_p_p_nc, /* 400 */ - Parrot_dec_i, /* 401 */ - Parrot_dec_n, /* 402 */ - Parrot_dec_p, /* 403 */ - Parrot_div_i_i, /* 404 */ - Parrot_div_i_ic, /* 405 */ - Parrot_div_n_n, /* 406 */ - Parrot_div_n_nc, /* 407 */ - Parrot_div_p_p, /* 408 */ - Parrot_div_p_i, /* 409 */ - Parrot_div_p_ic, /* 410 */ - Parrot_div_p_n, /* 411 */ - Parrot_div_p_nc, /* 412 */ - Parrot_div_i_i_i, /* 413 */ - Parrot_div_i_ic_i, /* 414 */ - Parrot_div_i_i_ic, /* 415 */ - Parrot_div_i_ic_ic, /* 416 */ - Parrot_div_n_n_n, /* 417 */ - Parrot_div_n_nc_n, /* 418 */ - Parrot_div_n_n_nc, /* 419 */ - Parrot_div_n_nc_nc, /* 420 */ - Parrot_div_p_p_p, /* 421 */ - Parrot_div_p_p_i, /* 422 */ - Parrot_div_p_p_ic, /* 423 */ - Parrot_div_p_p_n, /* 424 */ - Parrot_div_p_p_nc, /* 425 */ - Parrot_fdiv_i_i, /* 426 */ - Parrot_fdiv_i_ic, /* 427 */ - Parrot_fdiv_n_n, /* 428 */ - Parrot_fdiv_n_nc, /* 429 */ - Parrot_fdiv_p_p, /* 430 */ - Parrot_fdiv_p_i, /* 431 */ - Parrot_fdiv_p_ic, /* 432 */ - Parrot_fdiv_p_n, /* 433 */ - Parrot_fdiv_p_nc, /* 434 */ - Parrot_fdiv_i_i_i, /* 435 */ - Parrot_fdiv_i_ic_i, /* 436 */ - Parrot_fdiv_i_i_ic, /* 437 */ - Parrot_fdiv_n_n_n, /* 438 */ - Parrot_fdiv_n_nc_n, /* 439 */ - Parrot_fdiv_n_n_nc, /* 440 */ - Parrot_fdiv_p_p_p, /* 441 */ - Parrot_fdiv_p_p_i, /* 442 */ - Parrot_fdiv_p_p_ic, /* 443 */ - Parrot_fdiv_p_p_n, /* 444 */ - Parrot_fdiv_p_p_nc, /* 445 */ - Parrot_ceil_n, /* 446 */ - Parrot_ceil_i_n, /* 447 */ - Parrot_ceil_n_n, /* 448 */ - Parrot_floor_n, /* 449 */ - Parrot_floor_i_n, /* 450 */ - Parrot_floor_n_n, /* 451 */ - Parrot_inc_i, /* 452 */ - Parrot_inc_n, /* 453 */ - Parrot_inc_p, /* 454 */ - Parrot_mod_i_i, /* 455 */ - Parrot_mod_i_ic, /* 456 */ - Parrot_mod_n_n, /* 457 */ - Parrot_mod_n_nc, /* 458 */ - Parrot_mod_p_p, /* 459 */ - Parrot_mod_p_i, /* 460 */ - Parrot_mod_p_ic, /* 461 */ - Parrot_mod_p_n, /* 462 */ - Parrot_mod_p_nc, /* 463 */ - Parrot_mod_i_i_i, /* 464 */ - Parrot_mod_i_ic_i, /* 465 */ - Parrot_mod_i_i_ic, /* 466 */ - Parrot_mod_n_n_n, /* 467 */ - Parrot_mod_n_nc_n, /* 468 */ - Parrot_mod_n_n_nc, /* 469 */ - Parrot_mod_p_p_p, /* 470 */ - Parrot_mod_p_p_i, /* 471 */ - Parrot_mod_p_p_ic, /* 472 */ - Parrot_mod_p_p_n, /* 473 */ - Parrot_mod_p_p_nc, /* 474 */ - Parrot_mul_i_i, /* 475 */ - Parrot_mul_i_ic, /* 476 */ - Parrot_mul_n_n, /* 477 */ - Parrot_mul_n_nc, /* 478 */ - Parrot_mul_p_p, /* 479 */ - Parrot_mul_p_i, /* 480 */ - Parrot_mul_p_ic, /* 481 */ - Parrot_mul_p_n, /* 482 */ - Parrot_mul_p_nc, /* 483 */ - Parrot_mul_i_i_i, /* 484 */ - Parrot_mul_i_ic_i, /* 485 */ - Parrot_mul_i_i_ic, /* 486 */ - Parrot_mul_n_n_n, /* 487 */ - Parrot_mul_n_nc_n, /* 488 */ - Parrot_mul_n_n_nc, /* 489 */ - Parrot_mul_p_p_p, /* 490 */ - Parrot_mul_p_p_i, /* 491 */ - Parrot_mul_p_p_ic, /* 492 */ - Parrot_mul_p_p_n, /* 493 */ - Parrot_mul_p_p_nc, /* 494 */ - Parrot_neg_i, /* 495 */ - Parrot_neg_n, /* 496 */ - Parrot_neg_p, /* 497 */ - Parrot_neg_i_i, /* 498 */ - Parrot_neg_n_n, /* 499 */ - Parrot_neg_p_p, /* 500 */ - Parrot_sub_i_i, /* 501 */ - Parrot_sub_i_ic, /* 502 */ - Parrot_sub_n_n, /* 503 */ - Parrot_sub_n_nc, /* 504 */ - Parrot_sub_p_p, /* 505 */ - Parrot_sub_p_i, /* 506 */ - Parrot_sub_p_ic, /* 507 */ - Parrot_sub_p_n, /* 508 */ - Parrot_sub_p_nc, /* 509 */ - Parrot_sub_i_i_i, /* 510 */ - Parrot_sub_i_ic_i, /* 511 */ - Parrot_sub_i_i_ic, /* 512 */ - Parrot_sub_n_n_n, /* 513 */ - Parrot_sub_n_nc_n, /* 514 */ - Parrot_sub_n_n_nc, /* 515 */ - Parrot_sub_p_p_p, /* 516 */ - Parrot_sub_p_p_i, /* 517 */ - Parrot_sub_p_p_ic, /* 518 */ - Parrot_sub_p_p_n, /* 519 */ - Parrot_sub_p_p_nc, /* 520 */ - Parrot_sqrt_n_n, /* 521 */ - Parrot_callmethodcc_p_s, /* 522 */ - Parrot_callmethodcc_p_sc, /* 523 */ - Parrot_callmethodcc_p_p, /* 524 */ - Parrot_callmethod_p_s_p, /* 525 */ - Parrot_callmethod_p_sc_p, /* 526 */ - Parrot_callmethod_p_p_p, /* 527 */ - Parrot_tailcallmethod_p_s, /* 528 */ - Parrot_tailcallmethod_p_sc, /* 529 */ - Parrot_tailcallmethod_p_p, /* 530 */ - Parrot_addmethod_p_s_p, /* 531 */ - Parrot_addmethod_p_sc_p, /* 532 */ - Parrot_can_i_p_s, /* 533 */ - Parrot_can_i_p_sc, /* 534 */ - Parrot_does_i_p_s, /* 535 */ - Parrot_does_i_p_sc, /* 536 */ - Parrot_does_i_p_p, /* 537 */ - Parrot_does_i_p_pc, /* 538 */ - Parrot_isa_i_p_s, /* 539 */ - Parrot_isa_i_p_sc, /* 540 */ - Parrot_isa_i_p_p, /* 541 */ - Parrot_isa_i_p_pc, /* 542 */ - Parrot_newclass_p_s, /* 543 */ - Parrot_newclass_p_sc, /* 544 */ - Parrot_newclass_p_p, /* 545 */ - Parrot_newclass_p_pc, /* 546 */ - Parrot_subclass_p_p, /* 547 */ - Parrot_subclass_p_pc, /* 548 */ - Parrot_subclass_p_p_s, /* 549 */ - Parrot_subclass_p_pc_s, /* 550 */ - Parrot_subclass_p_p_sc, /* 551 */ - Parrot_subclass_p_pc_sc, /* 552 */ - Parrot_subclass_p_p_p, /* 553 */ - Parrot_subclass_p_pc_p, /* 554 */ - Parrot_subclass_p_p_pc, /* 555 */ - Parrot_subclass_p_pc_pc, /* 556 */ - Parrot_subclass_p_s, /* 557 */ - Parrot_subclass_p_sc, /* 558 */ - Parrot_subclass_p_s_s, /* 559 */ - Parrot_subclass_p_sc_s, /* 560 */ - Parrot_subclass_p_s_sc, /* 561 */ - Parrot_subclass_p_sc_sc, /* 562 */ - Parrot_subclass_p_s_p, /* 563 */ - Parrot_subclass_p_sc_p, /* 564 */ - Parrot_subclass_p_s_pc, /* 565 */ - Parrot_subclass_p_sc_pc, /* 566 */ - Parrot_get_class_p_s, /* 567 */ - Parrot_get_class_p_sc, /* 568 */ - Parrot_get_class_p_p, /* 569 */ - Parrot_get_class_p_pc, /* 570 */ - Parrot_class_p_p, /* 571 */ - Parrot_addparent_p_p, /* 572 */ - Parrot_removeparent_p_p, /* 573 */ - Parrot_addrole_p_p, /* 574 */ - Parrot_addattribute_p_s, /* 575 */ - Parrot_addattribute_p_sc, /* 576 */ - Parrot_removeattribute_p_s, /* 577 */ - Parrot_removeattribute_p_sc, /* 578 */ - Parrot_getattribute_p_p_s, /* 579 */ - Parrot_getattribute_p_p_sc, /* 580 */ - Parrot_getattribute_p_p_p_s, /* 581 */ - Parrot_getattribute_p_p_pc_s, /* 582 */ - Parrot_getattribute_p_p_p_sc, /* 583 */ - Parrot_getattribute_p_p_pc_sc, /* 584 */ - Parrot_setattribute_p_s_p, /* 585 */ - Parrot_setattribute_p_sc_p, /* 586 */ - Parrot_setattribute_p_p_s_p, /* 587 */ - Parrot_setattribute_p_pc_s_p, /* 588 */ - Parrot_setattribute_p_p_sc_p, /* 589 */ - Parrot_setattribute_p_pc_sc_p, /* 590 */ - Parrot_inspect_p_p, /* 591 */ - Parrot_inspect_p_pc, /* 592 */ - Parrot_inspect_p_p_s, /* 593 */ - Parrot_inspect_p_pc_s, /* 594 */ - Parrot_inspect_p_p_sc, /* 595 */ - Parrot_inspect_p_pc_sc, /* 596 */ - Parrot_new_p_s, /* 597 */ - Parrot_new_p_sc, /* 598 */ - Parrot_new_p_s_p, /* 599 */ - Parrot_new_p_sc_p, /* 600 */ - Parrot_new_p_s_pc, /* 601 */ - Parrot_new_p_sc_pc, /* 602 */ - Parrot_new_p_p, /* 603 */ - Parrot_new_p_pc, /* 604 */ - Parrot_new_p_p_p, /* 605 */ - Parrot_new_p_pc_p, /* 606 */ - Parrot_new_p_p_pc, /* 607 */ - Parrot_new_p_pc_pc, /* 608 */ - Parrot_root_new_p_p, /* 609 */ - Parrot_root_new_p_pc, /* 610 */ - Parrot_root_new_p_p_p, /* 611 */ - Parrot_root_new_p_pc_p, /* 612 */ - Parrot_root_new_p_p_pc, /* 613 */ - Parrot_root_new_p_pc_pc, /* 614 */ - Parrot_typeof_s_p, /* 615 */ - Parrot_typeof_p_p, /* 616 */ - Parrot_get_repr_s_p, /* 617 */ - Parrot_find_method_p_p_s, /* 618 */ - Parrot_find_method_p_p_sc, /* 619 */ - Parrot_defined_i_p, /* 620 */ - Parrot_defined_i_p_ki, /* 621 */ - Parrot_defined_i_p_kic, /* 622 */ - Parrot_defined_i_p_k, /* 623 */ - Parrot_defined_i_p_kc, /* 624 */ - Parrot_exists_i_p_ki, /* 625 */ - Parrot_exists_i_p_kic, /* 626 */ - Parrot_exists_i_p_k, /* 627 */ - Parrot_exists_i_p_kc, /* 628 */ - Parrot_delete_p_k, /* 629 */ - Parrot_delete_p_kc, /* 630 */ - Parrot_delete_p_ki, /* 631 */ - Parrot_delete_p_kic, /* 632 */ - Parrot_elements_i_p, /* 633 */ - Parrot_push_p_i, /* 634 */ - Parrot_push_p_ic, /* 635 */ - Parrot_push_p_n, /* 636 */ - Parrot_push_p_nc, /* 637 */ - Parrot_push_p_s, /* 638 */ - Parrot_push_p_sc, /* 639 */ - Parrot_push_p_p, /* 640 */ - Parrot_pop_i_p, /* 641 */ - Parrot_pop_n_p, /* 642 */ - Parrot_pop_s_p, /* 643 */ - Parrot_pop_p_p, /* 644 */ - Parrot_unshift_p_i, /* 645 */ - Parrot_unshift_p_ic, /* 646 */ - Parrot_unshift_p_n, /* 647 */ - Parrot_unshift_p_nc, /* 648 */ - Parrot_unshift_p_s, /* 649 */ - Parrot_unshift_p_sc, /* 650 */ - Parrot_unshift_p_p, /* 651 */ - Parrot_shift_i_p, /* 652 */ - Parrot_shift_n_p, /* 653 */ - Parrot_shift_s_p, /* 654 */ - Parrot_shift_p_p, /* 655 */ - Parrot_splice_p_p_i_i, /* 656 */ - Parrot_splice_p_p_ic_i, /* 657 */ - Parrot_splice_p_p_i_ic, /* 658 */ - Parrot_splice_p_p_ic_ic, /* 659 */ - Parrot_setprop_p_s_p, /* 660 */ - Parrot_setprop_p_sc_p, /* 661 */ - Parrot_getprop_p_s_p, /* 662 */ - Parrot_getprop_p_sc_p, /* 663 */ - Parrot_delprop_p_s, /* 664 */ - Parrot_delprop_p_sc, /* 665 */ - Parrot_prophash_p_p, /* 666 */ - Parrot_freeze_s_p, /* 667 */ - Parrot_thaw_p_s, /* 668 */ - Parrot_thaw_p_sc, /* 669 */ - Parrot_add_multi_s_s_p, /* 670 */ - Parrot_add_multi_sc_s_p, /* 671 */ - Parrot_add_multi_s_sc_p, /* 672 */ - Parrot_add_multi_sc_sc_p, /* 673 */ - Parrot_find_multi_p_s_s, /* 674 */ - Parrot_find_multi_p_sc_s, /* 675 */ - Parrot_find_multi_p_s_sc, /* 676 */ - Parrot_find_multi_p_sc_sc, /* 677 */ - Parrot_register_p, /* 678 */ - Parrot_unregister_p, /* 679 */ - Parrot_box_p_i, /* 680 */ - Parrot_box_p_ic, /* 681 */ - Parrot_box_p_n, /* 682 */ - Parrot_box_p_nc, /* 683 */ - Parrot_box_p_s, /* 684 */ - Parrot_box_p_sc, /* 685 */ - Parrot_iter_p_p, /* 686 */ - Parrot_morph_p_p, /* 687 */ - Parrot_morph_p_pc, /* 688 */ - Parrot_clone_s_s, /* 689 */ - Parrot_clone_s_sc, /* 690 */ - Parrot_set_i_i, /* 691 */ - Parrot_set_i_ic, /* 692 */ - Parrot_set_i_n, /* 693 */ - Parrot_set_i_nc, /* 694 */ - Parrot_set_i_s, /* 695 */ - Parrot_set_i_sc, /* 696 */ - Parrot_set_n_n, /* 697 */ - Parrot_set_n_nc, /* 698 */ - Parrot_set_n_i, /* 699 */ - Parrot_set_n_ic, /* 700 */ - Parrot_set_n_s, /* 701 */ - Parrot_set_n_sc, /* 702 */ - Parrot_set_n_p, /* 703 */ - Parrot_set_s_p, /* 704 */ - Parrot_set_s_s, /* 705 */ - Parrot_set_s_sc, /* 706 */ - Parrot_set_s_i, /* 707 */ - Parrot_set_s_ic, /* 708 */ - Parrot_set_s_n, /* 709 */ - Parrot_set_s_nc, /* 710 */ - Parrot_set_p_pc, /* 711 */ - Parrot_set_p_p, /* 712 */ - Parrot_set_p_i, /* 713 */ - Parrot_set_p_ic, /* 714 */ - Parrot_set_p_n, /* 715 */ - Parrot_set_p_nc, /* 716 */ - Parrot_set_p_s, /* 717 */ - Parrot_set_p_sc, /* 718 */ - Parrot_set_i_p, /* 719 */ - Parrot_assign_p_p, /* 720 */ - Parrot_assign_p_i, /* 721 */ - Parrot_assign_p_ic, /* 722 */ - Parrot_assign_p_n, /* 723 */ - Parrot_assign_p_nc, /* 724 */ - Parrot_assign_p_s, /* 725 */ - Parrot_assign_p_sc, /* 726 */ - Parrot_assign_s_s, /* 727 */ - Parrot_assign_s_sc, /* 728 */ - Parrot_setref_p_p, /* 729 */ - Parrot_deref_p_p, /* 730 */ - Parrot_set_p_ki_i, /* 731 */ - Parrot_set_p_kic_i, /* 732 */ - Parrot_set_p_ki_ic, /* 733 */ - Parrot_set_p_kic_ic, /* 734 */ - Parrot_set_p_ki_n, /* 735 */ - Parrot_set_p_kic_n, /* 736 */ - Parrot_set_p_ki_nc, /* 737 */ - Parrot_set_p_kic_nc, /* 738 */ - Parrot_set_p_ki_s, /* 739 */ - Parrot_set_p_kic_s, /* 740 */ - Parrot_set_p_ki_sc, /* 741 */ - Parrot_set_p_kic_sc, /* 742 */ - Parrot_set_p_ki_p, /* 743 */ - Parrot_set_p_kic_p, /* 744 */ - Parrot_set_i_p_ki, /* 745 */ - Parrot_set_i_p_kic, /* 746 */ - Parrot_set_n_p_ki, /* 747 */ - Parrot_set_n_p_kic, /* 748 */ - Parrot_set_s_p_ki, /* 749 */ - Parrot_set_s_p_kic, /* 750 */ - Parrot_set_p_p_ki, /* 751 */ - Parrot_set_p_p_kic, /* 752 */ - Parrot_set_p_k_i, /* 753 */ - Parrot_set_p_kc_i, /* 754 */ - Parrot_set_p_k_ic, /* 755 */ - Parrot_set_p_kc_ic, /* 756 */ - Parrot_set_p_k_n, /* 757 */ - Parrot_set_p_kc_n, /* 758 */ - Parrot_set_p_k_nc, /* 759 */ - Parrot_set_p_kc_nc, /* 760 */ - Parrot_set_p_k_s, /* 761 */ - Parrot_set_p_kc_s, /* 762 */ - Parrot_set_p_k_sc, /* 763 */ - Parrot_set_p_kc_sc, /* 764 */ - Parrot_set_p_k_p, /* 765 */ - Parrot_set_p_kc_p, /* 766 */ - Parrot_set_i_p_k, /* 767 */ - Parrot_set_i_p_kc, /* 768 */ - Parrot_set_n_p_k, /* 769 */ - Parrot_set_n_p_kc, /* 770 */ - Parrot_set_s_p_k, /* 771 */ - Parrot_set_s_p_kc, /* 772 */ - Parrot_set_p_p_k, /* 773 */ - Parrot_set_p_p_kc, /* 774 */ - Parrot_clone_p_p, /* 775 */ - Parrot_clone_p_p_p, /* 776 */ - Parrot_clone_p_p_pc, /* 777 */ - Parrot_copy_p_p, /* 778 */ - Parrot_null_s, /* 779 */ - Parrot_null_i, /* 780 */ - Parrot_null_p, /* 781 */ - Parrot_null_n, /* 782 */ - Parrot_ord_i_s, /* 783 */ - Parrot_ord_i_sc, /* 784 */ - Parrot_ord_i_s_i, /* 785 */ - Parrot_ord_i_sc_i, /* 786 */ - Parrot_ord_i_s_ic, /* 787 */ - Parrot_ord_i_sc_ic, /* 788 */ - Parrot_chr_s_i, /* 789 */ - Parrot_chr_s_ic, /* 790 */ - Parrot_chopn_s_s_i, /* 791 */ - Parrot_chopn_s_sc_i, /* 792 */ - Parrot_chopn_s_s_ic, /* 793 */ - Parrot_chopn_s_sc_ic, /* 794 */ - Parrot_concat_p_p, /* 795 */ - Parrot_concat_p_s, /* 796 */ - Parrot_concat_p_sc, /* 797 */ - Parrot_concat_s_s_s, /* 798 */ - Parrot_concat_s_sc_s, /* 799 */ - Parrot_concat_s_s_sc, /* 800 */ - Parrot_concat_p_p_s, /* 801 */ - Parrot_concat_p_p_sc, /* 802 */ - Parrot_concat_p_p_p, /* 803 */ - Parrot_repeat_s_s_i, /* 804 */ - Parrot_repeat_s_sc_i, /* 805 */ - Parrot_repeat_s_s_ic, /* 806 */ - Parrot_repeat_s_sc_ic, /* 807 */ - Parrot_repeat_p_p_i, /* 808 */ - Parrot_repeat_p_p_ic, /* 809 */ - Parrot_repeat_p_p_p, /* 810 */ - Parrot_repeat_p_i, /* 811 */ - Parrot_repeat_p_ic, /* 812 */ - Parrot_repeat_p_p, /* 813 */ - Parrot_length_i_s, /* 814 */ - Parrot_length_i_sc, /* 815 */ - Parrot_bytelength_i_s, /* 816 */ - Parrot_bytelength_i_sc, /* 817 */ - Parrot_pin_s, /* 818 */ - Parrot_unpin_s, /* 819 */ - Parrot_substr_s_s_i, /* 820 */ - Parrot_substr_s_sc_i, /* 821 */ - Parrot_substr_s_s_ic, /* 822 */ - Parrot_substr_s_sc_ic, /* 823 */ - Parrot_substr_s_s_i_i, /* 824 */ - Parrot_substr_s_sc_i_i, /* 825 */ - Parrot_substr_s_s_ic_i, /* 826 */ - Parrot_substr_s_sc_ic_i, /* 827 */ - Parrot_substr_s_s_i_ic, /* 828 */ - Parrot_substr_s_sc_i_ic, /* 829 */ - Parrot_substr_s_s_ic_ic, /* 830 */ - Parrot_substr_s_sc_ic_ic, /* 831 */ - Parrot_substr_s_p_i_i, /* 832 */ - Parrot_substr_s_p_ic_i, /* 833 */ - Parrot_substr_s_p_i_ic, /* 834 */ - Parrot_substr_s_p_ic_ic, /* 835 */ - Parrot_replace_s_s_i_i_s, /* 836 */ - Parrot_replace_s_sc_i_i_s, /* 837 */ - Parrot_replace_s_s_ic_i_s, /* 838 */ - Parrot_replace_s_sc_ic_i_s, /* 839 */ - Parrot_replace_s_s_i_ic_s, /* 840 */ - Parrot_replace_s_sc_i_ic_s, /* 841 */ - Parrot_replace_s_s_ic_ic_s, /* 842 */ - Parrot_replace_s_sc_ic_ic_s, /* 843 */ - Parrot_replace_s_s_i_i_sc, /* 844 */ - Parrot_replace_s_sc_i_i_sc, /* 845 */ - Parrot_replace_s_s_ic_i_sc, /* 846 */ - Parrot_replace_s_sc_ic_i_sc, /* 847 */ - Parrot_replace_s_s_i_ic_sc, /* 848 */ - Parrot_replace_s_sc_i_ic_sc, /* 849 */ - Parrot_replace_s_s_ic_ic_sc, /* 850 */ - Parrot_replace_s_sc_ic_ic_sc, /* 851 */ - Parrot_index_i_s_s, /* 852 */ - Parrot_index_i_sc_s, /* 853 */ - Parrot_index_i_s_sc, /* 854 */ - Parrot_index_i_sc_sc, /* 855 */ - Parrot_index_i_s_s_i, /* 856 */ - Parrot_index_i_sc_s_i, /* 857 */ - Parrot_index_i_s_sc_i, /* 858 */ - Parrot_index_i_sc_sc_i, /* 859 */ - Parrot_index_i_s_s_ic, /* 860 */ - Parrot_index_i_sc_s_ic, /* 861 */ - Parrot_index_i_s_sc_ic, /* 862 */ - Parrot_index_i_sc_sc_ic, /* 863 */ - Parrot_sprintf_s_s_p, /* 864 */ - Parrot_sprintf_s_sc_p, /* 865 */ - Parrot_sprintf_p_p_p, /* 866 */ - Parrot_new_s, /* 867 */ - Parrot_new_s_i, /* 868 */ - Parrot_new_s_ic, /* 869 */ - Parrot_stringinfo_i_s_i, /* 870 */ - Parrot_stringinfo_i_sc_i, /* 871 */ - Parrot_stringinfo_i_s_ic, /* 872 */ - Parrot_stringinfo_i_sc_ic, /* 873 */ - Parrot_upcase_s_s, /* 874 */ - Parrot_upcase_s_sc, /* 875 */ - Parrot_downcase_s_s, /* 876 */ - Parrot_downcase_s_sc, /* 877 */ - Parrot_titlecase_s_s, /* 878 */ - Parrot_titlecase_s_sc, /* 879 */ - Parrot_join_s_s_p, /* 880 */ - Parrot_join_s_sc_p, /* 881 */ - Parrot_split_p_s_s, /* 882 */ - Parrot_split_p_sc_s, /* 883 */ - Parrot_split_p_s_sc, /* 884 */ - Parrot_split_p_sc_sc, /* 885 */ - Parrot_encoding_i_s, /* 886 */ - Parrot_encoding_i_sc, /* 887 */ - Parrot_encodingname_s_i, /* 888 */ - Parrot_encodingname_s_ic, /* 889 */ - Parrot_find_encoding_i_s, /* 890 */ - Parrot_find_encoding_i_sc, /* 891 */ - Parrot_trans_encoding_s_s_i, /* 892 */ - Parrot_trans_encoding_s_sc_i, /* 893 */ - Parrot_trans_encoding_s_s_ic, /* 894 */ - Parrot_trans_encoding_s_sc_ic, /* 895 */ - Parrot_is_cclass_i_i_s_i, /* 896 */ - Parrot_is_cclass_i_ic_s_i, /* 897 */ - Parrot_is_cclass_i_i_sc_i, /* 898 */ - Parrot_is_cclass_i_ic_sc_i, /* 899 */ - Parrot_is_cclass_i_i_s_ic, /* 900 */ - Parrot_is_cclass_i_ic_s_ic, /* 901 */ - Parrot_is_cclass_i_i_sc_ic, /* 902 */ - Parrot_is_cclass_i_ic_sc_ic, /* 903 */ - Parrot_find_cclass_i_i_s_i_i, /* 904 */ - Parrot_find_cclass_i_ic_s_i_i, /* 905 */ - Parrot_find_cclass_i_i_sc_i_i, /* 906 */ - Parrot_find_cclass_i_ic_sc_i_i, /* 907 */ - Parrot_find_cclass_i_i_s_ic_i, /* 908 */ - Parrot_find_cclass_i_ic_s_ic_i, /* 909 */ - Parrot_find_cclass_i_i_sc_ic_i, /* 910 */ - Parrot_find_cclass_i_ic_sc_ic_i, /* 911 */ - Parrot_find_cclass_i_i_s_i_ic, /* 912 */ - Parrot_find_cclass_i_ic_s_i_ic, /* 913 */ - Parrot_find_cclass_i_i_sc_i_ic, /* 914 */ - Parrot_find_cclass_i_ic_sc_i_ic, /* 915 */ - Parrot_find_cclass_i_i_s_ic_ic, /* 916 */ - Parrot_find_cclass_i_ic_s_ic_ic, /* 917 */ - Parrot_find_cclass_i_i_sc_ic_ic, /* 918 */ - Parrot_find_cclass_i_ic_sc_ic_ic, /* 919 */ - Parrot_find_not_cclass_i_i_s_i_i, /* 920 */ - Parrot_find_not_cclass_i_ic_s_i_i, /* 921 */ - Parrot_find_not_cclass_i_i_sc_i_i, /* 922 */ - Parrot_find_not_cclass_i_ic_sc_i_i, /* 923 */ - Parrot_find_not_cclass_i_i_s_ic_i, /* 924 */ - Parrot_find_not_cclass_i_ic_s_ic_i, /* 925 */ - Parrot_find_not_cclass_i_i_sc_ic_i, /* 926 */ - Parrot_find_not_cclass_i_ic_sc_ic_i, /* 927 */ - Parrot_find_not_cclass_i_i_s_i_ic, /* 928 */ - Parrot_find_not_cclass_i_ic_s_i_ic, /* 929 */ - Parrot_find_not_cclass_i_i_sc_i_ic, /* 930 */ - Parrot_find_not_cclass_i_ic_sc_i_ic, /* 931 */ - Parrot_find_not_cclass_i_i_s_ic_ic, /* 932 */ - Parrot_find_not_cclass_i_ic_s_ic_ic, /* 933 */ - Parrot_find_not_cclass_i_i_sc_ic_ic, /* 934 */ - Parrot_find_not_cclass_i_ic_sc_ic_ic, /* 935 */ - Parrot_escape_s_s, /* 936 */ - Parrot_compose_s_s, /* 937 */ - Parrot_compose_s_sc, /* 938 */ - Parrot_find_codepoint_i_s, /* 939 */ - Parrot_find_codepoint_i_sc, /* 940 */ - Parrot_spawnw_i_s, /* 941 */ - Parrot_spawnw_i_sc, /* 942 */ - Parrot_spawnw_i_p, /* 943 */ - Parrot_err_i, /* 944 */ - Parrot_err_s, /* 945 */ - Parrot_err_s_i, /* 946 */ - Parrot_err_s_ic, /* 947 */ - Parrot_time_i, /* 948 */ - Parrot_time_n, /* 949 */ - Parrot_sleep_i, /* 950 */ - Parrot_sleep_ic, /* 951 */ - Parrot_sleep_n, /* 952 */ - Parrot_sleep_nc, /* 953 */ - Parrot_store_lex_s_p, /* 954 */ - Parrot_store_lex_sc_p, /* 955 */ - Parrot_store_lex_s_s, /* 956 */ - Parrot_store_lex_sc_s, /* 957 */ - Parrot_store_lex_s_sc, /* 958 */ - Parrot_store_lex_sc_sc, /* 959 */ - Parrot_store_lex_s_i, /* 960 */ - Parrot_store_lex_sc_i, /* 961 */ - Parrot_store_lex_s_ic, /* 962 */ - Parrot_store_lex_sc_ic, /* 963 */ - Parrot_store_lex_s_n, /* 964 */ - Parrot_store_lex_sc_n, /* 965 */ - Parrot_store_lex_s_nc, /* 966 */ - Parrot_store_lex_sc_nc, /* 967 */ - Parrot_store_dynamic_lex_s_p, /* 968 */ - Parrot_store_dynamic_lex_sc_p, /* 969 */ - Parrot_find_lex_p_s, /* 970 */ - Parrot_find_lex_p_sc, /* 971 */ - Parrot_find_lex_s_s, /* 972 */ - Parrot_find_lex_s_sc, /* 973 */ - Parrot_find_lex_i_s, /* 974 */ - Parrot_find_lex_i_sc, /* 975 */ - Parrot_find_lex_n_s, /* 976 */ - Parrot_find_lex_n_sc, /* 977 */ - Parrot_find_dynamic_lex_p_s, /* 978 */ - Parrot_find_dynamic_lex_p_sc, /* 979 */ - Parrot_find_caller_lex_p_s, /* 980 */ - Parrot_find_caller_lex_p_sc, /* 981 */ - Parrot_get_namespace_p, /* 982 */ - Parrot_get_namespace_p_p, /* 983 */ - Parrot_get_namespace_p_pc, /* 984 */ - Parrot_get_hll_namespace_p, /* 985 */ - Parrot_get_hll_namespace_p_p, /* 986 */ - Parrot_get_hll_namespace_p_pc, /* 987 */ - Parrot_get_root_namespace_p, /* 988 */ - Parrot_get_root_namespace_p_p, /* 989 */ - Parrot_get_root_namespace_p_pc, /* 990 */ - Parrot_get_global_p_s, /* 991 */ - Parrot_get_global_p_sc, /* 992 */ - Parrot_get_global_p_p_s, /* 993 */ - Parrot_get_global_p_pc_s, /* 994 */ - Parrot_get_global_p_p_sc, /* 995 */ - Parrot_get_global_p_pc_sc, /* 996 */ - Parrot_get_hll_global_p_s, /* 997 */ - Parrot_get_hll_global_p_sc, /* 998 */ - Parrot_get_hll_global_p_p_s, /* 999 */ - Parrot_get_hll_global_p_pc_s, /* 1000 */ - Parrot_get_hll_global_p_p_sc, /* 1001 */ - Parrot_get_hll_global_p_pc_sc, /* 1002 */ - Parrot_get_root_global_p_s, /* 1003 */ - Parrot_get_root_global_p_sc, /* 1004 */ - Parrot_get_root_global_p_p_s, /* 1005 */ - Parrot_get_root_global_p_pc_s, /* 1006 */ - Parrot_get_root_global_p_p_sc, /* 1007 */ - Parrot_get_root_global_p_pc_sc, /* 1008 */ - Parrot_set_global_s_p, /* 1009 */ - Parrot_set_global_sc_p, /* 1010 */ - Parrot_set_global_p_s_p, /* 1011 */ - Parrot_set_global_pc_s_p, /* 1012 */ - Parrot_set_global_p_sc_p, /* 1013 */ - Parrot_set_global_pc_sc_p, /* 1014 */ - Parrot_set_hll_global_s_p, /* 1015 */ - Parrot_set_hll_global_sc_p, /* 1016 */ - Parrot_set_hll_global_p_s_p, /* 1017 */ - Parrot_set_hll_global_pc_s_p, /* 1018 */ - Parrot_set_hll_global_p_sc_p, /* 1019 */ - Parrot_set_hll_global_pc_sc_p, /* 1020 */ - Parrot_set_root_global_s_p, /* 1021 */ - Parrot_set_root_global_sc_p, /* 1022 */ - Parrot_set_root_global_p_s_p, /* 1023 */ - Parrot_set_root_global_pc_s_p, /* 1024 */ - Parrot_set_root_global_p_sc_p, /* 1025 */ - Parrot_set_root_global_pc_sc_p, /* 1026 */ - Parrot_find_name_p_s, /* 1027 */ - Parrot_find_name_p_sc, /* 1028 */ - Parrot_find_sub_not_null_p_s, /* 1029 */ - Parrot_find_sub_not_null_p_sc, /* 1030 */ - Parrot_trap, /* 1031 */ - Parrot_set_label_p_ic, /* 1032 */ - Parrot_get_label_i_p, /* 1033 */ - Parrot_get_id_i_p, /* 1034 */ - Parrot_get_id_i_pc, /* 1035 */ - Parrot_fetch_p_p_p_p, /* 1036 */ - Parrot_fetch_p_pc_p_p, /* 1037 */ - Parrot_fetch_p_p_pc_p, /* 1038 */ - Parrot_fetch_p_pc_pc_p, /* 1039 */ - Parrot_fetch_p_p_p_pc, /* 1040 */ - Parrot_fetch_p_pc_p_pc, /* 1041 */ - Parrot_fetch_p_p_pc_pc, /* 1042 */ - Parrot_fetch_p_pc_pc_pc, /* 1043 */ - Parrot_fetch_p_p_i_p, /* 1044 */ - Parrot_fetch_p_pc_i_p, /* 1045 */ - Parrot_fetch_p_p_ic_p, /* 1046 */ - Parrot_fetch_p_pc_ic_p, /* 1047 */ - Parrot_fetch_p_p_i_pc, /* 1048 */ - Parrot_fetch_p_pc_i_pc, /* 1049 */ - Parrot_fetch_p_p_ic_pc, /* 1050 */ - Parrot_fetch_p_pc_ic_pc, /* 1051 */ - Parrot_fetch_p_p_s_p, /* 1052 */ - Parrot_fetch_p_pc_s_p, /* 1053 */ - Parrot_fetch_p_p_sc_p, /* 1054 */ - Parrot_fetch_p_pc_sc_p, /* 1055 */ - Parrot_fetch_p_p_s_pc, /* 1056 */ - Parrot_fetch_p_pc_s_pc, /* 1057 */ - Parrot_fetch_p_p_sc_pc, /* 1058 */ - Parrot_fetch_p_pc_sc_pc, /* 1059 */ - Parrot_vivify_p_p_p_p, /* 1060 */ - Parrot_vivify_p_pc_p_p, /* 1061 */ - Parrot_vivify_p_p_pc_p, /* 1062 */ - Parrot_vivify_p_pc_pc_p, /* 1063 */ - Parrot_vivify_p_p_p_pc, /* 1064 */ - Parrot_vivify_p_pc_p_pc, /* 1065 */ - Parrot_vivify_p_p_pc_pc, /* 1066 */ - Parrot_vivify_p_pc_pc_pc, /* 1067 */ - Parrot_vivify_p_p_i_p, /* 1068 */ - Parrot_vivify_p_pc_i_p, /* 1069 */ - Parrot_vivify_p_p_ic_p, /* 1070 */ - Parrot_vivify_p_pc_ic_p, /* 1071 */ - Parrot_vivify_p_p_i_pc, /* 1072 */ - Parrot_vivify_p_pc_i_pc, /* 1073 */ - Parrot_vivify_p_p_ic_pc, /* 1074 */ - Parrot_vivify_p_pc_ic_pc, /* 1075 */ - Parrot_vivify_p_p_s_p, /* 1076 */ - Parrot_vivify_p_pc_s_p, /* 1077 */ - Parrot_vivify_p_p_sc_p, /* 1078 */ - Parrot_vivify_p_pc_sc_p, /* 1079 */ - Parrot_vivify_p_p_s_pc, /* 1080 */ - Parrot_vivify_p_pc_s_pc, /* 1081 */ - Parrot_vivify_p_p_sc_pc, /* 1082 */ - Parrot_vivify_p_pc_sc_pc, /* 1083 */ - Parrot_new_p_s_i, /* 1084 */ - Parrot_new_p_sc_i, /* 1085 */ - Parrot_new_p_s_ic, /* 1086 */ - Parrot_new_p_sc_ic, /* 1087 */ - Parrot_new_p_p_i, /* 1088 */ - Parrot_new_p_pc_i, /* 1089 */ - Parrot_new_p_p_ic, /* 1090 */ - Parrot_new_p_pc_ic, /* 1091 */ - Parrot_root_new_p_p_i, /* 1092 */ - Parrot_root_new_p_pc_i, /* 1093 */ - Parrot_root_new_p_p_ic, /* 1094 */ - Parrot_root_new_p_pc_ic, /* 1095 */ - Parrot_receive_p, /* 1096 */ - Parrot_wait_p, /* 1097 */ - Parrot_wait_pc, /* 1098 */ - Parrot_pass, /* 1099 */ + Parrot_set_runcore_s, /* 91 */ + Parrot_set_runcore_sc, /* 92 */ + Parrot_runinterp_p_i, /* 93 */ + Parrot_runinterp_p_ic, /* 94 */ + Parrot_getinterp_p, /* 95 */ + Parrot_sweep_ic, /* 96 */ + Parrot_collect, /* 97 */ + Parrot_sweepoff, /* 98 */ + Parrot_sweepon, /* 99 */ + Parrot_collectoff, /* 100 */ + Parrot_collecton, /* 101 */ + Parrot_needs_destroy_p, /* 102 */ + Parrot_loadlib_p_s, /* 103 */ + Parrot_loadlib_p_sc, /* 104 */ + Parrot_loadlib_p_s_p, /* 105 */ + Parrot_loadlib_p_sc_p, /* 106 */ + Parrot_loadlib_p_s_pc, /* 107 */ + Parrot_loadlib_p_sc_pc, /* 108 */ + Parrot_dlfunc_p_p_s_s, /* 109 */ + Parrot_dlfunc_p_p_sc_s, /* 110 */ + Parrot_dlfunc_p_p_s_sc, /* 111 */ + Parrot_dlfunc_p_p_sc_sc, /* 112 */ + Parrot_dlfunc_p_p_s_p, /* 113 */ + Parrot_dlfunc_p_p_sc_p, /* 114 */ + Parrot_dlvar_p_p_s, /* 115 */ + Parrot_dlvar_p_p_sc, /* 116 */ + Parrot_compreg_s_p, /* 117 */ + Parrot_compreg_sc_p, /* 118 */ + Parrot_compreg_p_s, /* 119 */ + Parrot_compreg_p_sc, /* 120 */ + Parrot_new_callback_p_p_p_s, /* 121 */ + Parrot_new_callback_p_p_p_sc, /* 122 */ + Parrot_annotations_p, /* 123 */ + Parrot_annotations_p_s, /* 124 */ + Parrot_annotations_p_sc, /* 125 */ + Parrot_band_i_i, /* 126 */ + Parrot_band_i_ic, /* 127 */ + Parrot_band_i_i_i, /* 128 */ + Parrot_band_i_ic_i, /* 129 */ + Parrot_band_i_i_ic, /* 130 */ + Parrot_bor_i_i, /* 131 */ + Parrot_bor_i_ic, /* 132 */ + Parrot_bor_i_i_i, /* 133 */ + Parrot_bor_i_ic_i, /* 134 */ + Parrot_bor_i_i_ic, /* 135 */ + Parrot_shl_i_i, /* 136 */ + Parrot_shl_i_ic, /* 137 */ + Parrot_shl_i_i_i, /* 138 */ + Parrot_shl_i_ic_i, /* 139 */ + Parrot_shl_i_i_ic, /* 140 */ + Parrot_shr_i_i, /* 141 */ + Parrot_shr_i_ic, /* 142 */ + Parrot_shr_i_i_i, /* 143 */ + Parrot_shr_i_ic_i, /* 144 */ + Parrot_shr_i_i_ic, /* 145 */ + Parrot_lsr_i_i, /* 146 */ + Parrot_lsr_i_ic, /* 147 */ + Parrot_lsr_i_i_i, /* 148 */ + Parrot_lsr_i_ic_i, /* 149 */ + Parrot_lsr_i_i_ic, /* 150 */ + Parrot_bxor_i_i, /* 151 */ + Parrot_bxor_i_ic, /* 152 */ + Parrot_bxor_i_i_i, /* 153 */ + Parrot_bxor_i_ic_i, /* 154 */ + Parrot_bxor_i_i_ic, /* 155 */ + Parrot_eq_i_i_ic, /* 156 */ + Parrot_eq_ic_i_ic, /* 157 */ + Parrot_eq_i_ic_ic, /* 158 */ + Parrot_eq_n_n_ic, /* 159 */ + Parrot_eq_nc_n_ic, /* 160 */ + Parrot_eq_n_nc_ic, /* 161 */ + Parrot_eq_s_s_ic, /* 162 */ + Parrot_eq_sc_s_ic, /* 163 */ + Parrot_eq_s_sc_ic, /* 164 */ + Parrot_eq_p_p_ic, /* 165 */ + Parrot_eq_p_i_ic, /* 166 */ + Parrot_eq_p_ic_ic, /* 167 */ + Parrot_eq_p_n_ic, /* 168 */ + Parrot_eq_p_nc_ic, /* 169 */ + Parrot_eq_p_s_ic, /* 170 */ + Parrot_eq_p_sc_ic, /* 171 */ + Parrot_eq_str_p_p_ic, /* 172 */ + Parrot_eq_num_p_p_ic, /* 173 */ + Parrot_eq_addr_s_s_ic, /* 174 */ + Parrot_eq_addr_sc_s_ic, /* 175 */ + Parrot_eq_addr_s_sc_ic, /* 176 */ + Parrot_eq_addr_sc_sc_ic, /* 177 */ + Parrot_eq_addr_p_p_ic, /* 178 */ + Parrot_ne_i_i_ic, /* 179 */ + Parrot_ne_ic_i_ic, /* 180 */ + Parrot_ne_i_ic_ic, /* 181 */ + Parrot_ne_n_n_ic, /* 182 */ + Parrot_ne_nc_n_ic, /* 183 */ + Parrot_ne_n_nc_ic, /* 184 */ + Parrot_ne_s_s_ic, /* 185 */ + Parrot_ne_sc_s_ic, /* 186 */ + Parrot_ne_s_sc_ic, /* 187 */ + Parrot_ne_p_p_ic, /* 188 */ + Parrot_ne_p_i_ic, /* 189 */ + Parrot_ne_p_ic_ic, /* 190 */ + Parrot_ne_p_n_ic, /* 191 */ + Parrot_ne_p_nc_ic, /* 192 */ + Parrot_ne_p_s_ic, /* 193 */ + Parrot_ne_p_sc_ic, /* 194 */ + Parrot_ne_str_p_p_ic, /* 195 */ + Parrot_ne_num_p_p_ic, /* 196 */ + Parrot_ne_addr_s_s_ic, /* 197 */ + Parrot_ne_addr_sc_s_ic, /* 198 */ + Parrot_ne_addr_s_sc_ic, /* 199 */ + Parrot_ne_addr_sc_sc_ic, /* 200 */ + Parrot_ne_addr_p_p_ic, /* 201 */ + Parrot_lt_i_i_ic, /* 202 */ + Parrot_lt_ic_i_ic, /* 203 */ + Parrot_lt_i_ic_ic, /* 204 */ + Parrot_lt_n_n_ic, /* 205 */ + Parrot_lt_nc_n_ic, /* 206 */ + Parrot_lt_n_nc_ic, /* 207 */ + Parrot_lt_s_s_ic, /* 208 */ + Parrot_lt_sc_s_ic, /* 209 */ + Parrot_lt_s_sc_ic, /* 210 */ + Parrot_lt_p_p_ic, /* 211 */ + Parrot_lt_p_i_ic, /* 212 */ + Parrot_lt_p_ic_ic, /* 213 */ + Parrot_lt_p_n_ic, /* 214 */ + Parrot_lt_p_nc_ic, /* 215 */ + Parrot_lt_p_s_ic, /* 216 */ + Parrot_lt_p_sc_ic, /* 217 */ + Parrot_lt_str_p_p_ic, /* 218 */ + Parrot_lt_num_p_p_ic, /* 219 */ + Parrot_le_i_i_ic, /* 220 */ + Parrot_le_ic_i_ic, /* 221 */ + Parrot_le_i_ic_ic, /* 222 */ + Parrot_le_n_n_ic, /* 223 */ + Parrot_le_nc_n_ic, /* 224 */ + Parrot_le_n_nc_ic, /* 225 */ + Parrot_le_s_s_ic, /* 226 */ + Parrot_le_sc_s_ic, /* 227 */ + Parrot_le_s_sc_ic, /* 228 */ + Parrot_le_p_p_ic, /* 229 */ + Parrot_le_p_i_ic, /* 230 */ + Parrot_le_p_ic_ic, /* 231 */ + Parrot_le_p_n_ic, /* 232 */ + Parrot_le_p_nc_ic, /* 233 */ + Parrot_le_p_s_ic, /* 234 */ + Parrot_le_p_sc_ic, /* 235 */ + Parrot_le_str_p_p_ic, /* 236 */ + Parrot_le_num_p_p_ic, /* 237 */ + Parrot_gt_p_p_ic, /* 238 */ + Parrot_gt_p_i_ic, /* 239 */ + Parrot_gt_p_ic_ic, /* 240 */ + Parrot_gt_p_n_ic, /* 241 */ + Parrot_gt_p_nc_ic, /* 242 */ + Parrot_gt_p_s_ic, /* 243 */ + Parrot_gt_p_sc_ic, /* 244 */ + Parrot_gt_str_p_p_ic, /* 245 */ + Parrot_gt_num_p_p_ic, /* 246 */ + Parrot_ge_p_p_ic, /* 247 */ + Parrot_ge_p_i_ic, /* 248 */ + Parrot_ge_p_ic_ic, /* 249 */ + Parrot_ge_p_n_ic, /* 250 */ + Parrot_ge_p_nc_ic, /* 251 */ + Parrot_ge_p_s_ic, /* 252 */ + Parrot_ge_p_sc_ic, /* 253 */ + Parrot_ge_str_p_p_ic, /* 254 */ + Parrot_ge_num_p_p_ic, /* 255 */ + Parrot_if_null_p_ic, /* 256 */ + Parrot_if_null_s_ic, /* 257 */ + Parrot_unless_null_p_ic, /* 258 */ + Parrot_unless_null_s_ic, /* 259 */ + Parrot_cmp_i_i_i, /* 260 */ + Parrot_cmp_i_ic_i, /* 261 */ + Parrot_cmp_i_i_ic, /* 262 */ + Parrot_cmp_i_n_n, /* 263 */ + Parrot_cmp_i_nc_n, /* 264 */ + Parrot_cmp_i_n_nc, /* 265 */ + Parrot_cmp_i_s_s, /* 266 */ + Parrot_cmp_i_sc_s, /* 267 */ + Parrot_cmp_i_s_sc, /* 268 */ + Parrot_cmp_i_p_p, /* 269 */ + Parrot_cmp_i_p_i, /* 270 */ + Parrot_cmp_i_p_ic, /* 271 */ + Parrot_cmp_i_p_n, /* 272 */ + Parrot_cmp_i_p_nc, /* 273 */ + Parrot_cmp_i_p_s, /* 274 */ + Parrot_cmp_i_p_sc, /* 275 */ + Parrot_cmp_str_i_p_p, /* 276 */ + Parrot_cmp_num_i_p_p, /* 277 */ + Parrot_cmp_pmc_p_p_p, /* 278 */ + Parrot_issame_i_p_p, /* 279 */ + Parrot_issame_i_s_s, /* 280 */ + Parrot_issame_i_sc_s, /* 281 */ + Parrot_issame_i_s_sc, /* 282 */ + Parrot_issame_i_sc_sc, /* 283 */ + Parrot_isntsame_i_p_p, /* 284 */ + Parrot_isntsame_i_s_s, /* 285 */ + Parrot_isntsame_i_sc_s, /* 286 */ + Parrot_isntsame_i_s_sc, /* 287 */ + Parrot_isntsame_i_sc_sc, /* 288 */ + Parrot_istrue_i_p, /* 289 */ + Parrot_isfalse_i_p, /* 290 */ + Parrot_isnull_i_p, /* 291 */ + Parrot_isnull_i_pc, /* 292 */ + Parrot_isnull_i_s, /* 293 */ + Parrot_isnull_i_sc, /* 294 */ + Parrot_isgt_i_p_p, /* 295 */ + Parrot_isge_i_p_p, /* 296 */ + Parrot_isle_i_i_i, /* 297 */ + Parrot_isle_i_ic_i, /* 298 */ + Parrot_isle_i_i_ic, /* 299 */ + Parrot_isle_i_n_n, /* 300 */ + Parrot_isle_i_nc_n, /* 301 */ + Parrot_isle_i_n_nc, /* 302 */ + Parrot_isle_i_s_s, /* 303 */ + Parrot_isle_i_sc_s, /* 304 */ + Parrot_isle_i_s_sc, /* 305 */ + Parrot_isle_i_p_p, /* 306 */ + Parrot_islt_i_i_i, /* 307 */ + Parrot_islt_i_ic_i, /* 308 */ + Parrot_islt_i_i_ic, /* 309 */ + Parrot_islt_i_n_n, /* 310 */ + Parrot_islt_i_nc_n, /* 311 */ + Parrot_islt_i_n_nc, /* 312 */ + Parrot_islt_i_s_s, /* 313 */ + Parrot_islt_i_sc_s, /* 314 */ + Parrot_islt_i_s_sc, /* 315 */ + Parrot_islt_i_p_p, /* 316 */ + Parrot_iseq_i_i_i, /* 317 */ + Parrot_iseq_i_ic_i, /* 318 */ + Parrot_iseq_i_i_ic, /* 319 */ + Parrot_iseq_i_n_n, /* 320 */ + Parrot_iseq_i_nc_n, /* 321 */ + Parrot_iseq_i_n_nc, /* 322 */ + Parrot_iseq_i_s_s, /* 323 */ + Parrot_iseq_i_sc_s, /* 324 */ + Parrot_iseq_i_s_sc, /* 325 */ + Parrot_iseq_i_p_p, /* 326 */ + Parrot_isne_i_i_i, /* 327 */ + Parrot_isne_i_ic_i, /* 328 */ + Parrot_isne_i_i_ic, /* 329 */ + Parrot_isne_i_n_n, /* 330 */ + Parrot_isne_i_nc_n, /* 331 */ + Parrot_isne_i_n_nc, /* 332 */ + Parrot_isne_i_s_s, /* 333 */ + Parrot_isne_i_sc_s, /* 334 */ + Parrot_isne_i_s_sc, /* 335 */ + Parrot_isne_i_p_p, /* 336 */ + Parrot_and_i_i_i, /* 337 */ + Parrot_and_i_ic_i, /* 338 */ + Parrot_and_i_i_ic, /* 339 */ + Parrot_and_p_p_p, /* 340 */ + Parrot_not_i, /* 341 */ + Parrot_not_i_i, /* 342 */ + Parrot_not_p, /* 343 */ + Parrot_not_p_p, /* 344 */ + Parrot_or_i_i_i, /* 345 */ + Parrot_or_i_ic_i, /* 346 */ + Parrot_or_i_i_ic, /* 347 */ + Parrot_or_p_p_p, /* 348 */ + Parrot_xor_i_i_i, /* 349 */ + Parrot_xor_i_ic_i, /* 350 */ + Parrot_xor_i_i_ic, /* 351 */ + Parrot_xor_p_p_p, /* 352 */ + Parrot_print_i, /* 353 */ + Parrot_print_ic, /* 354 */ + Parrot_print_n, /* 355 */ + Parrot_print_nc, /* 356 */ + Parrot_print_s, /* 357 */ + Parrot_print_sc, /* 358 */ + Parrot_print_p, /* 359 */ + Parrot_say_i, /* 360 */ + Parrot_say_ic, /* 361 */ + Parrot_say_n, /* 362 */ + Parrot_say_nc, /* 363 */ + Parrot_say_s, /* 364 */ + Parrot_say_sc, /* 365 */ + Parrot_say_p, /* 366 */ + Parrot_print_p_i, /* 367 */ + Parrot_print_p_ic, /* 368 */ + Parrot_print_p_n, /* 369 */ + Parrot_print_p_nc, /* 370 */ + Parrot_print_p_s, /* 371 */ + Parrot_print_p_sc, /* 372 */ + Parrot_print_p_p, /* 373 */ + Parrot_getstdin_p, /* 374 */ + Parrot_getstdout_p, /* 375 */ + Parrot_getstderr_p, /* 376 */ + Parrot_abs_i, /* 377 */ + Parrot_abs_n, /* 378 */ + Parrot_abs_i_i, /* 379 */ + Parrot_abs_n_n, /* 380 */ + Parrot_abs_p, /* 381 */ + Parrot_abs_p_p, /* 382 */ + Parrot_add_i_i, /* 383 */ + Parrot_add_i_ic, /* 384 */ + Parrot_add_n_n, /* 385 */ + Parrot_add_n_nc, /* 386 */ + Parrot_add_p_p, /* 387 */ + Parrot_add_p_i, /* 388 */ + Parrot_add_p_ic, /* 389 */ + Parrot_add_p_n, /* 390 */ + Parrot_add_p_nc, /* 391 */ + Parrot_add_i_i_i, /* 392 */ + Parrot_add_i_ic_i, /* 393 */ + Parrot_add_i_i_ic, /* 394 */ + Parrot_add_n_n_n, /* 395 */ + Parrot_add_n_nc_n, /* 396 */ + Parrot_add_n_n_nc, /* 397 */ + Parrot_add_p_p_p, /* 398 */ + Parrot_add_p_p_i, /* 399 */ + Parrot_add_p_p_ic, /* 400 */ + Parrot_add_p_p_n, /* 401 */ + Parrot_add_p_p_nc, /* 402 */ + Parrot_dec_i, /* 403 */ + Parrot_dec_n, /* 404 */ + Parrot_dec_p, /* 405 */ + Parrot_div_i_i, /* 406 */ + Parrot_div_i_ic, /* 407 */ + Parrot_div_n_n, /* 408 */ + Parrot_div_n_nc, /* 409 */ + Parrot_div_p_p, /* 410 */ + Parrot_div_p_i, /* 411 */ + Parrot_div_p_ic, /* 412 */ + Parrot_div_p_n, /* 413 */ + Parrot_div_p_nc, /* 414 */ + Parrot_div_i_i_i, /* 415 */ + Parrot_div_i_ic_i, /* 416 */ + Parrot_div_i_i_ic, /* 417 */ + Parrot_div_i_ic_ic, /* 418 */ + Parrot_div_n_n_n, /* 419 */ + Parrot_div_n_nc_n, /* 420 */ + Parrot_div_n_n_nc, /* 421 */ + Parrot_div_n_nc_nc, /* 422 */ + Parrot_div_p_p_p, /* 423 */ + Parrot_div_p_p_i, /* 424 */ + Parrot_div_p_p_ic, /* 425 */ + Parrot_div_p_p_n, /* 426 */ + Parrot_div_p_p_nc, /* 427 */ + Parrot_fdiv_i_i, /* 428 */ + Parrot_fdiv_i_ic, /* 429 */ + Parrot_fdiv_n_n, /* 430 */ + Parrot_fdiv_n_nc, /* 431 */ + Parrot_fdiv_p_p, /* 432 */ + Parrot_fdiv_p_i, /* 433 */ + Parrot_fdiv_p_ic, /* 434 */ + Parrot_fdiv_p_n, /* 435 */ + Parrot_fdiv_p_nc, /* 436 */ + Parrot_fdiv_i_i_i, /* 437 */ + Parrot_fdiv_i_ic_i, /* 438 */ + Parrot_fdiv_i_i_ic, /* 439 */ + Parrot_fdiv_n_n_n, /* 440 */ + Parrot_fdiv_n_nc_n, /* 441 */ + Parrot_fdiv_n_n_nc, /* 442 */ + Parrot_fdiv_p_p_p, /* 443 */ + Parrot_fdiv_p_p_i, /* 444 */ + Parrot_fdiv_p_p_ic, /* 445 */ + Parrot_fdiv_p_p_n, /* 446 */ + Parrot_fdiv_p_p_nc, /* 447 */ + Parrot_ceil_n, /* 448 */ + Parrot_ceil_i_n, /* 449 */ + Parrot_ceil_n_n, /* 450 */ + Parrot_floor_n, /* 451 */ + Parrot_floor_i_n, /* 452 */ + Parrot_floor_n_n, /* 453 */ + Parrot_inc_i, /* 454 */ + Parrot_inc_n, /* 455 */ + Parrot_inc_p, /* 456 */ + Parrot_mod_i_i, /* 457 */ + Parrot_mod_i_ic, /* 458 */ + Parrot_mod_n_n, /* 459 */ + Parrot_mod_n_nc, /* 460 */ + Parrot_mod_p_p, /* 461 */ + Parrot_mod_p_i, /* 462 */ + Parrot_mod_p_ic, /* 463 */ + Parrot_mod_p_n, /* 464 */ + Parrot_mod_p_nc, /* 465 */ + Parrot_mod_i_i_i, /* 466 */ + Parrot_mod_i_ic_i, /* 467 */ + Parrot_mod_i_i_ic, /* 468 */ + Parrot_mod_n_n_n, /* 469 */ + Parrot_mod_n_nc_n, /* 470 */ + Parrot_mod_n_n_nc, /* 471 */ + Parrot_mod_p_p_p, /* 472 */ + Parrot_mod_p_p_i, /* 473 */ + Parrot_mod_p_p_ic, /* 474 */ + Parrot_mod_p_p_n, /* 475 */ + Parrot_mod_p_p_nc, /* 476 */ + Parrot_mul_i_i, /* 477 */ + Parrot_mul_i_ic, /* 478 */ + Parrot_mul_n_n, /* 479 */ + Parrot_mul_n_nc, /* 480 */ + Parrot_mul_p_p, /* 481 */ + Parrot_mul_p_i, /* 482 */ + Parrot_mul_p_ic, /* 483 */ + Parrot_mul_p_n, /* 484 */ + Parrot_mul_p_nc, /* 485 */ + Parrot_mul_i_i_i, /* 486 */ + Parrot_mul_i_ic_i, /* 487 */ + Parrot_mul_i_i_ic, /* 488 */ + Parrot_mul_n_n_n, /* 489 */ + Parrot_mul_n_nc_n, /* 490 */ + Parrot_mul_n_n_nc, /* 491 */ + Parrot_mul_p_p_p, /* 492 */ + Parrot_mul_p_p_i, /* 493 */ + Parrot_mul_p_p_ic, /* 494 */ + Parrot_mul_p_p_n, /* 495 */ + Parrot_mul_p_p_nc, /* 496 */ + Parrot_neg_i, /* 497 */ + Parrot_neg_n, /* 498 */ + Parrot_neg_p, /* 499 */ + Parrot_neg_i_i, /* 500 */ + Parrot_neg_n_n, /* 501 */ + Parrot_neg_p_p, /* 502 */ + Parrot_sub_i_i, /* 503 */ + Parrot_sub_i_ic, /* 504 */ + Parrot_sub_n_n, /* 505 */ + Parrot_sub_n_nc, /* 506 */ + Parrot_sub_p_p, /* 507 */ + Parrot_sub_p_i, /* 508 */ + Parrot_sub_p_ic, /* 509 */ + Parrot_sub_p_n, /* 510 */ + Parrot_sub_p_nc, /* 511 */ + Parrot_sub_i_i_i, /* 512 */ + Parrot_sub_i_ic_i, /* 513 */ + Parrot_sub_i_i_ic, /* 514 */ + Parrot_sub_n_n_n, /* 515 */ + Parrot_sub_n_nc_n, /* 516 */ + Parrot_sub_n_n_nc, /* 517 */ + Parrot_sub_p_p_p, /* 518 */ + Parrot_sub_p_p_i, /* 519 */ + Parrot_sub_p_p_ic, /* 520 */ + Parrot_sub_p_p_n, /* 521 */ + Parrot_sub_p_p_nc, /* 522 */ + Parrot_sqrt_n_n, /* 523 */ + Parrot_callmethodcc_p_s, /* 524 */ + Parrot_callmethodcc_p_sc, /* 525 */ + Parrot_callmethodcc_p_p, /* 526 */ + Parrot_callmethod_p_s_p, /* 527 */ + Parrot_callmethod_p_sc_p, /* 528 */ + Parrot_callmethod_p_p_p, /* 529 */ + Parrot_tailcallmethod_p_s, /* 530 */ + Parrot_tailcallmethod_p_sc, /* 531 */ + Parrot_tailcallmethod_p_p, /* 532 */ + Parrot_addmethod_p_s_p, /* 533 */ + Parrot_addmethod_p_sc_p, /* 534 */ + Parrot_can_i_p_s, /* 535 */ + Parrot_can_i_p_sc, /* 536 */ + Parrot_does_i_p_s, /* 537 */ + Parrot_does_i_p_sc, /* 538 */ + Parrot_does_i_p_p, /* 539 */ + Parrot_does_i_p_pc, /* 540 */ + Parrot_isa_i_p_s, /* 541 */ + Parrot_isa_i_p_sc, /* 542 */ + Parrot_isa_i_p_p, /* 543 */ + Parrot_isa_i_p_pc, /* 544 */ + Parrot_newclass_p_s, /* 545 */ + Parrot_newclass_p_sc, /* 546 */ + Parrot_newclass_p_p, /* 547 */ + Parrot_newclass_p_pc, /* 548 */ + Parrot_subclass_p_p, /* 549 */ + Parrot_subclass_p_pc, /* 550 */ + Parrot_subclass_p_p_s, /* 551 */ + Parrot_subclass_p_pc_s, /* 552 */ + Parrot_subclass_p_p_sc, /* 553 */ + Parrot_subclass_p_pc_sc, /* 554 */ + Parrot_subclass_p_p_p, /* 555 */ + Parrot_subclass_p_pc_p, /* 556 */ + Parrot_subclass_p_p_pc, /* 557 */ + Parrot_subclass_p_pc_pc, /* 558 */ + Parrot_subclass_p_s, /* 559 */ + Parrot_subclass_p_sc, /* 560 */ + Parrot_subclass_p_s_s, /* 561 */ + Parrot_subclass_p_sc_s, /* 562 */ + Parrot_subclass_p_s_sc, /* 563 */ + Parrot_subclass_p_sc_sc, /* 564 */ + Parrot_subclass_p_s_p, /* 565 */ + Parrot_subclass_p_sc_p, /* 566 */ + Parrot_subclass_p_s_pc, /* 567 */ + Parrot_subclass_p_sc_pc, /* 568 */ + Parrot_get_class_p_s, /* 569 */ + Parrot_get_class_p_sc, /* 570 */ + Parrot_get_class_p_p, /* 571 */ + Parrot_get_class_p_pc, /* 572 */ + Parrot_class_p_p, /* 573 */ + Parrot_addparent_p_p, /* 574 */ + Parrot_removeparent_p_p, /* 575 */ + Parrot_addrole_p_p, /* 576 */ + Parrot_addattribute_p_s, /* 577 */ + Parrot_addattribute_p_sc, /* 578 */ + Parrot_removeattribute_p_s, /* 579 */ + Parrot_removeattribute_p_sc, /* 580 */ + Parrot_getattribute_p_p_s, /* 581 */ + Parrot_getattribute_p_p_sc, /* 582 */ + Parrot_getattribute_p_p_p_s, /* 583 */ + Parrot_getattribute_p_p_pc_s, /* 584 */ + Parrot_getattribute_p_p_p_sc, /* 585 */ + Parrot_getattribute_p_p_pc_sc, /* 586 */ + Parrot_setattribute_p_s_p, /* 587 */ + Parrot_setattribute_p_sc_p, /* 588 */ + Parrot_setattribute_p_p_s_p, /* 589 */ + Parrot_setattribute_p_pc_s_p, /* 590 */ + Parrot_setattribute_p_p_sc_p, /* 591 */ + Parrot_setattribute_p_pc_sc_p, /* 592 */ + Parrot_inspect_p_p, /* 593 */ + Parrot_inspect_p_pc, /* 594 */ + Parrot_inspect_p_p_s, /* 595 */ + Parrot_inspect_p_pc_s, /* 596 */ + Parrot_inspect_p_p_sc, /* 597 */ + Parrot_inspect_p_pc_sc, /* 598 */ + Parrot_new_p_s, /* 599 */ + Parrot_new_p_sc, /* 600 */ + Parrot_new_p_s_p, /* 601 */ + Parrot_new_p_sc_p, /* 602 */ + Parrot_new_p_s_pc, /* 603 */ + Parrot_new_p_sc_pc, /* 604 */ + Parrot_new_p_p, /* 605 */ + Parrot_new_p_pc, /* 606 */ + Parrot_new_p_p_p, /* 607 */ + Parrot_new_p_pc_p, /* 608 */ + Parrot_new_p_p_pc, /* 609 */ + Parrot_new_p_pc_pc, /* 610 */ + Parrot_root_new_p_p, /* 611 */ + Parrot_root_new_p_pc, /* 612 */ + Parrot_root_new_p_p_p, /* 613 */ + Parrot_root_new_p_pc_p, /* 614 */ + Parrot_root_new_p_p_pc, /* 615 */ + Parrot_root_new_p_pc_pc, /* 616 */ + Parrot_typeof_s_p, /* 617 */ + Parrot_typeof_p_p, /* 618 */ + Parrot_get_repr_s_p, /* 619 */ + Parrot_find_method_p_p_s, /* 620 */ + Parrot_find_method_p_p_sc, /* 621 */ + Parrot_defined_i_p, /* 622 */ + Parrot_defined_i_p_ki, /* 623 */ + Parrot_defined_i_p_kic, /* 624 */ + Parrot_defined_i_p_k, /* 625 */ + Parrot_defined_i_p_kc, /* 626 */ + Parrot_exists_i_p_ki, /* 627 */ + Parrot_exists_i_p_kic, /* 628 */ + Parrot_exists_i_p_k, /* 629 */ + Parrot_exists_i_p_kc, /* 630 */ + Parrot_delete_p_k, /* 631 */ + Parrot_delete_p_kc, /* 632 */ + Parrot_delete_p_ki, /* 633 */ + Parrot_delete_p_kic, /* 634 */ + Parrot_elements_i_p, /* 635 */ + Parrot_push_p_i, /* 636 */ + Parrot_push_p_ic, /* 637 */ + Parrot_push_p_n, /* 638 */ + Parrot_push_p_nc, /* 639 */ + Parrot_push_p_s, /* 640 */ + Parrot_push_p_sc, /* 641 */ + Parrot_push_p_p, /* 642 */ + Parrot_pop_i_p, /* 643 */ + Parrot_pop_n_p, /* 644 */ + Parrot_pop_s_p, /* 645 */ + Parrot_pop_p_p, /* 646 */ + Parrot_unshift_p_i, /* 647 */ + Parrot_unshift_p_ic, /* 648 */ + Parrot_unshift_p_n, /* 649 */ + Parrot_unshift_p_nc, /* 650 */ + Parrot_unshift_p_s, /* 651 */ + Parrot_unshift_p_sc, /* 652 */ + Parrot_unshift_p_p, /* 653 */ + Parrot_shift_i_p, /* 654 */ + Parrot_shift_n_p, /* 655 */ + Parrot_shift_s_p, /* 656 */ + Parrot_shift_p_p, /* 657 */ + Parrot_splice_p_p_i_i, /* 658 */ + Parrot_splice_p_p_ic_i, /* 659 */ + Parrot_splice_p_p_i_ic, /* 660 */ + Parrot_splice_p_p_ic_ic, /* 661 */ + Parrot_setprop_p_s_p, /* 662 */ + Parrot_setprop_p_sc_p, /* 663 */ + Parrot_getprop_p_s_p, /* 664 */ + Parrot_getprop_p_sc_p, /* 665 */ + Parrot_delprop_p_s, /* 666 */ + Parrot_delprop_p_sc, /* 667 */ + Parrot_prophash_p_p, /* 668 */ + Parrot_freeze_s_p, /* 669 */ + Parrot_thaw_p_s, /* 670 */ + Parrot_thaw_p_sc, /* 671 */ + Parrot_add_multi_s_s_p, /* 672 */ + Parrot_add_multi_sc_s_p, /* 673 */ + Parrot_add_multi_s_sc_p, /* 674 */ + Parrot_add_multi_sc_sc_p, /* 675 */ + Parrot_find_multi_p_s_s, /* 676 */ + Parrot_find_multi_p_sc_s, /* 677 */ + Parrot_find_multi_p_s_sc, /* 678 */ + Parrot_find_multi_p_sc_sc, /* 679 */ + Parrot_register_p, /* 680 */ + Parrot_unregister_p, /* 681 */ + Parrot_box_p_i, /* 682 */ + Parrot_box_p_ic, /* 683 */ + Parrot_box_p_n, /* 684 */ + Parrot_box_p_nc, /* 685 */ + Parrot_box_p_s, /* 686 */ + Parrot_box_p_sc, /* 687 */ + Parrot_iter_p_p, /* 688 */ + Parrot_morph_p_p, /* 689 */ + Parrot_morph_p_pc, /* 690 */ + Parrot_clone_s_s, /* 691 */ + Parrot_clone_s_sc, /* 692 */ + Parrot_set_i_i, /* 693 */ + Parrot_set_i_ic, /* 694 */ + Parrot_set_i_n, /* 695 */ + Parrot_set_i_nc, /* 696 */ + Parrot_set_i_s, /* 697 */ + Parrot_set_i_sc, /* 698 */ + Parrot_set_n_n, /* 699 */ + Parrot_set_n_nc, /* 700 */ + Parrot_set_n_i, /* 701 */ + Parrot_set_n_ic, /* 702 */ + Parrot_set_n_s, /* 703 */ + Parrot_set_n_sc, /* 704 */ + Parrot_set_n_p, /* 705 */ + Parrot_set_s_p, /* 706 */ + Parrot_set_s_s, /* 707 */ + Parrot_set_s_sc, /* 708 */ + Parrot_set_s_i, /* 709 */ + Parrot_set_s_ic, /* 710 */ + Parrot_set_s_n, /* 711 */ + Parrot_set_s_nc, /* 712 */ + Parrot_set_p_pc, /* 713 */ + Parrot_set_p_p, /* 714 */ + Parrot_set_p_i, /* 715 */ + Parrot_set_p_ic, /* 716 */ + Parrot_set_p_n, /* 717 */ + Parrot_set_p_nc, /* 718 */ + Parrot_set_p_s, /* 719 */ + Parrot_set_p_sc, /* 720 */ + Parrot_set_i_p, /* 721 */ + Parrot_assign_p_p, /* 722 */ + Parrot_assign_p_i, /* 723 */ + Parrot_assign_p_ic, /* 724 */ + Parrot_assign_p_n, /* 725 */ + Parrot_assign_p_nc, /* 726 */ + Parrot_assign_p_s, /* 727 */ + Parrot_assign_p_sc, /* 728 */ + Parrot_assign_s_s, /* 729 */ + Parrot_assign_s_sc, /* 730 */ + Parrot_setref_p_p, /* 731 */ + Parrot_deref_p_p, /* 732 */ + Parrot_set_p_ki_i, /* 733 */ + Parrot_set_p_kic_i, /* 734 */ + Parrot_set_p_ki_ic, /* 735 */ + Parrot_set_p_kic_ic, /* 736 */ + Parrot_set_p_ki_n, /* 737 */ + Parrot_set_p_kic_n, /* 738 */ + Parrot_set_p_ki_nc, /* 739 */ + Parrot_set_p_kic_nc, /* 740 */ + Parrot_set_p_ki_s, /* 741 */ + Parrot_set_p_kic_s, /* 742 */ + Parrot_set_p_ki_sc, /* 743 */ + Parrot_set_p_kic_sc, /* 744 */ + Parrot_set_p_ki_p, /* 745 */ + Parrot_set_p_kic_p, /* 746 */ + Parrot_set_i_p_ki, /* 747 */ + Parrot_set_i_p_kic, /* 748 */ + Parrot_set_n_p_ki, /* 749 */ + Parrot_set_n_p_kic, /* 750 */ + Parrot_set_s_p_ki, /* 751 */ + Parrot_set_s_p_kic, /* 752 */ + Parrot_set_p_p_ki, /* 753 */ + Parrot_set_p_p_kic, /* 754 */ + Parrot_set_p_k_i, /* 755 */ + Parrot_set_p_kc_i, /* 756 */ + Parrot_set_p_k_ic, /* 757 */ + Parrot_set_p_kc_ic, /* 758 */ + Parrot_set_p_k_n, /* 759 */ + Parrot_set_p_kc_n, /* 760 */ + Parrot_set_p_k_nc, /* 761 */ + Parrot_set_p_kc_nc, /* 762 */ + Parrot_set_p_k_s, /* 763 */ + Parrot_set_p_kc_s, /* 764 */ + Parrot_set_p_k_sc, /* 765 */ + Parrot_set_p_kc_sc, /* 766 */ + Parrot_set_p_k_p, /* 767 */ + Parrot_set_p_kc_p, /* 768 */ + Parrot_set_i_p_k, /* 769 */ + Parrot_set_i_p_kc, /* 770 */ + Parrot_set_n_p_k, /* 771 */ + Parrot_set_n_p_kc, /* 772 */ + Parrot_set_s_p_k, /* 773 */ + Parrot_set_s_p_kc, /* 774 */ + Parrot_set_p_p_k, /* 775 */ + Parrot_set_p_p_kc, /* 776 */ + Parrot_clone_p_p, /* 777 */ + Parrot_clone_p_p_p, /* 778 */ + Parrot_clone_p_p_pc, /* 779 */ + Parrot_copy_p_p, /* 780 */ + Parrot_null_s, /* 781 */ + Parrot_null_i, /* 782 */ + Parrot_null_p, /* 783 */ + Parrot_null_n, /* 784 */ + Parrot_ord_i_s, /* 785 */ + Parrot_ord_i_sc, /* 786 */ + Parrot_ord_i_s_i, /* 787 */ + Parrot_ord_i_sc_i, /* 788 */ + Parrot_ord_i_s_ic, /* 789 */ + Parrot_ord_i_sc_ic, /* 790 */ + Parrot_chr_s_i, /* 791 */ + Parrot_chr_s_ic, /* 792 */ + Parrot_chopn_s_s_i, /* 793 */ + Parrot_chopn_s_sc_i, /* 794 */ + Parrot_chopn_s_s_ic, /* 795 */ + Parrot_chopn_s_sc_ic, /* 796 */ + Parrot_concat_p_p, /* 797 */ + Parrot_concat_p_s, /* 798 */ + Parrot_concat_p_sc, /* 799 */ + Parrot_concat_s_s_s, /* 800 */ + Parrot_concat_s_sc_s, /* 801 */ + Parrot_concat_s_s_sc, /* 802 */ + Parrot_concat_p_p_s, /* 803 */ + Parrot_concat_p_p_sc, /* 804 */ + Parrot_concat_p_p_p, /* 805 */ + Parrot_repeat_s_s_i, /* 806 */ + Parrot_repeat_s_sc_i, /* 807 */ + Parrot_repeat_s_s_ic, /* 808 */ + Parrot_repeat_s_sc_ic, /* 809 */ + Parrot_repeat_p_p_i, /* 810 */ + Parrot_repeat_p_p_ic, /* 811 */ + Parrot_repeat_p_p_p, /* 812 */ + Parrot_repeat_p_i, /* 813 */ + Parrot_repeat_p_ic, /* 814 */ + Parrot_repeat_p_p, /* 815 */ + Parrot_length_i_s, /* 816 */ + Parrot_length_i_sc, /* 817 */ + Parrot_bytelength_i_s, /* 818 */ + Parrot_bytelength_i_sc, /* 819 */ + Parrot_pin_s, /* 820 */ + Parrot_unpin_s, /* 821 */ + Parrot_substr_s_s_i, /* 822 */ + Parrot_substr_s_sc_i, /* 823 */ + Parrot_substr_s_s_ic, /* 824 */ + Parrot_substr_s_sc_ic, /* 825 */ + Parrot_substr_s_s_i_i, /* 826 */ + Parrot_substr_s_sc_i_i, /* 827 */ + Parrot_substr_s_s_ic_i, /* 828 */ + Parrot_substr_s_sc_ic_i, /* 829 */ + Parrot_substr_s_s_i_ic, /* 830 */ + Parrot_substr_s_sc_i_ic, /* 831 */ + Parrot_substr_s_s_ic_ic, /* 832 */ + Parrot_substr_s_sc_ic_ic, /* 833 */ + Parrot_substr_s_p_i_i, /* 834 */ + Parrot_substr_s_p_ic_i, /* 835 */ + Parrot_substr_s_p_i_ic, /* 836 */ + Parrot_substr_s_p_ic_ic, /* 837 */ + Parrot_replace_s_s_i_i_s, /* 838 */ + Parrot_replace_s_sc_i_i_s, /* 839 */ + Parrot_replace_s_s_ic_i_s, /* 840 */ + Parrot_replace_s_sc_ic_i_s, /* 841 */ + Parrot_replace_s_s_i_ic_s, /* 842 */ + Parrot_replace_s_sc_i_ic_s, /* 843 */ + Parrot_replace_s_s_ic_ic_s, /* 844 */ + Parrot_replace_s_sc_ic_ic_s, /* 845 */ + Parrot_replace_s_s_i_i_sc, /* 846 */ + Parrot_replace_s_sc_i_i_sc, /* 847 */ + Parrot_replace_s_s_ic_i_sc, /* 848 */ + Parrot_replace_s_sc_ic_i_sc, /* 849 */ + Parrot_replace_s_s_i_ic_sc, /* 850 */ + Parrot_replace_s_sc_i_ic_sc, /* 851 */ + Parrot_replace_s_s_ic_ic_sc, /* 852 */ + Parrot_replace_s_sc_ic_ic_sc, /* 853 */ + Parrot_index_i_s_s, /* 854 */ + Parrot_index_i_sc_s, /* 855 */ + Parrot_index_i_s_sc, /* 856 */ + Parrot_index_i_sc_sc, /* 857 */ + Parrot_index_i_s_s_i, /* 858 */ + Parrot_index_i_sc_s_i, /* 859 */ + Parrot_index_i_s_sc_i, /* 860 */ + Parrot_index_i_sc_sc_i, /* 861 */ + Parrot_index_i_s_s_ic, /* 862 */ + Parrot_index_i_sc_s_ic, /* 863 */ + Parrot_index_i_s_sc_ic, /* 864 */ + Parrot_index_i_sc_sc_ic, /* 865 */ + Parrot_sprintf_s_s_p, /* 866 */ + Parrot_sprintf_s_sc_p, /* 867 */ + Parrot_sprintf_p_p_p, /* 868 */ + Parrot_new_s, /* 869 */ + Parrot_new_s_i, /* 870 */ + Parrot_new_s_ic, /* 871 */ + Parrot_stringinfo_i_s_i, /* 872 */ + Parrot_stringinfo_i_sc_i, /* 873 */ + Parrot_stringinfo_i_s_ic, /* 874 */ + Parrot_stringinfo_i_sc_ic, /* 875 */ + Parrot_upcase_s_s, /* 876 */ + Parrot_upcase_s_sc, /* 877 */ + Parrot_downcase_s_s, /* 878 */ + Parrot_downcase_s_sc, /* 879 */ + Parrot_titlecase_s_s, /* 880 */ + Parrot_titlecase_s_sc, /* 881 */ + Parrot_join_s_s_p, /* 882 */ + Parrot_join_s_sc_p, /* 883 */ + Parrot_split_p_s_s, /* 884 */ + Parrot_split_p_sc_s, /* 885 */ + Parrot_split_p_s_sc, /* 886 */ + Parrot_split_p_sc_sc, /* 887 */ + Parrot_encoding_i_s, /* 888 */ + Parrot_encoding_i_sc, /* 889 */ + Parrot_encodingname_s_i, /* 890 */ + Parrot_encodingname_s_ic, /* 891 */ + Parrot_find_encoding_i_s, /* 892 */ + Parrot_find_encoding_i_sc, /* 893 */ + Parrot_trans_encoding_s_s_i, /* 894 */ + Parrot_trans_encoding_s_sc_i, /* 895 */ + Parrot_trans_encoding_s_s_ic, /* 896 */ + Parrot_trans_encoding_s_sc_ic, /* 897 */ + Parrot_is_cclass_i_i_s_i, /* 898 */ + Parrot_is_cclass_i_ic_s_i, /* 899 */ + Parrot_is_cclass_i_i_sc_i, /* 900 */ + Parrot_is_cclass_i_ic_sc_i, /* 901 */ + Parrot_is_cclass_i_i_s_ic, /* 902 */ + Parrot_is_cclass_i_ic_s_ic, /* 903 */ + Parrot_is_cclass_i_i_sc_ic, /* 904 */ + Parrot_is_cclass_i_ic_sc_ic, /* 905 */ + Parrot_find_cclass_i_i_s_i_i, /* 906 */ + Parrot_find_cclass_i_ic_s_i_i, /* 907 */ + Parrot_find_cclass_i_i_sc_i_i, /* 908 */ + Parrot_find_cclass_i_ic_sc_i_i, /* 909 */ + Parrot_find_cclass_i_i_s_ic_i, /* 910 */ + Parrot_find_cclass_i_ic_s_ic_i, /* 911 */ + Parrot_find_cclass_i_i_sc_ic_i, /* 912 */ + Parrot_find_cclass_i_ic_sc_ic_i, /* 913 */ + Parrot_find_cclass_i_i_s_i_ic, /* 914 */ + Parrot_find_cclass_i_ic_s_i_ic, /* 915 */ + Parrot_find_cclass_i_i_sc_i_ic, /* 916 */ + Parrot_find_cclass_i_ic_sc_i_ic, /* 917 */ + Parrot_find_cclass_i_i_s_ic_ic, /* 918 */ + Parrot_find_cclass_i_ic_s_ic_ic, /* 919 */ + Parrot_find_cclass_i_i_sc_ic_ic, /* 920 */ + Parrot_find_cclass_i_ic_sc_ic_ic, /* 921 */ + Parrot_find_not_cclass_i_i_s_i_i, /* 922 */ + Parrot_find_not_cclass_i_ic_s_i_i, /* 923 */ + Parrot_find_not_cclass_i_i_sc_i_i, /* 924 */ + Parrot_find_not_cclass_i_ic_sc_i_i, /* 925 */ + Parrot_find_not_cclass_i_i_s_ic_i, /* 926 */ + Parrot_find_not_cclass_i_ic_s_ic_i, /* 927 */ + Parrot_find_not_cclass_i_i_sc_ic_i, /* 928 */ + Parrot_find_not_cclass_i_ic_sc_ic_i, /* 929 */ + Parrot_find_not_cclass_i_i_s_i_ic, /* 930 */ + Parrot_find_not_cclass_i_ic_s_i_ic, /* 931 */ + Parrot_find_not_cclass_i_i_sc_i_ic, /* 932 */ + Parrot_find_not_cclass_i_ic_sc_i_ic, /* 933 */ + Parrot_find_not_cclass_i_i_s_ic_ic, /* 934 */ + Parrot_find_not_cclass_i_ic_s_ic_ic, /* 935 */ + Parrot_find_not_cclass_i_i_sc_ic_ic, /* 936 */ + Parrot_find_not_cclass_i_ic_sc_ic_ic, /* 937 */ + Parrot_escape_s_s, /* 938 */ + Parrot_compose_s_s, /* 939 */ + Parrot_compose_s_sc, /* 940 */ + Parrot_find_codepoint_i_s, /* 941 */ + Parrot_find_codepoint_i_sc, /* 942 */ + Parrot_spawnw_i_s, /* 943 */ + Parrot_spawnw_i_sc, /* 944 */ + Parrot_spawnw_i_p, /* 945 */ + Parrot_err_i, /* 946 */ + Parrot_err_s, /* 947 */ + Parrot_err_s_i, /* 948 */ + Parrot_err_s_ic, /* 949 */ + Parrot_time_i, /* 950 */ + Parrot_time_n, /* 951 */ + Parrot_sleep_i, /* 952 */ + Parrot_sleep_ic, /* 953 */ + Parrot_sleep_n, /* 954 */ + Parrot_sleep_nc, /* 955 */ + Parrot_store_lex_s_p, /* 956 */ + Parrot_store_lex_sc_p, /* 957 */ + Parrot_store_lex_s_s, /* 958 */ + Parrot_store_lex_sc_s, /* 959 */ + Parrot_store_lex_s_sc, /* 960 */ + Parrot_store_lex_sc_sc, /* 961 */ + Parrot_store_lex_s_i, /* 962 */ + Parrot_store_lex_sc_i, /* 963 */ + Parrot_store_lex_s_ic, /* 964 */ + Parrot_store_lex_sc_ic, /* 965 */ + Parrot_store_lex_s_n, /* 966 */ + Parrot_store_lex_sc_n, /* 967 */ + Parrot_store_lex_s_nc, /* 968 */ + Parrot_store_lex_sc_nc, /* 969 */ + Parrot_store_dynamic_lex_s_p, /* 970 */ + Parrot_store_dynamic_lex_sc_p, /* 971 */ + Parrot_find_lex_p_s, /* 972 */ + Parrot_find_lex_p_sc, /* 973 */ + Parrot_find_lex_s_s, /* 974 */ + Parrot_find_lex_s_sc, /* 975 */ + Parrot_find_lex_i_s, /* 976 */ + Parrot_find_lex_i_sc, /* 977 */ + Parrot_find_lex_n_s, /* 978 */ + Parrot_find_lex_n_sc, /* 979 */ + Parrot_find_dynamic_lex_p_s, /* 980 */ + Parrot_find_dynamic_lex_p_sc, /* 981 */ + Parrot_find_caller_lex_p_s, /* 982 */ + Parrot_find_caller_lex_p_sc, /* 983 */ + Parrot_get_namespace_p, /* 984 */ + Parrot_get_namespace_p_p, /* 985 */ + Parrot_get_namespace_p_pc, /* 986 */ + Parrot_get_hll_namespace_p, /* 987 */ + Parrot_get_hll_namespace_p_p, /* 988 */ + Parrot_get_hll_namespace_p_pc, /* 989 */ + Parrot_get_root_namespace_p, /* 990 */ + Parrot_get_root_namespace_p_p, /* 991 */ + Parrot_get_root_namespace_p_pc, /* 992 */ + Parrot_get_global_p_s, /* 993 */ + Parrot_get_global_p_sc, /* 994 */ + Parrot_get_global_p_p_s, /* 995 */ + Parrot_get_global_p_pc_s, /* 996 */ + Parrot_get_global_p_p_sc, /* 997 */ + Parrot_get_global_p_pc_sc, /* 998 */ + Parrot_get_hll_global_p_s, /* 999 */ + Parrot_get_hll_global_p_sc, /* 1000 */ + Parrot_get_hll_global_p_p_s, /* 1001 */ + Parrot_get_hll_global_p_pc_s, /* 1002 */ + Parrot_get_hll_global_p_p_sc, /* 1003 */ + Parrot_get_hll_global_p_pc_sc, /* 1004 */ + Parrot_get_root_global_p_s, /* 1005 */ + Parrot_get_root_global_p_sc, /* 1006 */ + Parrot_get_root_global_p_p_s, /* 1007 */ + Parrot_get_root_global_p_pc_s, /* 1008 */ + Parrot_get_root_global_p_p_sc, /* 1009 */ + Parrot_get_root_global_p_pc_sc, /* 1010 */ + Parrot_set_global_s_p, /* 1011 */ + Parrot_set_global_sc_p, /* 1012 */ + Parrot_set_global_p_s_p, /* 1013 */ + Parrot_set_global_pc_s_p, /* 1014 */ + Parrot_set_global_p_sc_p, /* 1015 */ + Parrot_set_global_pc_sc_p, /* 1016 */ + Parrot_set_hll_global_s_p, /* 1017 */ + Parrot_set_hll_global_sc_p, /* 1018 */ + Parrot_set_hll_global_p_s_p, /* 1019 */ + Parrot_set_hll_global_pc_s_p, /* 1020 */ + Parrot_set_hll_global_p_sc_p, /* 1021 */ + Parrot_set_hll_global_pc_sc_p, /* 1022 */ + Parrot_set_root_global_s_p, /* 1023 */ + Parrot_set_root_global_sc_p, /* 1024 */ + Parrot_set_root_global_p_s_p, /* 1025 */ + Parrot_set_root_global_pc_s_p, /* 1026 */ + Parrot_set_root_global_p_sc_p, /* 1027 */ + Parrot_set_root_global_pc_sc_p, /* 1028 */ + Parrot_find_name_p_s, /* 1029 */ + Parrot_find_name_p_sc, /* 1030 */ + Parrot_find_sub_not_null_p_s, /* 1031 */ + Parrot_find_sub_not_null_p_sc, /* 1032 */ + Parrot_trap, /* 1033 */ + Parrot_set_label_p_ic, /* 1034 */ + Parrot_get_label_i_p, /* 1035 */ + Parrot_get_id_i_p, /* 1036 */ + Parrot_get_id_i_pc, /* 1037 */ + Parrot_fetch_p_p_p_p, /* 1038 */ + Parrot_fetch_p_pc_p_p, /* 1039 */ + Parrot_fetch_p_p_pc_p, /* 1040 */ + Parrot_fetch_p_pc_pc_p, /* 1041 */ + Parrot_fetch_p_p_p_pc, /* 1042 */ + Parrot_fetch_p_pc_p_pc, /* 1043 */ + Parrot_fetch_p_p_pc_pc, /* 1044 */ + Parrot_fetch_p_pc_pc_pc, /* 1045 */ + Parrot_fetch_p_p_i_p, /* 1046 */ + Parrot_fetch_p_pc_i_p, /* 1047 */ + Parrot_fetch_p_p_ic_p, /* 1048 */ + Parrot_fetch_p_pc_ic_p, /* 1049 */ + Parrot_fetch_p_p_i_pc, /* 1050 */ + Parrot_fetch_p_pc_i_pc, /* 1051 */ + Parrot_fetch_p_p_ic_pc, /* 1052 */ + Parrot_fetch_p_pc_ic_pc, /* 1053 */ + Parrot_fetch_p_p_s_p, /* 1054 */ + Parrot_fetch_p_pc_s_p, /* 1055 */ + Parrot_fetch_p_p_sc_p, /* 1056 */ + Parrot_fetch_p_pc_sc_p, /* 1057 */ + Parrot_fetch_p_p_s_pc, /* 1058 */ + Parrot_fetch_p_pc_s_pc, /* 1059 */ + Parrot_fetch_p_p_sc_pc, /* 1060 */ + Parrot_fetch_p_pc_sc_pc, /* 1061 */ + Parrot_vivify_p_p_p_p, /* 1062 */ + Parrot_vivify_p_pc_p_p, /* 1063 */ + Parrot_vivify_p_p_pc_p, /* 1064 */ + Parrot_vivify_p_pc_pc_p, /* 1065 */ + Parrot_vivify_p_p_p_pc, /* 1066 */ + Parrot_vivify_p_pc_p_pc, /* 1067 */ + Parrot_vivify_p_p_pc_pc, /* 1068 */ + Parrot_vivify_p_pc_pc_pc, /* 1069 */ + Parrot_vivify_p_p_i_p, /* 1070 */ + Parrot_vivify_p_pc_i_p, /* 1071 */ + Parrot_vivify_p_p_ic_p, /* 1072 */ + Parrot_vivify_p_pc_ic_p, /* 1073 */ + Parrot_vivify_p_p_i_pc, /* 1074 */ + Parrot_vivify_p_pc_i_pc, /* 1075 */ + Parrot_vivify_p_p_ic_pc, /* 1076 */ + Parrot_vivify_p_pc_ic_pc, /* 1077 */ + Parrot_vivify_p_p_s_p, /* 1078 */ + Parrot_vivify_p_pc_s_p, /* 1079 */ + Parrot_vivify_p_p_sc_p, /* 1080 */ + Parrot_vivify_p_pc_sc_p, /* 1081 */ + Parrot_vivify_p_p_s_pc, /* 1082 */ + Parrot_vivify_p_pc_s_pc, /* 1083 */ + Parrot_vivify_p_p_sc_pc, /* 1084 */ + Parrot_vivify_p_pc_sc_pc, /* 1085 */ + Parrot_new_p_s_i, /* 1086 */ + Parrot_new_p_sc_i, /* 1087 */ + Parrot_new_p_s_ic, /* 1088 */ + Parrot_new_p_sc_ic, /* 1089 */ + Parrot_new_p_p_i, /* 1090 */ + Parrot_new_p_pc_i, /* 1091 */ + Parrot_new_p_p_ic, /* 1092 */ + Parrot_new_p_pc_ic, /* 1093 */ + Parrot_root_new_p_p_i, /* 1094 */ + Parrot_root_new_p_pc_i, /* 1095 */ + Parrot_root_new_p_p_ic, /* 1096 */ + Parrot_root_new_p_pc_ic, /* 1097 */ + Parrot_receive_p, /* 1098 */ + Parrot_wait_p, /* 1099 */ + Parrot_wait_pc, /* 1100 */ + Parrot_pass, /* 1101 */ NULL /* NULL function pointer */ }; @@ -1195,7 +1197,7 @@ static op_func_t core_op_func_table[1101] = { ** Op Info Table: */ -static op_info_t core_op_info_table[1101] = { +static op_info_t core_op_info_table[1103] = { { /* 0 */ "end", "end", @@ -2198,6 +2200,28 @@ static op_info_t core_op_info_table[1101] = { &core_op_lib }, { /* 91 */ + "set_runcore", + "set_runcore_s", + "Parrot_set_runcore_s", + 0, + 2, + { PARROT_ARG_S }, + { PARROT_ARGDIR_IN }, + { 0 }, + &core_op_lib + }, + { /* 92 */ + "set_runcore", + "set_runcore_sc", + "Parrot_set_runcore_sc", + 0, + 2, + { PARROT_ARG_SC }, + { PARROT_ARGDIR_IN }, + { 0 }, + &core_op_lib + }, + { /* 93 */ "runinterp", "runinterp_p_i", "Parrot_runinterp_p_i", @@ -2208,7 +2232,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 92 */ + { /* 94 */ "runinterp", "runinterp_p_ic", "Parrot_runinterp_p_ic", @@ -2219,7 +2243,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 93 */ + { /* 95 */ "getinterp", "getinterp_p", "Parrot_getinterp_p", @@ -2230,7 +2254,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 94 */ + { /* 96 */ "sweep", "sweep_ic", "Parrot_sweep_ic", @@ -2241,7 +2265,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 95 */ + { /* 97 */ "collect", "collect", "Parrot_collect", @@ -2252,7 +2276,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 96 */ + { /* 98 */ "sweepoff", "sweepoff", "Parrot_sweepoff", @@ -2263,7 +2287,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 97 */ + { /* 99 */ "sweepon", "sweepon", "Parrot_sweepon", @@ -2274,7 +2298,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 98 */ + { /* 100 */ "collectoff", "collectoff", "Parrot_collectoff", @@ -2285,7 +2309,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 99 */ + { /* 101 */ "collecton", "collecton", "Parrot_collecton", @@ -2296,7 +2320,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 100 */ + { /* 102 */ "needs_destroy", "needs_destroy_p", "Parrot_needs_destroy_p", @@ -2307,7 +2331,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 101 */ + { /* 103 */ "loadlib", "loadlib_p_s", "Parrot_loadlib_p_s", @@ -2318,7 +2342,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 102 */ + { /* 104 */ "loadlib", "loadlib_p_sc", "Parrot_loadlib_p_sc", @@ -2329,7 +2353,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 103 */ + { /* 105 */ "loadlib", "loadlib_p_s_p", "Parrot_loadlib_p_s_p", @@ -2340,7 +2364,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 104 */ + { /* 106 */ "loadlib", "loadlib_p_sc_p", "Parrot_loadlib_p_sc_p", @@ -2351,7 +2375,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 105 */ + { /* 107 */ "loadlib", "loadlib_p_s_pc", "Parrot_loadlib_p_s_pc", @@ -2362,7 +2386,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 106 */ + { /* 108 */ "loadlib", "loadlib_p_sc_pc", "Parrot_loadlib_p_sc_pc", @@ -2373,7 +2397,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 107 */ + { /* 109 */ "dlfunc", "dlfunc_p_p_s_s", "Parrot_dlfunc_p_p_s_s", @@ -2384,7 +2408,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 108 */ + { /* 110 */ "dlfunc", "dlfunc_p_p_sc_s", "Parrot_dlfunc_p_p_sc_s", @@ -2395,7 +2419,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 109 */ + { /* 111 */ "dlfunc", "dlfunc_p_p_s_sc", "Parrot_dlfunc_p_p_s_sc", @@ -2406,7 +2430,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 110 */ + { /* 112 */ "dlfunc", "dlfunc_p_p_sc_sc", "Parrot_dlfunc_p_p_sc_sc", @@ -2417,7 +2441,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 111 */ + { /* 113 */ "dlfunc", "dlfunc_p_p_s_p", "Parrot_dlfunc_p_p_s_p", @@ -2428,7 +2452,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 112 */ + { /* 114 */ "dlfunc", "dlfunc_p_p_sc_p", "Parrot_dlfunc_p_p_sc_p", @@ -2439,7 +2463,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 113 */ + { /* 115 */ "dlvar", "dlvar_p_p_s", "Parrot_dlvar_p_p_s", @@ -2450,7 +2474,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 114 */ + { /* 116 */ "dlvar", "dlvar_p_p_sc", "Parrot_dlvar_p_p_sc", @@ -2461,7 +2485,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 115 */ + { /* 117 */ "compreg", "compreg_s_p", "Parrot_compreg_s_p", @@ -2472,7 +2496,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 116 */ + { /* 118 */ "compreg", "compreg_sc_p", "Parrot_compreg_sc_p", @@ -2483,7 +2507,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 117 */ + { /* 119 */ "compreg", "compreg_p_s", "Parrot_compreg_p_s", @@ -2494,7 +2518,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 118 */ + { /* 120 */ "compreg", "compreg_p_sc", "Parrot_compreg_p_sc", @@ -2505,7 +2529,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 119 */ + { /* 121 */ "new_callback", "new_callback_p_p_p_s", "Parrot_new_callback_p_p_p_s", @@ -2516,7 +2540,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 120 */ + { /* 122 */ "new_callback", "new_callback_p_p_p_sc", "Parrot_new_callback_p_p_p_sc", @@ -2527,7 +2551,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 121 */ + { /* 123 */ "annotations", "annotations_p", "Parrot_annotations_p", @@ -2538,7 +2562,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 122 */ + { /* 124 */ "annotations", "annotations_p_s", "Parrot_annotations_p_s", @@ -2549,7 +2573,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 123 */ + { /* 125 */ "annotations", "annotations_p_sc", "Parrot_annotations_p_sc", @@ -2560,7 +2584,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 124 */ + { /* 126 */ "band", "band_i_i", "Parrot_band_i_i", @@ -2571,7 +2595,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 125 */ + { /* 127 */ "band", "band_i_ic", "Parrot_band_i_ic", @@ -2582,7 +2606,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 126 */ + { /* 128 */ "band", "band_i_i_i", "Parrot_band_i_i_i", @@ -2593,7 +2617,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 127 */ + { /* 129 */ "band", "band_i_ic_i", "Parrot_band_i_ic_i", @@ -2604,7 +2628,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 128 */ + { /* 130 */ "band", "band_i_i_ic", "Parrot_band_i_i_ic", @@ -2615,7 +2639,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 129 */ + { /* 131 */ "bor", "bor_i_i", "Parrot_bor_i_i", @@ -2626,7 +2650,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 130 */ + { /* 132 */ "bor", "bor_i_ic", "Parrot_bor_i_ic", @@ -2637,7 +2661,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 131 */ + { /* 133 */ "bor", "bor_i_i_i", "Parrot_bor_i_i_i", @@ -2648,7 +2672,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 132 */ + { /* 134 */ "bor", "bor_i_ic_i", "Parrot_bor_i_ic_i", @@ -2659,7 +2683,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 133 */ + { /* 135 */ "bor", "bor_i_i_ic", "Parrot_bor_i_i_ic", @@ -2670,7 +2694,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 134 */ + { /* 136 */ "shl", "shl_i_i", "Parrot_shl_i_i", @@ -2681,7 +2705,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 135 */ + { /* 137 */ "shl", "shl_i_ic", "Parrot_shl_i_ic", @@ -2692,7 +2716,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 136 */ + { /* 138 */ "shl", "shl_i_i_i", "Parrot_shl_i_i_i", @@ -2703,7 +2727,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 137 */ + { /* 139 */ "shl", "shl_i_ic_i", "Parrot_shl_i_ic_i", @@ -2714,7 +2738,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 138 */ + { /* 140 */ "shl", "shl_i_i_ic", "Parrot_shl_i_i_ic", @@ -2725,7 +2749,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 139 */ + { /* 141 */ "shr", "shr_i_i", "Parrot_shr_i_i", @@ -2736,7 +2760,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 140 */ + { /* 142 */ "shr", "shr_i_ic", "Parrot_shr_i_ic", @@ -2747,7 +2771,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 141 */ + { /* 143 */ "shr", "shr_i_i_i", "Parrot_shr_i_i_i", @@ -2758,7 +2782,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 142 */ + { /* 144 */ "shr", "shr_i_ic_i", "Parrot_shr_i_ic_i", @@ -2769,7 +2793,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 143 */ + { /* 145 */ "shr", "shr_i_i_ic", "Parrot_shr_i_i_ic", @@ -2780,7 +2804,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 144 */ + { /* 146 */ "lsr", "lsr_i_i", "Parrot_lsr_i_i", @@ -2791,7 +2815,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 145 */ + { /* 147 */ "lsr", "lsr_i_ic", "Parrot_lsr_i_ic", @@ -2802,7 +2826,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 146 */ + { /* 148 */ "lsr", "lsr_i_i_i", "Parrot_lsr_i_i_i", @@ -2813,7 +2837,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 147 */ + { /* 149 */ "lsr", "lsr_i_ic_i", "Parrot_lsr_i_ic_i", @@ -2824,7 +2848,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 148 */ + { /* 150 */ "lsr", "lsr_i_i_ic", "Parrot_lsr_i_i_ic", @@ -2835,7 +2859,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 149 */ + { /* 151 */ "bxor", "bxor_i_i", "Parrot_bxor_i_i", @@ -2846,7 +2870,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 150 */ + { /* 152 */ "bxor", "bxor_i_ic", "Parrot_bxor_i_ic", @@ -2857,7 +2881,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 151 */ + { /* 153 */ "bxor", "bxor_i_i_i", "Parrot_bxor_i_i_i", @@ -2868,7 +2892,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 152 */ + { /* 154 */ "bxor", "bxor_i_ic_i", "Parrot_bxor_i_ic_i", @@ -2879,7 +2903,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 153 */ + { /* 155 */ "bxor", "bxor_i_i_ic", "Parrot_bxor_i_i_ic", @@ -2890,7 +2914,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 154 */ + { /* 156 */ "eq", "eq_i_i_ic", "Parrot_eq_i_i_ic", @@ -2901,7 +2925,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 155 */ + { /* 157 */ "eq", "eq_ic_i_ic", "Parrot_eq_ic_i_ic", @@ -2912,7 +2936,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 156 */ + { /* 158 */ "eq", "eq_i_ic_ic", "Parrot_eq_i_ic_ic", @@ -2923,7 +2947,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 157 */ + { /* 159 */ "eq", "eq_n_n_ic", "Parrot_eq_n_n_ic", @@ -2934,7 +2958,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 158 */ + { /* 160 */ "eq", "eq_nc_n_ic", "Parrot_eq_nc_n_ic", @@ -2945,7 +2969,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 159 */ + { /* 161 */ "eq", "eq_n_nc_ic", "Parrot_eq_n_nc_ic", @@ -2956,7 +2980,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 160 */ + { /* 162 */ "eq", "eq_s_s_ic", "Parrot_eq_s_s_ic", @@ -2967,7 +2991,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 161 */ + { /* 163 */ "eq", "eq_sc_s_ic", "Parrot_eq_sc_s_ic", @@ -2978,7 +3002,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 162 */ + { /* 164 */ "eq", "eq_s_sc_ic", "Parrot_eq_s_sc_ic", @@ -2989,7 +3013,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 163 */ + { /* 165 */ "eq", "eq_p_p_ic", "Parrot_eq_p_p_ic", @@ -3000,7 +3024,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 164 */ + { /* 166 */ "eq", "eq_p_i_ic", "Parrot_eq_p_i_ic", @@ -3011,7 +3035,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 165 */ + { /* 167 */ "eq", "eq_p_ic_ic", "Parrot_eq_p_ic_ic", @@ -3022,7 +3046,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 166 */ + { /* 168 */ "eq", "eq_p_n_ic", "Parrot_eq_p_n_ic", @@ -3033,7 +3057,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 167 */ + { /* 169 */ "eq", "eq_p_nc_ic", "Parrot_eq_p_nc_ic", @@ -3044,7 +3068,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 168 */ + { /* 170 */ "eq", "eq_p_s_ic", "Parrot_eq_p_s_ic", @@ -3055,7 +3079,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 169 */ + { /* 171 */ "eq", "eq_p_sc_ic", "Parrot_eq_p_sc_ic", @@ -3066,7 +3090,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 170 */ + { /* 172 */ "eq_str", "eq_str_p_p_ic", "Parrot_eq_str_p_p_ic", @@ -3077,7 +3101,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 171 */ + { /* 173 */ "eq_num", "eq_num_p_p_ic", "Parrot_eq_num_p_p_ic", @@ -3088,7 +3112,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 172 */ + { /* 174 */ "eq_addr", "eq_addr_s_s_ic", "Parrot_eq_addr_s_s_ic", @@ -3099,7 +3123,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 173 */ + { /* 175 */ "eq_addr", "eq_addr_sc_s_ic", "Parrot_eq_addr_sc_s_ic", @@ -3110,7 +3134,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 174 */ + { /* 176 */ "eq_addr", "eq_addr_s_sc_ic", "Parrot_eq_addr_s_sc_ic", @@ -3121,7 +3145,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 175 */ + { /* 177 */ "eq_addr", "eq_addr_sc_sc_ic", "Parrot_eq_addr_sc_sc_ic", @@ -3132,7 +3156,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 176 */ + { /* 178 */ "eq_addr", "eq_addr_p_p_ic", "Parrot_eq_addr_p_p_ic", @@ -3143,7 +3167,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 177 */ + { /* 179 */ "ne", "ne_i_i_ic", "Parrot_ne_i_i_ic", @@ -3154,7 +3178,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 178 */ + { /* 180 */ "ne", "ne_ic_i_ic", "Parrot_ne_ic_i_ic", @@ -3165,7 +3189,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 179 */ + { /* 181 */ "ne", "ne_i_ic_ic", "Parrot_ne_i_ic_ic", @@ -3176,7 +3200,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 180 */ + { /* 182 */ "ne", "ne_n_n_ic", "Parrot_ne_n_n_ic", @@ -3187,7 +3211,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 181 */ + { /* 183 */ "ne", "ne_nc_n_ic", "Parrot_ne_nc_n_ic", @@ -3198,7 +3222,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 182 */ + { /* 184 */ "ne", "ne_n_nc_ic", "Parrot_ne_n_nc_ic", @@ -3209,7 +3233,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 183 */ + { /* 185 */ "ne", "ne_s_s_ic", "Parrot_ne_s_s_ic", @@ -3220,7 +3244,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 184 */ + { /* 186 */ "ne", "ne_sc_s_ic", "Parrot_ne_sc_s_ic", @@ -3231,7 +3255,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 185 */ + { /* 187 */ "ne", "ne_s_sc_ic", "Parrot_ne_s_sc_ic", @@ -3242,7 +3266,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 186 */ + { /* 188 */ "ne", "ne_p_p_ic", "Parrot_ne_p_p_ic", @@ -3253,7 +3277,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 187 */ + { /* 189 */ "ne", "ne_p_i_ic", "Parrot_ne_p_i_ic", @@ -3264,7 +3288,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 188 */ + { /* 190 */ "ne", "ne_p_ic_ic", "Parrot_ne_p_ic_ic", @@ -3275,7 +3299,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 189 */ + { /* 191 */ "ne", "ne_p_n_ic", "Parrot_ne_p_n_ic", @@ -3286,7 +3310,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 190 */ + { /* 192 */ "ne", "ne_p_nc_ic", "Parrot_ne_p_nc_ic", @@ -3297,7 +3321,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 191 */ + { /* 193 */ "ne", "ne_p_s_ic", "Parrot_ne_p_s_ic", @@ -3308,7 +3332,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 192 */ + { /* 194 */ "ne", "ne_p_sc_ic", "Parrot_ne_p_sc_ic", @@ -3319,7 +3343,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 193 */ + { /* 195 */ "ne_str", "ne_str_p_p_ic", "Parrot_ne_str_p_p_ic", @@ -3330,7 +3354,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 194 */ + { /* 196 */ "ne_num", "ne_num_p_p_ic", "Parrot_ne_num_p_p_ic", @@ -3341,7 +3365,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 195 */ + { /* 197 */ "ne_addr", "ne_addr_s_s_ic", "Parrot_ne_addr_s_s_ic", @@ -3352,7 +3376,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 196 */ + { /* 198 */ "ne_addr", "ne_addr_sc_s_ic", "Parrot_ne_addr_sc_s_ic", @@ -3363,7 +3387,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 197 */ + { /* 199 */ "ne_addr", "ne_addr_s_sc_ic", "Parrot_ne_addr_s_sc_ic", @@ -3374,7 +3398,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 198 */ + { /* 200 */ "ne_addr", "ne_addr_sc_sc_ic", "Parrot_ne_addr_sc_sc_ic", @@ -3385,7 +3409,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 199 */ + { /* 201 */ "ne_addr", "ne_addr_p_p_ic", "Parrot_ne_addr_p_p_ic", @@ -3396,7 +3420,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 200 */ + { /* 202 */ "lt", "lt_i_i_ic", "Parrot_lt_i_i_ic", @@ -3407,7 +3431,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 201 */ + { /* 203 */ "lt", "lt_ic_i_ic", "Parrot_lt_ic_i_ic", @@ -3418,7 +3442,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 202 */ + { /* 204 */ "lt", "lt_i_ic_ic", "Parrot_lt_i_ic_ic", @@ -3429,7 +3453,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 203 */ + { /* 205 */ "lt", "lt_n_n_ic", "Parrot_lt_n_n_ic", @@ -3440,7 +3464,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 204 */ + { /* 206 */ "lt", "lt_nc_n_ic", "Parrot_lt_nc_n_ic", @@ -3451,7 +3475,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 205 */ + { /* 207 */ "lt", "lt_n_nc_ic", "Parrot_lt_n_nc_ic", @@ -3462,7 +3486,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 206 */ + { /* 208 */ "lt", "lt_s_s_ic", "Parrot_lt_s_s_ic", @@ -3473,7 +3497,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 207 */ + { /* 209 */ "lt", "lt_sc_s_ic", "Parrot_lt_sc_s_ic", @@ -3484,7 +3508,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 208 */ + { /* 210 */ "lt", "lt_s_sc_ic", "Parrot_lt_s_sc_ic", @@ -3495,7 +3519,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 209 */ + { /* 211 */ "lt", "lt_p_p_ic", "Parrot_lt_p_p_ic", @@ -3506,7 +3530,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 210 */ + { /* 212 */ "lt", "lt_p_i_ic", "Parrot_lt_p_i_ic", @@ -3517,7 +3541,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 211 */ + { /* 213 */ "lt", "lt_p_ic_ic", "Parrot_lt_p_ic_ic", @@ -3528,7 +3552,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 212 */ + { /* 214 */ "lt", "lt_p_n_ic", "Parrot_lt_p_n_ic", @@ -3539,7 +3563,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 213 */ + { /* 215 */ "lt", "lt_p_nc_ic", "Parrot_lt_p_nc_ic", @@ -3550,7 +3574,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 214 */ + { /* 216 */ "lt", "lt_p_s_ic", "Parrot_lt_p_s_ic", @@ -3561,7 +3585,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 215 */ + { /* 217 */ "lt", "lt_p_sc_ic", "Parrot_lt_p_sc_ic", @@ -3572,7 +3596,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 216 */ + { /* 218 */ "lt_str", "lt_str_p_p_ic", "Parrot_lt_str_p_p_ic", @@ -3583,7 +3607,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 217 */ + { /* 219 */ "lt_num", "lt_num_p_p_ic", "Parrot_lt_num_p_p_ic", @@ -3594,7 +3618,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 218 */ + { /* 220 */ "le", "le_i_i_ic", "Parrot_le_i_i_ic", @@ -3605,7 +3629,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 219 */ + { /* 221 */ "le", "le_ic_i_ic", "Parrot_le_ic_i_ic", @@ -3616,7 +3640,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 220 */ + { /* 222 */ "le", "le_i_ic_ic", "Parrot_le_i_ic_ic", @@ -3627,7 +3651,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 221 */ + { /* 223 */ "le", "le_n_n_ic", "Parrot_le_n_n_ic", @@ -3638,7 +3662,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 222 */ + { /* 224 */ "le", "le_nc_n_ic", "Parrot_le_nc_n_ic", @@ -3649,7 +3673,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 223 */ + { /* 225 */ "le", "le_n_nc_ic", "Parrot_le_n_nc_ic", @@ -3660,7 +3684,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 224 */ + { /* 226 */ "le", "le_s_s_ic", "Parrot_le_s_s_ic", @@ -3671,7 +3695,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 225 */ + { /* 227 */ "le", "le_sc_s_ic", "Parrot_le_sc_s_ic", @@ -3682,7 +3706,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 226 */ + { /* 228 */ "le", "le_s_sc_ic", "Parrot_le_s_sc_ic", @@ -3693,7 +3717,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 227 */ + { /* 229 */ "le", "le_p_p_ic", "Parrot_le_p_p_ic", @@ -3704,7 +3728,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 228 */ + { /* 230 */ "le", "le_p_i_ic", "Parrot_le_p_i_ic", @@ -3715,7 +3739,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 229 */ + { /* 231 */ "le", "le_p_ic_ic", "Parrot_le_p_ic_ic", @@ -3726,7 +3750,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 230 */ + { /* 232 */ "le", "le_p_n_ic", "Parrot_le_p_n_ic", @@ -3737,7 +3761,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 231 */ + { /* 233 */ "le", "le_p_nc_ic", "Parrot_le_p_nc_ic", @@ -3748,7 +3772,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 232 */ + { /* 234 */ "le", "le_p_s_ic", "Parrot_le_p_s_ic", @@ -3759,7 +3783,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 233 */ + { /* 235 */ "le", "le_p_sc_ic", "Parrot_le_p_sc_ic", @@ -3770,7 +3794,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 234 */ + { /* 236 */ "le_str", "le_str_p_p_ic", "Parrot_le_str_p_p_ic", @@ -3781,7 +3805,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 235 */ + { /* 237 */ "le_num", "le_num_p_p_ic", "Parrot_le_num_p_p_ic", @@ -3792,7 +3816,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 236 */ + { /* 238 */ "gt", "gt_p_p_ic", "Parrot_gt_p_p_ic", @@ -3803,7 +3827,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 237 */ + { /* 239 */ "gt", "gt_p_i_ic", "Parrot_gt_p_i_ic", @@ -3814,7 +3838,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 238 */ + { /* 240 */ "gt", "gt_p_ic_ic", "Parrot_gt_p_ic_ic", @@ -3825,7 +3849,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 239 */ + { /* 241 */ "gt", "gt_p_n_ic", "Parrot_gt_p_n_ic", @@ -3836,7 +3860,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 240 */ + { /* 242 */ "gt", "gt_p_nc_ic", "Parrot_gt_p_nc_ic", @@ -3847,7 +3871,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 241 */ + { /* 243 */ "gt", "gt_p_s_ic", "Parrot_gt_p_s_ic", @@ -3858,7 +3882,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 242 */ + { /* 244 */ "gt", "gt_p_sc_ic", "Parrot_gt_p_sc_ic", @@ -3869,7 +3893,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 243 */ + { /* 245 */ "gt_str", "gt_str_p_p_ic", "Parrot_gt_str_p_p_ic", @@ -3880,7 +3904,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 244 */ + { /* 246 */ "gt_num", "gt_num_p_p_ic", "Parrot_gt_num_p_p_ic", @@ -3891,7 +3915,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 245 */ + { /* 247 */ "ge", "ge_p_p_ic", "Parrot_ge_p_p_ic", @@ -3902,7 +3926,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 246 */ + { /* 248 */ "ge", "ge_p_i_ic", "Parrot_ge_p_i_ic", @@ -3913,7 +3937,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 247 */ + { /* 249 */ "ge", "ge_p_ic_ic", "Parrot_ge_p_ic_ic", @@ -3924,7 +3948,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 248 */ + { /* 250 */ "ge", "ge_p_n_ic", "Parrot_ge_p_n_ic", @@ -3935,7 +3959,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 249 */ + { /* 251 */ "ge", "ge_p_nc_ic", "Parrot_ge_p_nc_ic", @@ -3946,7 +3970,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 250 */ + { /* 252 */ "ge", "ge_p_s_ic", "Parrot_ge_p_s_ic", @@ -3957,7 +3981,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 251 */ + { /* 253 */ "ge", "ge_p_sc_ic", "Parrot_ge_p_sc_ic", @@ -3968,7 +3992,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 252 */ + { /* 254 */ "ge_str", "ge_str_p_p_ic", "Parrot_ge_str_p_p_ic", @@ -3979,7 +4003,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 253 */ + { /* 255 */ "ge_num", "ge_num_p_p_ic", "Parrot_ge_num_p_p_ic", @@ -3990,7 +4014,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 1 }, &core_op_lib }, - { /* 254 */ + { /* 256 */ "if_null", "if_null_p_ic", "Parrot_if_null_p_ic", @@ -4001,7 +4025,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 255 */ + { /* 257 */ "if_null", "if_null_s_ic", "Parrot_if_null_s_ic", @@ -4012,7 +4036,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 256 */ + { /* 258 */ "unless_null", "unless_null_p_ic", "Parrot_unless_null_p_ic", @@ -4023,7 +4047,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 257 */ + { /* 259 */ "unless_null", "unless_null_s_ic", "Parrot_unless_null_s_ic", @@ -4034,7 +4058,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 258 */ + { /* 260 */ "cmp", "cmp_i_i_i", "Parrot_cmp_i_i_i", @@ -4045,7 +4069,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 259 */ + { /* 261 */ "cmp", "cmp_i_ic_i", "Parrot_cmp_i_ic_i", @@ -4056,7 +4080,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 260 */ + { /* 262 */ "cmp", "cmp_i_i_ic", "Parrot_cmp_i_i_ic", @@ -4067,7 +4091,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 261 */ + { /* 263 */ "cmp", "cmp_i_n_n", "Parrot_cmp_i_n_n", @@ -4078,7 +4102,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 262 */ + { /* 264 */ "cmp", "cmp_i_nc_n", "Parrot_cmp_i_nc_n", @@ -4089,7 +4113,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 263 */ + { /* 265 */ "cmp", "cmp_i_n_nc", "Parrot_cmp_i_n_nc", @@ -4100,7 +4124,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 264 */ + { /* 266 */ "cmp", "cmp_i_s_s", "Parrot_cmp_i_s_s", @@ -4111,7 +4135,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 265 */ + { /* 267 */ "cmp", "cmp_i_sc_s", "Parrot_cmp_i_sc_s", @@ -4122,7 +4146,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 266 */ + { /* 268 */ "cmp", "cmp_i_s_sc", "Parrot_cmp_i_s_sc", @@ -4133,7 +4157,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 267 */ + { /* 269 */ "cmp", "cmp_i_p_p", "Parrot_cmp_i_p_p", @@ -4144,7 +4168,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 268 */ + { /* 270 */ "cmp", "cmp_i_p_i", "Parrot_cmp_i_p_i", @@ -4155,7 +4179,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 269 */ + { /* 271 */ "cmp", "cmp_i_p_ic", "Parrot_cmp_i_p_ic", @@ -4166,7 +4190,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 270 */ + { /* 272 */ "cmp", "cmp_i_p_n", "Parrot_cmp_i_p_n", @@ -4177,7 +4201,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 271 */ + { /* 273 */ "cmp", "cmp_i_p_nc", "Parrot_cmp_i_p_nc", @@ -4188,7 +4212,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 272 */ + { /* 274 */ "cmp", "cmp_i_p_s", "Parrot_cmp_i_p_s", @@ -4199,7 +4223,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 273 */ + { /* 275 */ "cmp", "cmp_i_p_sc", "Parrot_cmp_i_p_sc", @@ -4210,7 +4234,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 274 */ + { /* 276 */ "cmp_str", "cmp_str_i_p_p", "Parrot_cmp_str_i_p_p", @@ -4221,7 +4245,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 275 */ + { /* 277 */ "cmp_num", "cmp_num_i_p_p", "Parrot_cmp_num_i_p_p", @@ -4232,7 +4256,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 276 */ + { /* 278 */ "cmp_pmc", "cmp_pmc_p_p_p", "Parrot_cmp_pmc_p_p_p", @@ -4243,7 +4267,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 277 */ + { /* 279 */ "issame", "issame_i_p_p", "Parrot_issame_i_p_p", @@ -4254,7 +4278,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 278 */ + { /* 280 */ "issame", "issame_i_s_s", "Parrot_issame_i_s_s", @@ -4265,7 +4289,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 279 */ + { /* 281 */ "issame", "issame_i_sc_s", "Parrot_issame_i_sc_s", @@ -4276,7 +4300,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 280 */ + { /* 282 */ "issame", "issame_i_s_sc", "Parrot_issame_i_s_sc", @@ -4287,7 +4311,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 281 */ + { /* 283 */ "issame", "issame_i_sc_sc", "Parrot_issame_i_sc_sc", @@ -4298,7 +4322,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 282 */ + { /* 284 */ "isntsame", "isntsame_i_p_p", "Parrot_isntsame_i_p_p", @@ -4309,7 +4333,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 283 */ + { /* 285 */ "isntsame", "isntsame_i_s_s", "Parrot_isntsame_i_s_s", @@ -4320,7 +4344,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 284 */ + { /* 286 */ "isntsame", "isntsame_i_sc_s", "Parrot_isntsame_i_sc_s", @@ -4331,7 +4355,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 285 */ + { /* 287 */ "isntsame", "isntsame_i_s_sc", "Parrot_isntsame_i_s_sc", @@ -4342,7 +4366,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 286 */ + { /* 288 */ "isntsame", "isntsame_i_sc_sc", "Parrot_isntsame_i_sc_sc", @@ -4353,7 +4377,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 287 */ + { /* 289 */ "istrue", "istrue_i_p", "Parrot_istrue_i_p", @@ -4364,7 +4388,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 288 */ + { /* 290 */ "isfalse", "isfalse_i_p", "Parrot_isfalse_i_p", @@ -4375,7 +4399,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 289 */ + { /* 291 */ "isnull", "isnull_i_p", "Parrot_isnull_i_p", @@ -4386,7 +4410,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 290 */ + { /* 292 */ "isnull", "isnull_i_pc", "Parrot_isnull_i_pc", @@ -4397,7 +4421,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 291 */ + { /* 293 */ "isnull", "isnull_i_s", "Parrot_isnull_i_s", @@ -4408,7 +4432,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 292 */ + { /* 294 */ "isnull", "isnull_i_sc", "Parrot_isnull_i_sc", @@ -4419,7 +4443,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 293 */ + { /* 295 */ "isgt", "isgt_i_p_p", "Parrot_isgt_i_p_p", @@ -4430,7 +4454,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 294 */ + { /* 296 */ "isge", "isge_i_p_p", "Parrot_isge_i_p_p", @@ -4441,7 +4465,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 295 */ + { /* 297 */ "isle", "isle_i_i_i", "Parrot_isle_i_i_i", @@ -4452,7 +4476,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 296 */ + { /* 298 */ "isle", "isle_i_ic_i", "Parrot_isle_i_ic_i", @@ -4463,7 +4487,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 297 */ + { /* 299 */ "isle", "isle_i_i_ic", "Parrot_isle_i_i_ic", @@ -4474,7 +4498,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 298 */ + { /* 300 */ "isle", "isle_i_n_n", "Parrot_isle_i_n_n", @@ -4485,7 +4509,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 299 */ + { /* 301 */ "isle", "isle_i_nc_n", "Parrot_isle_i_nc_n", @@ -4496,7 +4520,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 300 */ + { /* 302 */ "isle", "isle_i_n_nc", "Parrot_isle_i_n_nc", @@ -4507,7 +4531,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 301 */ + { /* 303 */ "isle", "isle_i_s_s", "Parrot_isle_i_s_s", @@ -4518,7 +4542,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 302 */ + { /* 304 */ "isle", "isle_i_sc_s", "Parrot_isle_i_sc_s", @@ -4529,7 +4553,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 303 */ + { /* 305 */ "isle", "isle_i_s_sc", "Parrot_isle_i_s_sc", @@ -4540,7 +4564,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 304 */ + { /* 306 */ "isle", "isle_i_p_p", "Parrot_isle_i_p_p", @@ -4551,7 +4575,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 305 */ + { /* 307 */ "islt", "islt_i_i_i", "Parrot_islt_i_i_i", @@ -4562,7 +4586,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 306 */ + { /* 308 */ "islt", "islt_i_ic_i", "Parrot_islt_i_ic_i", @@ -4573,7 +4597,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 307 */ + { /* 309 */ "islt", "islt_i_i_ic", "Parrot_islt_i_i_ic", @@ -4584,7 +4608,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 308 */ + { /* 310 */ "islt", "islt_i_n_n", "Parrot_islt_i_n_n", @@ -4595,7 +4619,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 309 */ + { /* 311 */ "islt", "islt_i_nc_n", "Parrot_islt_i_nc_n", @@ -4606,7 +4630,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 310 */ + { /* 312 */ "islt", "islt_i_n_nc", "Parrot_islt_i_n_nc", @@ -4617,7 +4641,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 311 */ + { /* 313 */ "islt", "islt_i_s_s", "Parrot_islt_i_s_s", @@ -4628,7 +4652,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 312 */ + { /* 314 */ "islt", "islt_i_sc_s", "Parrot_islt_i_sc_s", @@ -4639,7 +4663,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 313 */ + { /* 315 */ "islt", "islt_i_s_sc", "Parrot_islt_i_s_sc", @@ -4650,7 +4674,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 314 */ + { /* 316 */ "islt", "islt_i_p_p", "Parrot_islt_i_p_p", @@ -4661,7 +4685,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 315 */ + { /* 317 */ "iseq", "iseq_i_i_i", "Parrot_iseq_i_i_i", @@ -4672,7 +4696,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 316 */ + { /* 318 */ "iseq", "iseq_i_ic_i", "Parrot_iseq_i_ic_i", @@ -4683,7 +4707,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 317 */ + { /* 319 */ "iseq", "iseq_i_i_ic", "Parrot_iseq_i_i_ic", @@ -4694,7 +4718,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 318 */ + { /* 320 */ "iseq", "iseq_i_n_n", "Parrot_iseq_i_n_n", @@ -4705,7 +4729,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 319 */ + { /* 321 */ "iseq", "iseq_i_nc_n", "Parrot_iseq_i_nc_n", @@ -4716,7 +4740,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 320 */ + { /* 322 */ "iseq", "iseq_i_n_nc", "Parrot_iseq_i_n_nc", @@ -4727,7 +4751,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 321 */ + { /* 323 */ "iseq", "iseq_i_s_s", "Parrot_iseq_i_s_s", @@ -4738,7 +4762,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 322 */ + { /* 324 */ "iseq", "iseq_i_sc_s", "Parrot_iseq_i_sc_s", @@ -4749,7 +4773,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 323 */ + { /* 325 */ "iseq", "iseq_i_s_sc", "Parrot_iseq_i_s_sc", @@ -4760,7 +4784,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 324 */ + { /* 326 */ "iseq", "iseq_i_p_p", "Parrot_iseq_i_p_p", @@ -4771,7 +4795,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 325 */ + { /* 327 */ "isne", "isne_i_i_i", "Parrot_isne_i_i_i", @@ -4782,7 +4806,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 326 */ + { /* 328 */ "isne", "isne_i_ic_i", "Parrot_isne_i_ic_i", @@ -4793,7 +4817,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 327 */ + { /* 329 */ "isne", "isne_i_i_ic", "Parrot_isne_i_i_ic", @@ -4804,7 +4828,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 328 */ + { /* 330 */ "isne", "isne_i_n_n", "Parrot_isne_i_n_n", @@ -4815,7 +4839,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 329 */ + { /* 331 */ "isne", "isne_i_nc_n", "Parrot_isne_i_nc_n", @@ -4826,7 +4850,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 330 */ + { /* 332 */ "isne", "isne_i_n_nc", "Parrot_isne_i_n_nc", @@ -4837,7 +4861,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 331 */ + { /* 333 */ "isne", "isne_i_s_s", "Parrot_isne_i_s_s", @@ -4848,7 +4872,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 332 */ + { /* 334 */ "isne", "isne_i_sc_s", "Parrot_isne_i_sc_s", @@ -4859,7 +4883,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 333 */ + { /* 335 */ "isne", "isne_i_s_sc", "Parrot_isne_i_s_sc", @@ -4870,7 +4894,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 334 */ + { /* 336 */ "isne", "isne_i_p_p", "Parrot_isne_i_p_p", @@ -4881,7 +4905,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 335 */ + { /* 337 */ "and", "and_i_i_i", "Parrot_and_i_i_i", @@ -4892,7 +4916,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 336 */ + { /* 338 */ "and", "and_i_ic_i", "Parrot_and_i_ic_i", @@ -4903,7 +4927,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 337 */ + { /* 339 */ "and", "and_i_i_ic", "Parrot_and_i_i_ic", @@ -4914,7 +4938,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 338 */ + { /* 340 */ "and", "and_p_p_p", "Parrot_and_p_p_p", @@ -4925,7 +4949,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 339 */ + { /* 341 */ "not", "not_i", "Parrot_not_i", @@ -4936,7 +4960,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 340 */ + { /* 342 */ "not", "not_i_i", "Parrot_not_i_i", @@ -4947,7 +4971,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 341 */ + { /* 343 */ "not", "not_p", "Parrot_not_p", @@ -4958,7 +4982,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 342 */ + { /* 344 */ "not", "not_p_p", "Parrot_not_p_p", @@ -4969,7 +4993,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 343 */ + { /* 345 */ "or", "or_i_i_i", "Parrot_or_i_i_i", @@ -4980,7 +5004,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 344 */ + { /* 346 */ "or", "or_i_ic_i", "Parrot_or_i_ic_i", @@ -4991,7 +5015,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 345 */ + { /* 347 */ "or", "or_i_i_ic", "Parrot_or_i_i_ic", @@ -5002,7 +5026,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 346 */ + { /* 348 */ "or", "or_p_p_p", "Parrot_or_p_p_p", @@ -5013,7 +5037,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 347 */ + { /* 349 */ "xor", "xor_i_i_i", "Parrot_xor_i_i_i", @@ -5024,7 +5048,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 348 */ + { /* 350 */ "xor", "xor_i_ic_i", "Parrot_xor_i_ic_i", @@ -5035,7 +5059,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 349 */ + { /* 351 */ "xor", "xor_i_i_ic", "Parrot_xor_i_i_ic", @@ -5046,7 +5070,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 350 */ + { /* 352 */ "xor", "xor_p_p_p", "Parrot_xor_p_p_p", @@ -5057,7 +5081,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 351 */ + { /* 353 */ "print", "print_i", "Parrot_print_i", @@ -5068,7 +5092,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 352 */ + { /* 354 */ "print", "print_ic", "Parrot_print_ic", @@ -5079,7 +5103,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 353 */ + { /* 355 */ "print", "print_n", "Parrot_print_n", @@ -5090,7 +5114,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 354 */ + { /* 356 */ "print", "print_nc", "Parrot_print_nc", @@ -5101,7 +5125,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 355 */ + { /* 357 */ "print", "print_s", "Parrot_print_s", @@ -5112,7 +5136,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 356 */ + { /* 358 */ "print", "print_sc", "Parrot_print_sc", @@ -5123,7 +5147,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 357 */ + { /* 359 */ "print", "print_p", "Parrot_print_p", @@ -5134,7 +5158,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 358 */ + { /* 360 */ "say", "say_i", "Parrot_say_i", @@ -5145,7 +5169,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 359 */ + { /* 361 */ "say", "say_ic", "Parrot_say_ic", @@ -5156,7 +5180,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 360 */ + { /* 362 */ "say", "say_n", "Parrot_say_n", @@ -5167,7 +5191,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 361 */ + { /* 363 */ "say", "say_nc", "Parrot_say_nc", @@ -5178,7 +5202,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 362 */ + { /* 364 */ "say", "say_s", "Parrot_say_s", @@ -5189,7 +5213,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 363 */ + { /* 365 */ "say", "say_sc", "Parrot_say_sc", @@ -5200,7 +5224,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 364 */ + { /* 366 */ "say", "say_p", "Parrot_say_p", @@ -5211,7 +5235,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 365 */ + { /* 367 */ "print", "print_p_i", "Parrot_print_p_i", @@ -5222,7 +5246,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 366 */ + { /* 368 */ "print", "print_p_ic", "Parrot_print_p_ic", @@ -5233,7 +5257,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 367 */ + { /* 369 */ "print", "print_p_n", "Parrot_print_p_n", @@ -5244,7 +5268,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 368 */ + { /* 370 */ "print", "print_p_nc", "Parrot_print_p_nc", @@ -5255,7 +5279,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 369 */ + { /* 371 */ "print", "print_p_s", "Parrot_print_p_s", @@ -5266,7 +5290,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 370 */ + { /* 372 */ "print", "print_p_sc", "Parrot_print_p_sc", @@ -5277,7 +5301,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 371 */ + { /* 373 */ "print", "print_p_p", "Parrot_print_p_p", @@ -5288,7 +5312,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 372 */ + { /* 374 */ "getstdin", "getstdin_p", "Parrot_getstdin_p", @@ -5299,7 +5323,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 373 */ + { /* 375 */ "getstdout", "getstdout_p", "Parrot_getstdout_p", @@ -5310,7 +5334,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 374 */ + { /* 376 */ "getstderr", "getstderr_p", "Parrot_getstderr_p", @@ -5321,7 +5345,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 375 */ + { /* 377 */ "abs", "abs_i", "Parrot_abs_i", @@ -5332,7 +5356,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 376 */ + { /* 378 */ "abs", "abs_n", "Parrot_abs_n", @@ -5343,7 +5367,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 377 */ + { /* 379 */ "abs", "abs_i_i", "Parrot_abs_i_i", @@ -5354,7 +5378,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 378 */ + { /* 380 */ "abs", "abs_n_n", "Parrot_abs_n_n", @@ -5365,7 +5389,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 379 */ + { /* 381 */ "abs", "abs_p", "Parrot_abs_p", @@ -5376,7 +5400,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 380 */ + { /* 382 */ "abs", "abs_p_p", "Parrot_abs_p_p", @@ -5387,7 +5411,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 381 */ + { /* 383 */ "add", "add_i_i", "Parrot_add_i_i", @@ -5398,7 +5422,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 382 */ + { /* 384 */ "add", "add_i_ic", "Parrot_add_i_ic", @@ -5409,7 +5433,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 383 */ + { /* 385 */ "add", "add_n_n", "Parrot_add_n_n", @@ -5420,7 +5444,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 384 */ + { /* 386 */ "add", "add_n_nc", "Parrot_add_n_nc", @@ -5431,7 +5455,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 385 */ + { /* 387 */ "add", "add_p_p", "Parrot_add_p_p", @@ -5442,7 +5466,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 386 */ + { /* 388 */ "add", "add_p_i", "Parrot_add_p_i", @@ -5453,7 +5477,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 387 */ + { /* 389 */ "add", "add_p_ic", "Parrot_add_p_ic", @@ -5464,7 +5488,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 388 */ + { /* 390 */ "add", "add_p_n", "Parrot_add_p_n", @@ -5475,7 +5499,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 389 */ + { /* 391 */ "add", "add_p_nc", "Parrot_add_p_nc", @@ -5486,7 +5510,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 390 */ + { /* 392 */ "add", "add_i_i_i", "Parrot_add_i_i_i", @@ -5497,7 +5521,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 391 */ + { /* 393 */ "add", "add_i_ic_i", "Parrot_add_i_ic_i", @@ -5508,7 +5532,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 392 */ + { /* 394 */ "add", "add_i_i_ic", "Parrot_add_i_i_ic", @@ -5519,7 +5543,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 393 */ + { /* 395 */ "add", "add_n_n_n", "Parrot_add_n_n_n", @@ -5530,7 +5554,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 394 */ + { /* 396 */ "add", "add_n_nc_n", "Parrot_add_n_nc_n", @@ -5541,7 +5565,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 395 */ + { /* 397 */ "add", "add_n_n_nc", "Parrot_add_n_n_nc", @@ -5552,7 +5576,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 396 */ + { /* 398 */ "add", "add_p_p_p", "Parrot_add_p_p_p", @@ -5563,7 +5587,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 397 */ + { /* 399 */ "add", "add_p_p_i", "Parrot_add_p_p_i", @@ -5574,7 +5598,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 398 */ + { /* 400 */ "add", "add_p_p_ic", "Parrot_add_p_p_ic", @@ -5585,7 +5609,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 399 */ + { /* 401 */ "add", "add_p_p_n", "Parrot_add_p_p_n", @@ -5596,7 +5620,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 400 */ + { /* 402 */ "add", "add_p_p_nc", "Parrot_add_p_p_nc", @@ -5607,7 +5631,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 401 */ + { /* 403 */ "dec", "dec_i", "Parrot_dec_i", @@ -5618,7 +5642,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 402 */ + { /* 404 */ "dec", "dec_n", "Parrot_dec_n", @@ -5629,7 +5653,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 403 */ + { /* 405 */ "dec", "dec_p", "Parrot_dec_p", @@ -5640,7 +5664,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 404 */ + { /* 406 */ "div", "div_i_i", "Parrot_div_i_i", @@ -5651,7 +5675,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 405 */ + { /* 407 */ "div", "div_i_ic", "Parrot_div_i_ic", @@ -5662,7 +5686,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 406 */ + { /* 408 */ "div", "div_n_n", "Parrot_div_n_n", @@ -5673,7 +5697,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 407 */ + { /* 409 */ "div", "div_n_nc", "Parrot_div_n_nc", @@ -5684,7 +5708,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 408 */ + { /* 410 */ "div", "div_p_p", "Parrot_div_p_p", @@ -5695,7 +5719,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 409 */ + { /* 411 */ "div", "div_p_i", "Parrot_div_p_i", @@ -5706,7 +5730,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 410 */ + { /* 412 */ "div", "div_p_ic", "Parrot_div_p_ic", @@ -5717,7 +5741,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 411 */ + { /* 413 */ "div", "div_p_n", "Parrot_div_p_n", @@ -5728,7 +5752,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 412 */ + { /* 414 */ "div", "div_p_nc", "Parrot_div_p_nc", @@ -5739,7 +5763,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 413 */ + { /* 415 */ "div", "div_i_i_i", "Parrot_div_i_i_i", @@ -5750,7 +5774,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 414 */ + { /* 416 */ "div", "div_i_ic_i", "Parrot_div_i_ic_i", @@ -5761,7 +5785,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 415 */ + { /* 417 */ "div", "div_i_i_ic", "Parrot_div_i_i_ic", @@ -5772,7 +5796,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 416 */ + { /* 418 */ "div", "div_i_ic_ic", "Parrot_div_i_ic_ic", @@ -5783,7 +5807,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 417 */ + { /* 419 */ "div", "div_n_n_n", "Parrot_div_n_n_n", @@ -5794,7 +5818,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 418 */ + { /* 420 */ "div", "div_n_nc_n", "Parrot_div_n_nc_n", @@ -5805,7 +5829,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 419 */ + { /* 421 */ "div", "div_n_n_nc", "Parrot_div_n_n_nc", @@ -5816,7 +5840,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 420 */ + { /* 422 */ "div", "div_n_nc_nc", "Parrot_div_n_nc_nc", @@ -5827,7 +5851,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 421 */ + { /* 423 */ "div", "div_p_p_p", "Parrot_div_p_p_p", @@ -5838,7 +5862,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 422 */ + { /* 424 */ "div", "div_p_p_i", "Parrot_div_p_p_i", @@ -5849,7 +5873,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 423 */ + { /* 425 */ "div", "div_p_p_ic", "Parrot_div_p_p_ic", @@ -5860,7 +5884,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 424 */ + { /* 426 */ "div", "div_p_p_n", "Parrot_div_p_p_n", @@ -5871,7 +5895,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 425 */ + { /* 427 */ "div", "div_p_p_nc", "Parrot_div_p_p_nc", @@ -5882,7 +5906,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 426 */ + { /* 428 */ "fdiv", "fdiv_i_i", "Parrot_fdiv_i_i", @@ -5893,7 +5917,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 427 */ + { /* 429 */ "fdiv", "fdiv_i_ic", "Parrot_fdiv_i_ic", @@ -5904,7 +5928,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 428 */ + { /* 430 */ "fdiv", "fdiv_n_n", "Parrot_fdiv_n_n", @@ -5915,7 +5939,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 429 */ + { /* 431 */ "fdiv", "fdiv_n_nc", "Parrot_fdiv_n_nc", @@ -5926,7 +5950,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 430 */ + { /* 432 */ "fdiv", "fdiv_p_p", "Parrot_fdiv_p_p", @@ -5937,7 +5961,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 431 */ + { /* 433 */ "fdiv", "fdiv_p_i", "Parrot_fdiv_p_i", @@ -5948,7 +5972,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 432 */ + { /* 434 */ "fdiv", "fdiv_p_ic", "Parrot_fdiv_p_ic", @@ -5959,7 +5983,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 433 */ + { /* 435 */ "fdiv", "fdiv_p_n", "Parrot_fdiv_p_n", @@ -5970,7 +5994,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 434 */ + { /* 436 */ "fdiv", "fdiv_p_nc", "Parrot_fdiv_p_nc", @@ -5981,7 +6005,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 435 */ + { /* 437 */ "fdiv", "fdiv_i_i_i", "Parrot_fdiv_i_i_i", @@ -5992,7 +6016,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 436 */ + { /* 438 */ "fdiv", "fdiv_i_ic_i", "Parrot_fdiv_i_ic_i", @@ -6003,7 +6027,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 437 */ + { /* 439 */ "fdiv", "fdiv_i_i_ic", "Parrot_fdiv_i_i_ic", @@ -6014,7 +6038,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 438 */ + { /* 440 */ "fdiv", "fdiv_n_n_n", "Parrot_fdiv_n_n_n", @@ -6025,7 +6049,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 439 */ + { /* 441 */ "fdiv", "fdiv_n_nc_n", "Parrot_fdiv_n_nc_n", @@ -6036,7 +6060,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 440 */ + { /* 442 */ "fdiv", "fdiv_n_n_nc", "Parrot_fdiv_n_n_nc", @@ -6047,7 +6071,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 441 */ + { /* 443 */ "fdiv", "fdiv_p_p_p", "Parrot_fdiv_p_p_p", @@ -6058,7 +6082,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 442 */ + { /* 444 */ "fdiv", "fdiv_p_p_i", "Parrot_fdiv_p_p_i", @@ -6069,7 +6093,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 443 */ + { /* 445 */ "fdiv", "fdiv_p_p_ic", "Parrot_fdiv_p_p_ic", @@ -6080,7 +6104,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 444 */ + { /* 446 */ "fdiv", "fdiv_p_p_n", "Parrot_fdiv_p_p_n", @@ -6091,7 +6115,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 445 */ + { /* 447 */ "fdiv", "fdiv_p_p_nc", "Parrot_fdiv_p_p_nc", @@ -6102,7 +6126,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 446 */ + { /* 448 */ "ceil", "ceil_n", "Parrot_ceil_n", @@ -6113,7 +6137,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 447 */ + { /* 449 */ "ceil", "ceil_i_n", "Parrot_ceil_i_n", @@ -6124,7 +6148,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 448 */ + { /* 450 */ "ceil", "ceil_n_n", "Parrot_ceil_n_n", @@ -6135,7 +6159,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 449 */ + { /* 451 */ "floor", "floor_n", "Parrot_floor_n", @@ -6146,7 +6170,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 450 */ + { /* 452 */ "floor", "floor_i_n", "Parrot_floor_i_n", @@ -6157,7 +6181,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 451 */ + { /* 453 */ "floor", "floor_n_n", "Parrot_floor_n_n", @@ -6168,7 +6192,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 452 */ + { /* 454 */ "inc", "inc_i", "Parrot_inc_i", @@ -6179,7 +6203,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 453 */ + { /* 455 */ "inc", "inc_n", "Parrot_inc_n", @@ -6190,7 +6214,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 454 */ + { /* 456 */ "inc", "inc_p", "Parrot_inc_p", @@ -6201,7 +6225,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 455 */ + { /* 457 */ "mod", "mod_i_i", "Parrot_mod_i_i", @@ -6212,7 +6236,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 456 */ + { /* 458 */ "mod", "mod_i_ic", "Parrot_mod_i_ic", @@ -6223,7 +6247,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 457 */ + { /* 459 */ "mod", "mod_n_n", "Parrot_mod_n_n", @@ -6234,7 +6258,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 458 */ + { /* 460 */ "mod", "mod_n_nc", "Parrot_mod_n_nc", @@ -6245,7 +6269,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 459 */ + { /* 461 */ "mod", "mod_p_p", "Parrot_mod_p_p", @@ -6256,7 +6280,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 460 */ + { /* 462 */ "mod", "mod_p_i", "Parrot_mod_p_i", @@ -6267,7 +6291,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 461 */ + { /* 463 */ "mod", "mod_p_ic", "Parrot_mod_p_ic", @@ -6278,7 +6302,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 462 */ + { /* 464 */ "mod", "mod_p_n", "Parrot_mod_p_n", @@ -6289,7 +6313,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 463 */ + { /* 465 */ "mod", "mod_p_nc", "Parrot_mod_p_nc", @@ -6300,7 +6324,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 464 */ + { /* 466 */ "mod", "mod_i_i_i", "Parrot_mod_i_i_i", @@ -6311,7 +6335,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 465 */ + { /* 467 */ "mod", "mod_i_ic_i", "Parrot_mod_i_ic_i", @@ -6322,7 +6346,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 466 */ + { /* 468 */ "mod", "mod_i_i_ic", "Parrot_mod_i_i_ic", @@ -6333,7 +6357,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 467 */ + { /* 469 */ "mod", "mod_n_n_n", "Parrot_mod_n_n_n", @@ -6344,7 +6368,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 468 */ + { /* 470 */ "mod", "mod_n_nc_n", "Parrot_mod_n_nc_n", @@ -6355,7 +6379,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 469 */ + { /* 471 */ "mod", "mod_n_n_nc", "Parrot_mod_n_n_nc", @@ -6366,7 +6390,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 470 */ + { /* 472 */ "mod", "mod_p_p_p", "Parrot_mod_p_p_p", @@ -6377,7 +6401,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 471 */ + { /* 473 */ "mod", "mod_p_p_i", "Parrot_mod_p_p_i", @@ -6388,7 +6412,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 472 */ + { /* 474 */ "mod", "mod_p_p_ic", "Parrot_mod_p_p_ic", @@ -6399,7 +6423,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 473 */ + { /* 475 */ "mod", "mod_p_p_n", "Parrot_mod_p_p_n", @@ -6410,7 +6434,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 474 */ + { /* 476 */ "mod", "mod_p_p_nc", "Parrot_mod_p_p_nc", @@ -6421,7 +6445,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 475 */ + { /* 477 */ "mul", "mul_i_i", "Parrot_mul_i_i", @@ -6432,7 +6456,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 476 */ + { /* 478 */ "mul", "mul_i_ic", "Parrot_mul_i_ic", @@ -6443,7 +6467,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 477 */ + { /* 479 */ "mul", "mul_n_n", "Parrot_mul_n_n", @@ -6454,7 +6478,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 478 */ + { /* 480 */ "mul", "mul_n_nc", "Parrot_mul_n_nc", @@ -6465,7 +6489,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 479 */ + { /* 481 */ "mul", "mul_p_p", "Parrot_mul_p_p", @@ -6476,7 +6500,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 480 */ + { /* 482 */ "mul", "mul_p_i", "Parrot_mul_p_i", @@ -6487,7 +6511,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 481 */ + { /* 483 */ "mul", "mul_p_ic", "Parrot_mul_p_ic", @@ -6498,7 +6522,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 482 */ + { /* 484 */ "mul", "mul_p_n", "Parrot_mul_p_n", @@ -6509,7 +6533,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 483 */ + { /* 485 */ "mul", "mul_p_nc", "Parrot_mul_p_nc", @@ -6520,7 +6544,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 484 */ + { /* 486 */ "mul", "mul_i_i_i", "Parrot_mul_i_i_i", @@ -6531,7 +6555,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 485 */ + { /* 487 */ "mul", "mul_i_ic_i", "Parrot_mul_i_ic_i", @@ -6542,7 +6566,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 486 */ + { /* 488 */ "mul", "mul_i_i_ic", "Parrot_mul_i_i_ic", @@ -6553,7 +6577,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 487 */ + { /* 489 */ "mul", "mul_n_n_n", "Parrot_mul_n_n_n", @@ -6564,7 +6588,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 488 */ + { /* 490 */ "mul", "mul_n_nc_n", "Parrot_mul_n_nc_n", @@ -6575,7 +6599,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 489 */ + { /* 491 */ "mul", "mul_n_n_nc", "Parrot_mul_n_n_nc", @@ -6586,7 +6610,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 490 */ + { /* 492 */ "mul", "mul_p_p_p", "Parrot_mul_p_p_p", @@ -6597,7 +6621,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 491 */ + { /* 493 */ "mul", "mul_p_p_i", "Parrot_mul_p_p_i", @@ -6608,7 +6632,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 492 */ + { /* 494 */ "mul", "mul_p_p_ic", "Parrot_mul_p_p_ic", @@ -6619,7 +6643,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 493 */ + { /* 495 */ "mul", "mul_p_p_n", "Parrot_mul_p_p_n", @@ -6630,7 +6654,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 494 */ + { /* 496 */ "mul", "mul_p_p_nc", "Parrot_mul_p_p_nc", @@ -6641,7 +6665,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 495 */ + { /* 497 */ "neg", "neg_i", "Parrot_neg_i", @@ -6652,7 +6676,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 496 */ + { /* 498 */ "neg", "neg_n", "Parrot_neg_n", @@ -6663,7 +6687,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 497 */ + { /* 499 */ "neg", "neg_p", "Parrot_neg_p", @@ -6674,7 +6698,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 498 */ + { /* 500 */ "neg", "neg_i_i", "Parrot_neg_i_i", @@ -6685,7 +6709,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 499 */ + { /* 501 */ "neg", "neg_n_n", "Parrot_neg_n_n", @@ -6696,7 +6720,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 500 */ + { /* 502 */ "neg", "neg_p_p", "Parrot_neg_p_p", @@ -6707,7 +6731,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 501 */ + { /* 503 */ "sub", "sub_i_i", "Parrot_sub_i_i", @@ -6718,7 +6742,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 502 */ + { /* 504 */ "sub", "sub_i_ic", "Parrot_sub_i_ic", @@ -6729,7 +6753,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 503 */ + { /* 505 */ "sub", "sub_n_n", "Parrot_sub_n_n", @@ -6740,7 +6764,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 504 */ + { /* 506 */ "sub", "sub_n_nc", "Parrot_sub_n_nc", @@ -6751,7 +6775,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 505 */ + { /* 507 */ "sub", "sub_p_p", "Parrot_sub_p_p", @@ -6762,7 +6786,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 506 */ + { /* 508 */ "sub", "sub_p_i", "Parrot_sub_p_i", @@ -6773,7 +6797,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 507 */ + { /* 509 */ "sub", "sub_p_ic", "Parrot_sub_p_ic", @@ -6784,7 +6808,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 508 */ + { /* 510 */ "sub", "sub_p_n", "Parrot_sub_p_n", @@ -6795,7 +6819,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 509 */ + { /* 511 */ "sub", "sub_p_nc", "Parrot_sub_p_nc", @@ -6806,7 +6830,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 510 */ + { /* 512 */ "sub", "sub_i_i_i", "Parrot_sub_i_i_i", @@ -6817,7 +6841,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 511 */ + { /* 513 */ "sub", "sub_i_ic_i", "Parrot_sub_i_ic_i", @@ -6828,7 +6852,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 512 */ + { /* 514 */ "sub", "sub_i_i_ic", "Parrot_sub_i_i_ic", @@ -6839,7 +6863,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 513 */ + { /* 515 */ "sub", "sub_n_n_n", "Parrot_sub_n_n_n", @@ -6850,7 +6874,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 514 */ + { /* 516 */ "sub", "sub_n_nc_n", "Parrot_sub_n_nc_n", @@ -6861,7 +6885,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 515 */ + { /* 517 */ "sub", "sub_n_n_nc", "Parrot_sub_n_n_nc", @@ -6872,7 +6896,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 516 */ + { /* 518 */ "sub", "sub_p_p_p", "Parrot_sub_p_p_p", @@ -6883,7 +6907,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 517 */ + { /* 519 */ "sub", "sub_p_p_i", "Parrot_sub_p_p_i", @@ -6894,7 +6918,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 518 */ + { /* 520 */ "sub", "sub_p_p_ic", "Parrot_sub_p_p_ic", @@ -6905,7 +6929,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 519 */ + { /* 521 */ "sub", "sub_p_p_n", "Parrot_sub_p_p_n", @@ -6916,7 +6940,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 520 */ + { /* 522 */ "sub", "sub_p_p_nc", "Parrot_sub_p_p_nc", @@ -6927,7 +6951,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 521 */ + { /* 523 */ "sqrt", "sqrt_n_n", "Parrot_sqrt_n_n", @@ -6938,7 +6962,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 522 */ + { /* 524 */ "callmethodcc", "callmethodcc_p_s", "Parrot_callmethodcc_p_s", @@ -6949,7 +6973,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 523 */ + { /* 525 */ "callmethodcc", "callmethodcc_p_sc", "Parrot_callmethodcc_p_sc", @@ -6960,7 +6984,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 524 */ + { /* 526 */ "callmethodcc", "callmethodcc_p_p", "Parrot_callmethodcc_p_p", @@ -6971,7 +6995,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 525 */ + { /* 527 */ "callmethod", "callmethod_p_s_p", "Parrot_callmethod_p_s_p", @@ -6982,7 +7006,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 526 */ + { /* 528 */ "callmethod", "callmethod_p_sc_p", "Parrot_callmethod_p_sc_p", @@ -6993,7 +7017,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 527 */ + { /* 529 */ "callmethod", "callmethod_p_p_p", "Parrot_callmethod_p_p_p", @@ -7004,7 +7028,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 528 */ + { /* 530 */ "tailcallmethod", "tailcallmethod_p_s", "Parrot_tailcallmethod_p_s", @@ -7015,7 +7039,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 529 */ + { /* 531 */ "tailcallmethod", "tailcallmethod_p_sc", "Parrot_tailcallmethod_p_sc", @@ -7026,7 +7050,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 530 */ + { /* 532 */ "tailcallmethod", "tailcallmethod_p_p", "Parrot_tailcallmethod_p_p", @@ -7037,7 +7061,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 531 */ + { /* 533 */ "addmethod", "addmethod_p_s_p", "Parrot_addmethod_p_s_p", @@ -7048,7 +7072,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 532 */ + { /* 534 */ "addmethod", "addmethod_p_sc_p", "Parrot_addmethod_p_sc_p", @@ -7059,7 +7083,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 533 */ + { /* 535 */ "can", "can_i_p_s", "Parrot_can_i_p_s", @@ -7070,7 +7094,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 534 */ + { /* 536 */ "can", "can_i_p_sc", "Parrot_can_i_p_sc", @@ -7081,7 +7105,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 535 */ + { /* 537 */ "does", "does_i_p_s", "Parrot_does_i_p_s", @@ -7092,7 +7116,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 536 */ + { /* 538 */ "does", "does_i_p_sc", "Parrot_does_i_p_sc", @@ -7103,7 +7127,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 537 */ + { /* 539 */ "does", "does_i_p_p", "Parrot_does_i_p_p", @@ -7114,7 +7138,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 538 */ + { /* 540 */ "does", "does_i_p_pc", "Parrot_does_i_p_pc", @@ -7125,7 +7149,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 539 */ + { /* 541 */ "isa", "isa_i_p_s", "Parrot_isa_i_p_s", @@ -7136,7 +7160,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 540 */ + { /* 542 */ "isa", "isa_i_p_sc", "Parrot_isa_i_p_sc", @@ -7147,7 +7171,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 541 */ + { /* 543 */ "isa", "isa_i_p_p", "Parrot_isa_i_p_p", @@ -7158,7 +7182,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 542 */ + { /* 544 */ "isa", "isa_i_p_pc", "Parrot_isa_i_p_pc", @@ -7169,7 +7193,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 543 */ + { /* 545 */ "newclass", "newclass_p_s", "Parrot_newclass_p_s", @@ -7180,7 +7204,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 544 */ + { /* 546 */ "newclass", "newclass_p_sc", "Parrot_newclass_p_sc", @@ -7191,7 +7215,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 545 */ + { /* 547 */ "newclass", "newclass_p_p", "Parrot_newclass_p_p", @@ -7202,7 +7226,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 546 */ + { /* 548 */ "newclass", "newclass_p_pc", "Parrot_newclass_p_pc", @@ -7213,7 +7237,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 547 */ + { /* 549 */ "subclass", "subclass_p_p", "Parrot_subclass_p_p", @@ -7224,7 +7248,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 548 */ + { /* 550 */ "subclass", "subclass_p_pc", "Parrot_subclass_p_pc", @@ -7235,7 +7259,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 549 */ + { /* 551 */ "subclass", "subclass_p_p_s", "Parrot_subclass_p_p_s", @@ -7246,7 +7270,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 550 */ + { /* 552 */ "subclass", "subclass_p_pc_s", "Parrot_subclass_p_pc_s", @@ -7257,7 +7281,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 551 */ + { /* 553 */ "subclass", "subclass_p_p_sc", "Parrot_subclass_p_p_sc", @@ -7268,7 +7292,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 552 */ + { /* 554 */ "subclass", "subclass_p_pc_sc", "Parrot_subclass_p_pc_sc", @@ -7279,7 +7303,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 553 */ + { /* 555 */ "subclass", "subclass_p_p_p", "Parrot_subclass_p_p_p", @@ -7290,7 +7314,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 554 */ + { /* 556 */ "subclass", "subclass_p_pc_p", "Parrot_subclass_p_pc_p", @@ -7301,7 +7325,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 555 */ + { /* 557 */ "subclass", "subclass_p_p_pc", "Parrot_subclass_p_p_pc", @@ -7312,7 +7336,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 556 */ + { /* 558 */ "subclass", "subclass_p_pc_pc", "Parrot_subclass_p_pc_pc", @@ -7323,7 +7347,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 557 */ + { /* 559 */ "subclass", "subclass_p_s", "Parrot_subclass_p_s", @@ -7334,7 +7358,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 558 */ + { /* 560 */ "subclass", "subclass_p_sc", "Parrot_subclass_p_sc", @@ -7345,7 +7369,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 559 */ + { /* 561 */ "subclass", "subclass_p_s_s", "Parrot_subclass_p_s_s", @@ -7356,7 +7380,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 560 */ + { /* 562 */ "subclass", "subclass_p_sc_s", "Parrot_subclass_p_sc_s", @@ -7367,7 +7391,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 561 */ + { /* 563 */ "subclass", "subclass_p_s_sc", "Parrot_subclass_p_s_sc", @@ -7378,7 +7402,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 562 */ + { /* 564 */ "subclass", "subclass_p_sc_sc", "Parrot_subclass_p_sc_sc", @@ -7389,7 +7413,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 563 */ + { /* 565 */ "subclass", "subclass_p_s_p", "Parrot_subclass_p_s_p", @@ -7400,7 +7424,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 564 */ + { /* 566 */ "subclass", "subclass_p_sc_p", "Parrot_subclass_p_sc_p", @@ -7411,7 +7435,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 565 */ + { /* 567 */ "subclass", "subclass_p_s_pc", "Parrot_subclass_p_s_pc", @@ -7422,7 +7446,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 566 */ + { /* 568 */ "subclass", "subclass_p_sc_pc", "Parrot_subclass_p_sc_pc", @@ -7433,7 +7457,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 567 */ + { /* 569 */ "get_class", "get_class_p_s", "Parrot_get_class_p_s", @@ -7444,7 +7468,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 568 */ + { /* 570 */ "get_class", "get_class_p_sc", "Parrot_get_class_p_sc", @@ -7455,7 +7479,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 569 */ + { /* 571 */ "get_class", "get_class_p_p", "Parrot_get_class_p_p", @@ -7466,7 +7490,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 570 */ + { /* 572 */ "get_class", "get_class_p_pc", "Parrot_get_class_p_pc", @@ -7477,7 +7501,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 571 */ + { /* 573 */ "class", "class_p_p", "Parrot_class_p_p", @@ -7488,7 +7512,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 572 */ + { /* 574 */ "addparent", "addparent_p_p", "Parrot_addparent_p_p", @@ -7499,7 +7523,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 573 */ + { /* 575 */ "removeparent", "removeparent_p_p", "Parrot_removeparent_p_p", @@ -7510,7 +7534,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 574 */ + { /* 576 */ "addrole", "addrole_p_p", "Parrot_addrole_p_p", @@ -7521,7 +7545,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 575 */ + { /* 577 */ "addattribute", "addattribute_p_s", "Parrot_addattribute_p_s", @@ -7532,7 +7556,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 576 */ + { /* 578 */ "addattribute", "addattribute_p_sc", "Parrot_addattribute_p_sc", @@ -7543,7 +7567,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 577 */ + { /* 579 */ "removeattribute", "removeattribute_p_s", "Parrot_removeattribute_p_s", @@ -7554,7 +7578,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 578 */ + { /* 580 */ "removeattribute", "removeattribute_p_sc", "Parrot_removeattribute_p_sc", @@ -7565,7 +7589,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 579 */ + { /* 581 */ "getattribute", "getattribute_p_p_s", "Parrot_getattribute_p_p_s", @@ -7576,7 +7600,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 580 */ + { /* 582 */ "getattribute", "getattribute_p_p_sc", "Parrot_getattribute_p_p_sc", @@ -7587,7 +7611,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 581 */ + { /* 583 */ "getattribute", "getattribute_p_p_p_s", "Parrot_getattribute_p_p_p_s", @@ -7598,7 +7622,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 582 */ + { /* 584 */ "getattribute", "getattribute_p_p_pc_s", "Parrot_getattribute_p_p_pc_s", @@ -7609,7 +7633,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 583 */ + { /* 585 */ "getattribute", "getattribute_p_p_p_sc", "Parrot_getattribute_p_p_p_sc", @@ -7620,7 +7644,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 584 */ + { /* 586 */ "getattribute", "getattribute_p_p_pc_sc", "Parrot_getattribute_p_p_pc_sc", @@ -7631,7 +7655,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 585 */ + { /* 587 */ "setattribute", "setattribute_p_s_p", "Parrot_setattribute_p_s_p", @@ -7642,7 +7666,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 586 */ + { /* 588 */ "setattribute", "setattribute_p_sc_p", "Parrot_setattribute_p_sc_p", @@ -7653,7 +7677,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 587 */ + { /* 589 */ "setattribute", "setattribute_p_p_s_p", "Parrot_setattribute_p_p_s_p", @@ -7664,7 +7688,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 588 */ + { /* 590 */ "setattribute", "setattribute_p_pc_s_p", "Parrot_setattribute_p_pc_s_p", @@ -7675,7 +7699,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 589 */ + { /* 591 */ "setattribute", "setattribute_p_p_sc_p", "Parrot_setattribute_p_p_sc_p", @@ -7686,7 +7710,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 590 */ + { /* 592 */ "setattribute", "setattribute_p_pc_sc_p", "Parrot_setattribute_p_pc_sc_p", @@ -7697,7 +7721,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 591 */ + { /* 593 */ "inspect", "inspect_p_p", "Parrot_inspect_p_p", @@ -7708,7 +7732,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 592 */ + { /* 594 */ "inspect", "inspect_p_pc", "Parrot_inspect_p_pc", @@ -7719,7 +7743,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 593 */ + { /* 595 */ "inspect", "inspect_p_p_s", "Parrot_inspect_p_p_s", @@ -7730,7 +7754,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 594 */ + { /* 596 */ "inspect", "inspect_p_pc_s", "Parrot_inspect_p_pc_s", @@ -7741,7 +7765,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 595 */ + { /* 597 */ "inspect", "inspect_p_p_sc", "Parrot_inspect_p_p_sc", @@ -7752,7 +7776,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 596 */ + { /* 598 */ "inspect", "inspect_p_pc_sc", "Parrot_inspect_p_pc_sc", @@ -7763,7 +7787,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 597 */ + { /* 599 */ "new", "new_p_s", "Parrot_new_p_s", @@ -7774,7 +7798,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 598 */ + { /* 600 */ "new", "new_p_sc", "Parrot_new_p_sc", @@ -7785,7 +7809,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 599 */ + { /* 601 */ "new", "new_p_s_p", "Parrot_new_p_s_p", @@ -7796,7 +7820,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 600 */ + { /* 602 */ "new", "new_p_sc_p", "Parrot_new_p_sc_p", @@ -7807,7 +7831,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 601 */ + { /* 603 */ "new", "new_p_s_pc", "Parrot_new_p_s_pc", @@ -7818,7 +7842,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 602 */ + { /* 604 */ "new", "new_p_sc_pc", "Parrot_new_p_sc_pc", @@ -7829,7 +7853,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 603 */ + { /* 605 */ "new", "new_p_p", "Parrot_new_p_p", @@ -7840,7 +7864,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 604 */ + { /* 606 */ "new", "new_p_pc", "Parrot_new_p_pc", @@ -7851,7 +7875,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 605 */ + { /* 607 */ "new", "new_p_p_p", "Parrot_new_p_p_p", @@ -7862,7 +7886,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 606 */ + { /* 608 */ "new", "new_p_pc_p", "Parrot_new_p_pc_p", @@ -7873,7 +7897,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 607 */ + { /* 609 */ "new", "new_p_p_pc", "Parrot_new_p_p_pc", @@ -7884,7 +7908,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 608 */ + { /* 610 */ "new", "new_p_pc_pc", "Parrot_new_p_pc_pc", @@ -7895,7 +7919,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 609 */ + { /* 611 */ "root_new", "root_new_p_p", "Parrot_root_new_p_p", @@ -7906,7 +7930,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 610 */ + { /* 612 */ "root_new", "root_new_p_pc", "Parrot_root_new_p_pc", @@ -7917,7 +7941,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 611 */ + { /* 613 */ "root_new", "root_new_p_p_p", "Parrot_root_new_p_p_p", @@ -7928,7 +7952,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 612 */ + { /* 614 */ "root_new", "root_new_p_pc_p", "Parrot_root_new_p_pc_p", @@ -7939,7 +7963,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 613 */ + { /* 615 */ "root_new", "root_new_p_p_pc", "Parrot_root_new_p_p_pc", @@ -7950,7 +7974,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 614 */ + { /* 616 */ "root_new", "root_new_p_pc_pc", "Parrot_root_new_p_pc_pc", @@ -7961,7 +7985,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 615 */ + { /* 617 */ "typeof", "typeof_s_p", "Parrot_typeof_s_p", @@ -7972,7 +7996,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 616 */ + { /* 618 */ "typeof", "typeof_p_p", "Parrot_typeof_p_p", @@ -7983,7 +8007,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 617 */ + { /* 619 */ "get_repr", "get_repr_s_p", "Parrot_get_repr_s_p", @@ -7994,7 +8018,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 618 */ + { /* 620 */ "find_method", "find_method_p_p_s", "Parrot_find_method_p_p_s", @@ -8005,7 +8029,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 619 */ + { /* 621 */ "find_method", "find_method_p_p_sc", "Parrot_find_method_p_p_sc", @@ -8016,7 +8040,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 620 */ + { /* 622 */ "defined", "defined_i_p", "Parrot_defined_i_p", @@ -8027,7 +8051,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 621 */ + { /* 623 */ "defined", "defined_i_p_ki", "Parrot_defined_i_p_ki", @@ -8038,7 +8062,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 622 */ + { /* 624 */ "defined", "defined_i_p_kic", "Parrot_defined_i_p_kic", @@ -8049,7 +8073,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 623 */ + { /* 625 */ "defined", "defined_i_p_k", "Parrot_defined_i_p_k", @@ -8060,7 +8084,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 624 */ + { /* 626 */ "defined", "defined_i_p_kc", "Parrot_defined_i_p_kc", @@ -8071,7 +8095,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 625 */ + { /* 627 */ "exists", "exists_i_p_ki", "Parrot_exists_i_p_ki", @@ -8082,7 +8106,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 626 */ + { /* 628 */ "exists", "exists_i_p_kic", "Parrot_exists_i_p_kic", @@ -8093,7 +8117,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 627 */ + { /* 629 */ "exists", "exists_i_p_k", "Parrot_exists_i_p_k", @@ -8104,7 +8128,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 628 */ + { /* 630 */ "exists", "exists_i_p_kc", "Parrot_exists_i_p_kc", @@ -8115,7 +8139,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 629 */ + { /* 631 */ "delete", "delete_p_k", "Parrot_delete_p_k", @@ -8126,7 +8150,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 630 */ + { /* 632 */ "delete", "delete_p_kc", "Parrot_delete_p_kc", @@ -8137,7 +8161,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 631 */ + { /* 633 */ "delete", "delete_p_ki", "Parrot_delete_p_ki", @@ -8148,7 +8172,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 632 */ + { /* 634 */ "delete", "delete_p_kic", "Parrot_delete_p_kic", @@ -8159,7 +8183,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 633 */ + { /* 635 */ "elements", "elements_i_p", "Parrot_elements_i_p", @@ -8170,7 +8194,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 634 */ + { /* 636 */ "push", "push_p_i", "Parrot_push_p_i", @@ -8181,7 +8205,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 635 */ + { /* 637 */ "push", "push_p_ic", "Parrot_push_p_ic", @@ -8192,7 +8216,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 636 */ + { /* 638 */ "push", "push_p_n", "Parrot_push_p_n", @@ -8203,7 +8227,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 637 */ + { /* 639 */ "push", "push_p_nc", "Parrot_push_p_nc", @@ -8214,7 +8238,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 638 */ + { /* 640 */ "push", "push_p_s", "Parrot_push_p_s", @@ -8225,7 +8249,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 639 */ + { /* 641 */ "push", "push_p_sc", "Parrot_push_p_sc", @@ -8236,7 +8260,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 640 */ + { /* 642 */ "push", "push_p_p", "Parrot_push_p_p", @@ -8247,7 +8271,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 641 */ + { /* 643 */ "pop", "pop_i_p", "Parrot_pop_i_p", @@ -8258,7 +8282,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 642 */ + { /* 644 */ "pop", "pop_n_p", "Parrot_pop_n_p", @@ -8269,7 +8293,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 643 */ + { /* 645 */ "pop", "pop_s_p", "Parrot_pop_s_p", @@ -8280,7 +8304,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 644 */ + { /* 646 */ "pop", "pop_p_p", "Parrot_pop_p_p", @@ -8291,7 +8315,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 645 */ + { /* 647 */ "unshift", "unshift_p_i", "Parrot_unshift_p_i", @@ -8302,7 +8326,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 646 */ + { /* 648 */ "unshift", "unshift_p_ic", "Parrot_unshift_p_ic", @@ -8313,7 +8337,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 647 */ + { /* 649 */ "unshift", "unshift_p_n", "Parrot_unshift_p_n", @@ -8324,7 +8348,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 648 */ + { /* 650 */ "unshift", "unshift_p_nc", "Parrot_unshift_p_nc", @@ -8335,7 +8359,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 649 */ + { /* 651 */ "unshift", "unshift_p_s", "Parrot_unshift_p_s", @@ -8346,7 +8370,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 650 */ + { /* 652 */ "unshift", "unshift_p_sc", "Parrot_unshift_p_sc", @@ -8357,7 +8381,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 651 */ + { /* 653 */ "unshift", "unshift_p_p", "Parrot_unshift_p_p", @@ -8368,7 +8392,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 652 */ + { /* 654 */ "shift", "shift_i_p", "Parrot_shift_i_p", @@ -8379,7 +8403,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 653 */ + { /* 655 */ "shift", "shift_n_p", "Parrot_shift_n_p", @@ -8390,7 +8414,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 654 */ + { /* 656 */ "shift", "shift_s_p", "Parrot_shift_s_p", @@ -8401,7 +8425,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 655 */ + { /* 657 */ "shift", "shift_p_p", "Parrot_shift_p_p", @@ -8412,7 +8436,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 656 */ + { /* 658 */ "splice", "splice_p_p_i_i", "Parrot_splice_p_p_i_i", @@ -8423,7 +8447,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 657 */ + { /* 659 */ "splice", "splice_p_p_ic_i", "Parrot_splice_p_p_ic_i", @@ -8434,7 +8458,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 658 */ + { /* 660 */ "splice", "splice_p_p_i_ic", "Parrot_splice_p_p_i_ic", @@ -8445,7 +8469,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 659 */ + { /* 661 */ "splice", "splice_p_p_ic_ic", "Parrot_splice_p_p_ic_ic", @@ -8456,7 +8480,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 660 */ + { /* 662 */ "setprop", "setprop_p_s_p", "Parrot_setprop_p_s_p", @@ -8467,7 +8491,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 661 */ + { /* 663 */ "setprop", "setprop_p_sc_p", "Parrot_setprop_p_sc_p", @@ -8478,7 +8502,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 662 */ + { /* 664 */ "getprop", "getprop_p_s_p", "Parrot_getprop_p_s_p", @@ -8489,7 +8513,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 663 */ + { /* 665 */ "getprop", "getprop_p_sc_p", "Parrot_getprop_p_sc_p", @@ -8500,7 +8524,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 664 */ + { /* 666 */ "delprop", "delprop_p_s", "Parrot_delprop_p_s", @@ -8511,7 +8535,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 665 */ + { /* 667 */ "delprop", "delprop_p_sc", "Parrot_delprop_p_sc", @@ -8522,7 +8546,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 666 */ + { /* 668 */ "prophash", "prophash_p_p", "Parrot_prophash_p_p", @@ -8533,7 +8557,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 667 */ + { /* 669 */ "freeze", "freeze_s_p", "Parrot_freeze_s_p", @@ -8544,7 +8568,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 668 */ + { /* 670 */ "thaw", "thaw_p_s", "Parrot_thaw_p_s", @@ -8555,7 +8579,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 669 */ + { /* 671 */ "thaw", "thaw_p_sc", "Parrot_thaw_p_sc", @@ -8566,7 +8590,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 670 */ + { /* 672 */ "add_multi", "add_multi_s_s_p", "Parrot_add_multi_s_s_p", @@ -8577,7 +8601,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 671 */ + { /* 673 */ "add_multi", "add_multi_sc_s_p", "Parrot_add_multi_sc_s_p", @@ -8588,7 +8612,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 672 */ + { /* 674 */ "add_multi", "add_multi_s_sc_p", "Parrot_add_multi_s_sc_p", @@ -8599,7 +8623,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 673 */ + { /* 675 */ "add_multi", "add_multi_sc_sc_p", "Parrot_add_multi_sc_sc_p", @@ -8610,7 +8634,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 674 */ + { /* 676 */ "find_multi", "find_multi_p_s_s", "Parrot_find_multi_p_s_s", @@ -8621,7 +8645,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 675 */ + { /* 677 */ "find_multi", "find_multi_p_sc_s", "Parrot_find_multi_p_sc_s", @@ -8632,7 +8656,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 676 */ + { /* 678 */ "find_multi", "find_multi_p_s_sc", "Parrot_find_multi_p_s_sc", @@ -8643,7 +8667,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 677 */ + { /* 679 */ "find_multi", "find_multi_p_sc_sc", "Parrot_find_multi_p_sc_sc", @@ -8654,7 +8678,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 678 */ + { /* 680 */ "register", "register_p", "Parrot_register_p", @@ -8665,7 +8689,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 679 */ + { /* 681 */ "unregister", "unregister_p", "Parrot_unregister_p", @@ -8676,7 +8700,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 680 */ + { /* 682 */ "box", "box_p_i", "Parrot_box_p_i", @@ -8687,7 +8711,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 681 */ + { /* 683 */ "box", "box_p_ic", "Parrot_box_p_ic", @@ -8698,7 +8722,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 682 */ + { /* 684 */ "box", "box_p_n", "Parrot_box_p_n", @@ -8709,7 +8733,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 683 */ + { /* 685 */ "box", "box_p_nc", "Parrot_box_p_nc", @@ -8720,7 +8744,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 684 */ + { /* 686 */ "box", "box_p_s", "Parrot_box_p_s", @@ -8731,7 +8755,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 685 */ + { /* 687 */ "box", "box_p_sc", "Parrot_box_p_sc", @@ -8742,7 +8766,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 686 */ + { /* 688 */ "iter", "iter_p_p", "Parrot_iter_p_p", @@ -8753,7 +8777,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 687 */ + { /* 689 */ "morph", "morph_p_p", "Parrot_morph_p_p", @@ -8764,7 +8788,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 688 */ + { /* 690 */ "morph", "morph_p_pc", "Parrot_morph_p_pc", @@ -8775,7 +8799,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 689 */ + { /* 691 */ "clone", "clone_s_s", "Parrot_clone_s_s", @@ -8786,7 +8810,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 690 */ + { /* 692 */ "clone", "clone_s_sc", "Parrot_clone_s_sc", @@ -8797,7 +8821,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 691 */ + { /* 693 */ "set", "set_i_i", "Parrot_set_i_i", @@ -8808,7 +8832,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 692 */ + { /* 694 */ "set", "set_i_ic", "Parrot_set_i_ic", @@ -8819,7 +8843,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 693 */ + { /* 695 */ "set", "set_i_n", "Parrot_set_i_n", @@ -8830,7 +8854,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 694 */ + { /* 696 */ "set", "set_i_nc", "Parrot_set_i_nc", @@ -8841,7 +8865,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 695 */ + { /* 697 */ "set", "set_i_s", "Parrot_set_i_s", @@ -8852,7 +8876,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 696 */ + { /* 698 */ "set", "set_i_sc", "Parrot_set_i_sc", @@ -8863,7 +8887,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 697 */ + { /* 699 */ "set", "set_n_n", "Parrot_set_n_n", @@ -8874,7 +8898,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 698 */ + { /* 700 */ "set", "set_n_nc", "Parrot_set_n_nc", @@ -8885,7 +8909,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 699 */ + { /* 701 */ "set", "set_n_i", "Parrot_set_n_i", @@ -8896,7 +8920,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 700 */ + { /* 702 */ "set", "set_n_ic", "Parrot_set_n_ic", @@ -8907,7 +8931,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 701 */ + { /* 703 */ "set", "set_n_s", "Parrot_set_n_s", @@ -8918,7 +8942,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 702 */ + { /* 704 */ "set", "set_n_sc", "Parrot_set_n_sc", @@ -8929,7 +8953,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 703 */ + { /* 705 */ "set", "set_n_p", "Parrot_set_n_p", @@ -8940,7 +8964,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 704 */ + { /* 706 */ "set", "set_s_p", "Parrot_set_s_p", @@ -8951,7 +8975,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 705 */ + { /* 707 */ "set", "set_s_s", "Parrot_set_s_s", @@ -8962,7 +8986,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 706 */ + { /* 708 */ "set", "set_s_sc", "Parrot_set_s_sc", @@ -8973,7 +8997,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 707 */ + { /* 709 */ "set", "set_s_i", "Parrot_set_s_i", @@ -8984,7 +9008,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 708 */ + { /* 710 */ "set", "set_s_ic", "Parrot_set_s_ic", @@ -8995,7 +9019,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 709 */ + { /* 711 */ "set", "set_s_n", "Parrot_set_s_n", @@ -9006,7 +9030,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 710 */ + { /* 712 */ "set", "set_s_nc", "Parrot_set_s_nc", @@ -9017,7 +9041,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 711 */ + { /* 713 */ "set", "set_p_pc", "Parrot_set_p_pc", @@ -9028,7 +9052,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 712 */ + { /* 714 */ "set", "set_p_p", "Parrot_set_p_p", @@ -9039,7 +9063,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 713 */ + { /* 715 */ "set", "set_p_i", "Parrot_set_p_i", @@ -9050,7 +9074,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 714 */ + { /* 716 */ "set", "set_p_ic", "Parrot_set_p_ic", @@ -9061,7 +9085,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 715 */ + { /* 717 */ "set", "set_p_n", "Parrot_set_p_n", @@ -9072,7 +9096,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 716 */ + { /* 718 */ "set", "set_p_nc", "Parrot_set_p_nc", @@ -9083,7 +9107,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 717 */ + { /* 719 */ "set", "set_p_s", "Parrot_set_p_s", @@ -9094,7 +9118,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 718 */ + { /* 720 */ "set", "set_p_sc", "Parrot_set_p_sc", @@ -9105,7 +9129,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 719 */ + { /* 721 */ "set", "set_i_p", "Parrot_set_i_p", @@ -9116,7 +9140,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 720 */ + { /* 722 */ "assign", "assign_p_p", "Parrot_assign_p_p", @@ -9127,7 +9151,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 721 */ + { /* 723 */ "assign", "assign_p_i", "Parrot_assign_p_i", @@ -9138,7 +9162,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 722 */ + { /* 724 */ "assign", "assign_p_ic", "Parrot_assign_p_ic", @@ -9149,7 +9173,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 723 */ + { /* 725 */ "assign", "assign_p_n", "Parrot_assign_p_n", @@ -9160,7 +9184,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 724 */ + { /* 726 */ "assign", "assign_p_nc", "Parrot_assign_p_nc", @@ -9171,7 +9195,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 725 */ + { /* 727 */ "assign", "assign_p_s", "Parrot_assign_p_s", @@ -9182,7 +9206,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 726 */ + { /* 728 */ "assign", "assign_p_sc", "Parrot_assign_p_sc", @@ -9193,7 +9217,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 727 */ + { /* 729 */ "assign", "assign_s_s", "Parrot_assign_s_s", @@ -9204,7 +9228,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 728 */ + { /* 730 */ "assign", "assign_s_sc", "Parrot_assign_s_sc", @@ -9215,7 +9239,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 729 */ + { /* 731 */ "setref", "setref_p_p", "Parrot_setref_p_p", @@ -9226,7 +9250,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 730 */ + { /* 732 */ "deref", "deref_p_p", "Parrot_deref_p_p", @@ -9237,7 +9261,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 731 */ + { /* 733 */ "set", "set_p_ki_i", "Parrot_set_p_ki_i", @@ -9248,7 +9272,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 732 */ + { /* 734 */ "set", "set_p_kic_i", "Parrot_set_p_kic_i", @@ -9259,7 +9283,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 733 */ + { /* 735 */ "set", "set_p_ki_ic", "Parrot_set_p_ki_ic", @@ -9270,7 +9294,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 734 */ + { /* 736 */ "set", "set_p_kic_ic", "Parrot_set_p_kic_ic", @@ -9281,7 +9305,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 735 */ + { /* 737 */ "set", "set_p_ki_n", "Parrot_set_p_ki_n", @@ -9292,7 +9316,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 736 */ + { /* 738 */ "set", "set_p_kic_n", "Parrot_set_p_kic_n", @@ -9303,7 +9327,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 737 */ + { /* 739 */ "set", "set_p_ki_nc", "Parrot_set_p_ki_nc", @@ -9314,7 +9338,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 738 */ + { /* 740 */ "set", "set_p_kic_nc", "Parrot_set_p_kic_nc", @@ -9325,7 +9349,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 739 */ + { /* 741 */ "set", "set_p_ki_s", "Parrot_set_p_ki_s", @@ -9336,7 +9360,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 740 */ + { /* 742 */ "set", "set_p_kic_s", "Parrot_set_p_kic_s", @@ -9347,7 +9371,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 741 */ + { /* 743 */ "set", "set_p_ki_sc", "Parrot_set_p_ki_sc", @@ -9358,7 +9382,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 742 */ + { /* 744 */ "set", "set_p_kic_sc", "Parrot_set_p_kic_sc", @@ -9369,7 +9393,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 743 */ + { /* 745 */ "set", "set_p_ki_p", "Parrot_set_p_ki_p", @@ -9380,7 +9404,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 744 */ + { /* 746 */ "set", "set_p_kic_p", "Parrot_set_p_kic_p", @@ -9391,7 +9415,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 745 */ + { /* 747 */ "set", "set_i_p_ki", "Parrot_set_i_p_ki", @@ -9402,7 +9426,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 746 */ + { /* 748 */ "set", "set_i_p_kic", "Parrot_set_i_p_kic", @@ -9413,7 +9437,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 747 */ + { /* 749 */ "set", "set_n_p_ki", "Parrot_set_n_p_ki", @@ -9424,7 +9448,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 748 */ + { /* 750 */ "set", "set_n_p_kic", "Parrot_set_n_p_kic", @@ -9435,7 +9459,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 749 */ + { /* 751 */ "set", "set_s_p_ki", "Parrot_set_s_p_ki", @@ -9446,7 +9470,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 750 */ + { /* 752 */ "set", "set_s_p_kic", "Parrot_set_s_p_kic", @@ -9457,7 +9481,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 751 */ + { /* 753 */ "set", "set_p_p_ki", "Parrot_set_p_p_ki", @@ -9468,7 +9492,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 752 */ + { /* 754 */ "set", "set_p_p_kic", "Parrot_set_p_p_kic", @@ -9479,7 +9503,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 753 */ + { /* 755 */ "set", "set_p_k_i", "Parrot_set_p_k_i", @@ -9490,7 +9514,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 754 */ + { /* 756 */ "set", "set_p_kc_i", "Parrot_set_p_kc_i", @@ -9501,7 +9525,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 755 */ + { /* 757 */ "set", "set_p_k_ic", "Parrot_set_p_k_ic", @@ -9512,7 +9536,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 756 */ + { /* 758 */ "set", "set_p_kc_ic", "Parrot_set_p_kc_ic", @@ -9523,7 +9547,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 757 */ + { /* 759 */ "set", "set_p_k_n", "Parrot_set_p_k_n", @@ -9534,7 +9558,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 758 */ + { /* 760 */ "set", "set_p_kc_n", "Parrot_set_p_kc_n", @@ -9545,7 +9569,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 759 */ + { /* 761 */ "set", "set_p_k_nc", "Parrot_set_p_k_nc", @@ -9556,7 +9580,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 760 */ + { /* 762 */ "set", "set_p_kc_nc", "Parrot_set_p_kc_nc", @@ -9567,7 +9591,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 761 */ + { /* 763 */ "set", "set_p_k_s", "Parrot_set_p_k_s", @@ -9578,7 +9602,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 762 */ + { /* 764 */ "set", "set_p_kc_s", "Parrot_set_p_kc_s", @@ -9589,7 +9613,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 763 */ + { /* 765 */ "set", "set_p_k_sc", "Parrot_set_p_k_sc", @@ -9600,7 +9624,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 764 */ + { /* 766 */ "set", "set_p_kc_sc", "Parrot_set_p_kc_sc", @@ -9611,7 +9635,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 765 */ + { /* 767 */ "set", "set_p_k_p", "Parrot_set_p_k_p", @@ -9622,7 +9646,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 766 */ + { /* 768 */ "set", "set_p_kc_p", "Parrot_set_p_kc_p", @@ -9633,7 +9657,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 767 */ + { /* 769 */ "set", "set_i_p_k", "Parrot_set_i_p_k", @@ -9644,7 +9668,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 768 */ + { /* 770 */ "set", "set_i_p_kc", "Parrot_set_i_p_kc", @@ -9655,7 +9679,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 769 */ + { /* 771 */ "set", "set_n_p_k", "Parrot_set_n_p_k", @@ -9666,7 +9690,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 770 */ + { /* 772 */ "set", "set_n_p_kc", "Parrot_set_n_p_kc", @@ -9677,7 +9701,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 771 */ + { /* 773 */ "set", "set_s_p_k", "Parrot_set_s_p_k", @@ -9688,7 +9712,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 772 */ + { /* 774 */ "set", "set_s_p_kc", "Parrot_set_s_p_kc", @@ -9699,7 +9723,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 773 */ + { /* 775 */ "set", "set_p_p_k", "Parrot_set_p_p_k", @@ -9710,7 +9734,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 774 */ + { /* 776 */ "set", "set_p_p_kc", "Parrot_set_p_p_kc", @@ -9721,7 +9745,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 775 */ + { /* 777 */ "clone", "clone_p_p", "Parrot_clone_p_p", @@ -9732,7 +9756,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 776 */ + { /* 778 */ "clone", "clone_p_p_p", "Parrot_clone_p_p_p", @@ -9743,7 +9767,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 777 */ + { /* 779 */ "clone", "clone_p_p_pc", "Parrot_clone_p_p_pc", @@ -9754,7 +9778,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 778 */ + { /* 780 */ "copy", "copy_p_p", "Parrot_copy_p_p", @@ -9765,7 +9789,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 779 */ + { /* 781 */ "null", "null_s", "Parrot_null_s", @@ -9776,7 +9800,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 780 */ + { /* 782 */ "null", "null_i", "Parrot_null_i", @@ -9787,7 +9811,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 781 */ + { /* 783 */ "null", "null_p", "Parrot_null_p", @@ -9798,7 +9822,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 782 */ + { /* 784 */ "null", "null_n", "Parrot_null_n", @@ -9809,7 +9833,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 783 */ + { /* 785 */ "ord", "ord_i_s", "Parrot_ord_i_s", @@ -9820,7 +9844,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 784 */ + { /* 786 */ "ord", "ord_i_sc", "Parrot_ord_i_sc", @@ -9831,7 +9855,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 785 */ + { /* 787 */ "ord", "ord_i_s_i", "Parrot_ord_i_s_i", @@ -9842,7 +9866,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 786 */ + { /* 788 */ "ord", "ord_i_sc_i", "Parrot_ord_i_sc_i", @@ -9853,7 +9877,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 787 */ + { /* 789 */ "ord", "ord_i_s_ic", "Parrot_ord_i_s_ic", @@ -9864,7 +9888,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 788 */ + { /* 790 */ "ord", "ord_i_sc_ic", "Parrot_ord_i_sc_ic", @@ -9875,7 +9899,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 789 */ + { /* 791 */ "chr", "chr_s_i", "Parrot_chr_s_i", @@ -9886,7 +9910,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 790 */ + { /* 792 */ "chr", "chr_s_ic", "Parrot_chr_s_ic", @@ -9897,7 +9921,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 791 */ + { /* 793 */ "chopn", "chopn_s_s_i", "Parrot_chopn_s_s_i", @@ -9908,7 +9932,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 792 */ + { /* 794 */ "chopn", "chopn_s_sc_i", "Parrot_chopn_s_sc_i", @@ -9919,7 +9943,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 793 */ + { /* 795 */ "chopn", "chopn_s_s_ic", "Parrot_chopn_s_s_ic", @@ -9930,7 +9954,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 794 */ + { /* 796 */ "chopn", "chopn_s_sc_ic", "Parrot_chopn_s_sc_ic", @@ -9941,7 +9965,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 795 */ + { /* 797 */ "concat", "concat_p_p", "Parrot_concat_p_p", @@ -9952,7 +9976,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 796 */ + { /* 798 */ "concat", "concat_p_s", "Parrot_concat_p_s", @@ -9963,7 +9987,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 797 */ + { /* 799 */ "concat", "concat_p_sc", "Parrot_concat_p_sc", @@ -9974,7 +9998,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 798 */ + { /* 800 */ "concat", "concat_s_s_s", "Parrot_concat_s_s_s", @@ -9985,7 +10009,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 799 */ + { /* 801 */ "concat", "concat_s_sc_s", "Parrot_concat_s_sc_s", @@ -9996,7 +10020,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 800 */ + { /* 802 */ "concat", "concat_s_s_sc", "Parrot_concat_s_s_sc", @@ -10007,7 +10031,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 801 */ + { /* 803 */ "concat", "concat_p_p_s", "Parrot_concat_p_p_s", @@ -10018,7 +10042,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 802 */ + { /* 804 */ "concat", "concat_p_p_sc", "Parrot_concat_p_p_sc", @@ -10029,7 +10053,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 803 */ + { /* 805 */ "concat", "concat_p_p_p", "Parrot_concat_p_p_p", @@ -10040,7 +10064,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 804 */ + { /* 806 */ "repeat", "repeat_s_s_i", "Parrot_repeat_s_s_i", @@ -10051,7 +10075,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 805 */ + { /* 807 */ "repeat", "repeat_s_sc_i", "Parrot_repeat_s_sc_i", @@ -10062,7 +10086,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 806 */ + { /* 808 */ "repeat", "repeat_s_s_ic", "Parrot_repeat_s_s_ic", @@ -10073,7 +10097,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 807 */ + { /* 809 */ "repeat", "repeat_s_sc_ic", "Parrot_repeat_s_sc_ic", @@ -10084,7 +10108,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 808 */ + { /* 810 */ "repeat", "repeat_p_p_i", "Parrot_repeat_p_p_i", @@ -10095,7 +10119,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 809 */ + { /* 811 */ "repeat", "repeat_p_p_ic", "Parrot_repeat_p_p_ic", @@ -10106,7 +10130,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 810 */ + { /* 812 */ "repeat", "repeat_p_p_p", "Parrot_repeat_p_p_p", @@ -10117,7 +10141,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 811 */ + { /* 813 */ "repeat", "repeat_p_i", "Parrot_repeat_p_i", @@ -10128,7 +10152,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 812 */ + { /* 814 */ "repeat", "repeat_p_ic", "Parrot_repeat_p_ic", @@ -10139,7 +10163,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 813 */ + { /* 815 */ "repeat", "repeat_p_p", "Parrot_repeat_p_p", @@ -10150,7 +10174,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 814 */ + { /* 816 */ "length", "length_i_s", "Parrot_length_i_s", @@ -10161,7 +10185,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 815 */ + { /* 817 */ "length", "length_i_sc", "Parrot_length_i_sc", @@ -10172,7 +10196,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 816 */ + { /* 818 */ "bytelength", "bytelength_i_s", "Parrot_bytelength_i_s", @@ -10183,7 +10207,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 817 */ + { /* 819 */ "bytelength", "bytelength_i_sc", "Parrot_bytelength_i_sc", @@ -10194,7 +10218,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 818 */ + { /* 820 */ "pin", "pin_s", "Parrot_pin_s", @@ -10205,7 +10229,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 819 */ + { /* 821 */ "unpin", "unpin_s", "Parrot_unpin_s", @@ -10216,7 +10240,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 820 */ + { /* 822 */ "substr", "substr_s_s_i", "Parrot_substr_s_s_i", @@ -10227,7 +10251,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 821 */ + { /* 823 */ "substr", "substr_s_sc_i", "Parrot_substr_s_sc_i", @@ -10238,7 +10262,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 822 */ + { /* 824 */ "substr", "substr_s_s_ic", "Parrot_substr_s_s_ic", @@ -10249,7 +10273,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 823 */ + { /* 825 */ "substr", "substr_s_sc_ic", "Parrot_substr_s_sc_ic", @@ -10260,7 +10284,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 824 */ + { /* 826 */ "substr", "substr_s_s_i_i", "Parrot_substr_s_s_i_i", @@ -10271,7 +10295,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 825 */ + { /* 827 */ "substr", "substr_s_sc_i_i", "Parrot_substr_s_sc_i_i", @@ -10282,7 +10306,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 826 */ + { /* 828 */ "substr", "substr_s_s_ic_i", "Parrot_substr_s_s_ic_i", @@ -10293,7 +10317,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 827 */ + { /* 829 */ "substr", "substr_s_sc_ic_i", "Parrot_substr_s_sc_ic_i", @@ -10304,7 +10328,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 828 */ + { /* 830 */ "substr", "substr_s_s_i_ic", "Parrot_substr_s_s_i_ic", @@ -10315,7 +10339,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 829 */ + { /* 831 */ "substr", "substr_s_sc_i_ic", "Parrot_substr_s_sc_i_ic", @@ -10326,7 +10350,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 830 */ + { /* 832 */ "substr", "substr_s_s_ic_ic", "Parrot_substr_s_s_ic_ic", @@ -10337,7 +10361,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 831 */ + { /* 833 */ "substr", "substr_s_sc_ic_ic", "Parrot_substr_s_sc_ic_ic", @@ -10348,7 +10372,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 832 */ + { /* 834 */ "substr", "substr_s_p_i_i", "Parrot_substr_s_p_i_i", @@ -10359,7 +10383,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 833 */ + { /* 835 */ "substr", "substr_s_p_ic_i", "Parrot_substr_s_p_ic_i", @@ -10370,7 +10394,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 834 */ + { /* 836 */ "substr", "substr_s_p_i_ic", "Parrot_substr_s_p_i_ic", @@ -10381,7 +10405,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 835 */ + { /* 837 */ "substr", "substr_s_p_ic_ic", "Parrot_substr_s_p_ic_ic", @@ -10392,7 +10416,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 836 */ + { /* 838 */ "replace", "replace_s_s_i_i_s", "Parrot_replace_s_s_i_i_s", @@ -10403,7 +10427,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 837 */ + { /* 839 */ "replace", "replace_s_sc_i_i_s", "Parrot_replace_s_sc_i_i_s", @@ -10414,7 +10438,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 838 */ + { /* 840 */ "replace", "replace_s_s_ic_i_s", "Parrot_replace_s_s_ic_i_s", @@ -10425,7 +10449,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 839 */ + { /* 841 */ "replace", "replace_s_sc_ic_i_s", "Parrot_replace_s_sc_ic_i_s", @@ -10436,7 +10460,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 840 */ + { /* 842 */ "replace", "replace_s_s_i_ic_s", "Parrot_replace_s_s_i_ic_s", @@ -10447,7 +10471,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 841 */ + { /* 843 */ "replace", "replace_s_sc_i_ic_s", "Parrot_replace_s_sc_i_ic_s", @@ -10458,7 +10482,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 842 */ + { /* 844 */ "replace", "replace_s_s_ic_ic_s", "Parrot_replace_s_s_ic_ic_s", @@ -10469,7 +10493,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 843 */ + { /* 845 */ "replace", "replace_s_sc_ic_ic_s", "Parrot_replace_s_sc_ic_ic_s", @@ -10480,7 +10504,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 844 */ + { /* 846 */ "replace", "replace_s_s_i_i_sc", "Parrot_replace_s_s_i_i_sc", @@ -10491,7 +10515,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 845 */ + { /* 847 */ "replace", "replace_s_sc_i_i_sc", "Parrot_replace_s_sc_i_i_sc", @@ -10502,7 +10526,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 846 */ + { /* 848 */ "replace", "replace_s_s_ic_i_sc", "Parrot_replace_s_s_ic_i_sc", @@ -10513,7 +10537,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 847 */ + { /* 849 */ "replace", "replace_s_sc_ic_i_sc", "Parrot_replace_s_sc_ic_i_sc", @@ -10524,7 +10548,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 848 */ + { /* 850 */ "replace", "replace_s_s_i_ic_sc", "Parrot_replace_s_s_i_ic_sc", @@ -10535,7 +10559,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 849 */ + { /* 851 */ "replace", "replace_s_sc_i_ic_sc", "Parrot_replace_s_sc_i_ic_sc", @@ -10546,7 +10570,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 850 */ + { /* 852 */ "replace", "replace_s_s_ic_ic_sc", "Parrot_replace_s_s_ic_ic_sc", @@ -10557,7 +10581,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 851 */ + { /* 853 */ "replace", "replace_s_sc_ic_ic_sc", "Parrot_replace_s_sc_ic_ic_sc", @@ -10568,7 +10592,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 852 */ + { /* 854 */ "index", "index_i_s_s", "Parrot_index_i_s_s", @@ -10579,7 +10603,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 853 */ + { /* 855 */ "index", "index_i_sc_s", "Parrot_index_i_sc_s", @@ -10590,7 +10614,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 854 */ + { /* 856 */ "index", "index_i_s_sc", "Parrot_index_i_s_sc", @@ -10601,7 +10625,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 855 */ + { /* 857 */ "index", "index_i_sc_sc", "Parrot_index_i_sc_sc", @@ -10612,7 +10636,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 856 */ + { /* 858 */ "index", "index_i_s_s_i", "Parrot_index_i_s_s_i", @@ -10623,7 +10647,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 857 */ + { /* 859 */ "index", "index_i_sc_s_i", "Parrot_index_i_sc_s_i", @@ -10634,7 +10658,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 858 */ + { /* 860 */ "index", "index_i_s_sc_i", "Parrot_index_i_s_sc_i", @@ -10645,7 +10669,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 859 */ + { /* 861 */ "index", "index_i_sc_sc_i", "Parrot_index_i_sc_sc_i", @@ -10656,7 +10680,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 860 */ + { /* 862 */ "index", "index_i_s_s_ic", "Parrot_index_i_s_s_ic", @@ -10667,7 +10691,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 861 */ + { /* 863 */ "index", "index_i_sc_s_ic", "Parrot_index_i_sc_s_ic", @@ -10678,7 +10702,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 862 */ + { /* 864 */ "index", "index_i_s_sc_ic", "Parrot_index_i_s_sc_ic", @@ -10689,7 +10713,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 863 */ + { /* 865 */ "index", "index_i_sc_sc_ic", "Parrot_index_i_sc_sc_ic", @@ -10700,7 +10724,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 864 */ + { /* 866 */ "sprintf", "sprintf_s_s_p", "Parrot_sprintf_s_s_p", @@ -10711,7 +10735,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 865 */ + { /* 867 */ "sprintf", "sprintf_s_sc_p", "Parrot_sprintf_s_sc_p", @@ -10722,7 +10746,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 866 */ + { /* 868 */ "sprintf", "sprintf_p_p_p", "Parrot_sprintf_p_p_p", @@ -10733,7 +10757,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 867 */ + { /* 869 */ "new", "new_s", "Parrot_new_s", @@ -10744,7 +10768,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 868 */ + { /* 870 */ "new", "new_s_i", "Parrot_new_s_i", @@ -10755,7 +10779,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 869 */ + { /* 871 */ "new", "new_s_ic", "Parrot_new_s_ic", @@ -10766,7 +10790,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 870 */ + { /* 872 */ "stringinfo", "stringinfo_i_s_i", "Parrot_stringinfo_i_s_i", @@ -10777,7 +10801,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 871 */ + { /* 873 */ "stringinfo", "stringinfo_i_sc_i", "Parrot_stringinfo_i_sc_i", @@ -10788,7 +10812,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 872 */ + { /* 874 */ "stringinfo", "stringinfo_i_s_ic", "Parrot_stringinfo_i_s_ic", @@ -10799,7 +10823,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 873 */ + { /* 875 */ "stringinfo", "stringinfo_i_sc_ic", "Parrot_stringinfo_i_sc_ic", @@ -10810,7 +10834,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 874 */ + { /* 876 */ "upcase", "upcase_s_s", "Parrot_upcase_s_s", @@ -10821,7 +10845,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 875 */ + { /* 877 */ "upcase", "upcase_s_sc", "Parrot_upcase_s_sc", @@ -10832,7 +10856,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 876 */ + { /* 878 */ "downcase", "downcase_s_s", "Parrot_downcase_s_s", @@ -10843,7 +10867,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 877 */ + { /* 879 */ "downcase", "downcase_s_sc", "Parrot_downcase_s_sc", @@ -10854,7 +10878,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 878 */ + { /* 880 */ "titlecase", "titlecase_s_s", "Parrot_titlecase_s_s", @@ -10865,7 +10889,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 879 */ + { /* 881 */ "titlecase", "titlecase_s_sc", "Parrot_titlecase_s_sc", @@ -10876,7 +10900,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 880 */ + { /* 882 */ "join", "join_s_s_p", "Parrot_join_s_s_p", @@ -10887,7 +10911,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 881 */ + { /* 883 */ "join", "join_s_sc_p", "Parrot_join_s_sc_p", @@ -10898,7 +10922,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 882 */ + { /* 884 */ "split", "split_p_s_s", "Parrot_split_p_s_s", @@ -10909,7 +10933,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 883 */ + { /* 885 */ "split", "split_p_sc_s", "Parrot_split_p_sc_s", @@ -10920,7 +10944,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 884 */ + { /* 886 */ "split", "split_p_s_sc", "Parrot_split_p_s_sc", @@ -10931,7 +10955,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 885 */ + { /* 887 */ "split", "split_p_sc_sc", "Parrot_split_p_sc_sc", @@ -10942,7 +10966,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 886 */ + { /* 888 */ "encoding", "encoding_i_s", "Parrot_encoding_i_s", @@ -10953,7 +10977,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 887 */ + { /* 889 */ "encoding", "encoding_i_sc", "Parrot_encoding_i_sc", @@ -10964,7 +10988,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 888 */ + { /* 890 */ "encodingname", "encodingname_s_i", "Parrot_encodingname_s_i", @@ -10975,7 +10999,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 889 */ + { /* 891 */ "encodingname", "encodingname_s_ic", "Parrot_encodingname_s_ic", @@ -10986,7 +11010,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 890 */ + { /* 892 */ "find_encoding", "find_encoding_i_s", "Parrot_find_encoding_i_s", @@ -10997,7 +11021,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 891 */ + { /* 893 */ "find_encoding", "find_encoding_i_sc", "Parrot_find_encoding_i_sc", @@ -11008,7 +11032,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 892 */ + { /* 894 */ "trans_encoding", "trans_encoding_s_s_i", "Parrot_trans_encoding_s_s_i", @@ -11019,7 +11043,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 893 */ + { /* 895 */ "trans_encoding", "trans_encoding_s_sc_i", "Parrot_trans_encoding_s_sc_i", @@ -11030,7 +11054,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 894 */ + { /* 896 */ "trans_encoding", "trans_encoding_s_s_ic", "Parrot_trans_encoding_s_s_ic", @@ -11041,7 +11065,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 895 */ + { /* 897 */ "trans_encoding", "trans_encoding_s_sc_ic", "Parrot_trans_encoding_s_sc_ic", @@ -11052,7 +11076,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 896 */ + { /* 898 */ "is_cclass", "is_cclass_i_i_s_i", "Parrot_is_cclass_i_i_s_i", @@ -11063,7 +11087,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 897 */ + { /* 899 */ "is_cclass", "is_cclass_i_ic_s_i", "Parrot_is_cclass_i_ic_s_i", @@ -11074,7 +11098,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 898 */ + { /* 900 */ "is_cclass", "is_cclass_i_i_sc_i", "Parrot_is_cclass_i_i_sc_i", @@ -11085,7 +11109,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 899 */ + { /* 901 */ "is_cclass", "is_cclass_i_ic_sc_i", "Parrot_is_cclass_i_ic_sc_i", @@ -11096,7 +11120,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 900 */ + { /* 902 */ "is_cclass", "is_cclass_i_i_s_ic", "Parrot_is_cclass_i_i_s_ic", @@ -11107,7 +11131,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 901 */ + { /* 903 */ "is_cclass", "is_cclass_i_ic_s_ic", "Parrot_is_cclass_i_ic_s_ic", @@ -11118,7 +11142,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 902 */ + { /* 904 */ "is_cclass", "is_cclass_i_i_sc_ic", "Parrot_is_cclass_i_i_sc_ic", @@ -11129,7 +11153,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 903 */ + { /* 905 */ "is_cclass", "is_cclass_i_ic_sc_ic", "Parrot_is_cclass_i_ic_sc_ic", @@ -11140,7 +11164,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 904 */ + { /* 906 */ "find_cclass", "find_cclass_i_i_s_i_i", "Parrot_find_cclass_i_i_s_i_i", @@ -11151,7 +11175,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 905 */ + { /* 907 */ "find_cclass", "find_cclass_i_ic_s_i_i", "Parrot_find_cclass_i_ic_s_i_i", @@ -11162,7 +11186,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 906 */ + { /* 908 */ "find_cclass", "find_cclass_i_i_sc_i_i", "Parrot_find_cclass_i_i_sc_i_i", @@ -11173,7 +11197,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 907 */ + { /* 909 */ "find_cclass", "find_cclass_i_ic_sc_i_i", "Parrot_find_cclass_i_ic_sc_i_i", @@ -11184,7 +11208,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 908 */ + { /* 910 */ "find_cclass", "find_cclass_i_i_s_ic_i", "Parrot_find_cclass_i_i_s_ic_i", @@ -11195,7 +11219,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 909 */ + { /* 911 */ "find_cclass", "find_cclass_i_ic_s_ic_i", "Parrot_find_cclass_i_ic_s_ic_i", @@ -11206,7 +11230,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 910 */ + { /* 912 */ "find_cclass", "find_cclass_i_i_sc_ic_i", "Parrot_find_cclass_i_i_sc_ic_i", @@ -11217,7 +11241,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 911 */ + { /* 913 */ "find_cclass", "find_cclass_i_ic_sc_ic_i", "Parrot_find_cclass_i_ic_sc_ic_i", @@ -11228,7 +11252,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 912 */ + { /* 914 */ "find_cclass", "find_cclass_i_i_s_i_ic", "Parrot_find_cclass_i_i_s_i_ic", @@ -11239,7 +11263,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 913 */ + { /* 915 */ "find_cclass", "find_cclass_i_ic_s_i_ic", "Parrot_find_cclass_i_ic_s_i_ic", @@ -11250,7 +11274,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 914 */ + { /* 916 */ "find_cclass", "find_cclass_i_i_sc_i_ic", "Parrot_find_cclass_i_i_sc_i_ic", @@ -11261,7 +11285,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 915 */ + { /* 917 */ "find_cclass", "find_cclass_i_ic_sc_i_ic", "Parrot_find_cclass_i_ic_sc_i_ic", @@ -11272,7 +11296,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 916 */ + { /* 918 */ "find_cclass", "find_cclass_i_i_s_ic_ic", "Parrot_find_cclass_i_i_s_ic_ic", @@ -11283,7 +11307,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 917 */ + { /* 919 */ "find_cclass", "find_cclass_i_ic_s_ic_ic", "Parrot_find_cclass_i_ic_s_ic_ic", @@ -11294,7 +11318,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 918 */ + { /* 920 */ "find_cclass", "find_cclass_i_i_sc_ic_ic", "Parrot_find_cclass_i_i_sc_ic_ic", @@ -11305,7 +11329,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 919 */ + { /* 921 */ "find_cclass", "find_cclass_i_ic_sc_ic_ic", "Parrot_find_cclass_i_ic_sc_ic_ic", @@ -11316,7 +11340,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 920 */ + { /* 922 */ "find_not_cclass", "find_not_cclass_i_i_s_i_i", "Parrot_find_not_cclass_i_i_s_i_i", @@ -11327,7 +11351,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 921 */ + { /* 923 */ "find_not_cclass", "find_not_cclass_i_ic_s_i_i", "Parrot_find_not_cclass_i_ic_s_i_i", @@ -11338,7 +11362,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 922 */ + { /* 924 */ "find_not_cclass", "find_not_cclass_i_i_sc_i_i", "Parrot_find_not_cclass_i_i_sc_i_i", @@ -11349,7 +11373,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 923 */ + { /* 925 */ "find_not_cclass", "find_not_cclass_i_ic_sc_i_i", "Parrot_find_not_cclass_i_ic_sc_i_i", @@ -11360,7 +11384,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 924 */ + { /* 926 */ "find_not_cclass", "find_not_cclass_i_i_s_ic_i", "Parrot_find_not_cclass_i_i_s_ic_i", @@ -11371,7 +11395,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 925 */ + { /* 927 */ "find_not_cclass", "find_not_cclass_i_ic_s_ic_i", "Parrot_find_not_cclass_i_ic_s_ic_i", @@ -11382,7 +11406,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 926 */ + { /* 928 */ "find_not_cclass", "find_not_cclass_i_i_sc_ic_i", "Parrot_find_not_cclass_i_i_sc_ic_i", @@ -11393,7 +11417,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 927 */ + { /* 929 */ "find_not_cclass", "find_not_cclass_i_ic_sc_ic_i", "Parrot_find_not_cclass_i_ic_sc_ic_i", @@ -11404,7 +11428,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 928 */ + { /* 930 */ "find_not_cclass", "find_not_cclass_i_i_s_i_ic", "Parrot_find_not_cclass_i_i_s_i_ic", @@ -11415,7 +11439,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 929 */ + { /* 931 */ "find_not_cclass", "find_not_cclass_i_ic_s_i_ic", "Parrot_find_not_cclass_i_ic_s_i_ic", @@ -11426,7 +11450,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 930 */ + { /* 932 */ "find_not_cclass", "find_not_cclass_i_i_sc_i_ic", "Parrot_find_not_cclass_i_i_sc_i_ic", @@ -11437,7 +11461,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 931 */ + { /* 933 */ "find_not_cclass", "find_not_cclass_i_ic_sc_i_ic", "Parrot_find_not_cclass_i_ic_sc_i_ic", @@ -11448,7 +11472,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 932 */ + { /* 934 */ "find_not_cclass", "find_not_cclass_i_i_s_ic_ic", "Parrot_find_not_cclass_i_i_s_ic_ic", @@ -11459,7 +11483,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 933 */ + { /* 935 */ "find_not_cclass", "find_not_cclass_i_ic_s_ic_ic", "Parrot_find_not_cclass_i_ic_s_ic_ic", @@ -11470,7 +11494,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 934 */ + { /* 936 */ "find_not_cclass", "find_not_cclass_i_i_sc_ic_ic", "Parrot_find_not_cclass_i_i_sc_ic_ic", @@ -11481,7 +11505,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 935 */ + { /* 937 */ "find_not_cclass", "find_not_cclass_i_ic_sc_ic_ic", "Parrot_find_not_cclass_i_ic_sc_ic_ic", @@ -11492,7 +11516,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0, 0 }, &core_op_lib }, - { /* 936 */ + { /* 938 */ "escape", "escape_s_s", "Parrot_escape_s_s", @@ -11503,7 +11527,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 937 */ + { /* 939 */ "compose", "compose_s_s", "Parrot_compose_s_s", @@ -11514,7 +11538,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 938 */ + { /* 940 */ "compose", "compose_s_sc", "Parrot_compose_s_sc", @@ -11525,7 +11549,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 939 */ + { /* 941 */ "find_codepoint", "find_codepoint_i_s", "Parrot_find_codepoint_i_s", @@ -11536,7 +11560,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 940 */ + { /* 942 */ "find_codepoint", "find_codepoint_i_sc", "Parrot_find_codepoint_i_sc", @@ -11547,7 +11571,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 941 */ + { /* 943 */ "spawnw", "spawnw_i_s", "Parrot_spawnw_i_s", @@ -11558,7 +11582,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 942 */ + { /* 944 */ "spawnw", "spawnw_i_sc", "Parrot_spawnw_i_sc", @@ -11569,7 +11593,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 943 */ + { /* 945 */ "spawnw", "spawnw_i_p", "Parrot_spawnw_i_p", @@ -11580,7 +11604,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 944 */ + { /* 946 */ "err", "err_i", "Parrot_err_i", @@ -11591,7 +11615,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 945 */ + { /* 947 */ "err", "err_s", "Parrot_err_s", @@ -11602,7 +11626,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 946 */ + { /* 948 */ "err", "err_s_i", "Parrot_err_s_i", @@ -11613,7 +11637,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 947 */ + { /* 949 */ "err", "err_s_ic", "Parrot_err_s_ic", @@ -11624,7 +11648,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 948 */ + { /* 950 */ "time", "time_i", "Parrot_time_i", @@ -11635,7 +11659,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 949 */ + { /* 951 */ "time", "time_n", "Parrot_time_n", @@ -11646,7 +11670,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 950 */ + { /* 952 */ "sleep", "sleep_i", "Parrot_sleep_i", @@ -11657,7 +11681,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 951 */ + { /* 953 */ "sleep", "sleep_ic", "Parrot_sleep_ic", @@ -11668,7 +11692,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 952 */ + { /* 954 */ "sleep", "sleep_n", "Parrot_sleep_n", @@ -11679,7 +11703,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 953 */ + { /* 955 */ "sleep", "sleep_nc", "Parrot_sleep_nc", @@ -11690,7 +11714,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 954 */ + { /* 956 */ "store_lex", "store_lex_s_p", "Parrot_store_lex_s_p", @@ -11701,7 +11725,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 955 */ + { /* 957 */ "store_lex", "store_lex_sc_p", "Parrot_store_lex_sc_p", @@ -11712,7 +11736,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 956 */ + { /* 958 */ "store_lex", "store_lex_s_s", "Parrot_store_lex_s_s", @@ -11723,7 +11747,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 957 */ + { /* 959 */ "store_lex", "store_lex_sc_s", "Parrot_store_lex_sc_s", @@ -11734,7 +11758,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 958 */ + { /* 960 */ "store_lex", "store_lex_s_sc", "Parrot_store_lex_s_sc", @@ -11745,7 +11769,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 959 */ + { /* 961 */ "store_lex", "store_lex_sc_sc", "Parrot_store_lex_sc_sc", @@ -11756,7 +11780,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 960 */ + { /* 962 */ "store_lex", "store_lex_s_i", "Parrot_store_lex_s_i", @@ -11767,7 +11791,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 961 */ + { /* 963 */ "store_lex", "store_lex_sc_i", "Parrot_store_lex_sc_i", @@ -11778,7 +11802,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 962 */ + { /* 964 */ "store_lex", "store_lex_s_ic", "Parrot_store_lex_s_ic", @@ -11789,7 +11813,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 963 */ + { /* 965 */ "store_lex", "store_lex_sc_ic", "Parrot_store_lex_sc_ic", @@ -11800,7 +11824,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 964 */ + { /* 966 */ "store_lex", "store_lex_s_n", "Parrot_store_lex_s_n", @@ -11811,7 +11835,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 965 */ + { /* 967 */ "store_lex", "store_lex_sc_n", "Parrot_store_lex_sc_n", @@ -11822,7 +11846,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 966 */ + { /* 968 */ "store_lex", "store_lex_s_nc", "Parrot_store_lex_s_nc", @@ -11833,7 +11857,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 967 */ + { /* 969 */ "store_lex", "store_lex_sc_nc", "Parrot_store_lex_sc_nc", @@ -11844,7 +11868,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 968 */ + { /* 970 */ "store_dynamic_lex", "store_dynamic_lex_s_p", "Parrot_store_dynamic_lex_s_p", @@ -11855,7 +11879,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 969 */ + { /* 971 */ "store_dynamic_lex", "store_dynamic_lex_sc_p", "Parrot_store_dynamic_lex_sc_p", @@ -11866,7 +11890,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 970 */ + { /* 972 */ "find_lex", "find_lex_p_s", "Parrot_find_lex_p_s", @@ -11877,7 +11901,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 971 */ + { /* 973 */ "find_lex", "find_lex_p_sc", "Parrot_find_lex_p_sc", @@ -11888,7 +11912,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 972 */ + { /* 974 */ "find_lex", "find_lex_s_s", "Parrot_find_lex_s_s", @@ -11899,7 +11923,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 973 */ + { /* 975 */ "find_lex", "find_lex_s_sc", "Parrot_find_lex_s_sc", @@ -11910,7 +11934,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 974 */ + { /* 976 */ "find_lex", "find_lex_i_s", "Parrot_find_lex_i_s", @@ -11921,7 +11945,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 975 */ + { /* 977 */ "find_lex", "find_lex_i_sc", "Parrot_find_lex_i_sc", @@ -11932,7 +11956,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 976 */ + { /* 978 */ "find_lex", "find_lex_n_s", "Parrot_find_lex_n_s", @@ -11943,7 +11967,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 977 */ + { /* 979 */ "find_lex", "find_lex_n_sc", "Parrot_find_lex_n_sc", @@ -11954,7 +11978,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 978 */ + { /* 980 */ "find_dynamic_lex", "find_dynamic_lex_p_s", "Parrot_find_dynamic_lex_p_s", @@ -11965,7 +11989,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 979 */ + { /* 981 */ "find_dynamic_lex", "find_dynamic_lex_p_sc", "Parrot_find_dynamic_lex_p_sc", @@ -11976,7 +12000,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 980 */ + { /* 982 */ "find_caller_lex", "find_caller_lex_p_s", "Parrot_find_caller_lex_p_s", @@ -11987,7 +12011,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 981 */ + { /* 983 */ "find_caller_lex", "find_caller_lex_p_sc", "Parrot_find_caller_lex_p_sc", @@ -11998,7 +12022,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 982 */ + { /* 984 */ "get_namespace", "get_namespace_p", "Parrot_get_namespace_p", @@ -12009,7 +12033,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 983 */ + { /* 985 */ "get_namespace", "get_namespace_p_p", "Parrot_get_namespace_p_p", @@ -12020,7 +12044,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 984 */ + { /* 986 */ "get_namespace", "get_namespace_p_pc", "Parrot_get_namespace_p_pc", @@ -12031,7 +12055,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 985 */ + { /* 987 */ "get_hll_namespace", "get_hll_namespace_p", "Parrot_get_hll_namespace_p", @@ -12042,7 +12066,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 986 */ + { /* 988 */ "get_hll_namespace", "get_hll_namespace_p_p", "Parrot_get_hll_namespace_p_p", @@ -12053,7 +12077,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 987 */ + { /* 989 */ "get_hll_namespace", "get_hll_namespace_p_pc", "Parrot_get_hll_namespace_p_pc", @@ -12064,7 +12088,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 988 */ + { /* 990 */ "get_root_namespace", "get_root_namespace_p", "Parrot_get_root_namespace_p", @@ -12075,7 +12099,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 989 */ + { /* 991 */ "get_root_namespace", "get_root_namespace_p_p", "Parrot_get_root_namespace_p_p", @@ -12086,7 +12110,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 990 */ + { /* 992 */ "get_root_namespace", "get_root_namespace_p_pc", "Parrot_get_root_namespace_p_pc", @@ -12097,7 +12121,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 991 */ + { /* 993 */ "get_global", "get_global_p_s", "Parrot_get_global_p_s", @@ -12108,7 +12132,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 992 */ + { /* 994 */ "get_global", "get_global_p_sc", "Parrot_get_global_p_sc", @@ -12119,7 +12143,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 993 */ + { /* 995 */ "get_global", "get_global_p_p_s", "Parrot_get_global_p_p_s", @@ -12130,7 +12154,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 994 */ + { /* 996 */ "get_global", "get_global_p_pc_s", "Parrot_get_global_p_pc_s", @@ -12141,7 +12165,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 995 */ + { /* 997 */ "get_global", "get_global_p_p_sc", "Parrot_get_global_p_p_sc", @@ -12152,7 +12176,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 996 */ + { /* 998 */ "get_global", "get_global_p_pc_sc", "Parrot_get_global_p_pc_sc", @@ -12163,7 +12187,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 997 */ + { /* 999 */ "get_hll_global", "get_hll_global_p_s", "Parrot_get_hll_global_p_s", @@ -12174,7 +12198,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 998 */ + { /* 1000 */ "get_hll_global", "get_hll_global_p_sc", "Parrot_get_hll_global_p_sc", @@ -12185,7 +12209,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 999 */ + { /* 1001 */ "get_hll_global", "get_hll_global_p_p_s", "Parrot_get_hll_global_p_p_s", @@ -12196,7 +12220,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1000 */ + { /* 1002 */ "get_hll_global", "get_hll_global_p_pc_s", "Parrot_get_hll_global_p_pc_s", @@ -12207,7 +12231,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1001 */ + { /* 1003 */ "get_hll_global", "get_hll_global_p_p_sc", "Parrot_get_hll_global_p_p_sc", @@ -12218,7 +12242,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1002 */ + { /* 1004 */ "get_hll_global", "get_hll_global_p_pc_sc", "Parrot_get_hll_global_p_pc_sc", @@ -12229,7 +12253,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1003 */ + { /* 1005 */ "get_root_global", "get_root_global_p_s", "Parrot_get_root_global_p_s", @@ -12240,7 +12264,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1004 */ + { /* 1006 */ "get_root_global", "get_root_global_p_sc", "Parrot_get_root_global_p_sc", @@ -12251,7 +12275,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1005 */ + { /* 1007 */ "get_root_global", "get_root_global_p_p_s", "Parrot_get_root_global_p_p_s", @@ -12262,7 +12286,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1006 */ + { /* 1008 */ "get_root_global", "get_root_global_p_pc_s", "Parrot_get_root_global_p_pc_s", @@ -12273,7 +12297,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1007 */ + { /* 1009 */ "get_root_global", "get_root_global_p_p_sc", "Parrot_get_root_global_p_p_sc", @@ -12284,7 +12308,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1008 */ + { /* 1010 */ "get_root_global", "get_root_global_p_pc_sc", "Parrot_get_root_global_p_pc_sc", @@ -12295,7 +12319,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1009 */ + { /* 1011 */ "set_global", "set_global_s_p", "Parrot_set_global_s_p", @@ -12306,7 +12330,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1010 */ + { /* 1012 */ "set_global", "set_global_sc_p", "Parrot_set_global_sc_p", @@ -12317,7 +12341,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1011 */ + { /* 1013 */ "set_global", "set_global_p_s_p", "Parrot_set_global_p_s_p", @@ -12328,7 +12352,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1012 */ + { /* 1014 */ "set_global", "set_global_pc_s_p", "Parrot_set_global_pc_s_p", @@ -12339,7 +12363,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1013 */ + { /* 1015 */ "set_global", "set_global_p_sc_p", "Parrot_set_global_p_sc_p", @@ -12350,7 +12374,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1014 */ + { /* 1016 */ "set_global", "set_global_pc_sc_p", "Parrot_set_global_pc_sc_p", @@ -12361,7 +12385,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1015 */ + { /* 1017 */ "set_hll_global", "set_hll_global_s_p", "Parrot_set_hll_global_s_p", @@ -12372,7 +12396,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1016 */ + { /* 1018 */ "set_hll_global", "set_hll_global_sc_p", "Parrot_set_hll_global_sc_p", @@ -12383,7 +12407,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1017 */ + { /* 1019 */ "set_hll_global", "set_hll_global_p_s_p", "Parrot_set_hll_global_p_s_p", @@ -12394,7 +12418,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1018 */ + { /* 1020 */ "set_hll_global", "set_hll_global_pc_s_p", "Parrot_set_hll_global_pc_s_p", @@ -12405,7 +12429,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1019 */ + { /* 1021 */ "set_hll_global", "set_hll_global_p_sc_p", "Parrot_set_hll_global_p_sc_p", @@ -12416,7 +12440,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1020 */ + { /* 1022 */ "set_hll_global", "set_hll_global_pc_sc_p", "Parrot_set_hll_global_pc_sc_p", @@ -12427,7 +12451,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1021 */ + { /* 1023 */ "set_root_global", "set_root_global_s_p", "Parrot_set_root_global_s_p", @@ -12438,7 +12462,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1022 */ + { /* 1024 */ "set_root_global", "set_root_global_sc_p", "Parrot_set_root_global_sc_p", @@ -12449,7 +12473,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1023 */ + { /* 1025 */ "set_root_global", "set_root_global_p_s_p", "Parrot_set_root_global_p_s_p", @@ -12460,7 +12484,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1024 */ + { /* 1026 */ "set_root_global", "set_root_global_pc_s_p", "Parrot_set_root_global_pc_s_p", @@ -12471,7 +12495,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1025 */ + { /* 1027 */ "set_root_global", "set_root_global_p_sc_p", "Parrot_set_root_global_p_sc_p", @@ -12482,7 +12506,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1026 */ + { /* 1028 */ "set_root_global", "set_root_global_pc_sc_p", "Parrot_set_root_global_pc_sc_p", @@ -12493,7 +12517,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1027 */ + { /* 1029 */ "find_name", "find_name_p_s", "Parrot_find_name_p_s", @@ -12504,7 +12528,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1028 */ + { /* 1030 */ "find_name", "find_name_p_sc", "Parrot_find_name_p_sc", @@ -12515,7 +12539,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1029 */ + { /* 1031 */ "find_sub_not_null", "find_sub_not_null_p_s", "Parrot_find_sub_not_null_p_s", @@ -12526,7 +12550,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1030 */ + { /* 1032 */ "find_sub_not_null", "find_sub_not_null_p_sc", "Parrot_find_sub_not_null_p_sc", @@ -12537,7 +12561,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1031 */ + { /* 1033 */ "trap", "trap", "Parrot_trap", @@ -12548,7 +12572,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 1032 */ + { /* 1034 */ "set_label", "set_label_p_ic", "Parrot_set_label_p_ic", @@ -12559,7 +12583,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 1 }, &core_op_lib }, - { /* 1033 */ + { /* 1035 */ "get_label", "get_label_i_p", "Parrot_get_label_i_p", @@ -12570,7 +12594,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1034 */ + { /* 1036 */ "get_id", "get_id_i_p", "Parrot_get_id_i_p", @@ -12581,7 +12605,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1035 */ + { /* 1037 */ "get_id", "get_id_i_pc", "Parrot_get_id_i_pc", @@ -12592,7 +12616,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0 }, &core_op_lib }, - { /* 1036 */ + { /* 1038 */ "fetch", "fetch_p_p_p_p", "Parrot_fetch_p_p_p_p", @@ -12603,7 +12627,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1037 */ + { /* 1039 */ "fetch", "fetch_p_pc_p_p", "Parrot_fetch_p_pc_p_p", @@ -12614,7 +12638,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1038 */ + { /* 1040 */ "fetch", "fetch_p_p_pc_p", "Parrot_fetch_p_p_pc_p", @@ -12625,7 +12649,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1039 */ + { /* 1041 */ "fetch", "fetch_p_pc_pc_p", "Parrot_fetch_p_pc_pc_p", @@ -12636,7 +12660,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1040 */ + { /* 1042 */ "fetch", "fetch_p_p_p_pc", "Parrot_fetch_p_p_p_pc", @@ -12647,7 +12671,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1041 */ + { /* 1043 */ "fetch", "fetch_p_pc_p_pc", "Parrot_fetch_p_pc_p_pc", @@ -12658,7 +12682,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1042 */ + { /* 1044 */ "fetch", "fetch_p_p_pc_pc", "Parrot_fetch_p_p_pc_pc", @@ -12669,7 +12693,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1043 */ + { /* 1045 */ "fetch", "fetch_p_pc_pc_pc", "Parrot_fetch_p_pc_pc_pc", @@ -12680,7 +12704,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1044 */ + { /* 1046 */ "fetch", "fetch_p_p_i_p", "Parrot_fetch_p_p_i_p", @@ -12691,7 +12715,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1045 */ + { /* 1047 */ "fetch", "fetch_p_pc_i_p", "Parrot_fetch_p_pc_i_p", @@ -12702,7 +12726,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1046 */ + { /* 1048 */ "fetch", "fetch_p_p_ic_p", "Parrot_fetch_p_p_ic_p", @@ -12713,7 +12737,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1047 */ + { /* 1049 */ "fetch", "fetch_p_pc_ic_p", "Parrot_fetch_p_pc_ic_p", @@ -12724,7 +12748,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1048 */ + { /* 1050 */ "fetch", "fetch_p_p_i_pc", "Parrot_fetch_p_p_i_pc", @@ -12735,7 +12759,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1049 */ + { /* 1051 */ "fetch", "fetch_p_pc_i_pc", "Parrot_fetch_p_pc_i_pc", @@ -12746,7 +12770,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1050 */ + { /* 1052 */ "fetch", "fetch_p_p_ic_pc", "Parrot_fetch_p_p_ic_pc", @@ -12757,7 +12781,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1051 */ + { /* 1053 */ "fetch", "fetch_p_pc_ic_pc", "Parrot_fetch_p_pc_ic_pc", @@ -12768,7 +12792,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1052 */ + { /* 1054 */ "fetch", "fetch_p_p_s_p", "Parrot_fetch_p_p_s_p", @@ -12779,7 +12803,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1053 */ + { /* 1055 */ "fetch", "fetch_p_pc_s_p", "Parrot_fetch_p_pc_s_p", @@ -12790,7 +12814,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1054 */ + { /* 1056 */ "fetch", "fetch_p_p_sc_p", "Parrot_fetch_p_p_sc_p", @@ -12801,7 +12825,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1055 */ + { /* 1057 */ "fetch", "fetch_p_pc_sc_p", "Parrot_fetch_p_pc_sc_p", @@ -12812,7 +12836,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1056 */ + { /* 1058 */ "fetch", "fetch_p_p_s_pc", "Parrot_fetch_p_p_s_pc", @@ -12823,7 +12847,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1057 */ + { /* 1059 */ "fetch", "fetch_p_pc_s_pc", "Parrot_fetch_p_pc_s_pc", @@ -12834,7 +12858,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1058 */ + { /* 1060 */ "fetch", "fetch_p_p_sc_pc", "Parrot_fetch_p_p_sc_pc", @@ -12845,7 +12869,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1059 */ + { /* 1061 */ "fetch", "fetch_p_pc_sc_pc", "Parrot_fetch_p_pc_sc_pc", @@ -12856,7 +12880,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1060 */ + { /* 1062 */ "vivify", "vivify_p_p_p_p", "Parrot_vivify_p_p_p_p", @@ -12867,7 +12891,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1061 */ + { /* 1063 */ "vivify", "vivify_p_pc_p_p", "Parrot_vivify_p_pc_p_p", @@ -12878,7 +12902,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1062 */ + { /* 1064 */ "vivify", "vivify_p_p_pc_p", "Parrot_vivify_p_p_pc_p", @@ -12889,7 +12913,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1063 */ + { /* 1065 */ "vivify", "vivify_p_pc_pc_p", "Parrot_vivify_p_pc_pc_p", @@ -12900,7 +12924,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1064 */ + { /* 1066 */ "vivify", "vivify_p_p_p_pc", "Parrot_vivify_p_p_p_pc", @@ -12911,7 +12935,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1065 */ + { /* 1067 */ "vivify", "vivify_p_pc_p_pc", "Parrot_vivify_p_pc_p_pc", @@ -12922,7 +12946,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1066 */ + { /* 1068 */ "vivify", "vivify_p_p_pc_pc", "Parrot_vivify_p_p_pc_pc", @@ -12933,7 +12957,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1067 */ + { /* 1069 */ "vivify", "vivify_p_pc_pc_pc", "Parrot_vivify_p_pc_pc_pc", @@ -12944,7 +12968,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1068 */ + { /* 1070 */ "vivify", "vivify_p_p_i_p", "Parrot_vivify_p_p_i_p", @@ -12955,7 +12979,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1069 */ + { /* 1071 */ "vivify", "vivify_p_pc_i_p", "Parrot_vivify_p_pc_i_p", @@ -12966,7 +12990,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1070 */ + { /* 1072 */ "vivify", "vivify_p_p_ic_p", "Parrot_vivify_p_p_ic_p", @@ -12977,7 +13001,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1071 */ + { /* 1073 */ "vivify", "vivify_p_pc_ic_p", "Parrot_vivify_p_pc_ic_p", @@ -12988,7 +13012,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1072 */ + { /* 1074 */ "vivify", "vivify_p_p_i_pc", "Parrot_vivify_p_p_i_pc", @@ -12999,7 +13023,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1073 */ + { /* 1075 */ "vivify", "vivify_p_pc_i_pc", "Parrot_vivify_p_pc_i_pc", @@ -13010,7 +13034,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1074 */ + { /* 1076 */ "vivify", "vivify_p_p_ic_pc", "Parrot_vivify_p_p_ic_pc", @@ -13021,7 +13045,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1075 */ + { /* 1077 */ "vivify", "vivify_p_pc_ic_pc", "Parrot_vivify_p_pc_ic_pc", @@ -13032,7 +13056,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1076 */ + { /* 1078 */ "vivify", "vivify_p_p_s_p", "Parrot_vivify_p_p_s_p", @@ -13043,7 +13067,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1077 */ + { /* 1079 */ "vivify", "vivify_p_pc_s_p", "Parrot_vivify_p_pc_s_p", @@ -13054,7 +13078,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1078 */ + { /* 1080 */ "vivify", "vivify_p_p_sc_p", "Parrot_vivify_p_p_sc_p", @@ -13065,7 +13089,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1079 */ + { /* 1081 */ "vivify", "vivify_p_pc_sc_p", "Parrot_vivify_p_pc_sc_p", @@ -13076,7 +13100,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1080 */ + { /* 1082 */ "vivify", "vivify_p_p_s_pc", "Parrot_vivify_p_p_s_pc", @@ -13087,7 +13111,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1081 */ + { /* 1083 */ "vivify", "vivify_p_pc_s_pc", "Parrot_vivify_p_pc_s_pc", @@ -13098,7 +13122,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1082 */ + { /* 1084 */ "vivify", "vivify_p_p_sc_pc", "Parrot_vivify_p_p_sc_pc", @@ -13109,7 +13133,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1083 */ + { /* 1085 */ "vivify", "vivify_p_pc_sc_pc", "Parrot_vivify_p_pc_sc_pc", @@ -13120,7 +13144,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0, 0 }, &core_op_lib }, - { /* 1084 */ + { /* 1086 */ "new", "new_p_s_i", "Parrot_new_p_s_i", @@ -13131,7 +13155,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1085 */ + { /* 1087 */ "new", "new_p_sc_i", "Parrot_new_p_sc_i", @@ -13142,7 +13166,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1086 */ + { /* 1088 */ "new", "new_p_s_ic", "Parrot_new_p_s_ic", @@ -13153,7 +13177,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1087 */ + { /* 1089 */ "new", "new_p_sc_ic", "Parrot_new_p_sc_ic", @@ -13164,7 +13188,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1088 */ + { /* 1090 */ "new", "new_p_p_i", "Parrot_new_p_p_i", @@ -13175,7 +13199,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1089 */ + { /* 1091 */ "new", "new_p_pc_i", "Parrot_new_p_pc_i", @@ -13186,7 +13210,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1090 */ + { /* 1092 */ "new", "new_p_p_ic", "Parrot_new_p_p_ic", @@ -13197,7 +13221,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1091 */ + { /* 1093 */ "new", "new_p_pc_ic", "Parrot_new_p_pc_ic", @@ -13208,7 +13232,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1092 */ + { /* 1094 */ "root_new", "root_new_p_p_i", "Parrot_root_new_p_p_i", @@ -13219,7 +13243,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1093 */ + { /* 1095 */ "root_new", "root_new_p_pc_i", "Parrot_root_new_p_pc_i", @@ -13230,7 +13254,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1094 */ + { /* 1096 */ "root_new", "root_new_p_p_ic", "Parrot_root_new_p_p_ic", @@ -13241,7 +13265,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1095 */ + { /* 1097 */ "root_new", "root_new_p_pc_ic", "Parrot_root_new_p_pc_ic", @@ -13252,7 +13276,7 @@ static op_info_t core_op_info_table[1101] = { { 0, 0, 0 }, &core_op_lib }, - { /* 1096 */ + { /* 1098 */ "receive", "receive_p", "Parrot_receive_p", @@ -13263,7 +13287,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 1097 */ + { /* 1099 */ "wait", "wait_p", "Parrot_wait_p", @@ -13274,7 +13298,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 1098 */ + { /* 1100 */ "wait", "wait_pc", "Parrot_wait_pc", @@ -13285,7 +13309,7 @@ static op_info_t core_op_info_table[1101] = { { 0 }, &core_op_lib }, - { /* 1099 */ + { /* 1101 */ "pass", "pass", "Parrot_pass", @@ -14380,6 +14404,24 @@ Parrot_errorsoff_ic(opcode_t *cur_opcode, PARROT_INTERP) { return (opcode_t *)cur_opcode + 2; } +opcode_t * +Parrot_set_runcore_s(opcode_t *cur_opcode, PARROT_INTERP) { + Parrot_runcore_switch(interp, SREG(1)); + interp->resume_offset = REL_PC + 2; interp->resume_flag = 1;; + return (opcode_t *)0; +; + return (opcode_t *)cur_opcode + 2; +} + +opcode_t * +Parrot_set_runcore_sc(opcode_t *cur_opcode, PARROT_INTERP) { + Parrot_runcore_switch(interp, SCONST(1)); + interp->resume_offset = REL_PC + 2; interp->resume_flag = 1;; + return (opcode_t *)0; +; + return (opcode_t *)cur_opcode + 2; +} + opcode_t * Parrot_runinterp_p_i(opcode_t *cur_opcode, PARROT_INTERP) { Interp * const new_interp = (Interp *)VTABLE_get_pointer(interp, PREG(1)); @@ -24020,7 +24062,7 @@ op_lib_t core_op_lib = { 3, /* major_version */ 10, /* minor_version */ 0, /* patch_version */ - 1100, /* op_count */ + 1102, /* op_count */ core_op_info_table, /* op_info_table */ core_op_func_table, /* op_func_table */ get_op /* op_code() */ diff --git a/t/compilers/opsc/06-opsfile.t b/t/compilers/opsc/06-opsfile.t index 5b0a4cb4e5..3102bbbb54 100644 --- a/t/compilers/opsc/06-opsfile.t +++ b/t/compilers/opsc/06-opsfile.t @@ -21,7 +21,7 @@ my @ops := $f.ops; say( "# Parsed " ~ +@ops); # There is more than 200 ops in this 2 files. # Feel free to update number if you change them. -ok(+@ops == 271, "Ops parsed correctly"); +ok(+@ops == 273, "Ops parsed correctly"); say('# ' ~ +@ops); my $op := @ops[0];