[svn:parrot] r47420 - in branches/gc_massacre: compilers/imcc compilers/pct/src/PAST compilers/pct/src/PCT config/gen/config_pm config/gen/makefiles include/parrot include/parrot/oplib src src/dynoplibs src/interp src/ops src/pmc t/codingstd t/op t/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun Jun 6 04:04:11 UTC 2010
Author: bacek
Date: Sun Jun 6 04:04:09 2010
New Revision: 47420
URL: https://trac.parrot.org/parrot/changeset/47420
Log:
Merge branch 'master' into gc_massacre
Modified:
branches/gc_massacre/compilers/imcc/imc.h
branches/gc_massacre/compilers/imcc/parser_util.c
branches/gc_massacre/compilers/imcc/pbc.c
branches/gc_massacre/compilers/imcc/symreg.c
branches/gc_massacre/compilers/pct/src/PAST/Compiler.pir
branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir
branches/gc_massacre/config/gen/config_pm/config_pir.in
branches/gc_massacre/config/gen/makefiles/root.in
branches/gc_massacre/include/parrot/gc_api.h
branches/gc_massacre/include/parrot/oplib/core_ops.h
branches/gc_massacre/include/parrot/oplib/ops.h
branches/gc_massacre/include/parrot/opsenum.h
branches/gc_massacre/src/dynoplibs/Rules.in
branches/gc_massacre/src/dynoplibs/io.ops
branches/gc_massacre/src/interp/inter_misc.c
branches/gc_massacre/src/ops/core.ops
branches/gc_massacre/src/ops/core_ops.c
branches/gc_massacre/src/ops/io.ops
branches/gc_massacre/src/packfile.c
branches/gc_massacre/src/pmc/imageio.pmc
branches/gc_massacre/src/pmc/orderedhash.pmc
branches/gc_massacre/t/codingstd/c_function_docs.t
branches/gc_massacre/t/op/sprintf.t
branches/gc_massacre/t/op/string_cs.t
branches/gc_massacre/t/pmc/eval.t
branches/gc_massacre/t/pmc/filehandle.t
branches/gc_massacre/t/pmc/fixedintegerarray.t
branches/gc_massacre/t/pmc/io.t
branches/gc_massacre/t/pmc/resizableintegerarray.t
branches/gc_massacre/t/pmc/resizablepmcarray.t
branches/gc_massacre/t/pmc/stringhandle.t
Modified: branches/gc_massacre/compilers/imcc/imc.h
==============================================================================
--- branches/gc_massacre/compilers/imcc/imc.h Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/compilers/imcc/imc.h Sun Jun 6 04:04:09 2010 (r47420)
@@ -186,6 +186,16 @@
/* HEADERIZER BEGIN: compilers/imcc/parser_util.c */
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
+PARROT_EXPORT
+PARROT_CANNOT_RETURN_NULL
+void * imcc_compile_file(PARROT_INTERP,
+ ARGIN(const char *fullname),
+ ARGOUT(STRING **error_message))
+ __attribute__nonnull__(1)
+ __attribute__nonnull__(2)
+ __attribute__nonnull__(3)
+ FUNC_MODIFIES(*error_message);
+
PARROT_WARN_UNUSED_RESULT
int check_op(PARROT_INTERP,
ARGOUT(char *fullname),
@@ -210,20 +220,6 @@
__attribute__nonnull__(4)
FUNC_MODIFIES(*error_message);
-PARROT_CANNOT_RETURN_NULL
-void * IMCC_compile_file(PARROT_INTERP, ARGIN(const char *s))
- __attribute__nonnull__(1)
- __attribute__nonnull__(2);
-
-PARROT_CANNOT_RETURN_NULL
-void * IMCC_compile_file_s(PARROT_INTERP,
- ARGIN(const char *s),
- ARGOUT(STRING **error_message))
- __attribute__nonnull__(1)
- __attribute__nonnull__(2)
- __attribute__nonnull__(3)
- FUNC_MODIFIES(*error_message);
-
PARROT_WARN_UNUSED_RESULT
PARROT_CANNOT_RETURN_NULL
PMC * imcc_compile_pasm(PARROT_INTERP, ARGIN(const char *s))
@@ -335,6 +331,10 @@
FUNC_MODIFIES(*unit)
FUNC_MODIFIES(*r);
+#define ASSERT_ARGS_imcc_compile_file __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
+ PARROT_ASSERT_ARG(interp) \
+ , PARROT_ASSERT_ARG(fullname) \
+ , PARROT_ASSERT_ARG(error_message))
#define ASSERT_ARGS_check_op __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(fullname) \
@@ -344,13 +344,6 @@
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(s) \
, PARROT_ASSERT_ARG(error_message))
-#define ASSERT_ARGS_IMCC_compile_file __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(interp) \
- , PARROT_ASSERT_ARG(s))
-#define ASSERT_ARGS_IMCC_compile_file_s __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(interp) \
- , PARROT_ASSERT_ARG(s) \
- , PARROT_ASSERT_ARG(error_message))
#define ASSERT_ARGS_imcc_compile_pasm __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(s))
Modified: branches/gc_massacre/compilers/imcc/parser_util.c
==============================================================================
--- branches/gc_massacre/compilers/imcc/parser_util.c Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/compilers/imcc/parser_util.c Sun Jun 6 04:04:09 2010 (r47420)
@@ -58,15 +58,6 @@
FUNC_MODIFIES(*unit)
FUNC_MODIFIES(*r);
-PARROT_CANNOT_RETURN_NULL
-static void * imcc_compile_file(PARROT_INTERP,
- ARGIN(const char *fullname),
- ARGOUT(STRING **error_message))
- __attribute__nonnull__(1)
- __attribute__nonnull__(2)
- __attribute__nonnull__(3)
- FUNC_MODIFIES(*error_message);
-
static void imcc_destroy_macro_values(ARGMOD(void *value))
__attribute__nonnull__(1)
FUNC_MODIFIES(*value);
@@ -98,10 +89,6 @@
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(unit) \
, PARROT_ASSERT_ARG(r))
-#define ASSERT_ARGS_imcc_compile_file __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(interp) \
- , PARROT_ASSERT_ARG(fullname) \
- , PARROT_ASSERT_ARG(error_message))
#define ASSERT_ARGS_imcc_destroy_macro_values __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(value))
#define ASSERT_ARGS_try_rev_cmp __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
@@ -232,6 +219,9 @@
=item C<static Instruction * var_arg_ins(PARROT_INTERP, IMC_Unit *unit, const
char *name, SymReg **r, int n, int emit)>
+Create an C<Instruction> object for an instruction that takes a variable
+number of arguments.
+
=cut
*/
@@ -686,6 +676,8 @@
=item C<PMC * IMCC_compile_pir_s(PARROT_INTERP, const char *s, STRING
**error_message)>
+Compile PIR code from a C string. Returns errors in the <STRING> provided.
+
=cut
*/
@@ -705,6 +697,8 @@
=item C<PMC * IMCC_compile_pasm_s(PARROT_INTERP, const char *s, STRING
**error_message)>
+Compile PASM code from a C string. Returns errors in the <STRING> provided.
+
=cut
*/
@@ -723,6 +717,8 @@
=item C<PMC * imcc_compile_pasm_ex(PARROT_INTERP, const char *s)>
+Compile PASM code from a C string. Throws an exception upon errors.
+
=cut
*/
@@ -748,6 +744,8 @@
=item C<PMC * imcc_compile_pir_ex(PARROT_INTERP, const char *s)>
+Compile PIR code from a C string. Throws an exception upon errors.
+
=cut
*/
@@ -771,8 +769,8 @@
/*
-=item C<static void * imcc_compile_file(PARROT_INTERP, const char *fullname,
-STRING **error_message)>
+=item C<void * imcc_compile_file(PARROT_INTERP, const char *fullname, STRING
+**error_message)>
Compile a file by filename (can be either PASM or IMCC code)
@@ -780,8 +778,9 @@
*/
+PARROT_EXPORT
PARROT_CANNOT_RETURN_NULL
-static void *
+void *
imcc_compile_file(PARROT_INTERP, ARGIN(const char *fullname),
ARGOUT(STRING **error_message))
{
@@ -886,44 +885,6 @@
/*
-=item C<void * IMCC_compile_file(PARROT_INTERP, const char *s)>
-
-Note: This function is provided for backward compatibility. This
-function can go away in future.
-
-=cut
-
-*/
-
-PARROT_CANNOT_RETURN_NULL
-void *
-IMCC_compile_file(PARROT_INTERP, ARGIN(const char *s))
-{
- ASSERT_ARGS(IMCC_compile_file)
- STRING *error_message;
- return imcc_compile_file(interp, s, &error_message);
-}
-
-/*
-
-=item C<void * IMCC_compile_file_s(PARROT_INTERP, const char *s, STRING
-**error_message)>
-
-=cut
-
-*/
-
-PARROT_CANNOT_RETURN_NULL
-void *
-IMCC_compile_file_s(PARROT_INTERP, ARGIN(const char *s),
- ARGOUT(STRING **error_message))
-{
- ASSERT_ARGS(IMCC_compile_file_s)
- return imcc_compile_file(interp, s, error_message);
-}
-
-/*
-
=item C<void register_compilers(PARROT_INTERP)>
Register additional compilers with the interpreter
@@ -1064,6 +1025,8 @@
=item C<static const char * try_rev_cmp(const char *name, SymReg **r)>
+Try to find a valid op doing the same thing by reversing comparisons.
+
=cut
*/
@@ -1133,6 +1096,8 @@
=item C<void imcc_init(PARROT_INTERP)>
+Initialize IMCC with Parrot by registering it as a PIR and PASM compiler.
+
=cut
*/
@@ -1181,6 +1146,8 @@
=item C<void imcc_destroy(PARROT_INTERP)>
+Deallocate memory associated with IMCC.
+
=cut
*/
Modified: branches/gc_massacre/compilers/imcc/pbc.c
==============================================================================
--- branches/gc_massacre/compilers/imcc/pbc.c Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/compilers/imcc/pbc.c Sun Jun 6 04:04:09 2010 (r47420)
@@ -736,6 +736,8 @@
=item C<static subs_t * find_sub_by_subid(PARROT_INTERP, const char *lookup,
const subs_t *sym, int *pc)>
+Find the first sub in the current code segment with a given subid.
+
=cut
*/
@@ -985,6 +987,9 @@
=item C<STRING * IMCC_string_from__STRINGC(PARROT_INTERP, char *buf)>
+Creates a Parrot C<STRING> from a string constant found in PIR or PASM. This
+includes cases where charset and/or encoding are specified.
+
=cut
*/
Modified: branches/gc_massacre/compilers/imcc/symreg.c
==============================================================================
--- branches/gc_massacre/compilers/imcc/symreg.c Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/compilers/imcc/symreg.c Sun Jun 6 04:04:09 2010 (r47420)
@@ -824,6 +824,9 @@
=item C<static int int_overflows(const SymReg *r)>
+Determine whether an integer constant would overflow an C<INTVAL>
+register.
+
=cut
*/
Modified: branches/gc_massacre/compilers/pct/src/PAST/Compiler.pir
==============================================================================
--- branches/gc_massacre/compilers/pct/src/PAST/Compiler.pir Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/compilers/pct/src/PAST/Compiler.pir Sun Jun 6 04:04:09 2010 (r47420)
@@ -206,9 +206,11 @@
blockpast = new 'ResizablePMCArray'
set_global '@?BLOCK', blockpast
have_blockpast:
- null $P0
- set_global '$?SUB', $P0
- .tailcall self.'as_post'(past, 'rtype'=>'v')
+ .lex '@*BLOCKPAST', blockpast
+ null $P99
+ .lex '$*SUB', $P99
+ $P1 = self.'as_post'(past, 'rtype'=>'v')
+ .return ($P1)
.end
=item escape(str)
@@ -785,9 +787,9 @@
.param pmc node
.param pmc options :slurpy :named
- ## add current block node to @?BLOCK
+ ## add current block node to @*BLOCKPAST
.local pmc blockpast
- blockpast = get_global '@?BLOCK'
+ blockpast = find_dynamic_lex '@*BLOCKPAST'
unshift blockpast, node
.local string name, pirflags, blocktype
@@ -853,8 +855,8 @@
## determine the outer POST::Sub for the new one
.local pmc outerpost
- outerpost = get_global '$?SUB'
- set_global '$?SUB', bpost
+ outerpost = find_dynamic_lex '$*SUB'
+ .lex '$*SUB', bpost
.local int islexical
islexical = node.'lexical'()
@@ -985,7 +987,6 @@
loadinit_done:
## restore previous outer scope and symtable
- set_global '$?SUB', outerpost
setattribute self, '%!symtable', outersym
## return block or block result
@@ -1026,7 +1027,7 @@
bpost.'push_pirop'('call', blockreg, arglist :flat, 'result'=>result)
block_done:
- ## remove current block from @?BLOCK
+ ## remove current block from @*BLOCKPAST
$P99 = shift blockpast
.return (bpost)
.end
@@ -2038,7 +2039,7 @@
.local string blockname
blockname = ''
.local pmc it
- $P0 = get_global '@?BLOCK'
+ $P0 = find_dynamic_lex '@*BLOCKPAST'
it = iter $P0
scope_error_block_loop:
unless it goto scope_error_2
@@ -2108,7 +2109,7 @@
## get the current sub
.local pmc subpost
- subpost = get_global '$?SUB'
+ subpost = find_dynamic_lex '$*SUB'
## determine lexical, register, and parameter names
.local string named, pname, has_pname
@@ -2248,7 +2249,7 @@
# treat it as that type.
.local string name
name = node.'name'()
- $P0 = get_global '@?BLOCK'
+ $P0 = find_dynamic_lex '@*BLOCKPAST'
$P0 = $P0[0]
$P0 = $P0.'symtable'()
unless $P0 goto contextual
Modified: branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir
==============================================================================
--- branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/compilers/pct/src/PCT/HLLCompiler.pir Sun Jun 6 04:04:09 2010 (r47420)
@@ -805,6 +805,7 @@
=cut
+.include 'except_severity.pasm'
.sub 'command_line' :method
.param pmc args
.param pmc adverbs :slurpy :named
@@ -914,15 +915,26 @@
# If we get an uncaught exception in the program and the HLL provides
# a backtrace method, we end up here. We pass it the exception object
- # so it can render a backtrace.
+ # so it can render a backtrace, unless the severity is exit or warning
+ # in which case it needs special handling.
uncaught_exception:
.get_results ($P0)
pop_eh
+ $P1 = getinterp
+ $P1 = $P1.'stdhandle'(.PIO_STDERR_FILENO)
+ $I0 = $P0['severity']
+ if $I0 == .EXCEPT_EXIT goto do_exit
$S0 = self.'backtrace'($P0)
- $P0 = getinterp
- $P0 = $P0.'stdhandle'(.PIO_STDERR_FILENO)
- print $P0, $S0
+ print $P1, $S0
+ if $I0 <= .EXCEPT_WARNING goto do_warning
exit 1
+ do_exit:
+ $I0 = $P0['exit_code']
+ exit $I0
+ do_warning:
+ $P0 = $P0["resume"]
+ push_eh uncaught_exception # Otherwise we get errors about no handler to delete
+ $P0()
.end
Modified: branches/gc_massacre/config/gen/config_pm/config_pir.in
==============================================================================
--- branches/gc_massacre/config/gen/config_pm/config_pir.in Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/config/gen/config_pm/config_pir.in Sun Jun 6 04:04:09 2010 (r47420)
@@ -47,19 +47,25 @@
$S0 = concat prefix, "/runtime"
- $P0 = loadlib 'os'
- $P0 = new ['OS']
+ push_eh L1
+ # 'os' is dynop and can be absent at this point.
+ # Treat it as developers mode.
+ $P0 = loadlib 'os'
+ $P0 = new ['OS']
+ pop_eh
+
push_eh file_not_found
# OS.stat throws on file not found
$P0.'stat'($S0)
goto L1
- pop_eh
file_not_found:
+ # Treat it as installed parrot.
conf_file = "@libdir@@versiondir@/include/config.fpmc"
goto L2
L1:
conf_file = prefix . "/runtime/parrot/include/config.fpmc"
L2:
+ pop_eh
.local pmc CONF
CONF = new 'FileHandle'
Modified: branches/gc_massacre/config/gen/makefiles/root.in
==============================================================================
--- branches/gc_massacre/config/gen/makefiles/root.in Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/config/gen/makefiles/root.in Sun Jun 6 04:04:09 2010 (r47420)
@@ -618,16 +618,17 @@
$(DATA_JSON_LIB_PBCS) \
$(NQP_LIB_PBCS) \
$(GEN_LIBRARY) \
- $(DYNPMC_TARGETS) \
$(DYNOPLIBS_TARGETS) \
$(LIBNCI_TEST_SO)
+# We build DYNPMC_TARGET in corevm. It's kinda hack to test t/pmc/threads.t CLONE_LIBRARIES
corevm : \
$(GEN_PM_INCLUDES) \
PARROT_LIBS \
$(PARROT) \
runtime/parrot/include/parrotlib.pbc \
runtime/parrot/include/config.fpmc \
+ $(DYNPMC_TARGETS) \
$(LIBRARY_DIR)/Test/More.pbc
$(GEN_LIBRARY) : $(PARROT) $(GEN_PASM_INCLUDES)
Modified: branches/gc_massacre/include/parrot/gc_api.h
==============================================================================
--- branches/gc_massacre/include/parrot/gc_api.h Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/include/parrot/gc_api.h Sun Jun 6 04:04:09 2010 (r47420)
@@ -93,10 +93,10 @@
/* &end_gen */
-#define GC_trace_stack_FLAG (UINTVAL)(1 << 0) /* trace system areas and stack */
-#define GC_trace_normal (UINTVAL)(1 << 0) /* the same */
-#define GC_lazy_FLAG (UINTVAL)(1 << 1) /* timely destruction run */
-#define GC_finish_FLAG (UINTVAL)(1 << 2) /* on Parrot exit: mark (almost) all PMCs dead and */
+#define GC_trace_stack_FLAG (UINTVAL)(1 << 1) /* trace system areas and stack */
+#define GC_trace_normal_FLAG (UINTVAL)(1 << 1) /* the same */
+#define GC_lazy_FLAG (UINTVAL)(1 << 2) /* timely destruction run */
+#define GC_finish_FLAG (UINTVAL)(1 << 3) /* on Parrot exit: mark (almost) all PMCs dead and */
/* garbage collect. */
/* HEADERIZER BEGIN: src/gc/api.c */
Modified: branches/gc_massacre/include/parrot/oplib/core_ops.h
==============================================================================
--- branches/gc_massacre/include/parrot/oplib/core_ops.h Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/include/parrot/oplib/core_ops.h Sun Jun 6 04:04:09 2010 (r47420)
@@ -386,6 +386,9 @@
opcode_t * Parrot_print_p_s(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_print_p_sc(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_print_p_p(opcode_t *, PARROT_INTERP);
+ opcode_t * Parrot_getstdin_p(opcode_t *, PARROT_INTERP);
+ opcode_t * Parrot_getstdout_p(opcode_t *, PARROT_INTERP);
+ opcode_t * Parrot_getstderr_p(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_abs_i(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_abs_n(opcode_t *, PARROT_INTERP);
opcode_t * Parrot_abs_i_i(opcode_t *, PARROT_INTERP);
Modified: branches/gc_massacre/include/parrot/oplib/ops.h
==============================================================================
--- branches/gc_massacre/include/parrot/oplib/ops.h Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/include/parrot/oplib/ops.h Sun Jun 6 04:04:09 2010 (r47420)
@@ -381,721 +381,724 @@
PARROT_OP_print_p_s, /* 362 */
PARROT_OP_print_p_sc, /* 363 */
PARROT_OP_print_p_p, /* 364 */
- PARROT_OP_abs_i, /* 365 */
- PARROT_OP_abs_n, /* 366 */
- PARROT_OP_abs_i_i, /* 367 */
- PARROT_OP_abs_n_n, /* 368 */
- PARROT_OP_abs_p, /* 369 */
- PARROT_OP_abs_p_p, /* 370 */
- PARROT_OP_add_i_i, /* 371 */
- PARROT_OP_add_i_ic, /* 372 */
- PARROT_OP_add_n_n, /* 373 */
- PARROT_OP_add_n_nc, /* 374 */
- PARROT_OP_add_p_p, /* 375 */
- PARROT_OP_add_p_i, /* 376 */
- PARROT_OP_add_p_ic, /* 377 */
- PARROT_OP_add_p_n, /* 378 */
- PARROT_OP_add_p_nc, /* 379 */
- PARROT_OP_add_i_i_i, /* 380 */
- PARROT_OP_add_i_ic_i, /* 381 */
- PARROT_OP_add_i_i_ic, /* 382 */
- PARROT_OP_add_n_n_n, /* 383 */
- PARROT_OP_add_n_nc_n, /* 384 */
- PARROT_OP_add_n_n_nc, /* 385 */
- PARROT_OP_add_p_p_p, /* 386 */
- PARROT_OP_add_p_p_i, /* 387 */
- PARROT_OP_add_p_p_ic, /* 388 */
- PARROT_OP_add_p_p_n, /* 389 */
- PARROT_OP_add_p_p_nc, /* 390 */
- PARROT_OP_dec_i, /* 391 */
- PARROT_OP_dec_n, /* 392 */
- PARROT_OP_dec_p, /* 393 */
- PARROT_OP_div_i_i, /* 394 */
- PARROT_OP_div_i_ic, /* 395 */
- PARROT_OP_div_n_n, /* 396 */
- PARROT_OP_div_n_nc, /* 397 */
- PARROT_OP_div_p_p, /* 398 */
- PARROT_OP_div_p_i, /* 399 */
- PARROT_OP_div_p_ic, /* 400 */
- PARROT_OP_div_p_n, /* 401 */
- PARROT_OP_div_p_nc, /* 402 */
- PARROT_OP_div_i_i_i, /* 403 */
- PARROT_OP_div_i_ic_i, /* 404 */
- PARROT_OP_div_i_i_ic, /* 405 */
- PARROT_OP_div_i_ic_ic, /* 406 */
- PARROT_OP_div_n_n_n, /* 407 */
- PARROT_OP_div_n_nc_n, /* 408 */
- PARROT_OP_div_n_n_nc, /* 409 */
- PARROT_OP_div_n_nc_nc, /* 410 */
- PARROT_OP_div_p_p_p, /* 411 */
- PARROT_OP_div_p_p_i, /* 412 */
- PARROT_OP_div_p_p_ic, /* 413 */
- PARROT_OP_div_p_p_n, /* 414 */
- PARROT_OP_div_p_p_nc, /* 415 */
- PARROT_OP_fdiv_i_i, /* 416 */
- PARROT_OP_fdiv_i_ic, /* 417 */
- PARROT_OP_fdiv_n_n, /* 418 */
- PARROT_OP_fdiv_n_nc, /* 419 */
- PARROT_OP_fdiv_p_p, /* 420 */
- PARROT_OP_fdiv_p_i, /* 421 */
- PARROT_OP_fdiv_p_ic, /* 422 */
- PARROT_OP_fdiv_p_n, /* 423 */
- PARROT_OP_fdiv_p_nc, /* 424 */
- PARROT_OP_fdiv_i_i_i, /* 425 */
- PARROT_OP_fdiv_i_ic_i, /* 426 */
- PARROT_OP_fdiv_i_i_ic, /* 427 */
- PARROT_OP_fdiv_n_n_n, /* 428 */
- PARROT_OP_fdiv_n_nc_n, /* 429 */
- PARROT_OP_fdiv_n_n_nc, /* 430 */
- PARROT_OP_fdiv_p_p_p, /* 431 */
- PARROT_OP_fdiv_p_p_i, /* 432 */
- PARROT_OP_fdiv_p_p_ic, /* 433 */
- PARROT_OP_fdiv_p_p_n, /* 434 */
- PARROT_OP_fdiv_p_p_nc, /* 435 */
- PARROT_OP_ceil_n, /* 436 */
- PARROT_OP_ceil_i_n, /* 437 */
- PARROT_OP_ceil_n_n, /* 438 */
- PARROT_OP_floor_n, /* 439 */
- PARROT_OP_floor_i_n, /* 440 */
- PARROT_OP_floor_n_n, /* 441 */
- PARROT_OP_inc_i, /* 442 */
- PARROT_OP_inc_n, /* 443 */
- PARROT_OP_inc_p, /* 444 */
- PARROT_OP_mod_i_i, /* 445 */
- PARROT_OP_mod_i_ic, /* 446 */
- PARROT_OP_mod_n_n, /* 447 */
- PARROT_OP_mod_n_nc, /* 448 */
- PARROT_OP_mod_p_p, /* 449 */
- PARROT_OP_mod_p_i, /* 450 */
- PARROT_OP_mod_p_ic, /* 451 */
- PARROT_OP_mod_p_n, /* 452 */
- PARROT_OP_mod_p_nc, /* 453 */
- PARROT_OP_mod_i_i_i, /* 454 */
- PARROT_OP_mod_i_ic_i, /* 455 */
- PARROT_OP_mod_i_i_ic, /* 456 */
- PARROT_OP_mod_n_n_n, /* 457 */
- PARROT_OP_mod_n_nc_n, /* 458 */
- PARROT_OP_mod_n_n_nc, /* 459 */
- PARROT_OP_mod_p_p_p, /* 460 */
- PARROT_OP_mod_p_p_i, /* 461 */
- PARROT_OP_mod_p_p_ic, /* 462 */
- PARROT_OP_mod_p_p_n, /* 463 */
- PARROT_OP_mod_p_p_nc, /* 464 */
- PARROT_OP_mul_i_i, /* 465 */
- PARROT_OP_mul_i_ic, /* 466 */
- PARROT_OP_mul_n_n, /* 467 */
- PARROT_OP_mul_n_nc, /* 468 */
- PARROT_OP_mul_p_p, /* 469 */
- PARROT_OP_mul_p_i, /* 470 */
- PARROT_OP_mul_p_ic, /* 471 */
- PARROT_OP_mul_p_n, /* 472 */
- PARROT_OP_mul_p_nc, /* 473 */
- PARROT_OP_mul_i_i_i, /* 474 */
- PARROT_OP_mul_i_ic_i, /* 475 */
- PARROT_OP_mul_i_i_ic, /* 476 */
- PARROT_OP_mul_n_n_n, /* 477 */
- PARROT_OP_mul_n_nc_n, /* 478 */
- PARROT_OP_mul_n_n_nc, /* 479 */
- PARROT_OP_mul_p_p_p, /* 480 */
- PARROT_OP_mul_p_p_i, /* 481 */
- PARROT_OP_mul_p_p_ic, /* 482 */
- PARROT_OP_mul_p_p_n, /* 483 */
- PARROT_OP_mul_p_p_nc, /* 484 */
- PARROT_OP_neg_i, /* 485 */
- PARROT_OP_neg_n, /* 486 */
- PARROT_OP_neg_p, /* 487 */
- PARROT_OP_neg_i_i, /* 488 */
- PARROT_OP_neg_n_n, /* 489 */
- PARROT_OP_neg_p_p, /* 490 */
- PARROT_OP_sub_i_i, /* 491 */
- PARROT_OP_sub_i_ic, /* 492 */
- PARROT_OP_sub_n_n, /* 493 */
- PARROT_OP_sub_n_nc, /* 494 */
- PARROT_OP_sub_p_p, /* 495 */
- PARROT_OP_sub_p_i, /* 496 */
- PARROT_OP_sub_p_ic, /* 497 */
- PARROT_OP_sub_p_n, /* 498 */
- PARROT_OP_sub_p_nc, /* 499 */
- PARROT_OP_sub_i_i_i, /* 500 */
- PARROT_OP_sub_i_ic_i, /* 501 */
- PARROT_OP_sub_i_i_ic, /* 502 */
- PARROT_OP_sub_n_n_n, /* 503 */
- PARROT_OP_sub_n_nc_n, /* 504 */
- PARROT_OP_sub_n_n_nc, /* 505 */
- PARROT_OP_sub_p_p_p, /* 506 */
- PARROT_OP_sub_p_p_i, /* 507 */
- PARROT_OP_sub_p_p_ic, /* 508 */
- PARROT_OP_sub_p_p_n, /* 509 */
- PARROT_OP_sub_p_p_nc, /* 510 */
- PARROT_OP_sqrt_n_n, /* 511 */
- PARROT_OP_callmethodcc_p_s, /* 512 */
- PARROT_OP_callmethodcc_p_sc, /* 513 */
- PARROT_OP_callmethodcc_p_p, /* 514 */
- PARROT_OP_callmethod_p_s_p, /* 515 */
- PARROT_OP_callmethod_p_sc_p, /* 516 */
- PARROT_OP_callmethod_p_p_p, /* 517 */
- PARROT_OP_tailcallmethod_p_s, /* 518 */
- PARROT_OP_tailcallmethod_p_sc, /* 519 */
- PARROT_OP_tailcallmethod_p_p, /* 520 */
- PARROT_OP_addmethod_p_s_p, /* 521 */
- PARROT_OP_addmethod_p_sc_p, /* 522 */
- PARROT_OP_can_i_p_s, /* 523 */
- PARROT_OP_can_i_p_sc, /* 524 */
- PARROT_OP_does_i_p_s, /* 525 */
- PARROT_OP_does_i_p_sc, /* 526 */
- PARROT_OP_does_i_p_p, /* 527 */
- PARROT_OP_does_i_p_pc, /* 528 */
- PARROT_OP_isa_i_p_s, /* 529 */
- PARROT_OP_isa_i_p_sc, /* 530 */
- PARROT_OP_isa_i_p_p, /* 531 */
- PARROT_OP_isa_i_p_pc, /* 532 */
- PARROT_OP_newclass_p_s, /* 533 */
- PARROT_OP_newclass_p_sc, /* 534 */
- PARROT_OP_newclass_p_p, /* 535 */
- PARROT_OP_newclass_p_pc, /* 536 */
- PARROT_OP_subclass_p_p, /* 537 */
- PARROT_OP_subclass_p_pc, /* 538 */
- PARROT_OP_subclass_p_p_s, /* 539 */
- PARROT_OP_subclass_p_pc_s, /* 540 */
- PARROT_OP_subclass_p_p_sc, /* 541 */
- PARROT_OP_subclass_p_pc_sc, /* 542 */
- PARROT_OP_subclass_p_p_p, /* 543 */
- PARROT_OP_subclass_p_pc_p, /* 544 */
- PARROT_OP_subclass_p_p_pc, /* 545 */
- PARROT_OP_subclass_p_pc_pc, /* 546 */
- PARROT_OP_subclass_p_s, /* 547 */
- PARROT_OP_subclass_p_sc, /* 548 */
- PARROT_OP_subclass_p_s_s, /* 549 */
- PARROT_OP_subclass_p_sc_s, /* 550 */
- PARROT_OP_subclass_p_s_sc, /* 551 */
- PARROT_OP_subclass_p_sc_sc, /* 552 */
- PARROT_OP_subclass_p_s_p, /* 553 */
- PARROT_OP_subclass_p_sc_p, /* 554 */
- PARROT_OP_subclass_p_s_pc, /* 555 */
- PARROT_OP_subclass_p_sc_pc, /* 556 */
- PARROT_OP_get_class_p_s, /* 557 */
- PARROT_OP_get_class_p_sc, /* 558 */
- PARROT_OP_get_class_p_p, /* 559 */
- PARROT_OP_get_class_p_pc, /* 560 */
- PARROT_OP_class_p_p, /* 561 */
- PARROT_OP_addparent_p_p, /* 562 */
- PARROT_OP_removeparent_p_p, /* 563 */
- PARROT_OP_addrole_p_p, /* 564 */
- PARROT_OP_addattribute_p_s, /* 565 */
- PARROT_OP_addattribute_p_sc, /* 566 */
- PARROT_OP_removeattribute_p_s, /* 567 */
- PARROT_OP_removeattribute_p_sc, /* 568 */
- PARROT_OP_getattribute_p_p_s, /* 569 */
- PARROT_OP_getattribute_p_p_sc, /* 570 */
- PARROT_OP_getattribute_p_p_p_s, /* 571 */
- PARROT_OP_getattribute_p_p_pc_s, /* 572 */
- PARROT_OP_getattribute_p_p_p_sc, /* 573 */
- PARROT_OP_getattribute_p_p_pc_sc, /* 574 */
- PARROT_OP_setattribute_p_s_p, /* 575 */
- PARROT_OP_setattribute_p_sc_p, /* 576 */
- PARROT_OP_setattribute_p_p_s_p, /* 577 */
- PARROT_OP_setattribute_p_pc_s_p, /* 578 */
- PARROT_OP_setattribute_p_p_sc_p, /* 579 */
- PARROT_OP_setattribute_p_pc_sc_p, /* 580 */
- PARROT_OP_inspect_p_p, /* 581 */
- PARROT_OP_inspect_p_pc, /* 582 */
- PARROT_OP_inspect_p_p_s, /* 583 */
- PARROT_OP_inspect_p_pc_s, /* 584 */
- PARROT_OP_inspect_p_p_sc, /* 585 */
- PARROT_OP_inspect_p_pc_sc, /* 586 */
- PARROT_OP_new_p_s, /* 587 */
- PARROT_OP_new_p_sc, /* 588 */
- PARROT_OP_new_p_s_p, /* 589 */
- PARROT_OP_new_p_sc_p, /* 590 */
- PARROT_OP_new_p_s_pc, /* 591 */
- PARROT_OP_new_p_sc_pc, /* 592 */
- PARROT_OP_new_p_p, /* 593 */
- PARROT_OP_new_p_pc, /* 594 */
- PARROT_OP_new_p_p_p, /* 595 */
- PARROT_OP_new_p_pc_p, /* 596 */
- PARROT_OP_new_p_p_pc, /* 597 */
- PARROT_OP_new_p_pc_pc, /* 598 */
- PARROT_OP_root_new_p_p, /* 599 */
- PARROT_OP_root_new_p_pc, /* 600 */
- PARROT_OP_root_new_p_p_p, /* 601 */
- PARROT_OP_root_new_p_pc_p, /* 602 */
- PARROT_OP_root_new_p_p_pc, /* 603 */
- PARROT_OP_root_new_p_pc_pc, /* 604 */
- PARROT_OP_typeof_s_p, /* 605 */
- PARROT_OP_typeof_p_p, /* 606 */
- PARROT_OP_get_repr_s_p, /* 607 */
- PARROT_OP_find_method_p_p_s, /* 608 */
- PARROT_OP_find_method_p_p_sc, /* 609 */
- PARROT_OP_defined_i_p, /* 610 */
- PARROT_OP_defined_i_p_ki, /* 611 */
- PARROT_OP_defined_i_p_kic, /* 612 */
- PARROT_OP_defined_i_p_k, /* 613 */
- PARROT_OP_defined_i_p_kc, /* 614 */
- PARROT_OP_exists_i_p_ki, /* 615 */
- PARROT_OP_exists_i_p_kic, /* 616 */
- PARROT_OP_exists_i_p_k, /* 617 */
- PARROT_OP_exists_i_p_kc, /* 618 */
- PARROT_OP_delete_p_k, /* 619 */
- PARROT_OP_delete_p_kc, /* 620 */
- PARROT_OP_delete_p_ki, /* 621 */
- PARROT_OP_delete_p_kic, /* 622 */
- PARROT_OP_elements_i_p, /* 623 */
- PARROT_OP_push_p_i, /* 624 */
- PARROT_OP_push_p_ic, /* 625 */
- PARROT_OP_push_p_n, /* 626 */
- PARROT_OP_push_p_nc, /* 627 */
- PARROT_OP_push_p_s, /* 628 */
- PARROT_OP_push_p_sc, /* 629 */
- PARROT_OP_push_p_p, /* 630 */
- PARROT_OP_pop_i_p, /* 631 */
- PARROT_OP_pop_n_p, /* 632 */
- PARROT_OP_pop_s_p, /* 633 */
- PARROT_OP_pop_p_p, /* 634 */
- PARROT_OP_unshift_p_i, /* 635 */
- PARROT_OP_unshift_p_ic, /* 636 */
- PARROT_OP_unshift_p_n, /* 637 */
- PARROT_OP_unshift_p_nc, /* 638 */
- PARROT_OP_unshift_p_s, /* 639 */
- PARROT_OP_unshift_p_sc, /* 640 */
- PARROT_OP_unshift_p_p, /* 641 */
- PARROT_OP_shift_i_p, /* 642 */
- PARROT_OP_shift_n_p, /* 643 */
- PARROT_OP_shift_s_p, /* 644 */
- PARROT_OP_shift_p_p, /* 645 */
- PARROT_OP_splice_p_p_i_i, /* 646 */
- PARROT_OP_splice_p_p_ic_i, /* 647 */
- PARROT_OP_splice_p_p_i_ic, /* 648 */
- PARROT_OP_splice_p_p_ic_ic, /* 649 */
- PARROT_OP_setprop_p_s_p, /* 650 */
- PARROT_OP_setprop_p_sc_p, /* 651 */
- PARROT_OP_getprop_p_s_p, /* 652 */
- PARROT_OP_getprop_p_sc_p, /* 653 */
- PARROT_OP_delprop_p_s, /* 654 */
- PARROT_OP_delprop_p_sc, /* 655 */
- PARROT_OP_prophash_p_p, /* 656 */
- PARROT_OP_freeze_s_p, /* 657 */
- PARROT_OP_thaw_p_s, /* 658 */
- PARROT_OP_thaw_p_sc, /* 659 */
- PARROT_OP_add_multi_s_s_p, /* 660 */
- PARROT_OP_add_multi_sc_s_p, /* 661 */
- PARROT_OP_add_multi_s_sc_p, /* 662 */
- PARROT_OP_add_multi_sc_sc_p, /* 663 */
- PARROT_OP_find_multi_p_s_s, /* 664 */
- PARROT_OP_find_multi_p_sc_s, /* 665 */
- PARROT_OP_find_multi_p_s_sc, /* 666 */
- PARROT_OP_find_multi_p_sc_sc, /* 667 */
- PARROT_OP_register_p, /* 668 */
- PARROT_OP_unregister_p, /* 669 */
- PARROT_OP_box_p_i, /* 670 */
- PARROT_OP_box_p_ic, /* 671 */
- PARROT_OP_box_p_n, /* 672 */
- PARROT_OP_box_p_nc, /* 673 */
- PARROT_OP_box_p_s, /* 674 */
- PARROT_OP_box_p_sc, /* 675 */
- PARROT_OP_iter_p_p, /* 676 */
- PARROT_OP_morph_p_p, /* 677 */
- PARROT_OP_morph_p_pc, /* 678 */
- PARROT_OP_clone_s_s, /* 679 */
- PARROT_OP_clone_s_sc, /* 680 */
- PARROT_OP_set_i_i, /* 681 */
- PARROT_OP_set_i_ic, /* 682 */
- PARROT_OP_set_i_n, /* 683 */
- PARROT_OP_set_i_nc, /* 684 */
- PARROT_OP_set_i_s, /* 685 */
- PARROT_OP_set_i_sc, /* 686 */
- PARROT_OP_set_n_n, /* 687 */
- PARROT_OP_set_n_nc, /* 688 */
- PARROT_OP_set_n_i, /* 689 */
- PARROT_OP_set_n_ic, /* 690 */
- PARROT_OP_set_n_s, /* 691 */
- PARROT_OP_set_n_sc, /* 692 */
- PARROT_OP_set_n_p, /* 693 */
- PARROT_OP_set_s_p, /* 694 */
- PARROT_OP_set_s_s, /* 695 */
- PARROT_OP_set_s_sc, /* 696 */
- PARROT_OP_set_s_i, /* 697 */
- PARROT_OP_set_s_ic, /* 698 */
- PARROT_OP_set_s_n, /* 699 */
- PARROT_OP_set_s_nc, /* 700 */
- PARROT_OP_set_p_pc, /* 701 */
- PARROT_OP_set_p_p, /* 702 */
- PARROT_OP_set_p_i, /* 703 */
- PARROT_OP_set_p_ic, /* 704 */
- PARROT_OP_set_p_n, /* 705 */
- PARROT_OP_set_p_nc, /* 706 */
- PARROT_OP_set_p_s, /* 707 */
- PARROT_OP_set_p_sc, /* 708 */
- PARROT_OP_set_i_p, /* 709 */
- PARROT_OP_assign_p_p, /* 710 */
- PARROT_OP_assign_p_i, /* 711 */
- PARROT_OP_assign_p_ic, /* 712 */
- PARROT_OP_assign_p_n, /* 713 */
- PARROT_OP_assign_p_nc, /* 714 */
- PARROT_OP_assign_p_s, /* 715 */
- PARROT_OP_assign_p_sc, /* 716 */
- PARROT_OP_assign_s_s, /* 717 */
- PARROT_OP_assign_s_sc, /* 718 */
- PARROT_OP_setref_p_p, /* 719 */
- PARROT_OP_deref_p_p, /* 720 */
- PARROT_OP_set_p_ki_i, /* 721 */
- PARROT_OP_set_p_kic_i, /* 722 */
- PARROT_OP_set_p_ki_ic, /* 723 */
- PARROT_OP_set_p_kic_ic, /* 724 */
- PARROT_OP_set_p_ki_n, /* 725 */
- PARROT_OP_set_p_kic_n, /* 726 */
- PARROT_OP_set_p_ki_nc, /* 727 */
- PARROT_OP_set_p_kic_nc, /* 728 */
- PARROT_OP_set_p_ki_s, /* 729 */
- PARROT_OP_set_p_kic_s, /* 730 */
- PARROT_OP_set_p_ki_sc, /* 731 */
- PARROT_OP_set_p_kic_sc, /* 732 */
- PARROT_OP_set_p_ki_p, /* 733 */
- PARROT_OP_set_p_kic_p, /* 734 */
- PARROT_OP_set_i_p_ki, /* 735 */
- PARROT_OP_set_i_p_kic, /* 736 */
- PARROT_OP_set_n_p_ki, /* 737 */
- PARROT_OP_set_n_p_kic, /* 738 */
- PARROT_OP_set_s_p_ki, /* 739 */
- PARROT_OP_set_s_p_kic, /* 740 */
- PARROT_OP_set_p_p_ki, /* 741 */
- PARROT_OP_set_p_p_kic, /* 742 */
- PARROT_OP_set_p_k_i, /* 743 */
- PARROT_OP_set_p_kc_i, /* 744 */
- PARROT_OP_set_p_k_ic, /* 745 */
- PARROT_OP_set_p_kc_ic, /* 746 */
- PARROT_OP_set_p_k_n, /* 747 */
- PARROT_OP_set_p_kc_n, /* 748 */
- PARROT_OP_set_p_k_nc, /* 749 */
- PARROT_OP_set_p_kc_nc, /* 750 */
- PARROT_OP_set_p_k_s, /* 751 */
- PARROT_OP_set_p_kc_s, /* 752 */
- PARROT_OP_set_p_k_sc, /* 753 */
- PARROT_OP_set_p_kc_sc, /* 754 */
- PARROT_OP_set_p_k_p, /* 755 */
- PARROT_OP_set_p_kc_p, /* 756 */
- PARROT_OP_set_i_p_k, /* 757 */
- PARROT_OP_set_i_p_kc, /* 758 */
- PARROT_OP_set_n_p_k, /* 759 */
- PARROT_OP_set_n_p_kc, /* 760 */
- PARROT_OP_set_s_p_k, /* 761 */
- PARROT_OP_set_s_p_kc, /* 762 */
- PARROT_OP_set_p_p_k, /* 763 */
- PARROT_OP_set_p_p_kc, /* 764 */
- PARROT_OP_clone_p_p, /* 765 */
- PARROT_OP_clone_p_p_p, /* 766 */
- PARROT_OP_clone_p_p_pc, /* 767 */
- PARROT_OP_copy_p_p, /* 768 */
- PARROT_OP_null_s, /* 769 */
- PARROT_OP_null_i, /* 770 */
- PARROT_OP_null_p, /* 771 */
- PARROT_OP_null_n, /* 772 */
- PARROT_OP_ord_i_s, /* 773 */
- PARROT_OP_ord_i_sc, /* 774 */
- PARROT_OP_ord_i_s_i, /* 775 */
- PARROT_OP_ord_i_sc_i, /* 776 */
- PARROT_OP_ord_i_s_ic, /* 777 */
- PARROT_OP_ord_i_sc_ic, /* 778 */
- PARROT_OP_chr_s_i, /* 779 */
- PARROT_OP_chr_s_ic, /* 780 */
- PARROT_OP_chopn_s_s_i, /* 781 */
- PARROT_OP_chopn_s_sc_i, /* 782 */
- PARROT_OP_chopn_s_s_ic, /* 783 */
- PARROT_OP_chopn_s_sc_ic, /* 784 */
- PARROT_OP_concat_s_s, /* 785 */
- PARROT_OP_concat_s_sc, /* 786 */
- PARROT_OP_concat_p_p, /* 787 */
- PARROT_OP_concat_p_s, /* 788 */
- PARROT_OP_concat_p_sc, /* 789 */
- PARROT_OP_concat_s_s_s, /* 790 */
- PARROT_OP_concat_s_sc_s, /* 791 */
- PARROT_OP_concat_s_s_sc, /* 792 */
- PARROT_OP_concat_p_p_s, /* 793 */
- PARROT_OP_concat_p_p_sc, /* 794 */
- PARROT_OP_concat_p_p_p, /* 795 */
- PARROT_OP_repeat_s_s_i, /* 796 */
- PARROT_OP_repeat_s_sc_i, /* 797 */
- PARROT_OP_repeat_s_s_ic, /* 798 */
- PARROT_OP_repeat_s_sc_ic, /* 799 */
- PARROT_OP_repeat_p_p_i, /* 800 */
- PARROT_OP_repeat_p_p_ic, /* 801 */
- PARROT_OP_repeat_p_p_p, /* 802 */
- PARROT_OP_repeat_p_i, /* 803 */
- PARROT_OP_repeat_p_ic, /* 804 */
- PARROT_OP_repeat_p_p, /* 805 */
- PARROT_OP_length_i_s, /* 806 */
- PARROT_OP_length_i_sc, /* 807 */
- PARROT_OP_bytelength_i_s, /* 808 */
- PARROT_OP_bytelength_i_sc, /* 809 */
- PARROT_OP_pin_s, /* 810 */
- PARROT_OP_unpin_s, /* 811 */
- PARROT_OP_substr_s_s_i, /* 812 */
- PARROT_OP_substr_s_sc_i, /* 813 */
- PARROT_OP_substr_s_s_ic, /* 814 */
- PARROT_OP_substr_s_sc_ic, /* 815 */
- PARROT_OP_substr_s_s_i_i, /* 816 */
- PARROT_OP_substr_s_sc_i_i, /* 817 */
- PARROT_OP_substr_s_s_ic_i, /* 818 */
- PARROT_OP_substr_s_sc_ic_i, /* 819 */
- PARROT_OP_substr_s_s_i_ic, /* 820 */
- PARROT_OP_substr_s_sc_i_ic, /* 821 */
- PARROT_OP_substr_s_s_ic_ic, /* 822 */
- PARROT_OP_substr_s_sc_ic_ic, /* 823 */
- PARROT_OP_substr_s_p_i_i, /* 824 */
- PARROT_OP_substr_s_p_ic_i, /* 825 */
- PARROT_OP_substr_s_p_i_ic, /* 826 */
- PARROT_OP_substr_s_p_ic_ic, /* 827 */
- PARROT_OP_replace_s_s_i_i_s, /* 828 */
- PARROT_OP_replace_s_sc_i_i_s, /* 829 */
- PARROT_OP_replace_s_s_ic_i_s, /* 830 */
- PARROT_OP_replace_s_sc_ic_i_s, /* 831 */
- PARROT_OP_replace_s_s_i_ic_s, /* 832 */
- PARROT_OP_replace_s_sc_i_ic_s, /* 833 */
- PARROT_OP_replace_s_s_ic_ic_s, /* 834 */
- PARROT_OP_replace_s_sc_ic_ic_s, /* 835 */
- PARROT_OP_replace_s_s_i_i_sc, /* 836 */
- PARROT_OP_replace_s_sc_i_i_sc, /* 837 */
- PARROT_OP_replace_s_s_ic_i_sc, /* 838 */
- PARROT_OP_replace_s_sc_ic_i_sc, /* 839 */
- PARROT_OP_replace_s_s_i_ic_sc, /* 840 */
- PARROT_OP_replace_s_sc_i_ic_sc, /* 841 */
- PARROT_OP_replace_s_s_ic_ic_sc, /* 842 */
- PARROT_OP_replace_s_sc_ic_ic_sc, /* 843 */
- PARROT_OP_index_i_s_s, /* 844 */
- PARROT_OP_index_i_sc_s, /* 845 */
- PARROT_OP_index_i_s_sc, /* 846 */
- PARROT_OP_index_i_sc_sc, /* 847 */
- PARROT_OP_index_i_s_s_i, /* 848 */
- PARROT_OP_index_i_sc_s_i, /* 849 */
- PARROT_OP_index_i_s_sc_i, /* 850 */
- PARROT_OP_index_i_sc_sc_i, /* 851 */
- PARROT_OP_index_i_s_s_ic, /* 852 */
- PARROT_OP_index_i_sc_s_ic, /* 853 */
- PARROT_OP_index_i_s_sc_ic, /* 854 */
- PARROT_OP_index_i_sc_sc_ic, /* 855 */
- PARROT_OP_sprintf_s_s_p, /* 856 */
- PARROT_OP_sprintf_s_sc_p, /* 857 */
- PARROT_OP_sprintf_p_p_p, /* 858 */
- PARROT_OP_new_s, /* 859 */
- PARROT_OP_new_s_i, /* 860 */
- PARROT_OP_new_s_ic, /* 861 */
- PARROT_OP_stringinfo_i_s_i, /* 862 */
- PARROT_OP_stringinfo_i_sc_i, /* 863 */
- PARROT_OP_stringinfo_i_s_ic, /* 864 */
- PARROT_OP_stringinfo_i_sc_ic, /* 865 */
- PARROT_OP_upcase_s_s, /* 866 */
- PARROT_OP_upcase_s_sc, /* 867 */
- PARROT_OP_downcase_s_s, /* 868 */
- PARROT_OP_downcase_s_sc, /* 869 */
- PARROT_OP_titlecase_s_s, /* 870 */
- PARROT_OP_titlecase_s_sc, /* 871 */
- PARROT_OP_join_s_s_p, /* 872 */
- PARROT_OP_join_s_sc_p, /* 873 */
- PARROT_OP_split_p_s_s, /* 874 */
- PARROT_OP_split_p_sc_s, /* 875 */
- PARROT_OP_split_p_s_sc, /* 876 */
- PARROT_OP_split_p_sc_sc, /* 877 */
- PARROT_OP_charset_i_s, /* 878 */
- PARROT_OP_charset_i_sc, /* 879 */
- PARROT_OP_charsetname_s_i, /* 880 */
- PARROT_OP_charsetname_s_ic, /* 881 */
- PARROT_OP_find_charset_i_s, /* 882 */
- PARROT_OP_find_charset_i_sc, /* 883 */
- PARROT_OP_trans_charset_s_s_i, /* 884 */
- PARROT_OP_trans_charset_s_sc_i, /* 885 */
- PARROT_OP_trans_charset_s_s_ic, /* 886 */
- PARROT_OP_trans_charset_s_sc_ic, /* 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_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_dynamic_lex_s_p, /* 956 */
- PARROT_OP_store_dynamic_lex_sc_p, /* 957 */
- PARROT_OP_find_lex_p_s, /* 958 */
- PARROT_OP_find_lex_p_sc, /* 959 */
- PARROT_OP_find_dynamic_lex_p_s, /* 960 */
- PARROT_OP_find_dynamic_lex_p_sc, /* 961 */
- PARROT_OP_find_caller_lex_p_s, /* 962 */
- PARROT_OP_find_caller_lex_p_sc, /* 963 */
- PARROT_OP_get_namespace_p, /* 964 */
- PARROT_OP_get_namespace_p_p, /* 965 */
- PARROT_OP_get_namespace_p_pc, /* 966 */
- PARROT_OP_get_hll_namespace_p, /* 967 */
- PARROT_OP_get_hll_namespace_p_p, /* 968 */
- PARROT_OP_get_hll_namespace_p_pc, /* 969 */
- PARROT_OP_get_root_namespace_p, /* 970 */
- PARROT_OP_get_root_namespace_p_p, /* 971 */
- PARROT_OP_get_root_namespace_p_pc, /* 972 */
- PARROT_OP_get_global_p_s, /* 973 */
- PARROT_OP_get_global_p_sc, /* 974 */
- PARROT_OP_get_global_p_p_s, /* 975 */
- PARROT_OP_get_global_p_pc_s, /* 976 */
- PARROT_OP_get_global_p_p_sc, /* 977 */
- PARROT_OP_get_global_p_pc_sc, /* 978 */
- PARROT_OP_get_hll_global_p_s, /* 979 */
- PARROT_OP_get_hll_global_p_sc, /* 980 */
- PARROT_OP_get_hll_global_p_p_s, /* 981 */
- PARROT_OP_get_hll_global_p_pc_s, /* 982 */
- PARROT_OP_get_hll_global_p_p_sc, /* 983 */
- PARROT_OP_get_hll_global_p_pc_sc, /* 984 */
- PARROT_OP_get_root_global_p_s, /* 985 */
- PARROT_OP_get_root_global_p_sc, /* 986 */
- PARROT_OP_get_root_global_p_p_s, /* 987 */
- PARROT_OP_get_root_global_p_pc_s, /* 988 */
- PARROT_OP_get_root_global_p_p_sc, /* 989 */
- PARROT_OP_get_root_global_p_pc_sc, /* 990 */
- PARROT_OP_set_global_s_p, /* 991 */
- PARROT_OP_set_global_sc_p, /* 992 */
- PARROT_OP_set_global_p_s_p, /* 993 */
- PARROT_OP_set_global_pc_s_p, /* 994 */
- PARROT_OP_set_global_p_sc_p, /* 995 */
- PARROT_OP_set_global_pc_sc_p, /* 996 */
- PARROT_OP_set_hll_global_s_p, /* 997 */
- PARROT_OP_set_hll_global_sc_p, /* 998 */
- PARROT_OP_set_hll_global_p_s_p, /* 999 */
- PARROT_OP_set_hll_global_pc_s_p, /* 1000 */
- PARROT_OP_set_hll_global_p_sc_p, /* 1001 */
- PARROT_OP_set_hll_global_pc_sc_p, /* 1002 */
- PARROT_OP_set_root_global_s_p, /* 1003 */
- PARROT_OP_set_root_global_sc_p, /* 1004 */
- PARROT_OP_set_root_global_p_s_p, /* 1005 */
- PARROT_OP_set_root_global_pc_s_p, /* 1006 */
- PARROT_OP_set_root_global_p_sc_p, /* 1007 */
- PARROT_OP_set_root_global_pc_sc_p, /* 1008 */
- PARROT_OP_find_name_p_s, /* 1009 */
- PARROT_OP_find_name_p_sc, /* 1010 */
- PARROT_OP_find_sub_not_null_p_s, /* 1011 */
- PARROT_OP_find_sub_not_null_p_sc, /* 1012 */
- PARROT_OP_trap, /* 1013 */
- PARROT_OP_set_label_p_ic, /* 1014 */
- PARROT_OP_get_label_i_p, /* 1015 */
- PARROT_OP_fetch_p_p_p_p, /* 1016 */
- PARROT_OP_fetch_p_pc_p_p, /* 1017 */
- PARROT_OP_fetch_p_p_pc_p, /* 1018 */
- PARROT_OP_fetch_p_pc_pc_p, /* 1019 */
- PARROT_OP_fetch_p_p_p_pc, /* 1020 */
- PARROT_OP_fetch_p_pc_p_pc, /* 1021 */
- PARROT_OP_fetch_p_p_pc_pc, /* 1022 */
- PARROT_OP_fetch_p_pc_pc_pc, /* 1023 */
- PARROT_OP_fetch_p_p_i_p, /* 1024 */
- PARROT_OP_fetch_p_pc_i_p, /* 1025 */
- PARROT_OP_fetch_p_p_ic_p, /* 1026 */
- PARROT_OP_fetch_p_pc_ic_p, /* 1027 */
- PARROT_OP_fetch_p_p_i_pc, /* 1028 */
- PARROT_OP_fetch_p_pc_i_pc, /* 1029 */
- PARROT_OP_fetch_p_p_ic_pc, /* 1030 */
- PARROT_OP_fetch_p_pc_ic_pc, /* 1031 */
- PARROT_OP_fetch_p_p_s_p, /* 1032 */
- PARROT_OP_fetch_p_pc_s_p, /* 1033 */
- PARROT_OP_fetch_p_p_sc_p, /* 1034 */
- PARROT_OP_fetch_p_pc_sc_p, /* 1035 */
- PARROT_OP_fetch_p_p_s_pc, /* 1036 */
- PARROT_OP_fetch_p_pc_s_pc, /* 1037 */
- PARROT_OP_fetch_p_p_sc_pc, /* 1038 */
- PARROT_OP_fetch_p_pc_sc_pc, /* 1039 */
- PARROT_OP_vivify_p_p_p_p, /* 1040 */
- PARROT_OP_vivify_p_pc_p_p, /* 1041 */
- PARROT_OP_vivify_p_p_pc_p, /* 1042 */
- PARROT_OP_vivify_p_pc_pc_p, /* 1043 */
- PARROT_OP_vivify_p_p_p_pc, /* 1044 */
- PARROT_OP_vivify_p_pc_p_pc, /* 1045 */
- PARROT_OP_vivify_p_p_pc_pc, /* 1046 */
- PARROT_OP_vivify_p_pc_pc_pc, /* 1047 */
- PARROT_OP_vivify_p_p_i_p, /* 1048 */
- PARROT_OP_vivify_p_pc_i_p, /* 1049 */
- PARROT_OP_vivify_p_p_ic_p, /* 1050 */
- PARROT_OP_vivify_p_pc_ic_p, /* 1051 */
- PARROT_OP_vivify_p_p_i_pc, /* 1052 */
- PARROT_OP_vivify_p_pc_i_pc, /* 1053 */
- PARROT_OP_vivify_p_p_ic_pc, /* 1054 */
- PARROT_OP_vivify_p_pc_ic_pc, /* 1055 */
- PARROT_OP_vivify_p_p_s_p, /* 1056 */
- PARROT_OP_vivify_p_pc_s_p, /* 1057 */
- PARROT_OP_vivify_p_p_sc_p, /* 1058 */
- PARROT_OP_vivify_p_pc_sc_p, /* 1059 */
- PARROT_OP_vivify_p_p_s_pc, /* 1060 */
- PARROT_OP_vivify_p_pc_s_pc, /* 1061 */
- PARROT_OP_vivify_p_p_sc_pc, /* 1062 */
- PARROT_OP_vivify_p_pc_sc_pc, /* 1063 */
- PARROT_OP_new_p_s_i, /* 1064 */
- PARROT_OP_new_p_sc_i, /* 1065 */
- PARROT_OP_new_p_s_ic, /* 1066 */
- PARROT_OP_new_p_sc_ic, /* 1067 */
- PARROT_OP_new_p_p_i, /* 1068 */
- PARROT_OP_new_p_pc_i, /* 1069 */
- PARROT_OP_new_p_p_ic, /* 1070 */
- PARROT_OP_new_p_pc_ic, /* 1071 */
- PARROT_OP_root_new_p_p_i, /* 1072 */
- PARROT_OP_root_new_p_pc_i, /* 1073 */
- PARROT_OP_root_new_p_p_ic, /* 1074 */
- PARROT_OP_root_new_p_pc_ic, /* 1075 */
- PARROT_OP_find_codepoint_i_s, /* 1076 */
- PARROT_OP_find_codepoint_i_sc, /* 1077 */
- PARROT_OP_finalize_p, /* 1078 */
- PARROT_OP_finalize_pc /* 1079 */
+ PARROT_OP_getstdin_p, /* 365 */
+ PARROT_OP_getstdout_p, /* 366 */
+ PARROT_OP_getstderr_p, /* 367 */
+ PARROT_OP_abs_i, /* 368 */
+ PARROT_OP_abs_n, /* 369 */
+ PARROT_OP_abs_i_i, /* 370 */
+ PARROT_OP_abs_n_n, /* 371 */
+ PARROT_OP_abs_p, /* 372 */
+ PARROT_OP_abs_p_p, /* 373 */
+ PARROT_OP_add_i_i, /* 374 */
+ PARROT_OP_add_i_ic, /* 375 */
+ PARROT_OP_add_n_n, /* 376 */
+ PARROT_OP_add_n_nc, /* 377 */
+ PARROT_OP_add_p_p, /* 378 */
+ PARROT_OP_add_p_i, /* 379 */
+ PARROT_OP_add_p_ic, /* 380 */
+ PARROT_OP_add_p_n, /* 381 */
+ PARROT_OP_add_p_nc, /* 382 */
+ PARROT_OP_add_i_i_i, /* 383 */
+ PARROT_OP_add_i_ic_i, /* 384 */
+ PARROT_OP_add_i_i_ic, /* 385 */
+ PARROT_OP_add_n_n_n, /* 386 */
+ PARROT_OP_add_n_nc_n, /* 387 */
+ PARROT_OP_add_n_n_nc, /* 388 */
+ PARROT_OP_add_p_p_p, /* 389 */
+ PARROT_OP_add_p_p_i, /* 390 */
+ PARROT_OP_add_p_p_ic, /* 391 */
+ PARROT_OP_add_p_p_n, /* 392 */
+ PARROT_OP_add_p_p_nc, /* 393 */
+ PARROT_OP_dec_i, /* 394 */
+ PARROT_OP_dec_n, /* 395 */
+ PARROT_OP_dec_p, /* 396 */
+ PARROT_OP_div_i_i, /* 397 */
+ PARROT_OP_div_i_ic, /* 398 */
+ PARROT_OP_div_n_n, /* 399 */
+ PARROT_OP_div_n_nc, /* 400 */
+ PARROT_OP_div_p_p, /* 401 */
+ PARROT_OP_div_p_i, /* 402 */
+ PARROT_OP_div_p_ic, /* 403 */
+ PARROT_OP_div_p_n, /* 404 */
+ PARROT_OP_div_p_nc, /* 405 */
+ PARROT_OP_div_i_i_i, /* 406 */
+ PARROT_OP_div_i_ic_i, /* 407 */
+ PARROT_OP_div_i_i_ic, /* 408 */
+ PARROT_OP_div_i_ic_ic, /* 409 */
+ PARROT_OP_div_n_n_n, /* 410 */
+ PARROT_OP_div_n_nc_n, /* 411 */
+ PARROT_OP_div_n_n_nc, /* 412 */
+ PARROT_OP_div_n_nc_nc, /* 413 */
+ PARROT_OP_div_p_p_p, /* 414 */
+ PARROT_OP_div_p_p_i, /* 415 */
+ PARROT_OP_div_p_p_ic, /* 416 */
+ PARROT_OP_div_p_p_n, /* 417 */
+ PARROT_OP_div_p_p_nc, /* 418 */
+ PARROT_OP_fdiv_i_i, /* 419 */
+ PARROT_OP_fdiv_i_ic, /* 420 */
+ PARROT_OP_fdiv_n_n, /* 421 */
+ PARROT_OP_fdiv_n_nc, /* 422 */
+ PARROT_OP_fdiv_p_p, /* 423 */
+ PARROT_OP_fdiv_p_i, /* 424 */
+ PARROT_OP_fdiv_p_ic, /* 425 */
+ PARROT_OP_fdiv_p_n, /* 426 */
+ PARROT_OP_fdiv_p_nc, /* 427 */
+ PARROT_OP_fdiv_i_i_i, /* 428 */
+ PARROT_OP_fdiv_i_ic_i, /* 429 */
+ PARROT_OP_fdiv_i_i_ic, /* 430 */
+ PARROT_OP_fdiv_n_n_n, /* 431 */
+ PARROT_OP_fdiv_n_nc_n, /* 432 */
+ PARROT_OP_fdiv_n_n_nc, /* 433 */
+ PARROT_OP_fdiv_p_p_p, /* 434 */
+ PARROT_OP_fdiv_p_p_i, /* 435 */
+ PARROT_OP_fdiv_p_p_ic, /* 436 */
+ PARROT_OP_fdiv_p_p_n, /* 437 */
+ PARROT_OP_fdiv_p_p_nc, /* 438 */
+ PARROT_OP_ceil_n, /* 439 */
+ PARROT_OP_ceil_i_n, /* 440 */
+ PARROT_OP_ceil_n_n, /* 441 */
+ PARROT_OP_floor_n, /* 442 */
+ PARROT_OP_floor_i_n, /* 443 */
+ PARROT_OP_floor_n_n, /* 444 */
+ PARROT_OP_inc_i, /* 445 */
+ PARROT_OP_inc_n, /* 446 */
+ PARROT_OP_inc_p, /* 447 */
+ PARROT_OP_mod_i_i, /* 448 */
+ PARROT_OP_mod_i_ic, /* 449 */
+ PARROT_OP_mod_n_n, /* 450 */
+ PARROT_OP_mod_n_nc, /* 451 */
+ PARROT_OP_mod_p_p, /* 452 */
+ PARROT_OP_mod_p_i, /* 453 */
+ PARROT_OP_mod_p_ic, /* 454 */
+ PARROT_OP_mod_p_n, /* 455 */
+ PARROT_OP_mod_p_nc, /* 456 */
+ PARROT_OP_mod_i_i_i, /* 457 */
+ PARROT_OP_mod_i_ic_i, /* 458 */
+ PARROT_OP_mod_i_i_ic, /* 459 */
+ PARROT_OP_mod_n_n_n, /* 460 */
+ PARROT_OP_mod_n_nc_n, /* 461 */
+ PARROT_OP_mod_n_n_nc, /* 462 */
+ PARROT_OP_mod_p_p_p, /* 463 */
+ PARROT_OP_mod_p_p_i, /* 464 */
+ PARROT_OP_mod_p_p_ic, /* 465 */
+ PARROT_OP_mod_p_p_n, /* 466 */
+ PARROT_OP_mod_p_p_nc, /* 467 */
+ PARROT_OP_mul_i_i, /* 468 */
+ PARROT_OP_mul_i_ic, /* 469 */
+ PARROT_OP_mul_n_n, /* 470 */
+ PARROT_OP_mul_n_nc, /* 471 */
+ PARROT_OP_mul_p_p, /* 472 */
+ PARROT_OP_mul_p_i, /* 473 */
+ PARROT_OP_mul_p_ic, /* 474 */
+ PARROT_OP_mul_p_n, /* 475 */
+ PARROT_OP_mul_p_nc, /* 476 */
+ PARROT_OP_mul_i_i_i, /* 477 */
+ PARROT_OP_mul_i_ic_i, /* 478 */
+ PARROT_OP_mul_i_i_ic, /* 479 */
+ PARROT_OP_mul_n_n_n, /* 480 */
+ PARROT_OP_mul_n_nc_n, /* 481 */
+ PARROT_OP_mul_n_n_nc, /* 482 */
+ PARROT_OP_mul_p_p_p, /* 483 */
+ PARROT_OP_mul_p_p_i, /* 484 */
+ PARROT_OP_mul_p_p_ic, /* 485 */
+ PARROT_OP_mul_p_p_n, /* 486 */
+ PARROT_OP_mul_p_p_nc, /* 487 */
+ PARROT_OP_neg_i, /* 488 */
+ PARROT_OP_neg_n, /* 489 */
+ PARROT_OP_neg_p, /* 490 */
+ PARROT_OP_neg_i_i, /* 491 */
+ PARROT_OP_neg_n_n, /* 492 */
+ PARROT_OP_neg_p_p, /* 493 */
+ PARROT_OP_sub_i_i, /* 494 */
+ PARROT_OP_sub_i_ic, /* 495 */
+ PARROT_OP_sub_n_n, /* 496 */
+ PARROT_OP_sub_n_nc, /* 497 */
+ PARROT_OP_sub_p_p, /* 498 */
+ PARROT_OP_sub_p_i, /* 499 */
+ PARROT_OP_sub_p_ic, /* 500 */
+ PARROT_OP_sub_p_n, /* 501 */
+ PARROT_OP_sub_p_nc, /* 502 */
+ PARROT_OP_sub_i_i_i, /* 503 */
+ PARROT_OP_sub_i_ic_i, /* 504 */
+ PARROT_OP_sub_i_i_ic, /* 505 */
+ PARROT_OP_sub_n_n_n, /* 506 */
+ PARROT_OP_sub_n_nc_n, /* 507 */
+ PARROT_OP_sub_n_n_nc, /* 508 */
+ PARROT_OP_sub_p_p_p, /* 509 */
+ PARROT_OP_sub_p_p_i, /* 510 */
+ PARROT_OP_sub_p_p_ic, /* 511 */
+ PARROT_OP_sub_p_p_n, /* 512 */
+ PARROT_OP_sub_p_p_nc, /* 513 */
+ PARROT_OP_sqrt_n_n, /* 514 */
+ PARROT_OP_callmethodcc_p_s, /* 515 */
+ PARROT_OP_callmethodcc_p_sc, /* 516 */
+ PARROT_OP_callmethodcc_p_p, /* 517 */
+ PARROT_OP_callmethod_p_s_p, /* 518 */
+ PARROT_OP_callmethod_p_sc_p, /* 519 */
+ PARROT_OP_callmethod_p_p_p, /* 520 */
+ PARROT_OP_tailcallmethod_p_s, /* 521 */
+ PARROT_OP_tailcallmethod_p_sc, /* 522 */
+ PARROT_OP_tailcallmethod_p_p, /* 523 */
+ PARROT_OP_addmethod_p_s_p, /* 524 */
+ PARROT_OP_addmethod_p_sc_p, /* 525 */
+ PARROT_OP_can_i_p_s, /* 526 */
+ PARROT_OP_can_i_p_sc, /* 527 */
+ PARROT_OP_does_i_p_s, /* 528 */
+ PARROT_OP_does_i_p_sc, /* 529 */
+ PARROT_OP_does_i_p_p, /* 530 */
+ PARROT_OP_does_i_p_pc, /* 531 */
+ PARROT_OP_isa_i_p_s, /* 532 */
+ PARROT_OP_isa_i_p_sc, /* 533 */
+ PARROT_OP_isa_i_p_p, /* 534 */
+ PARROT_OP_isa_i_p_pc, /* 535 */
+ PARROT_OP_newclass_p_s, /* 536 */
+ PARROT_OP_newclass_p_sc, /* 537 */
+ PARROT_OP_newclass_p_p, /* 538 */
+ PARROT_OP_newclass_p_pc, /* 539 */
+ PARROT_OP_subclass_p_p, /* 540 */
+ PARROT_OP_subclass_p_pc, /* 541 */
+ PARROT_OP_subclass_p_p_s, /* 542 */
+ PARROT_OP_subclass_p_pc_s, /* 543 */
+ PARROT_OP_subclass_p_p_sc, /* 544 */
+ PARROT_OP_subclass_p_pc_sc, /* 545 */
+ PARROT_OP_subclass_p_p_p, /* 546 */
+ PARROT_OP_subclass_p_pc_p, /* 547 */
+ PARROT_OP_subclass_p_p_pc, /* 548 */
+ PARROT_OP_subclass_p_pc_pc, /* 549 */
+ PARROT_OP_subclass_p_s, /* 550 */
+ PARROT_OP_subclass_p_sc, /* 551 */
+ PARROT_OP_subclass_p_s_s, /* 552 */
+ PARROT_OP_subclass_p_sc_s, /* 553 */
+ PARROT_OP_subclass_p_s_sc, /* 554 */
+ PARROT_OP_subclass_p_sc_sc, /* 555 */
+ PARROT_OP_subclass_p_s_p, /* 556 */
+ PARROT_OP_subclass_p_sc_p, /* 557 */
+ PARROT_OP_subclass_p_s_pc, /* 558 */
+ PARROT_OP_subclass_p_sc_pc, /* 559 */
+ PARROT_OP_get_class_p_s, /* 560 */
+ PARROT_OP_get_class_p_sc, /* 561 */
+ PARROT_OP_get_class_p_p, /* 562 */
+ PARROT_OP_get_class_p_pc, /* 563 */
+ PARROT_OP_class_p_p, /* 564 */
+ PARROT_OP_addparent_p_p, /* 565 */
+ PARROT_OP_removeparent_p_p, /* 566 */
+ PARROT_OP_addrole_p_p, /* 567 */
+ PARROT_OP_addattribute_p_s, /* 568 */
+ PARROT_OP_addattribute_p_sc, /* 569 */
+ PARROT_OP_removeattribute_p_s, /* 570 */
+ PARROT_OP_removeattribute_p_sc, /* 571 */
+ PARROT_OP_getattribute_p_p_s, /* 572 */
+ PARROT_OP_getattribute_p_p_sc, /* 573 */
+ PARROT_OP_getattribute_p_p_p_s, /* 574 */
+ PARROT_OP_getattribute_p_p_pc_s, /* 575 */
+ PARROT_OP_getattribute_p_p_p_sc, /* 576 */
+ PARROT_OP_getattribute_p_p_pc_sc, /* 577 */
+ PARROT_OP_setattribute_p_s_p, /* 578 */
+ PARROT_OP_setattribute_p_sc_p, /* 579 */
+ PARROT_OP_setattribute_p_p_s_p, /* 580 */
+ PARROT_OP_setattribute_p_pc_s_p, /* 581 */
+ PARROT_OP_setattribute_p_p_sc_p, /* 582 */
+ PARROT_OP_setattribute_p_pc_sc_p, /* 583 */
+ PARROT_OP_inspect_p_p, /* 584 */
+ PARROT_OP_inspect_p_pc, /* 585 */
+ PARROT_OP_inspect_p_p_s, /* 586 */
+ PARROT_OP_inspect_p_pc_s, /* 587 */
+ PARROT_OP_inspect_p_p_sc, /* 588 */
+ PARROT_OP_inspect_p_pc_sc, /* 589 */
+ PARROT_OP_new_p_s, /* 590 */
+ PARROT_OP_new_p_sc, /* 591 */
+ PARROT_OP_new_p_s_p, /* 592 */
+ PARROT_OP_new_p_sc_p, /* 593 */
+ PARROT_OP_new_p_s_pc, /* 594 */
+ PARROT_OP_new_p_sc_pc, /* 595 */
+ PARROT_OP_new_p_p, /* 596 */
+ PARROT_OP_new_p_pc, /* 597 */
+ PARROT_OP_new_p_p_p, /* 598 */
+ PARROT_OP_new_p_pc_p, /* 599 */
+ PARROT_OP_new_p_p_pc, /* 600 */
+ PARROT_OP_new_p_pc_pc, /* 601 */
+ PARROT_OP_root_new_p_p, /* 602 */
+ PARROT_OP_root_new_p_pc, /* 603 */
+ PARROT_OP_root_new_p_p_p, /* 604 */
+ PARROT_OP_root_new_p_pc_p, /* 605 */
+ PARROT_OP_root_new_p_p_pc, /* 606 */
+ PARROT_OP_root_new_p_pc_pc, /* 607 */
+ PARROT_OP_typeof_s_p, /* 608 */
+ PARROT_OP_typeof_p_p, /* 609 */
+ PARROT_OP_get_repr_s_p, /* 610 */
+ PARROT_OP_find_method_p_p_s, /* 611 */
+ PARROT_OP_find_method_p_p_sc, /* 612 */
+ PARROT_OP_defined_i_p, /* 613 */
+ PARROT_OP_defined_i_p_ki, /* 614 */
+ PARROT_OP_defined_i_p_kic, /* 615 */
+ PARROT_OP_defined_i_p_k, /* 616 */
+ PARROT_OP_defined_i_p_kc, /* 617 */
+ PARROT_OP_exists_i_p_ki, /* 618 */
+ PARROT_OP_exists_i_p_kic, /* 619 */
+ PARROT_OP_exists_i_p_k, /* 620 */
+ PARROT_OP_exists_i_p_kc, /* 621 */
+ PARROT_OP_delete_p_k, /* 622 */
+ PARROT_OP_delete_p_kc, /* 623 */
+ PARROT_OP_delete_p_ki, /* 624 */
+ PARROT_OP_delete_p_kic, /* 625 */
+ PARROT_OP_elements_i_p, /* 626 */
+ PARROT_OP_push_p_i, /* 627 */
+ PARROT_OP_push_p_ic, /* 628 */
+ PARROT_OP_push_p_n, /* 629 */
+ PARROT_OP_push_p_nc, /* 630 */
+ PARROT_OP_push_p_s, /* 631 */
+ PARROT_OP_push_p_sc, /* 632 */
+ PARROT_OP_push_p_p, /* 633 */
+ PARROT_OP_pop_i_p, /* 634 */
+ PARROT_OP_pop_n_p, /* 635 */
+ PARROT_OP_pop_s_p, /* 636 */
+ PARROT_OP_pop_p_p, /* 637 */
+ PARROT_OP_unshift_p_i, /* 638 */
+ PARROT_OP_unshift_p_ic, /* 639 */
+ PARROT_OP_unshift_p_n, /* 640 */
+ PARROT_OP_unshift_p_nc, /* 641 */
+ PARROT_OP_unshift_p_s, /* 642 */
+ PARROT_OP_unshift_p_sc, /* 643 */
+ PARROT_OP_unshift_p_p, /* 644 */
+ PARROT_OP_shift_i_p, /* 645 */
+ PARROT_OP_shift_n_p, /* 646 */
+ PARROT_OP_shift_s_p, /* 647 */
+ PARROT_OP_shift_p_p, /* 648 */
+ PARROT_OP_splice_p_p_i_i, /* 649 */
+ PARROT_OP_splice_p_p_ic_i, /* 650 */
+ PARROT_OP_splice_p_p_i_ic, /* 651 */
+ PARROT_OP_splice_p_p_ic_ic, /* 652 */
+ PARROT_OP_setprop_p_s_p, /* 653 */
+ PARROT_OP_setprop_p_sc_p, /* 654 */
+ PARROT_OP_getprop_p_s_p, /* 655 */
+ PARROT_OP_getprop_p_sc_p, /* 656 */
+ PARROT_OP_delprop_p_s, /* 657 */
+ PARROT_OP_delprop_p_sc, /* 658 */
+ PARROT_OP_prophash_p_p, /* 659 */
+ PARROT_OP_freeze_s_p, /* 660 */
+ PARROT_OP_thaw_p_s, /* 661 */
+ PARROT_OP_thaw_p_sc, /* 662 */
+ PARROT_OP_add_multi_s_s_p, /* 663 */
+ PARROT_OP_add_multi_sc_s_p, /* 664 */
+ PARROT_OP_add_multi_s_sc_p, /* 665 */
+ PARROT_OP_add_multi_sc_sc_p, /* 666 */
+ PARROT_OP_find_multi_p_s_s, /* 667 */
+ PARROT_OP_find_multi_p_sc_s, /* 668 */
+ PARROT_OP_find_multi_p_s_sc, /* 669 */
+ PARROT_OP_find_multi_p_sc_sc, /* 670 */
+ PARROT_OP_register_p, /* 671 */
+ PARROT_OP_unregister_p, /* 672 */
+ PARROT_OP_box_p_i, /* 673 */
+ PARROT_OP_box_p_ic, /* 674 */
+ PARROT_OP_box_p_n, /* 675 */
+ PARROT_OP_box_p_nc, /* 676 */
+ PARROT_OP_box_p_s, /* 677 */
+ PARROT_OP_box_p_sc, /* 678 */
+ PARROT_OP_iter_p_p, /* 679 */
+ PARROT_OP_morph_p_p, /* 680 */
+ PARROT_OP_morph_p_pc, /* 681 */
+ PARROT_OP_clone_s_s, /* 682 */
+ PARROT_OP_clone_s_sc, /* 683 */
+ PARROT_OP_set_i_i, /* 684 */
+ PARROT_OP_set_i_ic, /* 685 */
+ PARROT_OP_set_i_n, /* 686 */
+ PARROT_OP_set_i_nc, /* 687 */
+ PARROT_OP_set_i_s, /* 688 */
+ PARROT_OP_set_i_sc, /* 689 */
+ PARROT_OP_set_n_n, /* 690 */
+ PARROT_OP_set_n_nc, /* 691 */
+ PARROT_OP_set_n_i, /* 692 */
+ PARROT_OP_set_n_ic, /* 693 */
+ PARROT_OP_set_n_s, /* 694 */
+ PARROT_OP_set_n_sc, /* 695 */
+ PARROT_OP_set_n_p, /* 696 */
+ PARROT_OP_set_s_p, /* 697 */
+ PARROT_OP_set_s_s, /* 698 */
+ PARROT_OP_set_s_sc, /* 699 */
+ PARROT_OP_set_s_i, /* 700 */
+ PARROT_OP_set_s_ic, /* 701 */
+ PARROT_OP_set_s_n, /* 702 */
+ PARROT_OP_set_s_nc, /* 703 */
+ PARROT_OP_set_p_pc, /* 704 */
+ PARROT_OP_set_p_p, /* 705 */
+ PARROT_OP_set_p_i, /* 706 */
+ PARROT_OP_set_p_ic, /* 707 */
+ PARROT_OP_set_p_n, /* 708 */
+ PARROT_OP_set_p_nc, /* 709 */
+ PARROT_OP_set_p_s, /* 710 */
+ PARROT_OP_set_p_sc, /* 711 */
+ PARROT_OP_set_i_p, /* 712 */
+ PARROT_OP_assign_p_p, /* 713 */
+ PARROT_OP_assign_p_i, /* 714 */
+ PARROT_OP_assign_p_ic, /* 715 */
+ PARROT_OP_assign_p_n, /* 716 */
+ PARROT_OP_assign_p_nc, /* 717 */
+ PARROT_OP_assign_p_s, /* 718 */
+ PARROT_OP_assign_p_sc, /* 719 */
+ PARROT_OP_assign_s_s, /* 720 */
+ PARROT_OP_assign_s_sc, /* 721 */
+ PARROT_OP_setref_p_p, /* 722 */
+ PARROT_OP_deref_p_p, /* 723 */
+ PARROT_OP_set_p_ki_i, /* 724 */
+ PARROT_OP_set_p_kic_i, /* 725 */
+ PARROT_OP_set_p_ki_ic, /* 726 */
+ PARROT_OP_set_p_kic_ic, /* 727 */
+ PARROT_OP_set_p_ki_n, /* 728 */
+ PARROT_OP_set_p_kic_n, /* 729 */
+ PARROT_OP_set_p_ki_nc, /* 730 */
+ PARROT_OP_set_p_kic_nc, /* 731 */
+ PARROT_OP_set_p_ki_s, /* 732 */
+ PARROT_OP_set_p_kic_s, /* 733 */
+ PARROT_OP_set_p_ki_sc, /* 734 */
+ PARROT_OP_set_p_kic_sc, /* 735 */
+ PARROT_OP_set_p_ki_p, /* 736 */
+ PARROT_OP_set_p_kic_p, /* 737 */
+ PARROT_OP_set_i_p_ki, /* 738 */
+ PARROT_OP_set_i_p_kic, /* 739 */
+ PARROT_OP_set_n_p_ki, /* 740 */
+ PARROT_OP_set_n_p_kic, /* 741 */
+ PARROT_OP_set_s_p_ki, /* 742 */
+ PARROT_OP_set_s_p_kic, /* 743 */
+ PARROT_OP_set_p_p_ki, /* 744 */
+ PARROT_OP_set_p_p_kic, /* 745 */
+ PARROT_OP_set_p_k_i, /* 746 */
+ PARROT_OP_set_p_kc_i, /* 747 */
+ PARROT_OP_set_p_k_ic, /* 748 */
+ PARROT_OP_set_p_kc_ic, /* 749 */
+ PARROT_OP_set_p_k_n, /* 750 */
+ PARROT_OP_set_p_kc_n, /* 751 */
+ PARROT_OP_set_p_k_nc, /* 752 */
+ PARROT_OP_set_p_kc_nc, /* 753 */
+ PARROT_OP_set_p_k_s, /* 754 */
+ PARROT_OP_set_p_kc_s, /* 755 */
+ PARROT_OP_set_p_k_sc, /* 756 */
+ PARROT_OP_set_p_kc_sc, /* 757 */
+ PARROT_OP_set_p_k_p, /* 758 */
+ PARROT_OP_set_p_kc_p, /* 759 */
+ PARROT_OP_set_i_p_k, /* 760 */
+ PARROT_OP_set_i_p_kc, /* 761 */
+ PARROT_OP_set_n_p_k, /* 762 */
+ PARROT_OP_set_n_p_kc, /* 763 */
+ PARROT_OP_set_s_p_k, /* 764 */
+ PARROT_OP_set_s_p_kc, /* 765 */
+ PARROT_OP_set_p_p_k, /* 766 */
+ PARROT_OP_set_p_p_kc, /* 767 */
+ PARROT_OP_clone_p_p, /* 768 */
+ PARROT_OP_clone_p_p_p, /* 769 */
+ PARROT_OP_clone_p_p_pc, /* 770 */
+ PARROT_OP_copy_p_p, /* 771 */
+ PARROT_OP_null_s, /* 772 */
+ PARROT_OP_null_i, /* 773 */
+ PARROT_OP_null_p, /* 774 */
+ PARROT_OP_null_n, /* 775 */
+ PARROT_OP_ord_i_s, /* 776 */
+ PARROT_OP_ord_i_sc, /* 777 */
+ PARROT_OP_ord_i_s_i, /* 778 */
+ PARROT_OP_ord_i_sc_i, /* 779 */
+ PARROT_OP_ord_i_s_ic, /* 780 */
+ PARROT_OP_ord_i_sc_ic, /* 781 */
+ PARROT_OP_chr_s_i, /* 782 */
+ PARROT_OP_chr_s_ic, /* 783 */
+ PARROT_OP_chopn_s_s_i, /* 784 */
+ PARROT_OP_chopn_s_sc_i, /* 785 */
+ PARROT_OP_chopn_s_s_ic, /* 786 */
+ PARROT_OP_chopn_s_sc_ic, /* 787 */
+ PARROT_OP_concat_s_s, /* 788 */
+ PARROT_OP_concat_s_sc, /* 789 */
+ PARROT_OP_concat_p_p, /* 790 */
+ PARROT_OP_concat_p_s, /* 791 */
+ PARROT_OP_concat_p_sc, /* 792 */
+ PARROT_OP_concat_s_s_s, /* 793 */
+ PARROT_OP_concat_s_sc_s, /* 794 */
+ PARROT_OP_concat_s_s_sc, /* 795 */
+ PARROT_OP_concat_p_p_s, /* 796 */
+ PARROT_OP_concat_p_p_sc, /* 797 */
+ PARROT_OP_concat_p_p_p, /* 798 */
+ PARROT_OP_repeat_s_s_i, /* 799 */
+ PARROT_OP_repeat_s_sc_i, /* 800 */
+ PARROT_OP_repeat_s_s_ic, /* 801 */
+ PARROT_OP_repeat_s_sc_ic, /* 802 */
+ PARROT_OP_repeat_p_p_i, /* 803 */
+ PARROT_OP_repeat_p_p_ic, /* 804 */
+ PARROT_OP_repeat_p_p_p, /* 805 */
+ PARROT_OP_repeat_p_i, /* 806 */
+ PARROT_OP_repeat_p_ic, /* 807 */
+ PARROT_OP_repeat_p_p, /* 808 */
+ PARROT_OP_length_i_s, /* 809 */
+ PARROT_OP_length_i_sc, /* 810 */
+ PARROT_OP_bytelength_i_s, /* 811 */
+ PARROT_OP_bytelength_i_sc, /* 812 */
+ PARROT_OP_pin_s, /* 813 */
+ PARROT_OP_unpin_s, /* 814 */
+ PARROT_OP_substr_s_s_i, /* 815 */
+ PARROT_OP_substr_s_sc_i, /* 816 */
+ PARROT_OP_substr_s_s_ic, /* 817 */
+ PARROT_OP_substr_s_sc_ic, /* 818 */
+ PARROT_OP_substr_s_s_i_i, /* 819 */
+ PARROT_OP_substr_s_sc_i_i, /* 820 */
+ PARROT_OP_substr_s_s_ic_i, /* 821 */
+ PARROT_OP_substr_s_sc_ic_i, /* 822 */
+ PARROT_OP_substr_s_s_i_ic, /* 823 */
+ PARROT_OP_substr_s_sc_i_ic, /* 824 */
+ PARROT_OP_substr_s_s_ic_ic, /* 825 */
+ PARROT_OP_substr_s_sc_ic_ic, /* 826 */
+ PARROT_OP_substr_s_p_i_i, /* 827 */
+ PARROT_OP_substr_s_p_ic_i, /* 828 */
+ PARROT_OP_substr_s_p_i_ic, /* 829 */
+ PARROT_OP_substr_s_p_ic_ic, /* 830 */
+ PARROT_OP_replace_s_s_i_i_s, /* 831 */
+ PARROT_OP_replace_s_sc_i_i_s, /* 832 */
+ PARROT_OP_replace_s_s_ic_i_s, /* 833 */
+ PARROT_OP_replace_s_sc_ic_i_s, /* 834 */
+ PARROT_OP_replace_s_s_i_ic_s, /* 835 */
+ PARROT_OP_replace_s_sc_i_ic_s, /* 836 */
+ PARROT_OP_replace_s_s_ic_ic_s, /* 837 */
+ PARROT_OP_replace_s_sc_ic_ic_s, /* 838 */
+ PARROT_OP_replace_s_s_i_i_sc, /* 839 */
+ PARROT_OP_replace_s_sc_i_i_sc, /* 840 */
+ PARROT_OP_replace_s_s_ic_i_sc, /* 841 */
+ PARROT_OP_replace_s_sc_ic_i_sc, /* 842 */
+ PARROT_OP_replace_s_s_i_ic_sc, /* 843 */
+ PARROT_OP_replace_s_sc_i_ic_sc, /* 844 */
+ PARROT_OP_replace_s_s_ic_ic_sc, /* 845 */
+ PARROT_OP_replace_s_sc_ic_ic_sc, /* 846 */
+ PARROT_OP_index_i_s_s, /* 847 */
+ PARROT_OP_index_i_sc_s, /* 848 */
+ PARROT_OP_index_i_s_sc, /* 849 */
+ PARROT_OP_index_i_sc_sc, /* 850 */
+ PARROT_OP_index_i_s_s_i, /* 851 */
+ PARROT_OP_index_i_sc_s_i, /* 852 */
+ PARROT_OP_index_i_s_sc_i, /* 853 */
+ PARROT_OP_index_i_sc_sc_i, /* 854 */
+ PARROT_OP_index_i_s_s_ic, /* 855 */
+ PARROT_OP_index_i_sc_s_ic, /* 856 */
+ PARROT_OP_index_i_s_sc_ic, /* 857 */
+ PARROT_OP_index_i_sc_sc_ic, /* 858 */
+ PARROT_OP_sprintf_s_s_p, /* 859 */
+ PARROT_OP_sprintf_s_sc_p, /* 860 */
+ PARROT_OP_sprintf_p_p_p, /* 861 */
+ PARROT_OP_new_s, /* 862 */
+ PARROT_OP_new_s_i, /* 863 */
+ PARROT_OP_new_s_ic, /* 864 */
+ PARROT_OP_stringinfo_i_s_i, /* 865 */
+ PARROT_OP_stringinfo_i_sc_i, /* 866 */
+ PARROT_OP_stringinfo_i_s_ic, /* 867 */
+ PARROT_OP_stringinfo_i_sc_ic, /* 868 */
+ PARROT_OP_upcase_s_s, /* 869 */
+ PARROT_OP_upcase_s_sc, /* 870 */
+ PARROT_OP_downcase_s_s, /* 871 */
+ PARROT_OP_downcase_s_sc, /* 872 */
+ PARROT_OP_titlecase_s_s, /* 873 */
+ PARROT_OP_titlecase_s_sc, /* 874 */
+ PARROT_OP_join_s_s_p, /* 875 */
+ PARROT_OP_join_s_sc_p, /* 876 */
+ PARROT_OP_split_p_s_s, /* 877 */
+ PARROT_OP_split_p_sc_s, /* 878 */
+ PARROT_OP_split_p_s_sc, /* 879 */
+ PARROT_OP_split_p_sc_sc, /* 880 */
+ PARROT_OP_charset_i_s, /* 881 */
+ PARROT_OP_charset_i_sc, /* 882 */
+ PARROT_OP_charsetname_s_i, /* 883 */
+ PARROT_OP_charsetname_s_ic, /* 884 */
+ PARROT_OP_find_charset_i_s, /* 885 */
+ PARROT_OP_find_charset_i_sc, /* 886 */
+ PARROT_OP_trans_charset_s_s_i, /* 887 */
+ PARROT_OP_trans_charset_s_sc_i, /* 888 */
+ PARROT_OP_trans_charset_s_s_ic, /* 889 */
+ PARROT_OP_trans_charset_s_sc_ic, /* 890 */
+ PARROT_OP_encoding_i_s, /* 891 */
+ PARROT_OP_encoding_i_sc, /* 892 */
+ PARROT_OP_encodingname_s_i, /* 893 */
+ PARROT_OP_encodingname_s_ic, /* 894 */
+ PARROT_OP_find_encoding_i_s, /* 895 */
+ PARROT_OP_find_encoding_i_sc, /* 896 */
+ PARROT_OP_trans_encoding_s_s_i, /* 897 */
+ PARROT_OP_trans_encoding_s_sc_i, /* 898 */
+ PARROT_OP_trans_encoding_s_s_ic, /* 899 */
+ PARROT_OP_trans_encoding_s_sc_ic, /* 900 */
+ PARROT_OP_is_cclass_i_i_s_i, /* 901 */
+ PARROT_OP_is_cclass_i_ic_s_i, /* 902 */
+ PARROT_OP_is_cclass_i_i_sc_i, /* 903 */
+ PARROT_OP_is_cclass_i_ic_sc_i, /* 904 */
+ PARROT_OP_is_cclass_i_i_s_ic, /* 905 */
+ PARROT_OP_is_cclass_i_ic_s_ic, /* 906 */
+ PARROT_OP_is_cclass_i_i_sc_ic, /* 907 */
+ PARROT_OP_is_cclass_i_ic_sc_ic, /* 908 */
+ PARROT_OP_find_cclass_i_i_s_i_i, /* 909 */
+ PARROT_OP_find_cclass_i_ic_s_i_i, /* 910 */
+ PARROT_OP_find_cclass_i_i_sc_i_i, /* 911 */
+ PARROT_OP_find_cclass_i_ic_sc_i_i, /* 912 */
+ PARROT_OP_find_cclass_i_i_s_ic_i, /* 913 */
+ PARROT_OP_find_cclass_i_ic_s_ic_i, /* 914 */
+ PARROT_OP_find_cclass_i_i_sc_ic_i, /* 915 */
+ PARROT_OP_find_cclass_i_ic_sc_ic_i, /* 916 */
+ PARROT_OP_find_cclass_i_i_s_i_ic, /* 917 */
+ PARROT_OP_find_cclass_i_ic_s_i_ic, /* 918 */
+ PARROT_OP_find_cclass_i_i_sc_i_ic, /* 919 */
+ PARROT_OP_find_cclass_i_ic_sc_i_ic, /* 920 */
+ PARROT_OP_find_cclass_i_i_s_ic_ic, /* 921 */
+ PARROT_OP_find_cclass_i_ic_s_ic_ic, /* 922 */
+ PARROT_OP_find_cclass_i_i_sc_ic_ic, /* 923 */
+ PARROT_OP_find_cclass_i_ic_sc_ic_ic, /* 924 */
+ PARROT_OP_find_not_cclass_i_i_s_i_i, /* 925 */
+ PARROT_OP_find_not_cclass_i_ic_s_i_i, /* 926 */
+ PARROT_OP_find_not_cclass_i_i_sc_i_i, /* 927 */
+ PARROT_OP_find_not_cclass_i_ic_sc_i_i, /* 928 */
+ PARROT_OP_find_not_cclass_i_i_s_ic_i, /* 929 */
+ PARROT_OP_find_not_cclass_i_ic_s_ic_i, /* 930 */
+ PARROT_OP_find_not_cclass_i_i_sc_ic_i, /* 931 */
+ PARROT_OP_find_not_cclass_i_ic_sc_ic_i, /* 932 */
+ PARROT_OP_find_not_cclass_i_i_s_i_ic, /* 933 */
+ PARROT_OP_find_not_cclass_i_ic_s_i_ic, /* 934 */
+ PARROT_OP_find_not_cclass_i_i_sc_i_ic, /* 935 */
+ PARROT_OP_find_not_cclass_i_ic_sc_i_ic, /* 936 */
+ PARROT_OP_find_not_cclass_i_i_s_ic_ic, /* 937 */
+ PARROT_OP_find_not_cclass_i_ic_s_ic_ic, /* 938 */
+ PARROT_OP_find_not_cclass_i_i_sc_ic_ic, /* 939 */
+ PARROT_OP_find_not_cclass_i_ic_sc_ic_ic, /* 940 */
+ PARROT_OP_escape_s_s, /* 941 */
+ PARROT_OP_compose_s_s, /* 942 */
+ PARROT_OP_compose_s_sc, /* 943 */
+ PARROT_OP_spawnw_i_s, /* 944 */
+ PARROT_OP_spawnw_i_sc, /* 945 */
+ PARROT_OP_spawnw_i_p, /* 946 */
+ PARROT_OP_err_i, /* 947 */
+ PARROT_OP_err_s, /* 948 */
+ PARROT_OP_err_s_i, /* 949 */
+ PARROT_OP_err_s_ic, /* 950 */
+ PARROT_OP_time_i, /* 951 */
+ PARROT_OP_time_n, /* 952 */
+ PARROT_OP_sleep_i, /* 953 */
+ PARROT_OP_sleep_ic, /* 954 */
+ PARROT_OP_sleep_n, /* 955 */
+ PARROT_OP_sleep_nc, /* 956 */
+ PARROT_OP_store_lex_s_p, /* 957 */
+ PARROT_OP_store_lex_sc_p, /* 958 */
+ PARROT_OP_store_dynamic_lex_s_p, /* 959 */
+ PARROT_OP_store_dynamic_lex_sc_p, /* 960 */
+ PARROT_OP_find_lex_p_s, /* 961 */
+ PARROT_OP_find_lex_p_sc, /* 962 */
+ PARROT_OP_find_dynamic_lex_p_s, /* 963 */
+ PARROT_OP_find_dynamic_lex_p_sc, /* 964 */
+ PARROT_OP_find_caller_lex_p_s, /* 965 */
+ PARROT_OP_find_caller_lex_p_sc, /* 966 */
+ PARROT_OP_get_namespace_p, /* 967 */
+ PARROT_OP_get_namespace_p_p, /* 968 */
+ PARROT_OP_get_namespace_p_pc, /* 969 */
+ PARROT_OP_get_hll_namespace_p, /* 970 */
+ PARROT_OP_get_hll_namespace_p_p, /* 971 */
+ PARROT_OP_get_hll_namespace_p_pc, /* 972 */
+ PARROT_OP_get_root_namespace_p, /* 973 */
+ PARROT_OP_get_root_namespace_p_p, /* 974 */
+ PARROT_OP_get_root_namespace_p_pc, /* 975 */
+ PARROT_OP_get_global_p_s, /* 976 */
+ PARROT_OP_get_global_p_sc, /* 977 */
+ PARROT_OP_get_global_p_p_s, /* 978 */
+ PARROT_OP_get_global_p_pc_s, /* 979 */
+ PARROT_OP_get_global_p_p_sc, /* 980 */
+ PARROT_OP_get_global_p_pc_sc, /* 981 */
+ PARROT_OP_get_hll_global_p_s, /* 982 */
+ PARROT_OP_get_hll_global_p_sc, /* 983 */
+ PARROT_OP_get_hll_global_p_p_s, /* 984 */
+ PARROT_OP_get_hll_global_p_pc_s, /* 985 */
+ PARROT_OP_get_hll_global_p_p_sc, /* 986 */
+ PARROT_OP_get_hll_global_p_pc_sc, /* 987 */
+ PARROT_OP_get_root_global_p_s, /* 988 */
+ PARROT_OP_get_root_global_p_sc, /* 989 */
+ PARROT_OP_get_root_global_p_p_s, /* 990 */
+ PARROT_OP_get_root_global_p_pc_s, /* 991 */
+ PARROT_OP_get_root_global_p_p_sc, /* 992 */
+ PARROT_OP_get_root_global_p_pc_sc, /* 993 */
+ PARROT_OP_set_global_s_p, /* 994 */
+ PARROT_OP_set_global_sc_p, /* 995 */
+ PARROT_OP_set_global_p_s_p, /* 996 */
+ PARROT_OP_set_global_pc_s_p, /* 997 */
+ PARROT_OP_set_global_p_sc_p, /* 998 */
+ PARROT_OP_set_global_pc_sc_p, /* 999 */
+ PARROT_OP_set_hll_global_s_p, /* 1000 */
+ PARROT_OP_set_hll_global_sc_p, /* 1001 */
+ PARROT_OP_set_hll_global_p_s_p, /* 1002 */
+ PARROT_OP_set_hll_global_pc_s_p, /* 1003 */
+ PARROT_OP_set_hll_global_p_sc_p, /* 1004 */
+ PARROT_OP_set_hll_global_pc_sc_p, /* 1005 */
+ PARROT_OP_set_root_global_s_p, /* 1006 */
+ PARROT_OP_set_root_global_sc_p, /* 1007 */
+ PARROT_OP_set_root_global_p_s_p, /* 1008 */
+ PARROT_OP_set_root_global_pc_s_p, /* 1009 */
+ PARROT_OP_set_root_global_p_sc_p, /* 1010 */
+ PARROT_OP_set_root_global_pc_sc_p, /* 1011 */
+ PARROT_OP_find_name_p_s, /* 1012 */
+ PARROT_OP_find_name_p_sc, /* 1013 */
+ PARROT_OP_find_sub_not_null_p_s, /* 1014 */
+ PARROT_OP_find_sub_not_null_p_sc, /* 1015 */
+ PARROT_OP_trap, /* 1016 */
+ PARROT_OP_set_label_p_ic, /* 1017 */
+ PARROT_OP_get_label_i_p, /* 1018 */
+ PARROT_OP_fetch_p_p_p_p, /* 1019 */
+ PARROT_OP_fetch_p_pc_p_p, /* 1020 */
+ PARROT_OP_fetch_p_p_pc_p, /* 1021 */
+ PARROT_OP_fetch_p_pc_pc_p, /* 1022 */
+ PARROT_OP_fetch_p_p_p_pc, /* 1023 */
+ PARROT_OP_fetch_p_pc_p_pc, /* 1024 */
+ PARROT_OP_fetch_p_p_pc_pc, /* 1025 */
+ PARROT_OP_fetch_p_pc_pc_pc, /* 1026 */
+ PARROT_OP_fetch_p_p_i_p, /* 1027 */
+ PARROT_OP_fetch_p_pc_i_p, /* 1028 */
+ PARROT_OP_fetch_p_p_ic_p, /* 1029 */
+ PARROT_OP_fetch_p_pc_ic_p, /* 1030 */
+ PARROT_OP_fetch_p_p_i_pc, /* 1031 */
+ PARROT_OP_fetch_p_pc_i_pc, /* 1032 */
+ PARROT_OP_fetch_p_p_ic_pc, /* 1033 */
+ PARROT_OP_fetch_p_pc_ic_pc, /* 1034 */
+ PARROT_OP_fetch_p_p_s_p, /* 1035 */
+ PARROT_OP_fetch_p_pc_s_p, /* 1036 */
+ PARROT_OP_fetch_p_p_sc_p, /* 1037 */
+ PARROT_OP_fetch_p_pc_sc_p, /* 1038 */
+ PARROT_OP_fetch_p_p_s_pc, /* 1039 */
+ PARROT_OP_fetch_p_pc_s_pc, /* 1040 */
+ PARROT_OP_fetch_p_p_sc_pc, /* 1041 */
+ PARROT_OP_fetch_p_pc_sc_pc, /* 1042 */
+ PARROT_OP_vivify_p_p_p_p, /* 1043 */
+ PARROT_OP_vivify_p_pc_p_p, /* 1044 */
+ PARROT_OP_vivify_p_p_pc_p, /* 1045 */
+ PARROT_OP_vivify_p_pc_pc_p, /* 1046 */
+ PARROT_OP_vivify_p_p_p_pc, /* 1047 */
+ PARROT_OP_vivify_p_pc_p_pc, /* 1048 */
+ PARROT_OP_vivify_p_p_pc_pc, /* 1049 */
+ PARROT_OP_vivify_p_pc_pc_pc, /* 1050 */
+ PARROT_OP_vivify_p_p_i_p, /* 1051 */
+ PARROT_OP_vivify_p_pc_i_p, /* 1052 */
+ PARROT_OP_vivify_p_p_ic_p, /* 1053 */
+ PARROT_OP_vivify_p_pc_ic_p, /* 1054 */
+ PARROT_OP_vivify_p_p_i_pc, /* 1055 */
+ PARROT_OP_vivify_p_pc_i_pc, /* 1056 */
+ PARROT_OP_vivify_p_p_ic_pc, /* 1057 */
+ PARROT_OP_vivify_p_pc_ic_pc, /* 1058 */
+ PARROT_OP_vivify_p_p_s_p, /* 1059 */
+ PARROT_OP_vivify_p_pc_s_p, /* 1060 */
+ PARROT_OP_vivify_p_p_sc_p, /* 1061 */
+ PARROT_OP_vivify_p_pc_sc_p, /* 1062 */
+ PARROT_OP_vivify_p_p_s_pc, /* 1063 */
+ PARROT_OP_vivify_p_pc_s_pc, /* 1064 */
+ PARROT_OP_vivify_p_p_sc_pc, /* 1065 */
+ PARROT_OP_vivify_p_pc_sc_pc, /* 1066 */
+ PARROT_OP_new_p_s_i, /* 1067 */
+ PARROT_OP_new_p_sc_i, /* 1068 */
+ PARROT_OP_new_p_s_ic, /* 1069 */
+ PARROT_OP_new_p_sc_ic, /* 1070 */
+ PARROT_OP_new_p_p_i, /* 1071 */
+ PARROT_OP_new_p_pc_i, /* 1072 */
+ PARROT_OP_new_p_p_ic, /* 1073 */
+ PARROT_OP_new_p_pc_ic, /* 1074 */
+ PARROT_OP_root_new_p_p_i, /* 1075 */
+ PARROT_OP_root_new_p_pc_i, /* 1076 */
+ PARROT_OP_root_new_p_p_ic, /* 1077 */
+ PARROT_OP_root_new_p_pc_ic, /* 1078 */
+ PARROT_OP_find_codepoint_i_s, /* 1079 */
+ PARROT_OP_find_codepoint_i_sc, /* 1080 */
+ PARROT_OP_finalize_p, /* 1081 */
+ PARROT_OP_finalize_pc /* 1082 */
} parrot_opcode_enums;
Modified: branches/gc_massacre/include/parrot/opsenum.h
==============================================================================
--- branches/gc_massacre/include/parrot/opsenum.h Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/include/parrot/opsenum.h Sun Jun 6 04:04:09 2010 (r47420)
@@ -380,721 +380,724 @@
enum_ops_print_p_s = 362,
enum_ops_print_p_sc = 363,
enum_ops_print_p_p = 364,
- enum_ops_abs_i = 365,
- enum_ops_abs_n = 366,
- enum_ops_abs_i_i = 367,
- enum_ops_abs_n_n = 368,
- enum_ops_abs_p = 369,
- enum_ops_abs_p_p = 370,
- enum_ops_add_i_i = 371,
- enum_ops_add_i_ic = 372,
- enum_ops_add_n_n = 373,
- enum_ops_add_n_nc = 374,
- enum_ops_add_p_p = 375,
- enum_ops_add_p_i = 376,
- enum_ops_add_p_ic = 377,
- enum_ops_add_p_n = 378,
- enum_ops_add_p_nc = 379,
- enum_ops_add_i_i_i = 380,
- enum_ops_add_i_ic_i = 381,
- enum_ops_add_i_i_ic = 382,
- enum_ops_add_n_n_n = 383,
- enum_ops_add_n_nc_n = 384,
- enum_ops_add_n_n_nc = 385,
- enum_ops_add_p_p_p = 386,
- enum_ops_add_p_p_i = 387,
- enum_ops_add_p_p_ic = 388,
- enum_ops_add_p_p_n = 389,
- enum_ops_add_p_p_nc = 390,
- enum_ops_dec_i = 391,
- enum_ops_dec_n = 392,
- enum_ops_dec_p = 393,
- enum_ops_div_i_i = 394,
- enum_ops_div_i_ic = 395,
- enum_ops_div_n_n = 396,
- enum_ops_div_n_nc = 397,
- enum_ops_div_p_p = 398,
- enum_ops_div_p_i = 399,
- enum_ops_div_p_ic = 400,
- enum_ops_div_p_n = 401,
- enum_ops_div_p_nc = 402,
- enum_ops_div_i_i_i = 403,
- enum_ops_div_i_ic_i = 404,
- enum_ops_div_i_i_ic = 405,
- enum_ops_div_i_ic_ic = 406,
- enum_ops_div_n_n_n = 407,
- enum_ops_div_n_nc_n = 408,
- enum_ops_div_n_n_nc = 409,
- enum_ops_div_n_nc_nc = 410,
- enum_ops_div_p_p_p = 411,
- enum_ops_div_p_p_i = 412,
- enum_ops_div_p_p_ic = 413,
- enum_ops_div_p_p_n = 414,
- enum_ops_div_p_p_nc = 415,
- enum_ops_fdiv_i_i = 416,
- enum_ops_fdiv_i_ic = 417,
- enum_ops_fdiv_n_n = 418,
- enum_ops_fdiv_n_nc = 419,
- enum_ops_fdiv_p_p = 420,
- enum_ops_fdiv_p_i = 421,
- enum_ops_fdiv_p_ic = 422,
- enum_ops_fdiv_p_n = 423,
- enum_ops_fdiv_p_nc = 424,
- enum_ops_fdiv_i_i_i = 425,
- enum_ops_fdiv_i_ic_i = 426,
- enum_ops_fdiv_i_i_ic = 427,
- enum_ops_fdiv_n_n_n = 428,
- enum_ops_fdiv_n_nc_n = 429,
- enum_ops_fdiv_n_n_nc = 430,
- enum_ops_fdiv_p_p_p = 431,
- enum_ops_fdiv_p_p_i = 432,
- enum_ops_fdiv_p_p_ic = 433,
- enum_ops_fdiv_p_p_n = 434,
- enum_ops_fdiv_p_p_nc = 435,
- enum_ops_ceil_n = 436,
- enum_ops_ceil_i_n = 437,
- enum_ops_ceil_n_n = 438,
- enum_ops_floor_n = 439,
- enum_ops_floor_i_n = 440,
- enum_ops_floor_n_n = 441,
- enum_ops_inc_i = 442,
- enum_ops_inc_n = 443,
- enum_ops_inc_p = 444,
- enum_ops_mod_i_i = 445,
- enum_ops_mod_i_ic = 446,
- enum_ops_mod_n_n = 447,
- enum_ops_mod_n_nc = 448,
- enum_ops_mod_p_p = 449,
- enum_ops_mod_p_i = 450,
- enum_ops_mod_p_ic = 451,
- enum_ops_mod_p_n = 452,
- enum_ops_mod_p_nc = 453,
- enum_ops_mod_i_i_i = 454,
- enum_ops_mod_i_ic_i = 455,
- enum_ops_mod_i_i_ic = 456,
- enum_ops_mod_n_n_n = 457,
- enum_ops_mod_n_nc_n = 458,
- enum_ops_mod_n_n_nc = 459,
- enum_ops_mod_p_p_p = 460,
- enum_ops_mod_p_p_i = 461,
- enum_ops_mod_p_p_ic = 462,
- enum_ops_mod_p_p_n = 463,
- enum_ops_mod_p_p_nc = 464,
- enum_ops_mul_i_i = 465,
- enum_ops_mul_i_ic = 466,
- enum_ops_mul_n_n = 467,
- enum_ops_mul_n_nc = 468,
- enum_ops_mul_p_p = 469,
- enum_ops_mul_p_i = 470,
- enum_ops_mul_p_ic = 471,
- enum_ops_mul_p_n = 472,
- enum_ops_mul_p_nc = 473,
- enum_ops_mul_i_i_i = 474,
- enum_ops_mul_i_ic_i = 475,
- enum_ops_mul_i_i_ic = 476,
- enum_ops_mul_n_n_n = 477,
- enum_ops_mul_n_nc_n = 478,
- enum_ops_mul_n_n_nc = 479,
- enum_ops_mul_p_p_p = 480,
- enum_ops_mul_p_p_i = 481,
- enum_ops_mul_p_p_ic = 482,
- enum_ops_mul_p_p_n = 483,
- enum_ops_mul_p_p_nc = 484,
- enum_ops_neg_i = 485,
- enum_ops_neg_n = 486,
- enum_ops_neg_p = 487,
- enum_ops_neg_i_i = 488,
- enum_ops_neg_n_n = 489,
- enum_ops_neg_p_p = 490,
- enum_ops_sub_i_i = 491,
- enum_ops_sub_i_ic = 492,
- enum_ops_sub_n_n = 493,
- enum_ops_sub_n_nc = 494,
- enum_ops_sub_p_p = 495,
- enum_ops_sub_p_i = 496,
- enum_ops_sub_p_ic = 497,
- enum_ops_sub_p_n = 498,
- enum_ops_sub_p_nc = 499,
- enum_ops_sub_i_i_i = 500,
- enum_ops_sub_i_ic_i = 501,
- enum_ops_sub_i_i_ic = 502,
- enum_ops_sub_n_n_n = 503,
- enum_ops_sub_n_nc_n = 504,
- enum_ops_sub_n_n_nc = 505,
- enum_ops_sub_p_p_p = 506,
- enum_ops_sub_p_p_i = 507,
- enum_ops_sub_p_p_ic = 508,
- enum_ops_sub_p_p_n = 509,
- enum_ops_sub_p_p_nc = 510,
- enum_ops_sqrt_n_n = 511,
- enum_ops_callmethodcc_p_s = 512,
- enum_ops_callmethodcc_p_sc = 513,
- enum_ops_callmethodcc_p_p = 514,
- enum_ops_callmethod_p_s_p = 515,
- enum_ops_callmethod_p_sc_p = 516,
- enum_ops_callmethod_p_p_p = 517,
- enum_ops_tailcallmethod_p_s = 518,
- enum_ops_tailcallmethod_p_sc = 519,
- enum_ops_tailcallmethod_p_p = 520,
- enum_ops_addmethod_p_s_p = 521,
- enum_ops_addmethod_p_sc_p = 522,
- enum_ops_can_i_p_s = 523,
- enum_ops_can_i_p_sc = 524,
- enum_ops_does_i_p_s = 525,
- enum_ops_does_i_p_sc = 526,
- enum_ops_does_i_p_p = 527,
- enum_ops_does_i_p_pc = 528,
- enum_ops_isa_i_p_s = 529,
- enum_ops_isa_i_p_sc = 530,
- enum_ops_isa_i_p_p = 531,
- enum_ops_isa_i_p_pc = 532,
- enum_ops_newclass_p_s = 533,
- enum_ops_newclass_p_sc = 534,
- enum_ops_newclass_p_p = 535,
- enum_ops_newclass_p_pc = 536,
- enum_ops_subclass_p_p = 537,
- enum_ops_subclass_p_pc = 538,
- enum_ops_subclass_p_p_s = 539,
- enum_ops_subclass_p_pc_s = 540,
- enum_ops_subclass_p_p_sc = 541,
- enum_ops_subclass_p_pc_sc = 542,
- enum_ops_subclass_p_p_p = 543,
- enum_ops_subclass_p_pc_p = 544,
- enum_ops_subclass_p_p_pc = 545,
- enum_ops_subclass_p_pc_pc = 546,
- enum_ops_subclass_p_s = 547,
- enum_ops_subclass_p_sc = 548,
- enum_ops_subclass_p_s_s = 549,
- enum_ops_subclass_p_sc_s = 550,
- enum_ops_subclass_p_s_sc = 551,
- enum_ops_subclass_p_sc_sc = 552,
- enum_ops_subclass_p_s_p = 553,
- enum_ops_subclass_p_sc_p = 554,
- enum_ops_subclass_p_s_pc = 555,
- enum_ops_subclass_p_sc_pc = 556,
- enum_ops_get_class_p_s = 557,
- enum_ops_get_class_p_sc = 558,
- enum_ops_get_class_p_p = 559,
- enum_ops_get_class_p_pc = 560,
- enum_ops_class_p_p = 561,
- enum_ops_addparent_p_p = 562,
- enum_ops_removeparent_p_p = 563,
- enum_ops_addrole_p_p = 564,
- enum_ops_addattribute_p_s = 565,
- enum_ops_addattribute_p_sc = 566,
- enum_ops_removeattribute_p_s = 567,
- enum_ops_removeattribute_p_sc = 568,
- enum_ops_getattribute_p_p_s = 569,
- enum_ops_getattribute_p_p_sc = 570,
- enum_ops_getattribute_p_p_p_s = 571,
- enum_ops_getattribute_p_p_pc_s = 572,
- enum_ops_getattribute_p_p_p_sc = 573,
- enum_ops_getattribute_p_p_pc_sc = 574,
- enum_ops_setattribute_p_s_p = 575,
- enum_ops_setattribute_p_sc_p = 576,
- enum_ops_setattribute_p_p_s_p = 577,
- enum_ops_setattribute_p_pc_s_p = 578,
- enum_ops_setattribute_p_p_sc_p = 579,
- enum_ops_setattribute_p_pc_sc_p = 580,
- enum_ops_inspect_p_p = 581,
- enum_ops_inspect_p_pc = 582,
- enum_ops_inspect_p_p_s = 583,
- enum_ops_inspect_p_pc_s = 584,
- enum_ops_inspect_p_p_sc = 585,
- enum_ops_inspect_p_pc_sc = 586,
- enum_ops_new_p_s = 587,
- enum_ops_new_p_sc = 588,
- enum_ops_new_p_s_p = 589,
- enum_ops_new_p_sc_p = 590,
- enum_ops_new_p_s_pc = 591,
- enum_ops_new_p_sc_pc = 592,
- enum_ops_new_p_p = 593,
- enum_ops_new_p_pc = 594,
- enum_ops_new_p_p_p = 595,
- enum_ops_new_p_pc_p = 596,
- enum_ops_new_p_p_pc = 597,
- enum_ops_new_p_pc_pc = 598,
- enum_ops_root_new_p_p = 599,
- enum_ops_root_new_p_pc = 600,
- enum_ops_root_new_p_p_p = 601,
- enum_ops_root_new_p_pc_p = 602,
- enum_ops_root_new_p_p_pc = 603,
- enum_ops_root_new_p_pc_pc = 604,
- enum_ops_typeof_s_p = 605,
- enum_ops_typeof_p_p = 606,
- enum_ops_get_repr_s_p = 607,
- enum_ops_find_method_p_p_s = 608,
- enum_ops_find_method_p_p_sc = 609,
- enum_ops_defined_i_p = 610,
- enum_ops_defined_i_p_ki = 611,
- enum_ops_defined_i_p_kic = 612,
- enum_ops_defined_i_p_k = 613,
- enum_ops_defined_i_p_kc = 614,
- enum_ops_exists_i_p_ki = 615,
- enum_ops_exists_i_p_kic = 616,
- enum_ops_exists_i_p_k = 617,
- enum_ops_exists_i_p_kc = 618,
- enum_ops_delete_p_k = 619,
- enum_ops_delete_p_kc = 620,
- enum_ops_delete_p_ki = 621,
- enum_ops_delete_p_kic = 622,
- enum_ops_elements_i_p = 623,
- enum_ops_push_p_i = 624,
- enum_ops_push_p_ic = 625,
- enum_ops_push_p_n = 626,
- enum_ops_push_p_nc = 627,
- enum_ops_push_p_s = 628,
- enum_ops_push_p_sc = 629,
- enum_ops_push_p_p = 630,
- enum_ops_pop_i_p = 631,
- enum_ops_pop_n_p = 632,
- enum_ops_pop_s_p = 633,
- enum_ops_pop_p_p = 634,
- enum_ops_unshift_p_i = 635,
- enum_ops_unshift_p_ic = 636,
- enum_ops_unshift_p_n = 637,
- enum_ops_unshift_p_nc = 638,
- enum_ops_unshift_p_s = 639,
- enum_ops_unshift_p_sc = 640,
- enum_ops_unshift_p_p = 641,
- enum_ops_shift_i_p = 642,
- enum_ops_shift_n_p = 643,
- enum_ops_shift_s_p = 644,
- enum_ops_shift_p_p = 645,
- enum_ops_splice_p_p_i_i = 646,
- enum_ops_splice_p_p_ic_i = 647,
- enum_ops_splice_p_p_i_ic = 648,
- enum_ops_splice_p_p_ic_ic = 649,
- enum_ops_setprop_p_s_p = 650,
- enum_ops_setprop_p_sc_p = 651,
- enum_ops_getprop_p_s_p = 652,
- enum_ops_getprop_p_sc_p = 653,
- enum_ops_delprop_p_s = 654,
- enum_ops_delprop_p_sc = 655,
- enum_ops_prophash_p_p = 656,
- enum_ops_freeze_s_p = 657,
- enum_ops_thaw_p_s = 658,
- enum_ops_thaw_p_sc = 659,
- enum_ops_add_multi_s_s_p = 660,
- enum_ops_add_multi_sc_s_p = 661,
- enum_ops_add_multi_s_sc_p = 662,
- enum_ops_add_multi_sc_sc_p = 663,
- enum_ops_find_multi_p_s_s = 664,
- enum_ops_find_multi_p_sc_s = 665,
- enum_ops_find_multi_p_s_sc = 666,
- enum_ops_find_multi_p_sc_sc = 667,
- enum_ops_register_p = 668,
- enum_ops_unregister_p = 669,
- enum_ops_box_p_i = 670,
- enum_ops_box_p_ic = 671,
- enum_ops_box_p_n = 672,
- enum_ops_box_p_nc = 673,
- enum_ops_box_p_s = 674,
- enum_ops_box_p_sc = 675,
- enum_ops_iter_p_p = 676,
- enum_ops_morph_p_p = 677,
- enum_ops_morph_p_pc = 678,
- enum_ops_clone_s_s = 679,
- enum_ops_clone_s_sc = 680,
- enum_ops_set_i_i = 681,
- enum_ops_set_i_ic = 682,
- enum_ops_set_i_n = 683,
- enum_ops_set_i_nc = 684,
- enum_ops_set_i_s = 685,
- enum_ops_set_i_sc = 686,
- enum_ops_set_n_n = 687,
- enum_ops_set_n_nc = 688,
- enum_ops_set_n_i = 689,
- enum_ops_set_n_ic = 690,
- enum_ops_set_n_s = 691,
- enum_ops_set_n_sc = 692,
- enum_ops_set_n_p = 693,
- enum_ops_set_s_p = 694,
- enum_ops_set_s_s = 695,
- enum_ops_set_s_sc = 696,
- enum_ops_set_s_i = 697,
- enum_ops_set_s_ic = 698,
- enum_ops_set_s_n = 699,
- enum_ops_set_s_nc = 700,
- enum_ops_set_p_pc = 701,
- enum_ops_set_p_p = 702,
- enum_ops_set_p_i = 703,
- enum_ops_set_p_ic = 704,
- enum_ops_set_p_n = 705,
- enum_ops_set_p_nc = 706,
- enum_ops_set_p_s = 707,
- enum_ops_set_p_sc = 708,
- enum_ops_set_i_p = 709,
- enum_ops_assign_p_p = 710,
- enum_ops_assign_p_i = 711,
- enum_ops_assign_p_ic = 712,
- enum_ops_assign_p_n = 713,
- enum_ops_assign_p_nc = 714,
- enum_ops_assign_p_s = 715,
- enum_ops_assign_p_sc = 716,
- enum_ops_assign_s_s = 717,
- enum_ops_assign_s_sc = 718,
- enum_ops_setref_p_p = 719,
- enum_ops_deref_p_p = 720,
- enum_ops_set_p_ki_i = 721,
- enum_ops_set_p_kic_i = 722,
- enum_ops_set_p_ki_ic = 723,
- enum_ops_set_p_kic_ic = 724,
- enum_ops_set_p_ki_n = 725,
- enum_ops_set_p_kic_n = 726,
- enum_ops_set_p_ki_nc = 727,
- enum_ops_set_p_kic_nc = 728,
- enum_ops_set_p_ki_s = 729,
- enum_ops_set_p_kic_s = 730,
- enum_ops_set_p_ki_sc = 731,
- enum_ops_set_p_kic_sc = 732,
- enum_ops_set_p_ki_p = 733,
- enum_ops_set_p_kic_p = 734,
- enum_ops_set_i_p_ki = 735,
- enum_ops_set_i_p_kic = 736,
- enum_ops_set_n_p_ki = 737,
- enum_ops_set_n_p_kic = 738,
- enum_ops_set_s_p_ki = 739,
- enum_ops_set_s_p_kic = 740,
- enum_ops_set_p_p_ki = 741,
- enum_ops_set_p_p_kic = 742,
- enum_ops_set_p_k_i = 743,
- enum_ops_set_p_kc_i = 744,
- enum_ops_set_p_k_ic = 745,
- enum_ops_set_p_kc_ic = 746,
- enum_ops_set_p_k_n = 747,
- enum_ops_set_p_kc_n = 748,
- enum_ops_set_p_k_nc = 749,
- enum_ops_set_p_kc_nc = 750,
- enum_ops_set_p_k_s = 751,
- enum_ops_set_p_kc_s = 752,
- enum_ops_set_p_k_sc = 753,
- enum_ops_set_p_kc_sc = 754,
- enum_ops_set_p_k_p = 755,
- enum_ops_set_p_kc_p = 756,
- enum_ops_set_i_p_k = 757,
- enum_ops_set_i_p_kc = 758,
- enum_ops_set_n_p_k = 759,
- enum_ops_set_n_p_kc = 760,
- enum_ops_set_s_p_k = 761,
- enum_ops_set_s_p_kc = 762,
- enum_ops_set_p_p_k = 763,
- enum_ops_set_p_p_kc = 764,
- enum_ops_clone_p_p = 765,
- enum_ops_clone_p_p_p = 766,
- enum_ops_clone_p_p_pc = 767,
- enum_ops_copy_p_p = 768,
- enum_ops_null_s = 769,
- enum_ops_null_i = 770,
- enum_ops_null_p = 771,
- enum_ops_null_n = 772,
- enum_ops_ord_i_s = 773,
- enum_ops_ord_i_sc = 774,
- enum_ops_ord_i_s_i = 775,
- enum_ops_ord_i_sc_i = 776,
- enum_ops_ord_i_s_ic = 777,
- enum_ops_ord_i_sc_ic = 778,
- enum_ops_chr_s_i = 779,
- enum_ops_chr_s_ic = 780,
- enum_ops_chopn_s_s_i = 781,
- enum_ops_chopn_s_sc_i = 782,
- enum_ops_chopn_s_s_ic = 783,
- enum_ops_chopn_s_sc_ic = 784,
- enum_ops_concat_s_s = 785,
- enum_ops_concat_s_sc = 786,
- enum_ops_concat_p_p = 787,
- enum_ops_concat_p_s = 788,
- enum_ops_concat_p_sc = 789,
- enum_ops_concat_s_s_s = 790,
- enum_ops_concat_s_sc_s = 791,
- enum_ops_concat_s_s_sc = 792,
- enum_ops_concat_p_p_s = 793,
- enum_ops_concat_p_p_sc = 794,
- enum_ops_concat_p_p_p = 795,
- enum_ops_repeat_s_s_i = 796,
- enum_ops_repeat_s_sc_i = 797,
- enum_ops_repeat_s_s_ic = 798,
- enum_ops_repeat_s_sc_ic = 799,
- enum_ops_repeat_p_p_i = 800,
- enum_ops_repeat_p_p_ic = 801,
- enum_ops_repeat_p_p_p = 802,
- enum_ops_repeat_p_i = 803,
- enum_ops_repeat_p_ic = 804,
- enum_ops_repeat_p_p = 805,
- enum_ops_length_i_s = 806,
- enum_ops_length_i_sc = 807,
- enum_ops_bytelength_i_s = 808,
- enum_ops_bytelength_i_sc = 809,
- enum_ops_pin_s = 810,
- enum_ops_unpin_s = 811,
- enum_ops_substr_s_s_i = 812,
- enum_ops_substr_s_sc_i = 813,
- enum_ops_substr_s_s_ic = 814,
- enum_ops_substr_s_sc_ic = 815,
- enum_ops_substr_s_s_i_i = 816,
- enum_ops_substr_s_sc_i_i = 817,
- enum_ops_substr_s_s_ic_i = 818,
- enum_ops_substr_s_sc_ic_i = 819,
- enum_ops_substr_s_s_i_ic = 820,
- enum_ops_substr_s_sc_i_ic = 821,
- enum_ops_substr_s_s_ic_ic = 822,
- enum_ops_substr_s_sc_ic_ic = 823,
- enum_ops_substr_s_p_i_i = 824,
- enum_ops_substr_s_p_ic_i = 825,
- enum_ops_substr_s_p_i_ic = 826,
- enum_ops_substr_s_p_ic_ic = 827,
- enum_ops_replace_s_s_i_i_s = 828,
- enum_ops_replace_s_sc_i_i_s = 829,
- enum_ops_replace_s_s_ic_i_s = 830,
- enum_ops_replace_s_sc_ic_i_s = 831,
- enum_ops_replace_s_s_i_ic_s = 832,
- enum_ops_replace_s_sc_i_ic_s = 833,
- enum_ops_replace_s_s_ic_ic_s = 834,
- enum_ops_replace_s_sc_ic_ic_s = 835,
- enum_ops_replace_s_s_i_i_sc = 836,
- enum_ops_replace_s_sc_i_i_sc = 837,
- enum_ops_replace_s_s_ic_i_sc = 838,
- enum_ops_replace_s_sc_ic_i_sc = 839,
- enum_ops_replace_s_s_i_ic_sc = 840,
- enum_ops_replace_s_sc_i_ic_sc = 841,
- enum_ops_replace_s_s_ic_ic_sc = 842,
- enum_ops_replace_s_sc_ic_ic_sc = 843,
- enum_ops_index_i_s_s = 844,
- enum_ops_index_i_sc_s = 845,
- enum_ops_index_i_s_sc = 846,
- enum_ops_index_i_sc_sc = 847,
- enum_ops_index_i_s_s_i = 848,
- enum_ops_index_i_sc_s_i = 849,
- enum_ops_index_i_s_sc_i = 850,
- enum_ops_index_i_sc_sc_i = 851,
- enum_ops_index_i_s_s_ic = 852,
- enum_ops_index_i_sc_s_ic = 853,
- enum_ops_index_i_s_sc_ic = 854,
- enum_ops_index_i_sc_sc_ic = 855,
- enum_ops_sprintf_s_s_p = 856,
- enum_ops_sprintf_s_sc_p = 857,
- enum_ops_sprintf_p_p_p = 858,
- enum_ops_new_s = 859,
- enum_ops_new_s_i = 860,
- enum_ops_new_s_ic = 861,
- enum_ops_stringinfo_i_s_i = 862,
- enum_ops_stringinfo_i_sc_i = 863,
- enum_ops_stringinfo_i_s_ic = 864,
- enum_ops_stringinfo_i_sc_ic = 865,
- enum_ops_upcase_s_s = 866,
- enum_ops_upcase_s_sc = 867,
- enum_ops_downcase_s_s = 868,
- enum_ops_downcase_s_sc = 869,
- enum_ops_titlecase_s_s = 870,
- enum_ops_titlecase_s_sc = 871,
- enum_ops_join_s_s_p = 872,
- enum_ops_join_s_sc_p = 873,
- enum_ops_split_p_s_s = 874,
- enum_ops_split_p_sc_s = 875,
- enum_ops_split_p_s_sc = 876,
- enum_ops_split_p_sc_sc = 877,
- enum_ops_charset_i_s = 878,
- enum_ops_charset_i_sc = 879,
- enum_ops_charsetname_s_i = 880,
- enum_ops_charsetname_s_ic = 881,
- enum_ops_find_charset_i_s = 882,
- enum_ops_find_charset_i_sc = 883,
- enum_ops_trans_charset_s_s_i = 884,
- enum_ops_trans_charset_s_sc_i = 885,
- enum_ops_trans_charset_s_s_ic = 886,
- enum_ops_trans_charset_s_sc_ic = 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_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_dynamic_lex_s_p = 956,
- enum_ops_store_dynamic_lex_sc_p = 957,
- enum_ops_find_lex_p_s = 958,
- enum_ops_find_lex_p_sc = 959,
- enum_ops_find_dynamic_lex_p_s = 960,
- enum_ops_find_dynamic_lex_p_sc = 961,
- enum_ops_find_caller_lex_p_s = 962,
- enum_ops_find_caller_lex_p_sc = 963,
- enum_ops_get_namespace_p = 964,
- enum_ops_get_namespace_p_p = 965,
- enum_ops_get_namespace_p_pc = 966,
- enum_ops_get_hll_namespace_p = 967,
- enum_ops_get_hll_namespace_p_p = 968,
- enum_ops_get_hll_namespace_p_pc = 969,
- enum_ops_get_root_namespace_p = 970,
- enum_ops_get_root_namespace_p_p = 971,
- enum_ops_get_root_namespace_p_pc = 972,
- enum_ops_get_global_p_s = 973,
- enum_ops_get_global_p_sc = 974,
- enum_ops_get_global_p_p_s = 975,
- enum_ops_get_global_p_pc_s = 976,
- enum_ops_get_global_p_p_sc = 977,
- enum_ops_get_global_p_pc_sc = 978,
- enum_ops_get_hll_global_p_s = 979,
- enum_ops_get_hll_global_p_sc = 980,
- enum_ops_get_hll_global_p_p_s = 981,
- enum_ops_get_hll_global_p_pc_s = 982,
- enum_ops_get_hll_global_p_p_sc = 983,
- enum_ops_get_hll_global_p_pc_sc = 984,
- enum_ops_get_root_global_p_s = 985,
- enum_ops_get_root_global_p_sc = 986,
- enum_ops_get_root_global_p_p_s = 987,
- enum_ops_get_root_global_p_pc_s = 988,
- enum_ops_get_root_global_p_p_sc = 989,
- enum_ops_get_root_global_p_pc_sc = 990,
- enum_ops_set_global_s_p = 991,
- enum_ops_set_global_sc_p = 992,
- enum_ops_set_global_p_s_p = 993,
- enum_ops_set_global_pc_s_p = 994,
- enum_ops_set_global_p_sc_p = 995,
- enum_ops_set_global_pc_sc_p = 996,
- enum_ops_set_hll_global_s_p = 997,
- enum_ops_set_hll_global_sc_p = 998,
- enum_ops_set_hll_global_p_s_p = 999,
- enum_ops_set_hll_global_pc_s_p = 1000,
- enum_ops_set_hll_global_p_sc_p = 1001,
- enum_ops_set_hll_global_pc_sc_p = 1002,
- enum_ops_set_root_global_s_p = 1003,
- enum_ops_set_root_global_sc_p = 1004,
- enum_ops_set_root_global_p_s_p = 1005,
- enum_ops_set_root_global_pc_s_p = 1006,
- enum_ops_set_root_global_p_sc_p = 1007,
- enum_ops_set_root_global_pc_sc_p = 1008,
- enum_ops_find_name_p_s = 1009,
- enum_ops_find_name_p_sc = 1010,
- enum_ops_find_sub_not_null_p_s = 1011,
- enum_ops_find_sub_not_null_p_sc = 1012,
- enum_ops_trap = 1013,
- enum_ops_set_label_p_ic = 1014,
- enum_ops_get_label_i_p = 1015,
- enum_ops_fetch_p_p_p_p = 1016,
- enum_ops_fetch_p_pc_p_p = 1017,
- enum_ops_fetch_p_p_pc_p = 1018,
- enum_ops_fetch_p_pc_pc_p = 1019,
- enum_ops_fetch_p_p_p_pc = 1020,
- enum_ops_fetch_p_pc_p_pc = 1021,
- enum_ops_fetch_p_p_pc_pc = 1022,
- enum_ops_fetch_p_pc_pc_pc = 1023,
- enum_ops_fetch_p_p_i_p = 1024,
- enum_ops_fetch_p_pc_i_p = 1025,
- enum_ops_fetch_p_p_ic_p = 1026,
- enum_ops_fetch_p_pc_ic_p = 1027,
- enum_ops_fetch_p_p_i_pc = 1028,
- enum_ops_fetch_p_pc_i_pc = 1029,
- enum_ops_fetch_p_p_ic_pc = 1030,
- enum_ops_fetch_p_pc_ic_pc = 1031,
- enum_ops_fetch_p_p_s_p = 1032,
- enum_ops_fetch_p_pc_s_p = 1033,
- enum_ops_fetch_p_p_sc_p = 1034,
- enum_ops_fetch_p_pc_sc_p = 1035,
- enum_ops_fetch_p_p_s_pc = 1036,
- enum_ops_fetch_p_pc_s_pc = 1037,
- enum_ops_fetch_p_p_sc_pc = 1038,
- enum_ops_fetch_p_pc_sc_pc = 1039,
- enum_ops_vivify_p_p_p_p = 1040,
- enum_ops_vivify_p_pc_p_p = 1041,
- enum_ops_vivify_p_p_pc_p = 1042,
- enum_ops_vivify_p_pc_pc_p = 1043,
- enum_ops_vivify_p_p_p_pc = 1044,
- enum_ops_vivify_p_pc_p_pc = 1045,
- enum_ops_vivify_p_p_pc_pc = 1046,
- enum_ops_vivify_p_pc_pc_pc = 1047,
- enum_ops_vivify_p_p_i_p = 1048,
- enum_ops_vivify_p_pc_i_p = 1049,
- enum_ops_vivify_p_p_ic_p = 1050,
- enum_ops_vivify_p_pc_ic_p = 1051,
- enum_ops_vivify_p_p_i_pc = 1052,
- enum_ops_vivify_p_pc_i_pc = 1053,
- enum_ops_vivify_p_p_ic_pc = 1054,
- enum_ops_vivify_p_pc_ic_pc = 1055,
- enum_ops_vivify_p_p_s_p = 1056,
- enum_ops_vivify_p_pc_s_p = 1057,
- enum_ops_vivify_p_p_sc_p = 1058,
- enum_ops_vivify_p_pc_sc_p = 1059,
- enum_ops_vivify_p_p_s_pc = 1060,
- enum_ops_vivify_p_pc_s_pc = 1061,
- enum_ops_vivify_p_p_sc_pc = 1062,
- enum_ops_vivify_p_pc_sc_pc = 1063,
- enum_ops_new_p_s_i = 1064,
- enum_ops_new_p_sc_i = 1065,
- enum_ops_new_p_s_ic = 1066,
- enum_ops_new_p_sc_ic = 1067,
- enum_ops_new_p_p_i = 1068,
- enum_ops_new_p_pc_i = 1069,
- enum_ops_new_p_p_ic = 1070,
- enum_ops_new_p_pc_ic = 1071,
- enum_ops_root_new_p_p_i = 1072,
- enum_ops_root_new_p_pc_i = 1073,
- enum_ops_root_new_p_p_ic = 1074,
- enum_ops_root_new_p_pc_ic = 1075,
- enum_ops_find_codepoint_i_s = 1076,
- enum_ops_find_codepoint_i_sc = 1077,
- enum_ops_finalize_p = 1078,
- enum_ops_finalize_pc = 1079,
+ enum_ops_getstdin_p = 365,
+ enum_ops_getstdout_p = 366,
+ enum_ops_getstderr_p = 367,
+ enum_ops_abs_i = 368,
+ enum_ops_abs_n = 369,
+ enum_ops_abs_i_i = 370,
+ enum_ops_abs_n_n = 371,
+ enum_ops_abs_p = 372,
+ enum_ops_abs_p_p = 373,
+ enum_ops_add_i_i = 374,
+ enum_ops_add_i_ic = 375,
+ enum_ops_add_n_n = 376,
+ enum_ops_add_n_nc = 377,
+ enum_ops_add_p_p = 378,
+ enum_ops_add_p_i = 379,
+ enum_ops_add_p_ic = 380,
+ enum_ops_add_p_n = 381,
+ enum_ops_add_p_nc = 382,
+ enum_ops_add_i_i_i = 383,
+ enum_ops_add_i_ic_i = 384,
+ enum_ops_add_i_i_ic = 385,
+ enum_ops_add_n_n_n = 386,
+ enum_ops_add_n_nc_n = 387,
+ enum_ops_add_n_n_nc = 388,
+ enum_ops_add_p_p_p = 389,
+ enum_ops_add_p_p_i = 390,
+ enum_ops_add_p_p_ic = 391,
+ enum_ops_add_p_p_n = 392,
+ enum_ops_add_p_p_nc = 393,
+ enum_ops_dec_i = 394,
+ enum_ops_dec_n = 395,
+ enum_ops_dec_p = 396,
+ enum_ops_div_i_i = 397,
+ enum_ops_div_i_ic = 398,
+ enum_ops_div_n_n = 399,
+ enum_ops_div_n_nc = 400,
+ enum_ops_div_p_p = 401,
+ enum_ops_div_p_i = 402,
+ enum_ops_div_p_ic = 403,
+ enum_ops_div_p_n = 404,
+ enum_ops_div_p_nc = 405,
+ enum_ops_div_i_i_i = 406,
+ enum_ops_div_i_ic_i = 407,
+ enum_ops_div_i_i_ic = 408,
+ enum_ops_div_i_ic_ic = 409,
+ enum_ops_div_n_n_n = 410,
+ enum_ops_div_n_nc_n = 411,
+ enum_ops_div_n_n_nc = 412,
+ enum_ops_div_n_nc_nc = 413,
+ enum_ops_div_p_p_p = 414,
+ enum_ops_div_p_p_i = 415,
+ enum_ops_div_p_p_ic = 416,
+ enum_ops_div_p_p_n = 417,
+ enum_ops_div_p_p_nc = 418,
+ enum_ops_fdiv_i_i = 419,
+ enum_ops_fdiv_i_ic = 420,
+ enum_ops_fdiv_n_n = 421,
+ enum_ops_fdiv_n_nc = 422,
+ enum_ops_fdiv_p_p = 423,
+ enum_ops_fdiv_p_i = 424,
+ enum_ops_fdiv_p_ic = 425,
+ enum_ops_fdiv_p_n = 426,
+ enum_ops_fdiv_p_nc = 427,
+ enum_ops_fdiv_i_i_i = 428,
+ enum_ops_fdiv_i_ic_i = 429,
+ enum_ops_fdiv_i_i_ic = 430,
+ enum_ops_fdiv_n_n_n = 431,
+ enum_ops_fdiv_n_nc_n = 432,
+ enum_ops_fdiv_n_n_nc = 433,
+ enum_ops_fdiv_p_p_p = 434,
+ enum_ops_fdiv_p_p_i = 435,
+ enum_ops_fdiv_p_p_ic = 436,
+ enum_ops_fdiv_p_p_n = 437,
+ enum_ops_fdiv_p_p_nc = 438,
+ enum_ops_ceil_n = 439,
+ enum_ops_ceil_i_n = 440,
+ enum_ops_ceil_n_n = 441,
+ enum_ops_floor_n = 442,
+ enum_ops_floor_i_n = 443,
+ enum_ops_floor_n_n = 444,
+ enum_ops_inc_i = 445,
+ enum_ops_inc_n = 446,
+ enum_ops_inc_p = 447,
+ enum_ops_mod_i_i = 448,
+ enum_ops_mod_i_ic = 449,
+ enum_ops_mod_n_n = 450,
+ enum_ops_mod_n_nc = 451,
+ enum_ops_mod_p_p = 452,
+ enum_ops_mod_p_i = 453,
+ enum_ops_mod_p_ic = 454,
+ enum_ops_mod_p_n = 455,
+ enum_ops_mod_p_nc = 456,
+ enum_ops_mod_i_i_i = 457,
+ enum_ops_mod_i_ic_i = 458,
+ enum_ops_mod_i_i_ic = 459,
+ enum_ops_mod_n_n_n = 460,
+ enum_ops_mod_n_nc_n = 461,
+ enum_ops_mod_n_n_nc = 462,
+ enum_ops_mod_p_p_p = 463,
+ enum_ops_mod_p_p_i = 464,
+ enum_ops_mod_p_p_ic = 465,
+ enum_ops_mod_p_p_n = 466,
+ enum_ops_mod_p_p_nc = 467,
+ enum_ops_mul_i_i = 468,
+ enum_ops_mul_i_ic = 469,
+ enum_ops_mul_n_n = 470,
+ enum_ops_mul_n_nc = 471,
+ enum_ops_mul_p_p = 472,
+ enum_ops_mul_p_i = 473,
+ enum_ops_mul_p_ic = 474,
+ enum_ops_mul_p_n = 475,
+ enum_ops_mul_p_nc = 476,
+ enum_ops_mul_i_i_i = 477,
+ enum_ops_mul_i_ic_i = 478,
+ enum_ops_mul_i_i_ic = 479,
+ enum_ops_mul_n_n_n = 480,
+ enum_ops_mul_n_nc_n = 481,
+ enum_ops_mul_n_n_nc = 482,
+ enum_ops_mul_p_p_p = 483,
+ enum_ops_mul_p_p_i = 484,
+ enum_ops_mul_p_p_ic = 485,
+ enum_ops_mul_p_p_n = 486,
+ enum_ops_mul_p_p_nc = 487,
+ enum_ops_neg_i = 488,
+ enum_ops_neg_n = 489,
+ enum_ops_neg_p = 490,
+ enum_ops_neg_i_i = 491,
+ enum_ops_neg_n_n = 492,
+ enum_ops_neg_p_p = 493,
+ enum_ops_sub_i_i = 494,
+ enum_ops_sub_i_ic = 495,
+ enum_ops_sub_n_n = 496,
+ enum_ops_sub_n_nc = 497,
+ enum_ops_sub_p_p = 498,
+ enum_ops_sub_p_i = 499,
+ enum_ops_sub_p_ic = 500,
+ enum_ops_sub_p_n = 501,
+ enum_ops_sub_p_nc = 502,
+ enum_ops_sub_i_i_i = 503,
+ enum_ops_sub_i_ic_i = 504,
+ enum_ops_sub_i_i_ic = 505,
+ enum_ops_sub_n_n_n = 506,
+ enum_ops_sub_n_nc_n = 507,
+ enum_ops_sub_n_n_nc = 508,
+ enum_ops_sub_p_p_p = 509,
+ enum_ops_sub_p_p_i = 510,
+ enum_ops_sub_p_p_ic = 511,
+ enum_ops_sub_p_p_n = 512,
+ enum_ops_sub_p_p_nc = 513,
+ enum_ops_sqrt_n_n = 514,
+ enum_ops_callmethodcc_p_s = 515,
+ enum_ops_callmethodcc_p_sc = 516,
+ enum_ops_callmethodcc_p_p = 517,
+ enum_ops_callmethod_p_s_p = 518,
+ enum_ops_callmethod_p_sc_p = 519,
+ enum_ops_callmethod_p_p_p = 520,
+ enum_ops_tailcallmethod_p_s = 521,
+ enum_ops_tailcallmethod_p_sc = 522,
+ enum_ops_tailcallmethod_p_p = 523,
+ enum_ops_addmethod_p_s_p = 524,
+ enum_ops_addmethod_p_sc_p = 525,
+ enum_ops_can_i_p_s = 526,
+ enum_ops_can_i_p_sc = 527,
+ enum_ops_does_i_p_s = 528,
+ enum_ops_does_i_p_sc = 529,
+ enum_ops_does_i_p_p = 530,
+ enum_ops_does_i_p_pc = 531,
+ enum_ops_isa_i_p_s = 532,
+ enum_ops_isa_i_p_sc = 533,
+ enum_ops_isa_i_p_p = 534,
+ enum_ops_isa_i_p_pc = 535,
+ enum_ops_newclass_p_s = 536,
+ enum_ops_newclass_p_sc = 537,
+ enum_ops_newclass_p_p = 538,
+ enum_ops_newclass_p_pc = 539,
+ enum_ops_subclass_p_p = 540,
+ enum_ops_subclass_p_pc = 541,
+ enum_ops_subclass_p_p_s = 542,
+ enum_ops_subclass_p_pc_s = 543,
+ enum_ops_subclass_p_p_sc = 544,
+ enum_ops_subclass_p_pc_sc = 545,
+ enum_ops_subclass_p_p_p = 546,
+ enum_ops_subclass_p_pc_p = 547,
+ enum_ops_subclass_p_p_pc = 548,
+ enum_ops_subclass_p_pc_pc = 549,
+ enum_ops_subclass_p_s = 550,
+ enum_ops_subclass_p_sc = 551,
+ enum_ops_subclass_p_s_s = 552,
+ enum_ops_subclass_p_sc_s = 553,
+ enum_ops_subclass_p_s_sc = 554,
+ enum_ops_subclass_p_sc_sc = 555,
+ enum_ops_subclass_p_s_p = 556,
+ enum_ops_subclass_p_sc_p = 557,
+ enum_ops_subclass_p_s_pc = 558,
+ enum_ops_subclass_p_sc_pc = 559,
+ enum_ops_get_class_p_s = 560,
+ enum_ops_get_class_p_sc = 561,
+ enum_ops_get_class_p_p = 562,
+ enum_ops_get_class_p_pc = 563,
+ enum_ops_class_p_p = 564,
+ enum_ops_addparent_p_p = 565,
+ enum_ops_removeparent_p_p = 566,
+ enum_ops_addrole_p_p = 567,
+ enum_ops_addattribute_p_s = 568,
+ enum_ops_addattribute_p_sc = 569,
+ enum_ops_removeattribute_p_s = 570,
+ enum_ops_removeattribute_p_sc = 571,
+ enum_ops_getattribute_p_p_s = 572,
+ enum_ops_getattribute_p_p_sc = 573,
+ enum_ops_getattribute_p_p_p_s = 574,
+ enum_ops_getattribute_p_p_pc_s = 575,
+ enum_ops_getattribute_p_p_p_sc = 576,
+ enum_ops_getattribute_p_p_pc_sc = 577,
+ enum_ops_setattribute_p_s_p = 578,
+ enum_ops_setattribute_p_sc_p = 579,
+ enum_ops_setattribute_p_p_s_p = 580,
+ enum_ops_setattribute_p_pc_s_p = 581,
+ enum_ops_setattribute_p_p_sc_p = 582,
+ enum_ops_setattribute_p_pc_sc_p = 583,
+ enum_ops_inspect_p_p = 584,
+ enum_ops_inspect_p_pc = 585,
+ enum_ops_inspect_p_p_s = 586,
+ enum_ops_inspect_p_pc_s = 587,
+ enum_ops_inspect_p_p_sc = 588,
+ enum_ops_inspect_p_pc_sc = 589,
+ enum_ops_new_p_s = 590,
+ enum_ops_new_p_sc = 591,
+ enum_ops_new_p_s_p = 592,
+ enum_ops_new_p_sc_p = 593,
+ enum_ops_new_p_s_pc = 594,
+ enum_ops_new_p_sc_pc = 595,
+ enum_ops_new_p_p = 596,
+ enum_ops_new_p_pc = 597,
+ enum_ops_new_p_p_p = 598,
+ enum_ops_new_p_pc_p = 599,
+ enum_ops_new_p_p_pc = 600,
+ enum_ops_new_p_pc_pc = 601,
+ enum_ops_root_new_p_p = 602,
+ enum_ops_root_new_p_pc = 603,
+ enum_ops_root_new_p_p_p = 604,
+ enum_ops_root_new_p_pc_p = 605,
+ enum_ops_root_new_p_p_pc = 606,
+ enum_ops_root_new_p_pc_pc = 607,
+ enum_ops_typeof_s_p = 608,
+ enum_ops_typeof_p_p = 609,
+ enum_ops_get_repr_s_p = 610,
+ enum_ops_find_method_p_p_s = 611,
+ enum_ops_find_method_p_p_sc = 612,
+ enum_ops_defined_i_p = 613,
+ enum_ops_defined_i_p_ki = 614,
+ enum_ops_defined_i_p_kic = 615,
+ enum_ops_defined_i_p_k = 616,
+ enum_ops_defined_i_p_kc = 617,
+ enum_ops_exists_i_p_ki = 618,
+ enum_ops_exists_i_p_kic = 619,
+ enum_ops_exists_i_p_k = 620,
+ enum_ops_exists_i_p_kc = 621,
+ enum_ops_delete_p_k = 622,
+ enum_ops_delete_p_kc = 623,
+ enum_ops_delete_p_ki = 624,
+ enum_ops_delete_p_kic = 625,
+ enum_ops_elements_i_p = 626,
+ enum_ops_push_p_i = 627,
+ enum_ops_push_p_ic = 628,
+ enum_ops_push_p_n = 629,
+ enum_ops_push_p_nc = 630,
+ enum_ops_push_p_s = 631,
+ enum_ops_push_p_sc = 632,
+ enum_ops_push_p_p = 633,
+ enum_ops_pop_i_p = 634,
+ enum_ops_pop_n_p = 635,
+ enum_ops_pop_s_p = 636,
+ enum_ops_pop_p_p = 637,
+ enum_ops_unshift_p_i = 638,
+ enum_ops_unshift_p_ic = 639,
+ enum_ops_unshift_p_n = 640,
+ enum_ops_unshift_p_nc = 641,
+ enum_ops_unshift_p_s = 642,
+ enum_ops_unshift_p_sc = 643,
+ enum_ops_unshift_p_p = 644,
+ enum_ops_shift_i_p = 645,
+ enum_ops_shift_n_p = 646,
+ enum_ops_shift_s_p = 647,
+ enum_ops_shift_p_p = 648,
+ enum_ops_splice_p_p_i_i = 649,
+ enum_ops_splice_p_p_ic_i = 650,
+ enum_ops_splice_p_p_i_ic = 651,
+ enum_ops_splice_p_p_ic_ic = 652,
+ enum_ops_setprop_p_s_p = 653,
+ enum_ops_setprop_p_sc_p = 654,
+ enum_ops_getprop_p_s_p = 655,
+ enum_ops_getprop_p_sc_p = 656,
+ enum_ops_delprop_p_s = 657,
+ enum_ops_delprop_p_sc = 658,
+ enum_ops_prophash_p_p = 659,
+ enum_ops_freeze_s_p = 660,
+ enum_ops_thaw_p_s = 661,
+ enum_ops_thaw_p_sc = 662,
+ enum_ops_add_multi_s_s_p = 663,
+ enum_ops_add_multi_sc_s_p = 664,
+ enum_ops_add_multi_s_sc_p = 665,
+ enum_ops_add_multi_sc_sc_p = 666,
+ enum_ops_find_multi_p_s_s = 667,
+ enum_ops_find_multi_p_sc_s = 668,
+ enum_ops_find_multi_p_s_sc = 669,
+ enum_ops_find_multi_p_sc_sc = 670,
+ enum_ops_register_p = 671,
+ enum_ops_unregister_p = 672,
+ enum_ops_box_p_i = 673,
+ enum_ops_box_p_ic = 674,
+ enum_ops_box_p_n = 675,
+ enum_ops_box_p_nc = 676,
+ enum_ops_box_p_s = 677,
+ enum_ops_box_p_sc = 678,
+ enum_ops_iter_p_p = 679,
+ enum_ops_morph_p_p = 680,
+ enum_ops_morph_p_pc = 681,
+ enum_ops_clone_s_s = 682,
+ enum_ops_clone_s_sc = 683,
+ enum_ops_set_i_i = 684,
+ enum_ops_set_i_ic = 685,
+ enum_ops_set_i_n = 686,
+ enum_ops_set_i_nc = 687,
+ enum_ops_set_i_s = 688,
+ enum_ops_set_i_sc = 689,
+ enum_ops_set_n_n = 690,
+ enum_ops_set_n_nc = 691,
+ enum_ops_set_n_i = 692,
+ enum_ops_set_n_ic = 693,
+ enum_ops_set_n_s = 694,
+ enum_ops_set_n_sc = 695,
+ enum_ops_set_n_p = 696,
+ enum_ops_set_s_p = 697,
+ enum_ops_set_s_s = 698,
+ enum_ops_set_s_sc = 699,
+ enum_ops_set_s_i = 700,
+ enum_ops_set_s_ic = 701,
+ enum_ops_set_s_n = 702,
+ enum_ops_set_s_nc = 703,
+ enum_ops_set_p_pc = 704,
+ enum_ops_set_p_p = 705,
+ enum_ops_set_p_i = 706,
+ enum_ops_set_p_ic = 707,
+ enum_ops_set_p_n = 708,
+ enum_ops_set_p_nc = 709,
+ enum_ops_set_p_s = 710,
+ enum_ops_set_p_sc = 711,
+ enum_ops_set_i_p = 712,
+ enum_ops_assign_p_p = 713,
+ enum_ops_assign_p_i = 714,
+ enum_ops_assign_p_ic = 715,
+ enum_ops_assign_p_n = 716,
+ enum_ops_assign_p_nc = 717,
+ enum_ops_assign_p_s = 718,
+ enum_ops_assign_p_sc = 719,
+ enum_ops_assign_s_s = 720,
+ enum_ops_assign_s_sc = 721,
+ enum_ops_setref_p_p = 722,
+ enum_ops_deref_p_p = 723,
+ enum_ops_set_p_ki_i = 724,
+ enum_ops_set_p_kic_i = 725,
+ enum_ops_set_p_ki_ic = 726,
+ enum_ops_set_p_kic_ic = 727,
+ enum_ops_set_p_ki_n = 728,
+ enum_ops_set_p_kic_n = 729,
+ enum_ops_set_p_ki_nc = 730,
+ enum_ops_set_p_kic_nc = 731,
+ enum_ops_set_p_ki_s = 732,
+ enum_ops_set_p_kic_s = 733,
+ enum_ops_set_p_ki_sc = 734,
+ enum_ops_set_p_kic_sc = 735,
+ enum_ops_set_p_ki_p = 736,
+ enum_ops_set_p_kic_p = 737,
+ enum_ops_set_i_p_ki = 738,
+ enum_ops_set_i_p_kic = 739,
+ enum_ops_set_n_p_ki = 740,
+ enum_ops_set_n_p_kic = 741,
+ enum_ops_set_s_p_ki = 742,
+ enum_ops_set_s_p_kic = 743,
+ enum_ops_set_p_p_ki = 744,
+ enum_ops_set_p_p_kic = 745,
+ enum_ops_set_p_k_i = 746,
+ enum_ops_set_p_kc_i = 747,
+ enum_ops_set_p_k_ic = 748,
+ enum_ops_set_p_kc_ic = 749,
+ enum_ops_set_p_k_n = 750,
+ enum_ops_set_p_kc_n = 751,
+ enum_ops_set_p_k_nc = 752,
+ enum_ops_set_p_kc_nc = 753,
+ enum_ops_set_p_k_s = 754,
+ enum_ops_set_p_kc_s = 755,
+ enum_ops_set_p_k_sc = 756,
+ enum_ops_set_p_kc_sc = 757,
+ enum_ops_set_p_k_p = 758,
+ enum_ops_set_p_kc_p = 759,
+ enum_ops_set_i_p_k = 760,
+ enum_ops_set_i_p_kc = 761,
+ enum_ops_set_n_p_k = 762,
+ enum_ops_set_n_p_kc = 763,
+ enum_ops_set_s_p_k = 764,
+ enum_ops_set_s_p_kc = 765,
+ enum_ops_set_p_p_k = 766,
+ enum_ops_set_p_p_kc = 767,
+ enum_ops_clone_p_p = 768,
+ enum_ops_clone_p_p_p = 769,
+ enum_ops_clone_p_p_pc = 770,
+ enum_ops_copy_p_p = 771,
+ enum_ops_null_s = 772,
+ enum_ops_null_i = 773,
+ enum_ops_null_p = 774,
+ enum_ops_null_n = 775,
+ enum_ops_ord_i_s = 776,
+ enum_ops_ord_i_sc = 777,
+ enum_ops_ord_i_s_i = 778,
+ enum_ops_ord_i_sc_i = 779,
+ enum_ops_ord_i_s_ic = 780,
+ enum_ops_ord_i_sc_ic = 781,
+ enum_ops_chr_s_i = 782,
+ enum_ops_chr_s_ic = 783,
+ enum_ops_chopn_s_s_i = 784,
+ enum_ops_chopn_s_sc_i = 785,
+ enum_ops_chopn_s_s_ic = 786,
+ enum_ops_chopn_s_sc_ic = 787,
+ enum_ops_concat_s_s = 788,
+ enum_ops_concat_s_sc = 789,
+ enum_ops_concat_p_p = 790,
+ enum_ops_concat_p_s = 791,
+ enum_ops_concat_p_sc = 792,
+ enum_ops_concat_s_s_s = 793,
+ enum_ops_concat_s_sc_s = 794,
+ enum_ops_concat_s_s_sc = 795,
+ enum_ops_concat_p_p_s = 796,
+ enum_ops_concat_p_p_sc = 797,
+ enum_ops_concat_p_p_p = 798,
+ enum_ops_repeat_s_s_i = 799,
+ enum_ops_repeat_s_sc_i = 800,
+ enum_ops_repeat_s_s_ic = 801,
+ enum_ops_repeat_s_sc_ic = 802,
+ enum_ops_repeat_p_p_i = 803,
+ enum_ops_repeat_p_p_ic = 804,
+ enum_ops_repeat_p_p_p = 805,
+ enum_ops_repeat_p_i = 806,
+ enum_ops_repeat_p_ic = 807,
+ enum_ops_repeat_p_p = 808,
+ enum_ops_length_i_s = 809,
+ enum_ops_length_i_sc = 810,
+ enum_ops_bytelength_i_s = 811,
+ enum_ops_bytelength_i_sc = 812,
+ enum_ops_pin_s = 813,
+ enum_ops_unpin_s = 814,
+ enum_ops_substr_s_s_i = 815,
+ enum_ops_substr_s_sc_i = 816,
+ enum_ops_substr_s_s_ic = 817,
+ enum_ops_substr_s_sc_ic = 818,
+ enum_ops_substr_s_s_i_i = 819,
+ enum_ops_substr_s_sc_i_i = 820,
+ enum_ops_substr_s_s_ic_i = 821,
+ enum_ops_substr_s_sc_ic_i = 822,
+ enum_ops_substr_s_s_i_ic = 823,
+ enum_ops_substr_s_sc_i_ic = 824,
+ enum_ops_substr_s_s_ic_ic = 825,
+ enum_ops_substr_s_sc_ic_ic = 826,
+ enum_ops_substr_s_p_i_i = 827,
+ enum_ops_substr_s_p_ic_i = 828,
+ enum_ops_substr_s_p_i_ic = 829,
+ enum_ops_substr_s_p_ic_ic = 830,
+ enum_ops_replace_s_s_i_i_s = 831,
+ enum_ops_replace_s_sc_i_i_s = 832,
+ enum_ops_replace_s_s_ic_i_s = 833,
+ enum_ops_replace_s_sc_ic_i_s = 834,
+ enum_ops_replace_s_s_i_ic_s = 835,
+ enum_ops_replace_s_sc_i_ic_s = 836,
+ enum_ops_replace_s_s_ic_ic_s = 837,
+ enum_ops_replace_s_sc_ic_ic_s = 838,
+ enum_ops_replace_s_s_i_i_sc = 839,
+ enum_ops_replace_s_sc_i_i_sc = 840,
+ enum_ops_replace_s_s_ic_i_sc = 841,
+ enum_ops_replace_s_sc_ic_i_sc = 842,
+ enum_ops_replace_s_s_i_ic_sc = 843,
+ enum_ops_replace_s_sc_i_ic_sc = 844,
+ enum_ops_replace_s_s_ic_ic_sc = 845,
+ enum_ops_replace_s_sc_ic_ic_sc = 846,
+ enum_ops_index_i_s_s = 847,
+ enum_ops_index_i_sc_s = 848,
+ enum_ops_index_i_s_sc = 849,
+ enum_ops_index_i_sc_sc = 850,
+ enum_ops_index_i_s_s_i = 851,
+ enum_ops_index_i_sc_s_i = 852,
+ enum_ops_index_i_s_sc_i = 853,
+ enum_ops_index_i_sc_sc_i = 854,
+ enum_ops_index_i_s_s_ic = 855,
+ enum_ops_index_i_sc_s_ic = 856,
+ enum_ops_index_i_s_sc_ic = 857,
+ enum_ops_index_i_sc_sc_ic = 858,
+ enum_ops_sprintf_s_s_p = 859,
+ enum_ops_sprintf_s_sc_p = 860,
+ enum_ops_sprintf_p_p_p = 861,
+ enum_ops_new_s = 862,
+ enum_ops_new_s_i = 863,
+ enum_ops_new_s_ic = 864,
+ enum_ops_stringinfo_i_s_i = 865,
+ enum_ops_stringinfo_i_sc_i = 866,
+ enum_ops_stringinfo_i_s_ic = 867,
+ enum_ops_stringinfo_i_sc_ic = 868,
+ enum_ops_upcase_s_s = 869,
+ enum_ops_upcase_s_sc = 870,
+ enum_ops_downcase_s_s = 871,
+ enum_ops_downcase_s_sc = 872,
+ enum_ops_titlecase_s_s = 873,
+ enum_ops_titlecase_s_sc = 874,
+ enum_ops_join_s_s_p = 875,
+ enum_ops_join_s_sc_p = 876,
+ enum_ops_split_p_s_s = 877,
+ enum_ops_split_p_sc_s = 878,
+ enum_ops_split_p_s_sc = 879,
+ enum_ops_split_p_sc_sc = 880,
+ enum_ops_charset_i_s = 881,
+ enum_ops_charset_i_sc = 882,
+ enum_ops_charsetname_s_i = 883,
+ enum_ops_charsetname_s_ic = 884,
+ enum_ops_find_charset_i_s = 885,
+ enum_ops_find_charset_i_sc = 886,
+ enum_ops_trans_charset_s_s_i = 887,
+ enum_ops_trans_charset_s_sc_i = 888,
+ enum_ops_trans_charset_s_s_ic = 889,
+ enum_ops_trans_charset_s_sc_ic = 890,
+ enum_ops_encoding_i_s = 891,
+ enum_ops_encoding_i_sc = 892,
+ enum_ops_encodingname_s_i = 893,
+ enum_ops_encodingname_s_ic = 894,
+ enum_ops_find_encoding_i_s = 895,
+ enum_ops_find_encoding_i_sc = 896,
+ enum_ops_trans_encoding_s_s_i = 897,
+ enum_ops_trans_encoding_s_sc_i = 898,
+ enum_ops_trans_encoding_s_s_ic = 899,
+ enum_ops_trans_encoding_s_sc_ic = 900,
+ enum_ops_is_cclass_i_i_s_i = 901,
+ enum_ops_is_cclass_i_ic_s_i = 902,
+ enum_ops_is_cclass_i_i_sc_i = 903,
+ enum_ops_is_cclass_i_ic_sc_i = 904,
+ enum_ops_is_cclass_i_i_s_ic = 905,
+ enum_ops_is_cclass_i_ic_s_ic = 906,
+ enum_ops_is_cclass_i_i_sc_ic = 907,
+ enum_ops_is_cclass_i_ic_sc_ic = 908,
+ enum_ops_find_cclass_i_i_s_i_i = 909,
+ enum_ops_find_cclass_i_ic_s_i_i = 910,
+ enum_ops_find_cclass_i_i_sc_i_i = 911,
+ enum_ops_find_cclass_i_ic_sc_i_i = 912,
+ enum_ops_find_cclass_i_i_s_ic_i = 913,
+ enum_ops_find_cclass_i_ic_s_ic_i = 914,
+ enum_ops_find_cclass_i_i_sc_ic_i = 915,
+ enum_ops_find_cclass_i_ic_sc_ic_i = 916,
+ enum_ops_find_cclass_i_i_s_i_ic = 917,
+ enum_ops_find_cclass_i_ic_s_i_ic = 918,
+ enum_ops_find_cclass_i_i_sc_i_ic = 919,
+ enum_ops_find_cclass_i_ic_sc_i_ic = 920,
+ enum_ops_find_cclass_i_i_s_ic_ic = 921,
+ enum_ops_find_cclass_i_ic_s_ic_ic = 922,
+ enum_ops_find_cclass_i_i_sc_ic_ic = 923,
+ enum_ops_find_cclass_i_ic_sc_ic_ic = 924,
+ enum_ops_find_not_cclass_i_i_s_i_i = 925,
+ enum_ops_find_not_cclass_i_ic_s_i_i = 926,
+ enum_ops_find_not_cclass_i_i_sc_i_i = 927,
+ enum_ops_find_not_cclass_i_ic_sc_i_i = 928,
+ enum_ops_find_not_cclass_i_i_s_ic_i = 929,
+ enum_ops_find_not_cclass_i_ic_s_ic_i = 930,
+ enum_ops_find_not_cclass_i_i_sc_ic_i = 931,
+ enum_ops_find_not_cclass_i_ic_sc_ic_i = 932,
+ enum_ops_find_not_cclass_i_i_s_i_ic = 933,
+ enum_ops_find_not_cclass_i_ic_s_i_ic = 934,
+ enum_ops_find_not_cclass_i_i_sc_i_ic = 935,
+ enum_ops_find_not_cclass_i_ic_sc_i_ic = 936,
+ enum_ops_find_not_cclass_i_i_s_ic_ic = 937,
+ enum_ops_find_not_cclass_i_ic_s_ic_ic = 938,
+ enum_ops_find_not_cclass_i_i_sc_ic_ic = 939,
+ enum_ops_find_not_cclass_i_ic_sc_ic_ic = 940,
+ enum_ops_escape_s_s = 941,
+ enum_ops_compose_s_s = 942,
+ enum_ops_compose_s_sc = 943,
+ enum_ops_spawnw_i_s = 944,
+ enum_ops_spawnw_i_sc = 945,
+ enum_ops_spawnw_i_p = 946,
+ enum_ops_err_i = 947,
+ enum_ops_err_s = 948,
+ enum_ops_err_s_i = 949,
+ enum_ops_err_s_ic = 950,
+ enum_ops_time_i = 951,
+ enum_ops_time_n = 952,
+ enum_ops_sleep_i = 953,
+ enum_ops_sleep_ic = 954,
+ enum_ops_sleep_n = 955,
+ enum_ops_sleep_nc = 956,
+ enum_ops_store_lex_s_p = 957,
+ enum_ops_store_lex_sc_p = 958,
+ enum_ops_store_dynamic_lex_s_p = 959,
+ enum_ops_store_dynamic_lex_sc_p = 960,
+ enum_ops_find_lex_p_s = 961,
+ enum_ops_find_lex_p_sc = 962,
+ enum_ops_find_dynamic_lex_p_s = 963,
+ enum_ops_find_dynamic_lex_p_sc = 964,
+ enum_ops_find_caller_lex_p_s = 965,
+ enum_ops_find_caller_lex_p_sc = 966,
+ enum_ops_get_namespace_p = 967,
+ enum_ops_get_namespace_p_p = 968,
+ enum_ops_get_namespace_p_pc = 969,
+ enum_ops_get_hll_namespace_p = 970,
+ enum_ops_get_hll_namespace_p_p = 971,
+ enum_ops_get_hll_namespace_p_pc = 972,
+ enum_ops_get_root_namespace_p = 973,
+ enum_ops_get_root_namespace_p_p = 974,
+ enum_ops_get_root_namespace_p_pc = 975,
+ enum_ops_get_global_p_s = 976,
+ enum_ops_get_global_p_sc = 977,
+ enum_ops_get_global_p_p_s = 978,
+ enum_ops_get_global_p_pc_s = 979,
+ enum_ops_get_global_p_p_sc = 980,
+ enum_ops_get_global_p_pc_sc = 981,
+ enum_ops_get_hll_global_p_s = 982,
+ enum_ops_get_hll_global_p_sc = 983,
+ enum_ops_get_hll_global_p_p_s = 984,
+ enum_ops_get_hll_global_p_pc_s = 985,
+ enum_ops_get_hll_global_p_p_sc = 986,
+ enum_ops_get_hll_global_p_pc_sc = 987,
+ enum_ops_get_root_global_p_s = 988,
+ enum_ops_get_root_global_p_sc = 989,
+ enum_ops_get_root_global_p_p_s = 990,
+ enum_ops_get_root_global_p_pc_s = 991,
+ enum_ops_get_root_global_p_p_sc = 992,
+ enum_ops_get_root_global_p_pc_sc = 993,
+ enum_ops_set_global_s_p = 994,
+ enum_ops_set_global_sc_p = 995,
+ enum_ops_set_global_p_s_p = 996,
+ enum_ops_set_global_pc_s_p = 997,
+ enum_ops_set_global_p_sc_p = 998,
+ enum_ops_set_global_pc_sc_p = 999,
+ enum_ops_set_hll_global_s_p = 1000,
+ enum_ops_set_hll_global_sc_p = 1001,
+ enum_ops_set_hll_global_p_s_p = 1002,
+ enum_ops_set_hll_global_pc_s_p = 1003,
+ enum_ops_set_hll_global_p_sc_p = 1004,
+ enum_ops_set_hll_global_pc_sc_p = 1005,
+ enum_ops_set_root_global_s_p = 1006,
+ enum_ops_set_root_global_sc_p = 1007,
+ enum_ops_set_root_global_p_s_p = 1008,
+ enum_ops_set_root_global_pc_s_p = 1009,
+ enum_ops_set_root_global_p_sc_p = 1010,
+ enum_ops_set_root_global_pc_sc_p = 1011,
+ enum_ops_find_name_p_s = 1012,
+ enum_ops_find_name_p_sc = 1013,
+ enum_ops_find_sub_not_null_p_s = 1014,
+ enum_ops_find_sub_not_null_p_sc = 1015,
+ enum_ops_trap = 1016,
+ enum_ops_set_label_p_ic = 1017,
+ enum_ops_get_label_i_p = 1018,
+ enum_ops_fetch_p_p_p_p = 1019,
+ enum_ops_fetch_p_pc_p_p = 1020,
+ enum_ops_fetch_p_p_pc_p = 1021,
+ enum_ops_fetch_p_pc_pc_p = 1022,
+ enum_ops_fetch_p_p_p_pc = 1023,
+ enum_ops_fetch_p_pc_p_pc = 1024,
+ enum_ops_fetch_p_p_pc_pc = 1025,
+ enum_ops_fetch_p_pc_pc_pc = 1026,
+ enum_ops_fetch_p_p_i_p = 1027,
+ enum_ops_fetch_p_pc_i_p = 1028,
+ enum_ops_fetch_p_p_ic_p = 1029,
+ enum_ops_fetch_p_pc_ic_p = 1030,
+ enum_ops_fetch_p_p_i_pc = 1031,
+ enum_ops_fetch_p_pc_i_pc = 1032,
+ enum_ops_fetch_p_p_ic_pc = 1033,
+ enum_ops_fetch_p_pc_ic_pc = 1034,
+ enum_ops_fetch_p_p_s_p = 1035,
+ enum_ops_fetch_p_pc_s_p = 1036,
+ enum_ops_fetch_p_p_sc_p = 1037,
+ enum_ops_fetch_p_pc_sc_p = 1038,
+ enum_ops_fetch_p_p_s_pc = 1039,
+ enum_ops_fetch_p_pc_s_pc = 1040,
+ enum_ops_fetch_p_p_sc_pc = 1041,
+ enum_ops_fetch_p_pc_sc_pc = 1042,
+ enum_ops_vivify_p_p_p_p = 1043,
+ enum_ops_vivify_p_pc_p_p = 1044,
+ enum_ops_vivify_p_p_pc_p = 1045,
+ enum_ops_vivify_p_pc_pc_p = 1046,
+ enum_ops_vivify_p_p_p_pc = 1047,
+ enum_ops_vivify_p_pc_p_pc = 1048,
+ enum_ops_vivify_p_p_pc_pc = 1049,
+ enum_ops_vivify_p_pc_pc_pc = 1050,
+ enum_ops_vivify_p_p_i_p = 1051,
+ enum_ops_vivify_p_pc_i_p = 1052,
+ enum_ops_vivify_p_p_ic_p = 1053,
+ enum_ops_vivify_p_pc_ic_p = 1054,
+ enum_ops_vivify_p_p_i_pc = 1055,
+ enum_ops_vivify_p_pc_i_pc = 1056,
+ enum_ops_vivify_p_p_ic_pc = 1057,
+ enum_ops_vivify_p_pc_ic_pc = 1058,
+ enum_ops_vivify_p_p_s_p = 1059,
+ enum_ops_vivify_p_pc_s_p = 1060,
+ enum_ops_vivify_p_p_sc_p = 1061,
+ enum_ops_vivify_p_pc_sc_p = 1062,
+ enum_ops_vivify_p_p_s_pc = 1063,
+ enum_ops_vivify_p_pc_s_pc = 1064,
+ enum_ops_vivify_p_p_sc_pc = 1065,
+ enum_ops_vivify_p_pc_sc_pc = 1066,
+ enum_ops_new_p_s_i = 1067,
+ enum_ops_new_p_sc_i = 1068,
+ enum_ops_new_p_s_ic = 1069,
+ enum_ops_new_p_sc_ic = 1070,
+ enum_ops_new_p_p_i = 1071,
+ enum_ops_new_p_pc_i = 1072,
+ enum_ops_new_p_p_ic = 1073,
+ enum_ops_new_p_pc_ic = 1074,
+ enum_ops_root_new_p_p_i = 1075,
+ enum_ops_root_new_p_pc_i = 1076,
+ enum_ops_root_new_p_p_ic = 1077,
+ enum_ops_root_new_p_pc_ic = 1078,
+ enum_ops_find_codepoint_i_s = 1079,
+ enum_ops_find_codepoint_i_sc = 1080,
+ enum_ops_finalize_p = 1081,
+ enum_ops_finalize_pc = 1082,
};
Modified: branches/gc_massacre/src/dynoplibs/Rules.in
==============================================================================
--- branches/gc_massacre/src/dynoplibs/Rules.in Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/dynoplibs/Rules.in Sun Jun 6 04:04:09 2010 (r47420)
@@ -65,7 +65,7 @@
src/dynoplibs/trans_ops.h: src/dynoplibs/trans_ops.c
src/dynoplibs/trans_ops.c: src/dynoplibs/trans.ops $(OPS2C)
- $(OPS2C) --dynamic src/dynoplibs/trans.ops
+ $(OPS2C) --dynamic src/dynoplibs/trans.ops --quiet
#########################
@@ -80,7 +80,7 @@
src/dynoplibs/bit_ops.h: src/dynoplibs/bit_ops.c
src/dynoplibs/bit_ops.c: src/dynoplibs/bit.ops $(OPS2C)
- $(OPS2C) --dynamic src/dynoplibs/bit.ops
+ $(OPS2C) --dynamic src/dynoplibs/bit.ops --quiet
#########################
@@ -95,7 +95,7 @@
src/dynoplibs/debug_ops.h: src/dynoplibs/debug_ops.c
src/dynoplibs/debug_ops.c: src/dynoplibs/debug.ops $(OPS2C)
- $(OPS2C) --dynamic src/dynoplibs/debug.ops
+ $(OPS2C) --dynamic src/dynoplibs/debug.ops --quiet
#########################
@@ -110,7 +110,7 @@
src/dynoplibs/sys_ops.h: src/dynoplibs/sys_ops.c
src/dynoplibs/sys_ops.c: src/dynoplibs/sys.ops $(OPS2C)
- $(OPS2C) --dynamic src/dynoplibs/sys.ops
+ $(OPS2C) --dynamic src/dynoplibs/sys.ops --quiet
#########################
@@ -125,5 +125,5 @@
src/dynoplibs/io_ops.h: src/dynoplibs/io_ops.c
src/dynoplibs/io_ops.c: src/dynoplibs/io.ops $(OPS2C)
- $(OPS2C) --dynamic src/dynoplibs/io.ops
+ $(OPS2C) --dynamic src/dynoplibs/io.ops --quiet
Modified: branches/gc_massacre/src/dynoplibs/io.ops
==============================================================================
--- branches/gc_massacre/src/dynoplibs/io.ops Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/dynoplibs/io.ops Sun Jun 6 04:04:09 2010 (r47420)
@@ -297,35 +297,6 @@
$1 = Parrot_pmc_new(interp, enum_class_Undef);
}
-=item B<getstdin>(out PMC)
-
-Create a new ParrotIO object for the stdin file descriptor and
-store it in $1
-
-=item B<getstdout>(out PMC)
-
-Create a new ParrotIO object for the stdout file descriptor and
-store it in $1
-
-=item B<getstderr>(out PMC)
-
-Create a new ParrotIO object for the stderr file descriptor and
-store it in $1
-
-=cut
-
-inline op getstdin(out PMC) :base_io {
- $1 = _PIO_STDIN(interp);
-}
-
-inline op getstdout(out PMC) :base_io {
- $1 = _PIO_STDOUT(interp);
-}
-
-inline op getstderr(out PMC) :base_io {
- $1 = _PIO_STDERR(interp);
-}
-
#########################################
=item B<setstdin>(invar PMC)
Modified: branches/gc_massacre/src/interp/inter_misc.c
==============================================================================
--- branches/gc_massacre/src/interp/inter_misc.c Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/interp/inter_misc.c Sun Jun 6 04:04:09 2010 (r47420)
@@ -165,7 +165,7 @@
Parrot_compile_file(PARROT_INTERP, ARGIN(const char *fullname), ARGOUT(STRING **error))
{
ASSERT_ARGS(Parrot_compile_file)
- return IMCC_compile_file_s(interp, fullname, error);
+ return imcc_compile_file(interp, fullname, error);
}
/*
Modified: branches/gc_massacre/src/ops/core.ops
==============================================================================
--- branches/gc_massacre/src/ops/core.ops Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/ops/core.ops Sun Jun 6 04:04:09 2010 (r47420)
@@ -1107,7 +1107,7 @@
op sweep(inconst INT) {
if ($1)
- Parrot_gc_mark_and_sweep(interp, 0);
+ Parrot_gc_mark_and_sweep(interp, GC_trace_normal_FLAG);
else
if (Parrot_gc_impatient_pmcs(interp))
Parrot_gc_mark_and_sweep(interp, GC_lazy_FLAG);
Modified: branches/gc_massacre/src/ops/core_ops.c
==============================================================================
--- branches/gc_massacre/src/ops/core_ops.c Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/ops/core_ops.c Sun Jun 6 04:04:09 2010 (r47420)
@@ -61,13 +61,13 @@
-INTVAL core_numops = 1081;
+INTVAL core_numops = 1084;
/*
** Op Function Table:
*/
-static op_func_t core_op_func_table[1081] = {
+static op_func_t core_op_func_table[1084] = {
Parrot_end, /* 0 */
Parrot_noop, /* 1 */
Parrot_check_events, /* 2 */
@@ -433,721 +433,724 @@
Parrot_print_p_s, /* 362 */
Parrot_print_p_sc, /* 363 */
Parrot_print_p_p, /* 364 */
- Parrot_abs_i, /* 365 */
- Parrot_abs_n, /* 366 */
- Parrot_abs_i_i, /* 367 */
- Parrot_abs_n_n, /* 368 */
- Parrot_abs_p, /* 369 */
- Parrot_abs_p_p, /* 370 */
- Parrot_add_i_i, /* 371 */
- Parrot_add_i_ic, /* 372 */
- Parrot_add_n_n, /* 373 */
- Parrot_add_n_nc, /* 374 */
- Parrot_add_p_p, /* 375 */
- Parrot_add_p_i, /* 376 */
- Parrot_add_p_ic, /* 377 */
- Parrot_add_p_n, /* 378 */
- Parrot_add_p_nc, /* 379 */
- Parrot_add_i_i_i, /* 380 */
- Parrot_add_i_ic_i, /* 381 */
- Parrot_add_i_i_ic, /* 382 */
- Parrot_add_n_n_n, /* 383 */
- Parrot_add_n_nc_n, /* 384 */
- Parrot_add_n_n_nc, /* 385 */
- Parrot_add_p_p_p, /* 386 */
- Parrot_add_p_p_i, /* 387 */
- Parrot_add_p_p_ic, /* 388 */
- Parrot_add_p_p_n, /* 389 */
- Parrot_add_p_p_nc, /* 390 */
- Parrot_dec_i, /* 391 */
- Parrot_dec_n, /* 392 */
- Parrot_dec_p, /* 393 */
- Parrot_div_i_i, /* 394 */
- Parrot_div_i_ic, /* 395 */
- Parrot_div_n_n, /* 396 */
- Parrot_div_n_nc, /* 397 */
- Parrot_div_p_p, /* 398 */
- Parrot_div_p_i, /* 399 */
- Parrot_div_p_ic, /* 400 */
- Parrot_div_p_n, /* 401 */
- Parrot_div_p_nc, /* 402 */
- Parrot_div_i_i_i, /* 403 */
- Parrot_div_i_ic_i, /* 404 */
- Parrot_div_i_i_ic, /* 405 */
- Parrot_div_i_ic_ic, /* 406 */
- Parrot_div_n_n_n, /* 407 */
- Parrot_div_n_nc_n, /* 408 */
- Parrot_div_n_n_nc, /* 409 */
- Parrot_div_n_nc_nc, /* 410 */
- Parrot_div_p_p_p, /* 411 */
- Parrot_div_p_p_i, /* 412 */
- Parrot_div_p_p_ic, /* 413 */
- Parrot_div_p_p_n, /* 414 */
- Parrot_div_p_p_nc, /* 415 */
- Parrot_fdiv_i_i, /* 416 */
- Parrot_fdiv_i_ic, /* 417 */
- Parrot_fdiv_n_n, /* 418 */
- Parrot_fdiv_n_nc, /* 419 */
- Parrot_fdiv_p_p, /* 420 */
- Parrot_fdiv_p_i, /* 421 */
- Parrot_fdiv_p_ic, /* 422 */
- Parrot_fdiv_p_n, /* 423 */
- Parrot_fdiv_p_nc, /* 424 */
- Parrot_fdiv_i_i_i, /* 425 */
- Parrot_fdiv_i_ic_i, /* 426 */
- Parrot_fdiv_i_i_ic, /* 427 */
- Parrot_fdiv_n_n_n, /* 428 */
- Parrot_fdiv_n_nc_n, /* 429 */
- Parrot_fdiv_n_n_nc, /* 430 */
- Parrot_fdiv_p_p_p, /* 431 */
- Parrot_fdiv_p_p_i, /* 432 */
- Parrot_fdiv_p_p_ic, /* 433 */
- Parrot_fdiv_p_p_n, /* 434 */
- Parrot_fdiv_p_p_nc, /* 435 */
- Parrot_ceil_n, /* 436 */
- Parrot_ceil_i_n, /* 437 */
- Parrot_ceil_n_n, /* 438 */
- Parrot_floor_n, /* 439 */
- Parrot_floor_i_n, /* 440 */
- Parrot_floor_n_n, /* 441 */
- Parrot_inc_i, /* 442 */
- Parrot_inc_n, /* 443 */
- Parrot_inc_p, /* 444 */
- Parrot_mod_i_i, /* 445 */
- Parrot_mod_i_ic, /* 446 */
- Parrot_mod_n_n, /* 447 */
- Parrot_mod_n_nc, /* 448 */
- Parrot_mod_p_p, /* 449 */
- Parrot_mod_p_i, /* 450 */
- Parrot_mod_p_ic, /* 451 */
- Parrot_mod_p_n, /* 452 */
- Parrot_mod_p_nc, /* 453 */
- Parrot_mod_i_i_i, /* 454 */
- Parrot_mod_i_ic_i, /* 455 */
- Parrot_mod_i_i_ic, /* 456 */
- Parrot_mod_n_n_n, /* 457 */
- Parrot_mod_n_nc_n, /* 458 */
- Parrot_mod_n_n_nc, /* 459 */
- Parrot_mod_p_p_p, /* 460 */
- Parrot_mod_p_p_i, /* 461 */
- Parrot_mod_p_p_ic, /* 462 */
- Parrot_mod_p_p_n, /* 463 */
- Parrot_mod_p_p_nc, /* 464 */
- Parrot_mul_i_i, /* 465 */
- Parrot_mul_i_ic, /* 466 */
- Parrot_mul_n_n, /* 467 */
- Parrot_mul_n_nc, /* 468 */
- Parrot_mul_p_p, /* 469 */
- Parrot_mul_p_i, /* 470 */
- Parrot_mul_p_ic, /* 471 */
- Parrot_mul_p_n, /* 472 */
- Parrot_mul_p_nc, /* 473 */
- Parrot_mul_i_i_i, /* 474 */
- Parrot_mul_i_ic_i, /* 475 */
- Parrot_mul_i_i_ic, /* 476 */
- Parrot_mul_n_n_n, /* 477 */
- Parrot_mul_n_nc_n, /* 478 */
- Parrot_mul_n_n_nc, /* 479 */
- Parrot_mul_p_p_p, /* 480 */
- Parrot_mul_p_p_i, /* 481 */
- Parrot_mul_p_p_ic, /* 482 */
- Parrot_mul_p_p_n, /* 483 */
- Parrot_mul_p_p_nc, /* 484 */
- Parrot_neg_i, /* 485 */
- Parrot_neg_n, /* 486 */
- Parrot_neg_p, /* 487 */
- Parrot_neg_i_i, /* 488 */
- Parrot_neg_n_n, /* 489 */
- Parrot_neg_p_p, /* 490 */
- Parrot_sub_i_i, /* 491 */
- Parrot_sub_i_ic, /* 492 */
- Parrot_sub_n_n, /* 493 */
- Parrot_sub_n_nc, /* 494 */
- Parrot_sub_p_p, /* 495 */
- Parrot_sub_p_i, /* 496 */
- Parrot_sub_p_ic, /* 497 */
- Parrot_sub_p_n, /* 498 */
- Parrot_sub_p_nc, /* 499 */
- Parrot_sub_i_i_i, /* 500 */
- Parrot_sub_i_ic_i, /* 501 */
- Parrot_sub_i_i_ic, /* 502 */
- Parrot_sub_n_n_n, /* 503 */
- Parrot_sub_n_nc_n, /* 504 */
- Parrot_sub_n_n_nc, /* 505 */
- Parrot_sub_p_p_p, /* 506 */
- Parrot_sub_p_p_i, /* 507 */
- Parrot_sub_p_p_ic, /* 508 */
- Parrot_sub_p_p_n, /* 509 */
- Parrot_sub_p_p_nc, /* 510 */
- Parrot_sqrt_n_n, /* 511 */
- Parrot_callmethodcc_p_s, /* 512 */
- Parrot_callmethodcc_p_sc, /* 513 */
- Parrot_callmethodcc_p_p, /* 514 */
- Parrot_callmethod_p_s_p, /* 515 */
- Parrot_callmethod_p_sc_p, /* 516 */
- Parrot_callmethod_p_p_p, /* 517 */
- Parrot_tailcallmethod_p_s, /* 518 */
- Parrot_tailcallmethod_p_sc, /* 519 */
- Parrot_tailcallmethod_p_p, /* 520 */
- Parrot_addmethod_p_s_p, /* 521 */
- Parrot_addmethod_p_sc_p, /* 522 */
- Parrot_can_i_p_s, /* 523 */
- Parrot_can_i_p_sc, /* 524 */
- Parrot_does_i_p_s, /* 525 */
- Parrot_does_i_p_sc, /* 526 */
- Parrot_does_i_p_p, /* 527 */
- Parrot_does_i_p_pc, /* 528 */
- Parrot_isa_i_p_s, /* 529 */
- Parrot_isa_i_p_sc, /* 530 */
- Parrot_isa_i_p_p, /* 531 */
- Parrot_isa_i_p_pc, /* 532 */
- Parrot_newclass_p_s, /* 533 */
- Parrot_newclass_p_sc, /* 534 */
- Parrot_newclass_p_p, /* 535 */
- Parrot_newclass_p_pc, /* 536 */
- Parrot_subclass_p_p, /* 537 */
- Parrot_subclass_p_pc, /* 538 */
- Parrot_subclass_p_p_s, /* 539 */
- Parrot_subclass_p_pc_s, /* 540 */
- Parrot_subclass_p_p_sc, /* 541 */
- Parrot_subclass_p_pc_sc, /* 542 */
- Parrot_subclass_p_p_p, /* 543 */
- Parrot_subclass_p_pc_p, /* 544 */
- Parrot_subclass_p_p_pc, /* 545 */
- Parrot_subclass_p_pc_pc, /* 546 */
- Parrot_subclass_p_s, /* 547 */
- Parrot_subclass_p_sc, /* 548 */
- Parrot_subclass_p_s_s, /* 549 */
- Parrot_subclass_p_sc_s, /* 550 */
- Parrot_subclass_p_s_sc, /* 551 */
- Parrot_subclass_p_sc_sc, /* 552 */
- Parrot_subclass_p_s_p, /* 553 */
- Parrot_subclass_p_sc_p, /* 554 */
- Parrot_subclass_p_s_pc, /* 555 */
- Parrot_subclass_p_sc_pc, /* 556 */
- Parrot_get_class_p_s, /* 557 */
- Parrot_get_class_p_sc, /* 558 */
- Parrot_get_class_p_p, /* 559 */
- Parrot_get_class_p_pc, /* 560 */
- Parrot_class_p_p, /* 561 */
- Parrot_addparent_p_p, /* 562 */
- Parrot_removeparent_p_p, /* 563 */
- Parrot_addrole_p_p, /* 564 */
- Parrot_addattribute_p_s, /* 565 */
- Parrot_addattribute_p_sc, /* 566 */
- Parrot_removeattribute_p_s, /* 567 */
- Parrot_removeattribute_p_sc, /* 568 */
- Parrot_getattribute_p_p_s, /* 569 */
- Parrot_getattribute_p_p_sc, /* 570 */
- Parrot_getattribute_p_p_p_s, /* 571 */
- Parrot_getattribute_p_p_pc_s, /* 572 */
- Parrot_getattribute_p_p_p_sc, /* 573 */
- Parrot_getattribute_p_p_pc_sc, /* 574 */
- Parrot_setattribute_p_s_p, /* 575 */
- Parrot_setattribute_p_sc_p, /* 576 */
- Parrot_setattribute_p_p_s_p, /* 577 */
- Parrot_setattribute_p_pc_s_p, /* 578 */
- Parrot_setattribute_p_p_sc_p, /* 579 */
- Parrot_setattribute_p_pc_sc_p, /* 580 */
- Parrot_inspect_p_p, /* 581 */
- Parrot_inspect_p_pc, /* 582 */
- Parrot_inspect_p_p_s, /* 583 */
- Parrot_inspect_p_pc_s, /* 584 */
- Parrot_inspect_p_p_sc, /* 585 */
- Parrot_inspect_p_pc_sc, /* 586 */
- Parrot_new_p_s, /* 587 */
- Parrot_new_p_sc, /* 588 */
- Parrot_new_p_s_p, /* 589 */
- Parrot_new_p_sc_p, /* 590 */
- Parrot_new_p_s_pc, /* 591 */
- Parrot_new_p_sc_pc, /* 592 */
- Parrot_new_p_p, /* 593 */
- Parrot_new_p_pc, /* 594 */
- Parrot_new_p_p_p, /* 595 */
- Parrot_new_p_pc_p, /* 596 */
- Parrot_new_p_p_pc, /* 597 */
- Parrot_new_p_pc_pc, /* 598 */
- Parrot_root_new_p_p, /* 599 */
- Parrot_root_new_p_pc, /* 600 */
- Parrot_root_new_p_p_p, /* 601 */
- Parrot_root_new_p_pc_p, /* 602 */
- Parrot_root_new_p_p_pc, /* 603 */
- Parrot_root_new_p_pc_pc, /* 604 */
- Parrot_typeof_s_p, /* 605 */
- Parrot_typeof_p_p, /* 606 */
- Parrot_get_repr_s_p, /* 607 */
- Parrot_find_method_p_p_s, /* 608 */
- Parrot_find_method_p_p_sc, /* 609 */
- Parrot_defined_i_p, /* 610 */
- Parrot_defined_i_p_ki, /* 611 */
- Parrot_defined_i_p_kic, /* 612 */
- Parrot_defined_i_p_k, /* 613 */
- Parrot_defined_i_p_kc, /* 614 */
- Parrot_exists_i_p_ki, /* 615 */
- Parrot_exists_i_p_kic, /* 616 */
- Parrot_exists_i_p_k, /* 617 */
- Parrot_exists_i_p_kc, /* 618 */
- Parrot_delete_p_k, /* 619 */
- Parrot_delete_p_kc, /* 620 */
- Parrot_delete_p_ki, /* 621 */
- Parrot_delete_p_kic, /* 622 */
- Parrot_elements_i_p, /* 623 */
- Parrot_push_p_i, /* 624 */
- Parrot_push_p_ic, /* 625 */
- Parrot_push_p_n, /* 626 */
- Parrot_push_p_nc, /* 627 */
- Parrot_push_p_s, /* 628 */
- Parrot_push_p_sc, /* 629 */
- Parrot_push_p_p, /* 630 */
- Parrot_pop_i_p, /* 631 */
- Parrot_pop_n_p, /* 632 */
- Parrot_pop_s_p, /* 633 */
- Parrot_pop_p_p, /* 634 */
- Parrot_unshift_p_i, /* 635 */
- Parrot_unshift_p_ic, /* 636 */
- Parrot_unshift_p_n, /* 637 */
- Parrot_unshift_p_nc, /* 638 */
- Parrot_unshift_p_s, /* 639 */
- Parrot_unshift_p_sc, /* 640 */
- Parrot_unshift_p_p, /* 641 */
- Parrot_shift_i_p, /* 642 */
- Parrot_shift_n_p, /* 643 */
- Parrot_shift_s_p, /* 644 */
- Parrot_shift_p_p, /* 645 */
- Parrot_splice_p_p_i_i, /* 646 */
- Parrot_splice_p_p_ic_i, /* 647 */
- Parrot_splice_p_p_i_ic, /* 648 */
- Parrot_splice_p_p_ic_ic, /* 649 */
- Parrot_setprop_p_s_p, /* 650 */
- Parrot_setprop_p_sc_p, /* 651 */
- Parrot_getprop_p_s_p, /* 652 */
- Parrot_getprop_p_sc_p, /* 653 */
- Parrot_delprop_p_s, /* 654 */
- Parrot_delprop_p_sc, /* 655 */
- Parrot_prophash_p_p, /* 656 */
- Parrot_freeze_s_p, /* 657 */
- Parrot_thaw_p_s, /* 658 */
- Parrot_thaw_p_sc, /* 659 */
- Parrot_add_multi_s_s_p, /* 660 */
- Parrot_add_multi_sc_s_p, /* 661 */
- Parrot_add_multi_s_sc_p, /* 662 */
- Parrot_add_multi_sc_sc_p, /* 663 */
- Parrot_find_multi_p_s_s, /* 664 */
- Parrot_find_multi_p_sc_s, /* 665 */
- Parrot_find_multi_p_s_sc, /* 666 */
- Parrot_find_multi_p_sc_sc, /* 667 */
- Parrot_register_p, /* 668 */
- Parrot_unregister_p, /* 669 */
- Parrot_box_p_i, /* 670 */
- Parrot_box_p_ic, /* 671 */
- Parrot_box_p_n, /* 672 */
- Parrot_box_p_nc, /* 673 */
- Parrot_box_p_s, /* 674 */
- Parrot_box_p_sc, /* 675 */
- Parrot_iter_p_p, /* 676 */
- Parrot_morph_p_p, /* 677 */
- Parrot_morph_p_pc, /* 678 */
- Parrot_clone_s_s, /* 679 */
- Parrot_clone_s_sc, /* 680 */
- Parrot_set_i_i, /* 681 */
- Parrot_set_i_ic, /* 682 */
- Parrot_set_i_n, /* 683 */
- Parrot_set_i_nc, /* 684 */
- Parrot_set_i_s, /* 685 */
- Parrot_set_i_sc, /* 686 */
- Parrot_set_n_n, /* 687 */
- Parrot_set_n_nc, /* 688 */
- Parrot_set_n_i, /* 689 */
- Parrot_set_n_ic, /* 690 */
- Parrot_set_n_s, /* 691 */
- Parrot_set_n_sc, /* 692 */
- Parrot_set_n_p, /* 693 */
- Parrot_set_s_p, /* 694 */
- Parrot_set_s_s, /* 695 */
- Parrot_set_s_sc, /* 696 */
- Parrot_set_s_i, /* 697 */
- Parrot_set_s_ic, /* 698 */
- Parrot_set_s_n, /* 699 */
- Parrot_set_s_nc, /* 700 */
- Parrot_set_p_pc, /* 701 */
- Parrot_set_p_p, /* 702 */
- Parrot_set_p_i, /* 703 */
- Parrot_set_p_ic, /* 704 */
- Parrot_set_p_n, /* 705 */
- Parrot_set_p_nc, /* 706 */
- Parrot_set_p_s, /* 707 */
- Parrot_set_p_sc, /* 708 */
- Parrot_set_i_p, /* 709 */
- Parrot_assign_p_p, /* 710 */
- Parrot_assign_p_i, /* 711 */
- Parrot_assign_p_ic, /* 712 */
- Parrot_assign_p_n, /* 713 */
- Parrot_assign_p_nc, /* 714 */
- Parrot_assign_p_s, /* 715 */
- Parrot_assign_p_sc, /* 716 */
- Parrot_assign_s_s, /* 717 */
- Parrot_assign_s_sc, /* 718 */
- Parrot_setref_p_p, /* 719 */
- Parrot_deref_p_p, /* 720 */
- Parrot_set_p_ki_i, /* 721 */
- Parrot_set_p_kic_i, /* 722 */
- Parrot_set_p_ki_ic, /* 723 */
- Parrot_set_p_kic_ic, /* 724 */
- Parrot_set_p_ki_n, /* 725 */
- Parrot_set_p_kic_n, /* 726 */
- Parrot_set_p_ki_nc, /* 727 */
- Parrot_set_p_kic_nc, /* 728 */
- Parrot_set_p_ki_s, /* 729 */
- Parrot_set_p_kic_s, /* 730 */
- Parrot_set_p_ki_sc, /* 731 */
- Parrot_set_p_kic_sc, /* 732 */
- Parrot_set_p_ki_p, /* 733 */
- Parrot_set_p_kic_p, /* 734 */
- Parrot_set_i_p_ki, /* 735 */
- Parrot_set_i_p_kic, /* 736 */
- Parrot_set_n_p_ki, /* 737 */
- Parrot_set_n_p_kic, /* 738 */
- Parrot_set_s_p_ki, /* 739 */
- Parrot_set_s_p_kic, /* 740 */
- Parrot_set_p_p_ki, /* 741 */
- Parrot_set_p_p_kic, /* 742 */
- Parrot_set_p_k_i, /* 743 */
- Parrot_set_p_kc_i, /* 744 */
- Parrot_set_p_k_ic, /* 745 */
- Parrot_set_p_kc_ic, /* 746 */
- Parrot_set_p_k_n, /* 747 */
- Parrot_set_p_kc_n, /* 748 */
- Parrot_set_p_k_nc, /* 749 */
- Parrot_set_p_kc_nc, /* 750 */
- Parrot_set_p_k_s, /* 751 */
- Parrot_set_p_kc_s, /* 752 */
- Parrot_set_p_k_sc, /* 753 */
- Parrot_set_p_kc_sc, /* 754 */
- Parrot_set_p_k_p, /* 755 */
- Parrot_set_p_kc_p, /* 756 */
- Parrot_set_i_p_k, /* 757 */
- Parrot_set_i_p_kc, /* 758 */
- Parrot_set_n_p_k, /* 759 */
- Parrot_set_n_p_kc, /* 760 */
- Parrot_set_s_p_k, /* 761 */
- Parrot_set_s_p_kc, /* 762 */
- Parrot_set_p_p_k, /* 763 */
- Parrot_set_p_p_kc, /* 764 */
- Parrot_clone_p_p, /* 765 */
- Parrot_clone_p_p_p, /* 766 */
- Parrot_clone_p_p_pc, /* 767 */
- Parrot_copy_p_p, /* 768 */
- Parrot_null_s, /* 769 */
- Parrot_null_i, /* 770 */
- Parrot_null_p, /* 771 */
- Parrot_null_n, /* 772 */
- Parrot_ord_i_s, /* 773 */
- Parrot_ord_i_sc, /* 774 */
- Parrot_ord_i_s_i, /* 775 */
- Parrot_ord_i_sc_i, /* 776 */
- Parrot_ord_i_s_ic, /* 777 */
- Parrot_ord_i_sc_ic, /* 778 */
- Parrot_chr_s_i, /* 779 */
- Parrot_chr_s_ic, /* 780 */
- Parrot_chopn_s_s_i, /* 781 */
- Parrot_chopn_s_sc_i, /* 782 */
- Parrot_chopn_s_s_ic, /* 783 */
- Parrot_chopn_s_sc_ic, /* 784 */
- Parrot_concat_s_s, /* 785 */
- Parrot_concat_s_sc, /* 786 */
- Parrot_concat_p_p, /* 787 */
- Parrot_concat_p_s, /* 788 */
- Parrot_concat_p_sc, /* 789 */
- Parrot_concat_s_s_s, /* 790 */
- Parrot_concat_s_sc_s, /* 791 */
- Parrot_concat_s_s_sc, /* 792 */
- Parrot_concat_p_p_s, /* 793 */
- Parrot_concat_p_p_sc, /* 794 */
- Parrot_concat_p_p_p, /* 795 */
- Parrot_repeat_s_s_i, /* 796 */
- Parrot_repeat_s_sc_i, /* 797 */
- Parrot_repeat_s_s_ic, /* 798 */
- Parrot_repeat_s_sc_ic, /* 799 */
- Parrot_repeat_p_p_i, /* 800 */
- Parrot_repeat_p_p_ic, /* 801 */
- Parrot_repeat_p_p_p, /* 802 */
- Parrot_repeat_p_i, /* 803 */
- Parrot_repeat_p_ic, /* 804 */
- Parrot_repeat_p_p, /* 805 */
- Parrot_length_i_s, /* 806 */
- Parrot_length_i_sc, /* 807 */
- Parrot_bytelength_i_s, /* 808 */
- Parrot_bytelength_i_sc, /* 809 */
- Parrot_pin_s, /* 810 */
- Parrot_unpin_s, /* 811 */
- Parrot_substr_s_s_i, /* 812 */
- Parrot_substr_s_sc_i, /* 813 */
- Parrot_substr_s_s_ic, /* 814 */
- Parrot_substr_s_sc_ic, /* 815 */
- Parrot_substr_s_s_i_i, /* 816 */
- Parrot_substr_s_sc_i_i, /* 817 */
- Parrot_substr_s_s_ic_i, /* 818 */
- Parrot_substr_s_sc_ic_i, /* 819 */
- Parrot_substr_s_s_i_ic, /* 820 */
- Parrot_substr_s_sc_i_ic, /* 821 */
- Parrot_substr_s_s_ic_ic, /* 822 */
- Parrot_substr_s_sc_ic_ic, /* 823 */
- Parrot_substr_s_p_i_i, /* 824 */
- Parrot_substr_s_p_ic_i, /* 825 */
- Parrot_substr_s_p_i_ic, /* 826 */
- Parrot_substr_s_p_ic_ic, /* 827 */
- Parrot_replace_s_s_i_i_s, /* 828 */
- Parrot_replace_s_sc_i_i_s, /* 829 */
- Parrot_replace_s_s_ic_i_s, /* 830 */
- Parrot_replace_s_sc_ic_i_s, /* 831 */
- Parrot_replace_s_s_i_ic_s, /* 832 */
- Parrot_replace_s_sc_i_ic_s, /* 833 */
- Parrot_replace_s_s_ic_ic_s, /* 834 */
- Parrot_replace_s_sc_ic_ic_s, /* 835 */
- Parrot_replace_s_s_i_i_sc, /* 836 */
- Parrot_replace_s_sc_i_i_sc, /* 837 */
- Parrot_replace_s_s_ic_i_sc, /* 838 */
- Parrot_replace_s_sc_ic_i_sc, /* 839 */
- Parrot_replace_s_s_i_ic_sc, /* 840 */
- Parrot_replace_s_sc_i_ic_sc, /* 841 */
- Parrot_replace_s_s_ic_ic_sc, /* 842 */
- Parrot_replace_s_sc_ic_ic_sc, /* 843 */
- Parrot_index_i_s_s, /* 844 */
- Parrot_index_i_sc_s, /* 845 */
- Parrot_index_i_s_sc, /* 846 */
- Parrot_index_i_sc_sc, /* 847 */
- Parrot_index_i_s_s_i, /* 848 */
- Parrot_index_i_sc_s_i, /* 849 */
- Parrot_index_i_s_sc_i, /* 850 */
- Parrot_index_i_sc_sc_i, /* 851 */
- Parrot_index_i_s_s_ic, /* 852 */
- Parrot_index_i_sc_s_ic, /* 853 */
- Parrot_index_i_s_sc_ic, /* 854 */
- Parrot_index_i_sc_sc_ic, /* 855 */
- Parrot_sprintf_s_s_p, /* 856 */
- Parrot_sprintf_s_sc_p, /* 857 */
- Parrot_sprintf_p_p_p, /* 858 */
- Parrot_new_s, /* 859 */
- Parrot_new_s_i, /* 860 */
- Parrot_new_s_ic, /* 861 */
- Parrot_stringinfo_i_s_i, /* 862 */
- Parrot_stringinfo_i_sc_i, /* 863 */
- Parrot_stringinfo_i_s_ic, /* 864 */
- Parrot_stringinfo_i_sc_ic, /* 865 */
- Parrot_upcase_s_s, /* 866 */
- Parrot_upcase_s_sc, /* 867 */
- Parrot_downcase_s_s, /* 868 */
- Parrot_downcase_s_sc, /* 869 */
- Parrot_titlecase_s_s, /* 870 */
- Parrot_titlecase_s_sc, /* 871 */
- Parrot_join_s_s_p, /* 872 */
- Parrot_join_s_sc_p, /* 873 */
- Parrot_split_p_s_s, /* 874 */
- Parrot_split_p_sc_s, /* 875 */
- Parrot_split_p_s_sc, /* 876 */
- Parrot_split_p_sc_sc, /* 877 */
- Parrot_charset_i_s, /* 878 */
- Parrot_charset_i_sc, /* 879 */
- Parrot_charsetname_s_i, /* 880 */
- Parrot_charsetname_s_ic, /* 881 */
- Parrot_find_charset_i_s, /* 882 */
- Parrot_find_charset_i_sc, /* 883 */
- Parrot_trans_charset_s_s_i, /* 884 */
- Parrot_trans_charset_s_sc_i, /* 885 */
- Parrot_trans_charset_s_s_ic, /* 886 */
- Parrot_trans_charset_s_sc_ic, /* 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_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_dynamic_lex_s_p, /* 956 */
- Parrot_store_dynamic_lex_sc_p, /* 957 */
- Parrot_find_lex_p_s, /* 958 */
- Parrot_find_lex_p_sc, /* 959 */
- Parrot_find_dynamic_lex_p_s, /* 960 */
- Parrot_find_dynamic_lex_p_sc, /* 961 */
- Parrot_find_caller_lex_p_s, /* 962 */
- Parrot_find_caller_lex_p_sc, /* 963 */
- Parrot_get_namespace_p, /* 964 */
- Parrot_get_namespace_p_p, /* 965 */
- Parrot_get_namespace_p_pc, /* 966 */
- Parrot_get_hll_namespace_p, /* 967 */
- Parrot_get_hll_namespace_p_p, /* 968 */
- Parrot_get_hll_namespace_p_pc, /* 969 */
- Parrot_get_root_namespace_p, /* 970 */
- Parrot_get_root_namespace_p_p, /* 971 */
- Parrot_get_root_namespace_p_pc, /* 972 */
- Parrot_get_global_p_s, /* 973 */
- Parrot_get_global_p_sc, /* 974 */
- Parrot_get_global_p_p_s, /* 975 */
- Parrot_get_global_p_pc_s, /* 976 */
- Parrot_get_global_p_p_sc, /* 977 */
- Parrot_get_global_p_pc_sc, /* 978 */
- Parrot_get_hll_global_p_s, /* 979 */
- Parrot_get_hll_global_p_sc, /* 980 */
- Parrot_get_hll_global_p_p_s, /* 981 */
- Parrot_get_hll_global_p_pc_s, /* 982 */
- Parrot_get_hll_global_p_p_sc, /* 983 */
- Parrot_get_hll_global_p_pc_sc, /* 984 */
- Parrot_get_root_global_p_s, /* 985 */
- Parrot_get_root_global_p_sc, /* 986 */
- Parrot_get_root_global_p_p_s, /* 987 */
- Parrot_get_root_global_p_pc_s, /* 988 */
- Parrot_get_root_global_p_p_sc, /* 989 */
- Parrot_get_root_global_p_pc_sc, /* 990 */
- Parrot_set_global_s_p, /* 991 */
- Parrot_set_global_sc_p, /* 992 */
- Parrot_set_global_p_s_p, /* 993 */
- Parrot_set_global_pc_s_p, /* 994 */
- Parrot_set_global_p_sc_p, /* 995 */
- Parrot_set_global_pc_sc_p, /* 996 */
- Parrot_set_hll_global_s_p, /* 997 */
- Parrot_set_hll_global_sc_p, /* 998 */
- Parrot_set_hll_global_p_s_p, /* 999 */
- Parrot_set_hll_global_pc_s_p, /* 1000 */
- Parrot_set_hll_global_p_sc_p, /* 1001 */
- Parrot_set_hll_global_pc_sc_p, /* 1002 */
- Parrot_set_root_global_s_p, /* 1003 */
- Parrot_set_root_global_sc_p, /* 1004 */
- Parrot_set_root_global_p_s_p, /* 1005 */
- Parrot_set_root_global_pc_s_p, /* 1006 */
- Parrot_set_root_global_p_sc_p, /* 1007 */
- Parrot_set_root_global_pc_sc_p, /* 1008 */
- Parrot_find_name_p_s, /* 1009 */
- Parrot_find_name_p_sc, /* 1010 */
- Parrot_find_sub_not_null_p_s, /* 1011 */
- Parrot_find_sub_not_null_p_sc, /* 1012 */
- Parrot_trap, /* 1013 */
- Parrot_set_label_p_ic, /* 1014 */
- Parrot_get_label_i_p, /* 1015 */
- Parrot_fetch_p_p_p_p, /* 1016 */
- Parrot_fetch_p_pc_p_p, /* 1017 */
- Parrot_fetch_p_p_pc_p, /* 1018 */
- Parrot_fetch_p_pc_pc_p, /* 1019 */
- Parrot_fetch_p_p_p_pc, /* 1020 */
- Parrot_fetch_p_pc_p_pc, /* 1021 */
- Parrot_fetch_p_p_pc_pc, /* 1022 */
- Parrot_fetch_p_pc_pc_pc, /* 1023 */
- Parrot_fetch_p_p_i_p, /* 1024 */
- Parrot_fetch_p_pc_i_p, /* 1025 */
- Parrot_fetch_p_p_ic_p, /* 1026 */
- Parrot_fetch_p_pc_ic_p, /* 1027 */
- Parrot_fetch_p_p_i_pc, /* 1028 */
- Parrot_fetch_p_pc_i_pc, /* 1029 */
- Parrot_fetch_p_p_ic_pc, /* 1030 */
- Parrot_fetch_p_pc_ic_pc, /* 1031 */
- Parrot_fetch_p_p_s_p, /* 1032 */
- Parrot_fetch_p_pc_s_p, /* 1033 */
- Parrot_fetch_p_p_sc_p, /* 1034 */
- Parrot_fetch_p_pc_sc_p, /* 1035 */
- Parrot_fetch_p_p_s_pc, /* 1036 */
- Parrot_fetch_p_pc_s_pc, /* 1037 */
- Parrot_fetch_p_p_sc_pc, /* 1038 */
- Parrot_fetch_p_pc_sc_pc, /* 1039 */
- Parrot_vivify_p_p_p_p, /* 1040 */
- Parrot_vivify_p_pc_p_p, /* 1041 */
- Parrot_vivify_p_p_pc_p, /* 1042 */
- Parrot_vivify_p_pc_pc_p, /* 1043 */
- Parrot_vivify_p_p_p_pc, /* 1044 */
- Parrot_vivify_p_pc_p_pc, /* 1045 */
- Parrot_vivify_p_p_pc_pc, /* 1046 */
- Parrot_vivify_p_pc_pc_pc, /* 1047 */
- Parrot_vivify_p_p_i_p, /* 1048 */
- Parrot_vivify_p_pc_i_p, /* 1049 */
- Parrot_vivify_p_p_ic_p, /* 1050 */
- Parrot_vivify_p_pc_ic_p, /* 1051 */
- Parrot_vivify_p_p_i_pc, /* 1052 */
- Parrot_vivify_p_pc_i_pc, /* 1053 */
- Parrot_vivify_p_p_ic_pc, /* 1054 */
- Parrot_vivify_p_pc_ic_pc, /* 1055 */
- Parrot_vivify_p_p_s_p, /* 1056 */
- Parrot_vivify_p_pc_s_p, /* 1057 */
- Parrot_vivify_p_p_sc_p, /* 1058 */
- Parrot_vivify_p_pc_sc_p, /* 1059 */
- Parrot_vivify_p_p_s_pc, /* 1060 */
- Parrot_vivify_p_pc_s_pc, /* 1061 */
- Parrot_vivify_p_p_sc_pc, /* 1062 */
- Parrot_vivify_p_pc_sc_pc, /* 1063 */
- Parrot_new_p_s_i, /* 1064 */
- Parrot_new_p_sc_i, /* 1065 */
- Parrot_new_p_s_ic, /* 1066 */
- Parrot_new_p_sc_ic, /* 1067 */
- Parrot_new_p_p_i, /* 1068 */
- Parrot_new_p_pc_i, /* 1069 */
- Parrot_new_p_p_ic, /* 1070 */
- Parrot_new_p_pc_ic, /* 1071 */
- Parrot_root_new_p_p_i, /* 1072 */
- Parrot_root_new_p_pc_i, /* 1073 */
- Parrot_root_new_p_p_ic, /* 1074 */
- Parrot_root_new_p_pc_ic, /* 1075 */
- Parrot_find_codepoint_i_s, /* 1076 */
- Parrot_find_codepoint_i_sc, /* 1077 */
- Parrot_finalize_p, /* 1078 */
- Parrot_finalize_pc, /* 1079 */
+ Parrot_getstdin_p, /* 365 */
+ Parrot_getstdout_p, /* 366 */
+ Parrot_getstderr_p, /* 367 */
+ Parrot_abs_i, /* 368 */
+ Parrot_abs_n, /* 369 */
+ Parrot_abs_i_i, /* 370 */
+ Parrot_abs_n_n, /* 371 */
+ Parrot_abs_p, /* 372 */
+ Parrot_abs_p_p, /* 373 */
+ Parrot_add_i_i, /* 374 */
+ Parrot_add_i_ic, /* 375 */
+ Parrot_add_n_n, /* 376 */
+ Parrot_add_n_nc, /* 377 */
+ Parrot_add_p_p, /* 378 */
+ Parrot_add_p_i, /* 379 */
+ Parrot_add_p_ic, /* 380 */
+ Parrot_add_p_n, /* 381 */
+ Parrot_add_p_nc, /* 382 */
+ Parrot_add_i_i_i, /* 383 */
+ Parrot_add_i_ic_i, /* 384 */
+ Parrot_add_i_i_ic, /* 385 */
+ Parrot_add_n_n_n, /* 386 */
+ Parrot_add_n_nc_n, /* 387 */
+ Parrot_add_n_n_nc, /* 388 */
+ Parrot_add_p_p_p, /* 389 */
+ Parrot_add_p_p_i, /* 390 */
+ Parrot_add_p_p_ic, /* 391 */
+ Parrot_add_p_p_n, /* 392 */
+ Parrot_add_p_p_nc, /* 393 */
+ Parrot_dec_i, /* 394 */
+ Parrot_dec_n, /* 395 */
+ Parrot_dec_p, /* 396 */
+ Parrot_div_i_i, /* 397 */
+ Parrot_div_i_ic, /* 398 */
+ Parrot_div_n_n, /* 399 */
+ Parrot_div_n_nc, /* 400 */
+ Parrot_div_p_p, /* 401 */
+ Parrot_div_p_i, /* 402 */
+ Parrot_div_p_ic, /* 403 */
+ Parrot_div_p_n, /* 404 */
+ Parrot_div_p_nc, /* 405 */
+ Parrot_div_i_i_i, /* 406 */
+ Parrot_div_i_ic_i, /* 407 */
+ Parrot_div_i_i_ic, /* 408 */
+ Parrot_div_i_ic_ic, /* 409 */
+ Parrot_div_n_n_n, /* 410 */
+ Parrot_div_n_nc_n, /* 411 */
+ Parrot_div_n_n_nc, /* 412 */
+ Parrot_div_n_nc_nc, /* 413 */
+ Parrot_div_p_p_p, /* 414 */
+ Parrot_div_p_p_i, /* 415 */
+ Parrot_div_p_p_ic, /* 416 */
+ Parrot_div_p_p_n, /* 417 */
+ Parrot_div_p_p_nc, /* 418 */
+ Parrot_fdiv_i_i, /* 419 */
+ Parrot_fdiv_i_ic, /* 420 */
+ Parrot_fdiv_n_n, /* 421 */
+ Parrot_fdiv_n_nc, /* 422 */
+ Parrot_fdiv_p_p, /* 423 */
+ Parrot_fdiv_p_i, /* 424 */
+ Parrot_fdiv_p_ic, /* 425 */
+ Parrot_fdiv_p_n, /* 426 */
+ Parrot_fdiv_p_nc, /* 427 */
+ Parrot_fdiv_i_i_i, /* 428 */
+ Parrot_fdiv_i_ic_i, /* 429 */
+ Parrot_fdiv_i_i_ic, /* 430 */
+ Parrot_fdiv_n_n_n, /* 431 */
+ Parrot_fdiv_n_nc_n, /* 432 */
+ Parrot_fdiv_n_n_nc, /* 433 */
+ Parrot_fdiv_p_p_p, /* 434 */
+ Parrot_fdiv_p_p_i, /* 435 */
+ Parrot_fdiv_p_p_ic, /* 436 */
+ Parrot_fdiv_p_p_n, /* 437 */
+ Parrot_fdiv_p_p_nc, /* 438 */
+ Parrot_ceil_n, /* 439 */
+ Parrot_ceil_i_n, /* 440 */
+ Parrot_ceil_n_n, /* 441 */
+ Parrot_floor_n, /* 442 */
+ Parrot_floor_i_n, /* 443 */
+ Parrot_floor_n_n, /* 444 */
+ Parrot_inc_i, /* 445 */
+ Parrot_inc_n, /* 446 */
+ Parrot_inc_p, /* 447 */
+ Parrot_mod_i_i, /* 448 */
+ Parrot_mod_i_ic, /* 449 */
+ Parrot_mod_n_n, /* 450 */
+ Parrot_mod_n_nc, /* 451 */
+ Parrot_mod_p_p, /* 452 */
+ Parrot_mod_p_i, /* 453 */
+ Parrot_mod_p_ic, /* 454 */
+ Parrot_mod_p_n, /* 455 */
+ Parrot_mod_p_nc, /* 456 */
+ Parrot_mod_i_i_i, /* 457 */
+ Parrot_mod_i_ic_i, /* 458 */
+ Parrot_mod_i_i_ic, /* 459 */
+ Parrot_mod_n_n_n, /* 460 */
+ Parrot_mod_n_nc_n, /* 461 */
+ Parrot_mod_n_n_nc, /* 462 */
+ Parrot_mod_p_p_p, /* 463 */
+ Parrot_mod_p_p_i, /* 464 */
+ Parrot_mod_p_p_ic, /* 465 */
+ Parrot_mod_p_p_n, /* 466 */
+ Parrot_mod_p_p_nc, /* 467 */
+ Parrot_mul_i_i, /* 468 */
+ Parrot_mul_i_ic, /* 469 */
+ Parrot_mul_n_n, /* 470 */
+ Parrot_mul_n_nc, /* 471 */
+ Parrot_mul_p_p, /* 472 */
+ Parrot_mul_p_i, /* 473 */
+ Parrot_mul_p_ic, /* 474 */
+ Parrot_mul_p_n, /* 475 */
+ Parrot_mul_p_nc, /* 476 */
+ Parrot_mul_i_i_i, /* 477 */
+ Parrot_mul_i_ic_i, /* 478 */
+ Parrot_mul_i_i_ic, /* 479 */
+ Parrot_mul_n_n_n, /* 480 */
+ Parrot_mul_n_nc_n, /* 481 */
+ Parrot_mul_n_n_nc, /* 482 */
+ Parrot_mul_p_p_p, /* 483 */
+ Parrot_mul_p_p_i, /* 484 */
+ Parrot_mul_p_p_ic, /* 485 */
+ Parrot_mul_p_p_n, /* 486 */
+ Parrot_mul_p_p_nc, /* 487 */
+ Parrot_neg_i, /* 488 */
+ Parrot_neg_n, /* 489 */
+ Parrot_neg_p, /* 490 */
+ Parrot_neg_i_i, /* 491 */
+ Parrot_neg_n_n, /* 492 */
+ Parrot_neg_p_p, /* 493 */
+ Parrot_sub_i_i, /* 494 */
+ Parrot_sub_i_ic, /* 495 */
+ Parrot_sub_n_n, /* 496 */
+ Parrot_sub_n_nc, /* 497 */
+ Parrot_sub_p_p, /* 498 */
+ Parrot_sub_p_i, /* 499 */
+ Parrot_sub_p_ic, /* 500 */
+ Parrot_sub_p_n, /* 501 */
+ Parrot_sub_p_nc, /* 502 */
+ Parrot_sub_i_i_i, /* 503 */
+ Parrot_sub_i_ic_i, /* 504 */
+ Parrot_sub_i_i_ic, /* 505 */
+ Parrot_sub_n_n_n, /* 506 */
+ Parrot_sub_n_nc_n, /* 507 */
+ Parrot_sub_n_n_nc, /* 508 */
+ Parrot_sub_p_p_p, /* 509 */
+ Parrot_sub_p_p_i, /* 510 */
+ Parrot_sub_p_p_ic, /* 511 */
+ Parrot_sub_p_p_n, /* 512 */
+ Parrot_sub_p_p_nc, /* 513 */
+ Parrot_sqrt_n_n, /* 514 */
+ Parrot_callmethodcc_p_s, /* 515 */
+ Parrot_callmethodcc_p_sc, /* 516 */
+ Parrot_callmethodcc_p_p, /* 517 */
+ Parrot_callmethod_p_s_p, /* 518 */
+ Parrot_callmethod_p_sc_p, /* 519 */
+ Parrot_callmethod_p_p_p, /* 520 */
+ Parrot_tailcallmethod_p_s, /* 521 */
+ Parrot_tailcallmethod_p_sc, /* 522 */
+ Parrot_tailcallmethod_p_p, /* 523 */
+ Parrot_addmethod_p_s_p, /* 524 */
+ Parrot_addmethod_p_sc_p, /* 525 */
+ Parrot_can_i_p_s, /* 526 */
+ Parrot_can_i_p_sc, /* 527 */
+ Parrot_does_i_p_s, /* 528 */
+ Parrot_does_i_p_sc, /* 529 */
+ Parrot_does_i_p_p, /* 530 */
+ Parrot_does_i_p_pc, /* 531 */
+ Parrot_isa_i_p_s, /* 532 */
+ Parrot_isa_i_p_sc, /* 533 */
+ Parrot_isa_i_p_p, /* 534 */
+ Parrot_isa_i_p_pc, /* 535 */
+ Parrot_newclass_p_s, /* 536 */
+ Parrot_newclass_p_sc, /* 537 */
+ Parrot_newclass_p_p, /* 538 */
+ Parrot_newclass_p_pc, /* 539 */
+ Parrot_subclass_p_p, /* 540 */
+ Parrot_subclass_p_pc, /* 541 */
+ Parrot_subclass_p_p_s, /* 542 */
+ Parrot_subclass_p_pc_s, /* 543 */
+ Parrot_subclass_p_p_sc, /* 544 */
+ Parrot_subclass_p_pc_sc, /* 545 */
+ Parrot_subclass_p_p_p, /* 546 */
+ Parrot_subclass_p_pc_p, /* 547 */
+ Parrot_subclass_p_p_pc, /* 548 */
+ Parrot_subclass_p_pc_pc, /* 549 */
+ Parrot_subclass_p_s, /* 550 */
+ Parrot_subclass_p_sc, /* 551 */
+ Parrot_subclass_p_s_s, /* 552 */
+ Parrot_subclass_p_sc_s, /* 553 */
+ Parrot_subclass_p_s_sc, /* 554 */
+ Parrot_subclass_p_sc_sc, /* 555 */
+ Parrot_subclass_p_s_p, /* 556 */
+ Parrot_subclass_p_sc_p, /* 557 */
+ Parrot_subclass_p_s_pc, /* 558 */
+ Parrot_subclass_p_sc_pc, /* 559 */
+ Parrot_get_class_p_s, /* 560 */
+ Parrot_get_class_p_sc, /* 561 */
+ Parrot_get_class_p_p, /* 562 */
+ Parrot_get_class_p_pc, /* 563 */
+ Parrot_class_p_p, /* 564 */
+ Parrot_addparent_p_p, /* 565 */
+ Parrot_removeparent_p_p, /* 566 */
+ Parrot_addrole_p_p, /* 567 */
+ Parrot_addattribute_p_s, /* 568 */
+ Parrot_addattribute_p_sc, /* 569 */
+ Parrot_removeattribute_p_s, /* 570 */
+ Parrot_removeattribute_p_sc, /* 571 */
+ Parrot_getattribute_p_p_s, /* 572 */
+ Parrot_getattribute_p_p_sc, /* 573 */
+ Parrot_getattribute_p_p_p_s, /* 574 */
+ Parrot_getattribute_p_p_pc_s, /* 575 */
+ Parrot_getattribute_p_p_p_sc, /* 576 */
+ Parrot_getattribute_p_p_pc_sc, /* 577 */
+ Parrot_setattribute_p_s_p, /* 578 */
+ Parrot_setattribute_p_sc_p, /* 579 */
+ Parrot_setattribute_p_p_s_p, /* 580 */
+ Parrot_setattribute_p_pc_s_p, /* 581 */
+ Parrot_setattribute_p_p_sc_p, /* 582 */
+ Parrot_setattribute_p_pc_sc_p, /* 583 */
+ Parrot_inspect_p_p, /* 584 */
+ Parrot_inspect_p_pc, /* 585 */
+ Parrot_inspect_p_p_s, /* 586 */
+ Parrot_inspect_p_pc_s, /* 587 */
+ Parrot_inspect_p_p_sc, /* 588 */
+ Parrot_inspect_p_pc_sc, /* 589 */
+ Parrot_new_p_s, /* 590 */
+ Parrot_new_p_sc, /* 591 */
+ Parrot_new_p_s_p, /* 592 */
+ Parrot_new_p_sc_p, /* 593 */
+ Parrot_new_p_s_pc, /* 594 */
+ Parrot_new_p_sc_pc, /* 595 */
+ Parrot_new_p_p, /* 596 */
+ Parrot_new_p_pc, /* 597 */
+ Parrot_new_p_p_p, /* 598 */
+ Parrot_new_p_pc_p, /* 599 */
+ Parrot_new_p_p_pc, /* 600 */
+ Parrot_new_p_pc_pc, /* 601 */
+ Parrot_root_new_p_p, /* 602 */
+ Parrot_root_new_p_pc, /* 603 */
+ Parrot_root_new_p_p_p, /* 604 */
+ Parrot_root_new_p_pc_p, /* 605 */
+ Parrot_root_new_p_p_pc, /* 606 */
+ Parrot_root_new_p_pc_pc, /* 607 */
+ Parrot_typeof_s_p, /* 608 */
+ Parrot_typeof_p_p, /* 609 */
+ Parrot_get_repr_s_p, /* 610 */
+ Parrot_find_method_p_p_s, /* 611 */
+ Parrot_find_method_p_p_sc, /* 612 */
+ Parrot_defined_i_p, /* 613 */
+ Parrot_defined_i_p_ki, /* 614 */
+ Parrot_defined_i_p_kic, /* 615 */
+ Parrot_defined_i_p_k, /* 616 */
+ Parrot_defined_i_p_kc, /* 617 */
+ Parrot_exists_i_p_ki, /* 618 */
+ Parrot_exists_i_p_kic, /* 619 */
+ Parrot_exists_i_p_k, /* 620 */
+ Parrot_exists_i_p_kc, /* 621 */
+ Parrot_delete_p_k, /* 622 */
+ Parrot_delete_p_kc, /* 623 */
+ Parrot_delete_p_ki, /* 624 */
+ Parrot_delete_p_kic, /* 625 */
+ Parrot_elements_i_p, /* 626 */
+ Parrot_push_p_i, /* 627 */
+ Parrot_push_p_ic, /* 628 */
+ Parrot_push_p_n, /* 629 */
+ Parrot_push_p_nc, /* 630 */
+ Parrot_push_p_s, /* 631 */
+ Parrot_push_p_sc, /* 632 */
+ Parrot_push_p_p, /* 633 */
+ Parrot_pop_i_p, /* 634 */
+ Parrot_pop_n_p, /* 635 */
+ Parrot_pop_s_p, /* 636 */
+ Parrot_pop_p_p, /* 637 */
+ Parrot_unshift_p_i, /* 638 */
+ Parrot_unshift_p_ic, /* 639 */
+ Parrot_unshift_p_n, /* 640 */
+ Parrot_unshift_p_nc, /* 641 */
+ Parrot_unshift_p_s, /* 642 */
+ Parrot_unshift_p_sc, /* 643 */
+ Parrot_unshift_p_p, /* 644 */
+ Parrot_shift_i_p, /* 645 */
+ Parrot_shift_n_p, /* 646 */
+ Parrot_shift_s_p, /* 647 */
+ Parrot_shift_p_p, /* 648 */
+ Parrot_splice_p_p_i_i, /* 649 */
+ Parrot_splice_p_p_ic_i, /* 650 */
+ Parrot_splice_p_p_i_ic, /* 651 */
+ Parrot_splice_p_p_ic_ic, /* 652 */
+ Parrot_setprop_p_s_p, /* 653 */
+ Parrot_setprop_p_sc_p, /* 654 */
+ Parrot_getprop_p_s_p, /* 655 */
+ Parrot_getprop_p_sc_p, /* 656 */
+ Parrot_delprop_p_s, /* 657 */
+ Parrot_delprop_p_sc, /* 658 */
+ Parrot_prophash_p_p, /* 659 */
+ Parrot_freeze_s_p, /* 660 */
+ Parrot_thaw_p_s, /* 661 */
+ Parrot_thaw_p_sc, /* 662 */
+ Parrot_add_multi_s_s_p, /* 663 */
+ Parrot_add_multi_sc_s_p, /* 664 */
+ Parrot_add_multi_s_sc_p, /* 665 */
+ Parrot_add_multi_sc_sc_p, /* 666 */
+ Parrot_find_multi_p_s_s, /* 667 */
+ Parrot_find_multi_p_sc_s, /* 668 */
+ Parrot_find_multi_p_s_sc, /* 669 */
+ Parrot_find_multi_p_sc_sc, /* 670 */
+ Parrot_register_p, /* 671 */
+ Parrot_unregister_p, /* 672 */
+ Parrot_box_p_i, /* 673 */
+ Parrot_box_p_ic, /* 674 */
+ Parrot_box_p_n, /* 675 */
+ Parrot_box_p_nc, /* 676 */
+ Parrot_box_p_s, /* 677 */
+ Parrot_box_p_sc, /* 678 */
+ Parrot_iter_p_p, /* 679 */
+ Parrot_morph_p_p, /* 680 */
+ Parrot_morph_p_pc, /* 681 */
+ Parrot_clone_s_s, /* 682 */
+ Parrot_clone_s_sc, /* 683 */
+ Parrot_set_i_i, /* 684 */
+ Parrot_set_i_ic, /* 685 */
+ Parrot_set_i_n, /* 686 */
+ Parrot_set_i_nc, /* 687 */
+ Parrot_set_i_s, /* 688 */
+ Parrot_set_i_sc, /* 689 */
+ Parrot_set_n_n, /* 690 */
+ Parrot_set_n_nc, /* 691 */
+ Parrot_set_n_i, /* 692 */
+ Parrot_set_n_ic, /* 693 */
+ Parrot_set_n_s, /* 694 */
+ Parrot_set_n_sc, /* 695 */
+ Parrot_set_n_p, /* 696 */
+ Parrot_set_s_p, /* 697 */
+ Parrot_set_s_s, /* 698 */
+ Parrot_set_s_sc, /* 699 */
+ Parrot_set_s_i, /* 700 */
+ Parrot_set_s_ic, /* 701 */
+ Parrot_set_s_n, /* 702 */
+ Parrot_set_s_nc, /* 703 */
+ Parrot_set_p_pc, /* 704 */
+ Parrot_set_p_p, /* 705 */
+ Parrot_set_p_i, /* 706 */
+ Parrot_set_p_ic, /* 707 */
+ Parrot_set_p_n, /* 708 */
+ Parrot_set_p_nc, /* 709 */
+ Parrot_set_p_s, /* 710 */
+ Parrot_set_p_sc, /* 711 */
+ Parrot_set_i_p, /* 712 */
+ Parrot_assign_p_p, /* 713 */
+ Parrot_assign_p_i, /* 714 */
+ Parrot_assign_p_ic, /* 715 */
+ Parrot_assign_p_n, /* 716 */
+ Parrot_assign_p_nc, /* 717 */
+ Parrot_assign_p_s, /* 718 */
+ Parrot_assign_p_sc, /* 719 */
+ Parrot_assign_s_s, /* 720 */
+ Parrot_assign_s_sc, /* 721 */
+ Parrot_setref_p_p, /* 722 */
+ Parrot_deref_p_p, /* 723 */
+ Parrot_set_p_ki_i, /* 724 */
+ Parrot_set_p_kic_i, /* 725 */
+ Parrot_set_p_ki_ic, /* 726 */
+ Parrot_set_p_kic_ic, /* 727 */
+ Parrot_set_p_ki_n, /* 728 */
+ Parrot_set_p_kic_n, /* 729 */
+ Parrot_set_p_ki_nc, /* 730 */
+ Parrot_set_p_kic_nc, /* 731 */
+ Parrot_set_p_ki_s, /* 732 */
+ Parrot_set_p_kic_s, /* 733 */
+ Parrot_set_p_ki_sc, /* 734 */
+ Parrot_set_p_kic_sc, /* 735 */
+ Parrot_set_p_ki_p, /* 736 */
+ Parrot_set_p_kic_p, /* 737 */
+ Parrot_set_i_p_ki, /* 738 */
+ Parrot_set_i_p_kic, /* 739 */
+ Parrot_set_n_p_ki, /* 740 */
+ Parrot_set_n_p_kic, /* 741 */
+ Parrot_set_s_p_ki, /* 742 */
+ Parrot_set_s_p_kic, /* 743 */
+ Parrot_set_p_p_ki, /* 744 */
+ Parrot_set_p_p_kic, /* 745 */
+ Parrot_set_p_k_i, /* 746 */
+ Parrot_set_p_kc_i, /* 747 */
+ Parrot_set_p_k_ic, /* 748 */
+ Parrot_set_p_kc_ic, /* 749 */
+ Parrot_set_p_k_n, /* 750 */
+ Parrot_set_p_kc_n, /* 751 */
+ Parrot_set_p_k_nc, /* 752 */
+ Parrot_set_p_kc_nc, /* 753 */
+ Parrot_set_p_k_s, /* 754 */
+ Parrot_set_p_kc_s, /* 755 */
+ Parrot_set_p_k_sc, /* 756 */
+ Parrot_set_p_kc_sc, /* 757 */
+ Parrot_set_p_k_p, /* 758 */
+ Parrot_set_p_kc_p, /* 759 */
+ Parrot_set_i_p_k, /* 760 */
+ Parrot_set_i_p_kc, /* 761 */
+ Parrot_set_n_p_k, /* 762 */
+ Parrot_set_n_p_kc, /* 763 */
+ Parrot_set_s_p_k, /* 764 */
+ Parrot_set_s_p_kc, /* 765 */
+ Parrot_set_p_p_k, /* 766 */
+ Parrot_set_p_p_kc, /* 767 */
+ Parrot_clone_p_p, /* 768 */
+ Parrot_clone_p_p_p, /* 769 */
+ Parrot_clone_p_p_pc, /* 770 */
+ Parrot_copy_p_p, /* 771 */
+ Parrot_null_s, /* 772 */
+ Parrot_null_i, /* 773 */
+ Parrot_null_p, /* 774 */
+ Parrot_null_n, /* 775 */
+ Parrot_ord_i_s, /* 776 */
+ Parrot_ord_i_sc, /* 777 */
+ Parrot_ord_i_s_i, /* 778 */
+ Parrot_ord_i_sc_i, /* 779 */
+ Parrot_ord_i_s_ic, /* 780 */
+ Parrot_ord_i_sc_ic, /* 781 */
+ Parrot_chr_s_i, /* 782 */
+ Parrot_chr_s_ic, /* 783 */
+ Parrot_chopn_s_s_i, /* 784 */
+ Parrot_chopn_s_sc_i, /* 785 */
+ Parrot_chopn_s_s_ic, /* 786 */
+ Parrot_chopn_s_sc_ic, /* 787 */
+ Parrot_concat_s_s, /* 788 */
+ Parrot_concat_s_sc, /* 789 */
+ Parrot_concat_p_p, /* 790 */
+ Parrot_concat_p_s, /* 791 */
+ Parrot_concat_p_sc, /* 792 */
+ Parrot_concat_s_s_s, /* 793 */
+ Parrot_concat_s_sc_s, /* 794 */
+ Parrot_concat_s_s_sc, /* 795 */
+ Parrot_concat_p_p_s, /* 796 */
+ Parrot_concat_p_p_sc, /* 797 */
+ Parrot_concat_p_p_p, /* 798 */
+ Parrot_repeat_s_s_i, /* 799 */
+ Parrot_repeat_s_sc_i, /* 800 */
+ Parrot_repeat_s_s_ic, /* 801 */
+ Parrot_repeat_s_sc_ic, /* 802 */
+ Parrot_repeat_p_p_i, /* 803 */
+ Parrot_repeat_p_p_ic, /* 804 */
+ Parrot_repeat_p_p_p, /* 805 */
+ Parrot_repeat_p_i, /* 806 */
+ Parrot_repeat_p_ic, /* 807 */
+ Parrot_repeat_p_p, /* 808 */
+ Parrot_length_i_s, /* 809 */
+ Parrot_length_i_sc, /* 810 */
+ Parrot_bytelength_i_s, /* 811 */
+ Parrot_bytelength_i_sc, /* 812 */
+ Parrot_pin_s, /* 813 */
+ Parrot_unpin_s, /* 814 */
+ Parrot_substr_s_s_i, /* 815 */
+ Parrot_substr_s_sc_i, /* 816 */
+ Parrot_substr_s_s_ic, /* 817 */
+ Parrot_substr_s_sc_ic, /* 818 */
+ Parrot_substr_s_s_i_i, /* 819 */
+ Parrot_substr_s_sc_i_i, /* 820 */
+ Parrot_substr_s_s_ic_i, /* 821 */
+ Parrot_substr_s_sc_ic_i, /* 822 */
+ Parrot_substr_s_s_i_ic, /* 823 */
+ Parrot_substr_s_sc_i_ic, /* 824 */
+ Parrot_substr_s_s_ic_ic, /* 825 */
+ Parrot_substr_s_sc_ic_ic, /* 826 */
+ Parrot_substr_s_p_i_i, /* 827 */
+ Parrot_substr_s_p_ic_i, /* 828 */
+ Parrot_substr_s_p_i_ic, /* 829 */
+ Parrot_substr_s_p_ic_ic, /* 830 */
+ Parrot_replace_s_s_i_i_s, /* 831 */
+ Parrot_replace_s_sc_i_i_s, /* 832 */
+ Parrot_replace_s_s_ic_i_s, /* 833 */
+ Parrot_replace_s_sc_ic_i_s, /* 834 */
+ Parrot_replace_s_s_i_ic_s, /* 835 */
+ Parrot_replace_s_sc_i_ic_s, /* 836 */
+ Parrot_replace_s_s_ic_ic_s, /* 837 */
+ Parrot_replace_s_sc_ic_ic_s, /* 838 */
+ Parrot_replace_s_s_i_i_sc, /* 839 */
+ Parrot_replace_s_sc_i_i_sc, /* 840 */
+ Parrot_replace_s_s_ic_i_sc, /* 841 */
+ Parrot_replace_s_sc_ic_i_sc, /* 842 */
+ Parrot_replace_s_s_i_ic_sc, /* 843 */
+ Parrot_replace_s_sc_i_ic_sc, /* 844 */
+ Parrot_replace_s_s_ic_ic_sc, /* 845 */
+ Parrot_replace_s_sc_ic_ic_sc, /* 846 */
+ Parrot_index_i_s_s, /* 847 */
+ Parrot_index_i_sc_s, /* 848 */
+ Parrot_index_i_s_sc, /* 849 */
+ Parrot_index_i_sc_sc, /* 850 */
+ Parrot_index_i_s_s_i, /* 851 */
+ Parrot_index_i_sc_s_i, /* 852 */
+ Parrot_index_i_s_sc_i, /* 853 */
+ Parrot_index_i_sc_sc_i, /* 854 */
+ Parrot_index_i_s_s_ic, /* 855 */
+ Parrot_index_i_sc_s_ic, /* 856 */
+ Parrot_index_i_s_sc_ic, /* 857 */
+ Parrot_index_i_sc_sc_ic, /* 858 */
+ Parrot_sprintf_s_s_p, /* 859 */
+ Parrot_sprintf_s_sc_p, /* 860 */
+ Parrot_sprintf_p_p_p, /* 861 */
+ Parrot_new_s, /* 862 */
+ Parrot_new_s_i, /* 863 */
+ Parrot_new_s_ic, /* 864 */
+ Parrot_stringinfo_i_s_i, /* 865 */
+ Parrot_stringinfo_i_sc_i, /* 866 */
+ Parrot_stringinfo_i_s_ic, /* 867 */
+ Parrot_stringinfo_i_sc_ic, /* 868 */
+ Parrot_upcase_s_s, /* 869 */
+ Parrot_upcase_s_sc, /* 870 */
+ Parrot_downcase_s_s, /* 871 */
+ Parrot_downcase_s_sc, /* 872 */
+ Parrot_titlecase_s_s, /* 873 */
+ Parrot_titlecase_s_sc, /* 874 */
+ Parrot_join_s_s_p, /* 875 */
+ Parrot_join_s_sc_p, /* 876 */
+ Parrot_split_p_s_s, /* 877 */
+ Parrot_split_p_sc_s, /* 878 */
+ Parrot_split_p_s_sc, /* 879 */
+ Parrot_split_p_sc_sc, /* 880 */
+ Parrot_charset_i_s, /* 881 */
+ Parrot_charset_i_sc, /* 882 */
+ Parrot_charsetname_s_i, /* 883 */
+ Parrot_charsetname_s_ic, /* 884 */
+ Parrot_find_charset_i_s, /* 885 */
+ Parrot_find_charset_i_sc, /* 886 */
+ Parrot_trans_charset_s_s_i, /* 887 */
+ Parrot_trans_charset_s_sc_i, /* 888 */
+ Parrot_trans_charset_s_s_ic, /* 889 */
+ Parrot_trans_charset_s_sc_ic, /* 890 */
+ Parrot_encoding_i_s, /* 891 */
+ Parrot_encoding_i_sc, /* 892 */
+ Parrot_encodingname_s_i, /* 893 */
+ Parrot_encodingname_s_ic, /* 894 */
+ Parrot_find_encoding_i_s, /* 895 */
+ Parrot_find_encoding_i_sc, /* 896 */
+ Parrot_trans_encoding_s_s_i, /* 897 */
+ Parrot_trans_encoding_s_sc_i, /* 898 */
+ Parrot_trans_encoding_s_s_ic, /* 899 */
+ Parrot_trans_encoding_s_sc_ic, /* 900 */
+ Parrot_is_cclass_i_i_s_i, /* 901 */
+ Parrot_is_cclass_i_ic_s_i, /* 902 */
+ Parrot_is_cclass_i_i_sc_i, /* 903 */
+ Parrot_is_cclass_i_ic_sc_i, /* 904 */
+ Parrot_is_cclass_i_i_s_ic, /* 905 */
+ Parrot_is_cclass_i_ic_s_ic, /* 906 */
+ Parrot_is_cclass_i_i_sc_ic, /* 907 */
+ Parrot_is_cclass_i_ic_sc_ic, /* 908 */
+ Parrot_find_cclass_i_i_s_i_i, /* 909 */
+ Parrot_find_cclass_i_ic_s_i_i, /* 910 */
+ Parrot_find_cclass_i_i_sc_i_i, /* 911 */
+ Parrot_find_cclass_i_ic_sc_i_i, /* 912 */
+ Parrot_find_cclass_i_i_s_ic_i, /* 913 */
+ Parrot_find_cclass_i_ic_s_ic_i, /* 914 */
+ Parrot_find_cclass_i_i_sc_ic_i, /* 915 */
+ Parrot_find_cclass_i_ic_sc_ic_i, /* 916 */
+ Parrot_find_cclass_i_i_s_i_ic, /* 917 */
+ Parrot_find_cclass_i_ic_s_i_ic, /* 918 */
+ Parrot_find_cclass_i_i_sc_i_ic, /* 919 */
+ Parrot_find_cclass_i_ic_sc_i_ic, /* 920 */
+ Parrot_find_cclass_i_i_s_ic_ic, /* 921 */
+ Parrot_find_cclass_i_ic_s_ic_ic, /* 922 */
+ Parrot_find_cclass_i_i_sc_ic_ic, /* 923 */
+ Parrot_find_cclass_i_ic_sc_ic_ic, /* 924 */
+ Parrot_find_not_cclass_i_i_s_i_i, /* 925 */
+ Parrot_find_not_cclass_i_ic_s_i_i, /* 926 */
+ Parrot_find_not_cclass_i_i_sc_i_i, /* 927 */
+ Parrot_find_not_cclass_i_ic_sc_i_i, /* 928 */
+ Parrot_find_not_cclass_i_i_s_ic_i, /* 929 */
+ Parrot_find_not_cclass_i_ic_s_ic_i, /* 930 */
+ Parrot_find_not_cclass_i_i_sc_ic_i, /* 931 */
+ Parrot_find_not_cclass_i_ic_sc_ic_i, /* 932 */
+ Parrot_find_not_cclass_i_i_s_i_ic, /* 933 */
+ Parrot_find_not_cclass_i_ic_s_i_ic, /* 934 */
+ Parrot_find_not_cclass_i_i_sc_i_ic, /* 935 */
+ Parrot_find_not_cclass_i_ic_sc_i_ic, /* 936 */
+ Parrot_find_not_cclass_i_i_s_ic_ic, /* 937 */
+ Parrot_find_not_cclass_i_ic_s_ic_ic, /* 938 */
+ Parrot_find_not_cclass_i_i_sc_ic_ic, /* 939 */
+ Parrot_find_not_cclass_i_ic_sc_ic_ic, /* 940 */
+ Parrot_escape_s_s, /* 941 */
+ Parrot_compose_s_s, /* 942 */
+ Parrot_compose_s_sc, /* 943 */
+ Parrot_spawnw_i_s, /* 944 */
+ Parrot_spawnw_i_sc, /* 945 */
+ Parrot_spawnw_i_p, /* 946 */
+ Parrot_err_i, /* 947 */
+ Parrot_err_s, /* 948 */
+ Parrot_err_s_i, /* 949 */
+ Parrot_err_s_ic, /* 950 */
+ Parrot_time_i, /* 951 */
+ Parrot_time_n, /* 952 */
+ Parrot_sleep_i, /* 953 */
+ Parrot_sleep_ic, /* 954 */
+ Parrot_sleep_n, /* 955 */
+ Parrot_sleep_nc, /* 956 */
+ Parrot_store_lex_s_p, /* 957 */
+ Parrot_store_lex_sc_p, /* 958 */
+ Parrot_store_dynamic_lex_s_p, /* 959 */
+ Parrot_store_dynamic_lex_sc_p, /* 960 */
+ Parrot_find_lex_p_s, /* 961 */
+ Parrot_find_lex_p_sc, /* 962 */
+ Parrot_find_dynamic_lex_p_s, /* 963 */
+ Parrot_find_dynamic_lex_p_sc, /* 964 */
+ Parrot_find_caller_lex_p_s, /* 965 */
+ Parrot_find_caller_lex_p_sc, /* 966 */
+ Parrot_get_namespace_p, /* 967 */
+ Parrot_get_namespace_p_p, /* 968 */
+ Parrot_get_namespace_p_pc, /* 969 */
+ Parrot_get_hll_namespace_p, /* 970 */
+ Parrot_get_hll_namespace_p_p, /* 971 */
+ Parrot_get_hll_namespace_p_pc, /* 972 */
+ Parrot_get_root_namespace_p, /* 973 */
+ Parrot_get_root_namespace_p_p, /* 974 */
+ Parrot_get_root_namespace_p_pc, /* 975 */
+ Parrot_get_global_p_s, /* 976 */
+ Parrot_get_global_p_sc, /* 977 */
+ Parrot_get_global_p_p_s, /* 978 */
+ Parrot_get_global_p_pc_s, /* 979 */
+ Parrot_get_global_p_p_sc, /* 980 */
+ Parrot_get_global_p_pc_sc, /* 981 */
+ Parrot_get_hll_global_p_s, /* 982 */
+ Parrot_get_hll_global_p_sc, /* 983 */
+ Parrot_get_hll_global_p_p_s, /* 984 */
+ Parrot_get_hll_global_p_pc_s, /* 985 */
+ Parrot_get_hll_global_p_p_sc, /* 986 */
+ Parrot_get_hll_global_p_pc_sc, /* 987 */
+ Parrot_get_root_global_p_s, /* 988 */
+ Parrot_get_root_global_p_sc, /* 989 */
+ Parrot_get_root_global_p_p_s, /* 990 */
+ Parrot_get_root_global_p_pc_s, /* 991 */
+ Parrot_get_root_global_p_p_sc, /* 992 */
+ Parrot_get_root_global_p_pc_sc, /* 993 */
+ Parrot_set_global_s_p, /* 994 */
+ Parrot_set_global_sc_p, /* 995 */
+ Parrot_set_global_p_s_p, /* 996 */
+ Parrot_set_global_pc_s_p, /* 997 */
+ Parrot_set_global_p_sc_p, /* 998 */
+ Parrot_set_global_pc_sc_p, /* 999 */
+ Parrot_set_hll_global_s_p, /* 1000 */
+ Parrot_set_hll_global_sc_p, /* 1001 */
+ Parrot_set_hll_global_p_s_p, /* 1002 */
+ Parrot_set_hll_global_pc_s_p, /* 1003 */
+ Parrot_set_hll_global_p_sc_p, /* 1004 */
+ Parrot_set_hll_global_pc_sc_p, /* 1005 */
+ Parrot_set_root_global_s_p, /* 1006 */
+ Parrot_set_root_global_sc_p, /* 1007 */
+ Parrot_set_root_global_p_s_p, /* 1008 */
+ Parrot_set_root_global_pc_s_p, /* 1009 */
+ Parrot_set_root_global_p_sc_p, /* 1010 */
+ Parrot_set_root_global_pc_sc_p, /* 1011 */
+ Parrot_find_name_p_s, /* 1012 */
+ Parrot_find_name_p_sc, /* 1013 */
+ Parrot_find_sub_not_null_p_s, /* 1014 */
+ Parrot_find_sub_not_null_p_sc, /* 1015 */
+ Parrot_trap, /* 1016 */
+ Parrot_set_label_p_ic, /* 1017 */
+ Parrot_get_label_i_p, /* 1018 */
+ Parrot_fetch_p_p_p_p, /* 1019 */
+ Parrot_fetch_p_pc_p_p, /* 1020 */
+ Parrot_fetch_p_p_pc_p, /* 1021 */
+ Parrot_fetch_p_pc_pc_p, /* 1022 */
+ Parrot_fetch_p_p_p_pc, /* 1023 */
+ Parrot_fetch_p_pc_p_pc, /* 1024 */
+ Parrot_fetch_p_p_pc_pc, /* 1025 */
+ Parrot_fetch_p_pc_pc_pc, /* 1026 */
+ Parrot_fetch_p_p_i_p, /* 1027 */
+ Parrot_fetch_p_pc_i_p, /* 1028 */
+ Parrot_fetch_p_p_ic_p, /* 1029 */
+ Parrot_fetch_p_pc_ic_p, /* 1030 */
+ Parrot_fetch_p_p_i_pc, /* 1031 */
+ Parrot_fetch_p_pc_i_pc, /* 1032 */
+ Parrot_fetch_p_p_ic_pc, /* 1033 */
+ Parrot_fetch_p_pc_ic_pc, /* 1034 */
+ Parrot_fetch_p_p_s_p, /* 1035 */
+ Parrot_fetch_p_pc_s_p, /* 1036 */
+ Parrot_fetch_p_p_sc_p, /* 1037 */
+ Parrot_fetch_p_pc_sc_p, /* 1038 */
+ Parrot_fetch_p_p_s_pc, /* 1039 */
+ Parrot_fetch_p_pc_s_pc, /* 1040 */
+ Parrot_fetch_p_p_sc_pc, /* 1041 */
+ Parrot_fetch_p_pc_sc_pc, /* 1042 */
+ Parrot_vivify_p_p_p_p, /* 1043 */
+ Parrot_vivify_p_pc_p_p, /* 1044 */
+ Parrot_vivify_p_p_pc_p, /* 1045 */
+ Parrot_vivify_p_pc_pc_p, /* 1046 */
+ Parrot_vivify_p_p_p_pc, /* 1047 */
+ Parrot_vivify_p_pc_p_pc, /* 1048 */
+ Parrot_vivify_p_p_pc_pc, /* 1049 */
+ Parrot_vivify_p_pc_pc_pc, /* 1050 */
+ Parrot_vivify_p_p_i_p, /* 1051 */
+ Parrot_vivify_p_pc_i_p, /* 1052 */
+ Parrot_vivify_p_p_ic_p, /* 1053 */
+ Parrot_vivify_p_pc_ic_p, /* 1054 */
+ Parrot_vivify_p_p_i_pc, /* 1055 */
+ Parrot_vivify_p_pc_i_pc, /* 1056 */
+ Parrot_vivify_p_p_ic_pc, /* 1057 */
+ Parrot_vivify_p_pc_ic_pc, /* 1058 */
+ Parrot_vivify_p_p_s_p, /* 1059 */
+ Parrot_vivify_p_pc_s_p, /* 1060 */
+ Parrot_vivify_p_p_sc_p, /* 1061 */
+ Parrot_vivify_p_pc_sc_p, /* 1062 */
+ Parrot_vivify_p_p_s_pc, /* 1063 */
+ Parrot_vivify_p_pc_s_pc, /* 1064 */
+ Parrot_vivify_p_p_sc_pc, /* 1065 */
+ Parrot_vivify_p_pc_sc_pc, /* 1066 */
+ Parrot_new_p_s_i, /* 1067 */
+ Parrot_new_p_sc_i, /* 1068 */
+ Parrot_new_p_s_ic, /* 1069 */
+ Parrot_new_p_sc_ic, /* 1070 */
+ Parrot_new_p_p_i, /* 1071 */
+ Parrot_new_p_pc_i, /* 1072 */
+ Parrot_new_p_p_ic, /* 1073 */
+ Parrot_new_p_pc_ic, /* 1074 */
+ Parrot_root_new_p_p_i, /* 1075 */
+ Parrot_root_new_p_pc_i, /* 1076 */
+ Parrot_root_new_p_p_ic, /* 1077 */
+ Parrot_root_new_p_pc_ic, /* 1078 */
+ Parrot_find_codepoint_i_s, /* 1079 */
+ Parrot_find_codepoint_i_sc, /* 1080 */
+ Parrot_finalize_p, /* 1081 */
+ Parrot_finalize_pc, /* 1082 */
NULL /* NULL function pointer */
};
@@ -1158,7 +1161,7 @@
** Op Info Table:
*/
-static op_info_t core_op_info_table[1081] = {
+static op_info_t core_op_info_table[1084] = {
{ /* 0 */
/* type PARROT_INLINE_OP, */
"end",
@@ -5541,6 +5544,42 @@
},
{ /* 365 */
/* type PARROT_INLINE_OP, */
+ "getstdin",
+ "getstdin_p",
+ "Parrot_getstdin_p",
+ /* "", body */
+ 0,
+ 2,
+ { PARROT_ARG_P },
+ { PARROT_ARGDIR_OUT },
+ { 0 }
+ },
+ { /* 366 */
+ /* type PARROT_INLINE_OP, */
+ "getstdout",
+ "getstdout_p",
+ "Parrot_getstdout_p",
+ /* "", body */
+ 0,
+ 2,
+ { PARROT_ARG_P },
+ { PARROT_ARGDIR_OUT },
+ { 0 }
+ },
+ { /* 367 */
+ /* type PARROT_INLINE_OP, */
+ "getstderr",
+ "getstderr_p",
+ "Parrot_getstderr_p",
+ /* "", body */
+ 0,
+ 2,
+ { PARROT_ARG_P },
+ { PARROT_ARGDIR_OUT },
+ { 0 }
+ },
+ { /* 368 */
+ /* type PARROT_INLINE_OP, */
"abs",
"abs_i",
"Parrot_abs_i",
@@ -5551,7 +5590,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 366 */
+ { /* 369 */
/* type PARROT_INLINE_OP, */
"abs",
"abs_n",
@@ -5563,7 +5602,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 367 */
+ { /* 370 */
/* type PARROT_INLINE_OP, */
"abs",
"abs_i_i",
@@ -5575,7 +5614,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 368 */
+ { /* 371 */
/* type PARROT_INLINE_OP, */
"abs",
"abs_n_n",
@@ -5587,7 +5626,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 369 */
+ { /* 372 */
/* type PARROT_INLINE_OP, */
"abs",
"abs_p",
@@ -5599,7 +5638,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 370 */
+ { /* 373 */
/* type PARROT_INLINE_OP, */
"abs",
"abs_p_p",
@@ -5611,7 +5650,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 371 */
+ { /* 374 */
/* type PARROT_INLINE_OP, */
"add",
"add_i_i",
@@ -5623,7 +5662,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 372 */
+ { /* 375 */
/* type PARROT_INLINE_OP, */
"add",
"add_i_ic",
@@ -5635,7 +5674,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 373 */
+ { /* 376 */
/* type PARROT_INLINE_OP, */
"add",
"add_n_n",
@@ -5647,7 +5686,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 374 */
+ { /* 377 */
/* type PARROT_INLINE_OP, */
"add",
"add_n_nc",
@@ -5659,7 +5698,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 375 */
+ { /* 378 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_p",
@@ -5671,7 +5710,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 376 */
+ { /* 379 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_i",
@@ -5683,7 +5722,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 377 */
+ { /* 380 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_ic",
@@ -5695,7 +5734,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 378 */
+ { /* 381 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_n",
@@ -5707,7 +5746,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 379 */
+ { /* 382 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_nc",
@@ -5719,7 +5758,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 380 */
+ { /* 383 */
/* type PARROT_INLINE_OP, */
"add",
"add_i_i_i",
@@ -5731,7 +5770,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 381 */
+ { /* 384 */
/* type PARROT_INLINE_OP, */
"add",
"add_i_ic_i",
@@ -5743,7 +5782,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 382 */
+ { /* 385 */
/* type PARROT_INLINE_OP, */
"add",
"add_i_i_ic",
@@ -5755,7 +5794,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 383 */
+ { /* 386 */
/* type PARROT_INLINE_OP, */
"add",
"add_n_n_n",
@@ -5767,7 +5806,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 384 */
+ { /* 387 */
/* type PARROT_INLINE_OP, */
"add",
"add_n_nc_n",
@@ -5779,7 +5818,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 385 */
+ { /* 388 */
/* type PARROT_INLINE_OP, */
"add",
"add_n_n_nc",
@@ -5791,7 +5830,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 386 */
+ { /* 389 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_p_p",
@@ -5803,7 +5842,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 387 */
+ { /* 390 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_p_i",
@@ -5815,7 +5854,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 388 */
+ { /* 391 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_p_ic",
@@ -5827,7 +5866,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 389 */
+ { /* 392 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_p_n",
@@ -5839,7 +5878,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 390 */
+ { /* 393 */
/* type PARROT_INLINE_OP, */
"add",
"add_p_p_nc",
@@ -5851,7 +5890,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 391 */
+ { /* 394 */
/* type PARROT_INLINE_OP, */
"dec",
"dec_i",
@@ -5863,7 +5902,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 392 */
+ { /* 395 */
/* type PARROT_INLINE_OP, */
"dec",
"dec_n",
@@ -5875,7 +5914,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 393 */
+ { /* 396 */
/* type PARROT_INLINE_OP, */
"dec",
"dec_p",
@@ -5887,7 +5926,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 394 */
+ { /* 397 */
/* type PARROT_INLINE_OP, */
"div",
"div_i_i",
@@ -5899,7 +5938,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 395 */
+ { /* 398 */
/* type PARROT_INLINE_OP, */
"div",
"div_i_ic",
@@ -5911,7 +5950,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 396 */
+ { /* 399 */
/* type PARROT_INLINE_OP, */
"div",
"div_n_n",
@@ -5923,7 +5962,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 397 */
+ { /* 400 */
/* type PARROT_INLINE_OP, */
"div",
"div_n_nc",
@@ -5935,7 +5974,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 398 */
+ { /* 401 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_p",
@@ -5947,7 +5986,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 399 */
+ { /* 402 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_i",
@@ -5959,7 +5998,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 400 */
+ { /* 403 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_ic",
@@ -5971,7 +6010,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 401 */
+ { /* 404 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_n",
@@ -5983,7 +6022,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 402 */
+ { /* 405 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_nc",
@@ -5995,7 +6034,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 403 */
+ { /* 406 */
/* type PARROT_INLINE_OP, */
"div",
"div_i_i_i",
@@ -6007,7 +6046,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 404 */
+ { /* 407 */
/* type PARROT_INLINE_OP, */
"div",
"div_i_ic_i",
@@ -6019,7 +6058,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 405 */
+ { /* 408 */
/* type PARROT_INLINE_OP, */
"div",
"div_i_i_ic",
@@ -6031,7 +6070,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 406 */
+ { /* 409 */
/* type PARROT_INLINE_OP, */
"div",
"div_i_ic_ic",
@@ -6043,7 +6082,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 407 */
+ { /* 410 */
/* type PARROT_INLINE_OP, */
"div",
"div_n_n_n",
@@ -6055,7 +6094,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 408 */
+ { /* 411 */
/* type PARROT_INLINE_OP, */
"div",
"div_n_nc_n",
@@ -6067,7 +6106,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 409 */
+ { /* 412 */
/* type PARROT_INLINE_OP, */
"div",
"div_n_n_nc",
@@ -6079,7 +6118,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 410 */
+ { /* 413 */
/* type PARROT_INLINE_OP, */
"div",
"div_n_nc_nc",
@@ -6091,7 +6130,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 411 */
+ { /* 414 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_p_p",
@@ -6103,7 +6142,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 412 */
+ { /* 415 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_p_i",
@@ -6115,7 +6154,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 413 */
+ { /* 416 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_p_ic",
@@ -6127,7 +6166,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 414 */
+ { /* 417 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_p_n",
@@ -6139,7 +6178,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 415 */
+ { /* 418 */
/* type PARROT_INLINE_OP, */
"div",
"div_p_p_nc",
@@ -6151,7 +6190,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 416 */
+ { /* 419 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_i_i",
@@ -6163,7 +6202,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 417 */
+ { /* 420 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_i_ic",
@@ -6175,7 +6214,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 418 */
+ { /* 421 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_n_n",
@@ -6187,7 +6226,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 419 */
+ { /* 422 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_n_nc",
@@ -6199,7 +6238,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 420 */
+ { /* 423 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_p",
@@ -6211,7 +6250,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 421 */
+ { /* 424 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_i",
@@ -6223,7 +6262,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 422 */
+ { /* 425 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_ic",
@@ -6235,7 +6274,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 423 */
+ { /* 426 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_n",
@@ -6247,7 +6286,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 424 */
+ { /* 427 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_nc",
@@ -6259,7 +6298,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 425 */
+ { /* 428 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_i_i_i",
@@ -6271,7 +6310,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 426 */
+ { /* 429 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_i_ic_i",
@@ -6283,7 +6322,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 427 */
+ { /* 430 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_i_i_ic",
@@ -6295,7 +6334,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 428 */
+ { /* 431 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_n_n_n",
@@ -6307,7 +6346,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 429 */
+ { /* 432 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_n_nc_n",
@@ -6319,7 +6358,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 430 */
+ { /* 433 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_n_n_nc",
@@ -6331,7 +6370,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 431 */
+ { /* 434 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_p_p",
@@ -6343,7 +6382,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 432 */
+ { /* 435 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_p_i",
@@ -6355,7 +6394,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 433 */
+ { /* 436 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_p_ic",
@@ -6367,7 +6406,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 434 */
+ { /* 437 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_p_n",
@@ -6379,7 +6418,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 435 */
+ { /* 438 */
/* type PARROT_INLINE_OP, */
"fdiv",
"fdiv_p_p_nc",
@@ -6391,7 +6430,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 436 */
+ { /* 439 */
/* type PARROT_INLINE_OP, */
"ceil",
"ceil_n",
@@ -6403,7 +6442,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 437 */
+ { /* 440 */
/* type PARROT_INLINE_OP, */
"ceil",
"ceil_i_n",
@@ -6415,7 +6454,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 438 */
+ { /* 441 */
/* type PARROT_INLINE_OP, */
"ceil",
"ceil_n_n",
@@ -6427,7 +6466,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 439 */
+ { /* 442 */
/* type PARROT_INLINE_OP, */
"floor",
"floor_n",
@@ -6439,7 +6478,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 440 */
+ { /* 443 */
/* type PARROT_INLINE_OP, */
"floor",
"floor_i_n",
@@ -6451,7 +6490,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 441 */
+ { /* 444 */
/* type PARROT_INLINE_OP, */
"floor",
"floor_n_n",
@@ -6463,7 +6502,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 442 */
+ { /* 445 */
/* type PARROT_INLINE_OP, */
"inc",
"inc_i",
@@ -6475,7 +6514,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 443 */
+ { /* 446 */
/* type PARROT_INLINE_OP, */
"inc",
"inc_n",
@@ -6487,7 +6526,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 444 */
+ { /* 447 */
/* type PARROT_INLINE_OP, */
"inc",
"inc_p",
@@ -6499,7 +6538,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 445 */
+ { /* 448 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_i_i",
@@ -6511,7 +6550,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 446 */
+ { /* 449 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_i_ic",
@@ -6523,7 +6562,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 447 */
+ { /* 450 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_n_n",
@@ -6535,7 +6574,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 448 */
+ { /* 451 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_n_nc",
@@ -6547,7 +6586,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 449 */
+ { /* 452 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_p",
@@ -6559,7 +6598,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 450 */
+ { /* 453 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_i",
@@ -6571,7 +6610,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 451 */
+ { /* 454 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_ic",
@@ -6583,7 +6622,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 452 */
+ { /* 455 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_n",
@@ -6595,7 +6634,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 453 */
+ { /* 456 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_nc",
@@ -6607,7 +6646,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 454 */
+ { /* 457 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_i_i_i",
@@ -6619,7 +6658,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 455 */
+ { /* 458 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_i_ic_i",
@@ -6631,7 +6670,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 456 */
+ { /* 459 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_i_i_ic",
@@ -6643,7 +6682,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 457 */
+ { /* 460 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_n_n_n",
@@ -6655,7 +6694,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 458 */
+ { /* 461 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_n_nc_n",
@@ -6667,7 +6706,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 459 */
+ { /* 462 */
/* type PARROT_FUNCTION_OP, */
"mod",
"mod_n_n_nc",
@@ -6679,7 +6718,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 460 */
+ { /* 463 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_p_p",
@@ -6691,7 +6730,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 461 */
+ { /* 464 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_p_i",
@@ -6703,7 +6742,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 462 */
+ { /* 465 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_p_ic",
@@ -6715,7 +6754,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 463 */
+ { /* 466 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_p_n",
@@ -6727,7 +6766,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 464 */
+ { /* 467 */
/* type PARROT_INLINE_OP, */
"mod",
"mod_p_p_nc",
@@ -6739,7 +6778,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 465 */
+ { /* 468 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_i_i",
@@ -6751,7 +6790,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 466 */
+ { /* 469 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_i_ic",
@@ -6763,7 +6802,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 467 */
+ { /* 470 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_n_n",
@@ -6775,7 +6814,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 468 */
+ { /* 471 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_n_nc",
@@ -6787,7 +6826,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 469 */
+ { /* 472 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_p",
@@ -6799,7 +6838,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 470 */
+ { /* 473 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_i",
@@ -6811,7 +6850,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 471 */
+ { /* 474 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_ic",
@@ -6823,7 +6862,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 472 */
+ { /* 475 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_n",
@@ -6835,7 +6874,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 473 */
+ { /* 476 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_nc",
@@ -6847,7 +6886,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 474 */
+ { /* 477 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_i_i_i",
@@ -6859,7 +6898,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 475 */
+ { /* 478 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_i_ic_i",
@@ -6871,7 +6910,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 476 */
+ { /* 479 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_i_i_ic",
@@ -6883,7 +6922,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 477 */
+ { /* 480 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_n_n_n",
@@ -6895,7 +6934,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 478 */
+ { /* 481 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_n_nc_n",
@@ -6907,7 +6946,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 479 */
+ { /* 482 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_n_n_nc",
@@ -6919,7 +6958,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 480 */
+ { /* 483 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_p_p",
@@ -6931,7 +6970,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 481 */
+ { /* 484 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_p_i",
@@ -6943,7 +6982,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 482 */
+ { /* 485 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_p_ic",
@@ -6955,7 +6994,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 483 */
+ { /* 486 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_p_n",
@@ -6967,7 +7006,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 484 */
+ { /* 487 */
/* type PARROT_INLINE_OP, */
"mul",
"mul_p_p_nc",
@@ -6979,7 +7018,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 485 */
+ { /* 488 */
/* type PARROT_INLINE_OP, */
"neg",
"neg_i",
@@ -6991,7 +7030,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 486 */
+ { /* 489 */
/* type PARROT_INLINE_OP, */
"neg",
"neg_n",
@@ -7003,7 +7042,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 487 */
+ { /* 490 */
/* type PARROT_INLINE_OP, */
"neg",
"neg_p",
@@ -7015,7 +7054,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 488 */
+ { /* 491 */
/* type PARROT_INLINE_OP, */
"neg",
"neg_i_i",
@@ -7027,7 +7066,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 489 */
+ { /* 492 */
/* type PARROT_INLINE_OP, */
"neg",
"neg_n_n",
@@ -7039,7 +7078,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 490 */
+ { /* 493 */
/* type PARROT_INLINE_OP, */
"neg",
"neg_p_p",
@@ -7051,7 +7090,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 491 */
+ { /* 494 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_i_i",
@@ -7063,7 +7102,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 492 */
+ { /* 495 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_i_ic",
@@ -7075,7 +7114,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 493 */
+ { /* 496 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_n_n",
@@ -7087,7 +7126,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 494 */
+ { /* 497 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_n_nc",
@@ -7099,7 +7138,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 495 */
+ { /* 498 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_p",
@@ -7111,7 +7150,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 496 */
+ { /* 499 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_i",
@@ -7123,7 +7162,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 497 */
+ { /* 500 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_ic",
@@ -7135,7 +7174,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 498 */
+ { /* 501 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_n",
@@ -7147,7 +7186,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 499 */
+ { /* 502 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_nc",
@@ -7159,7 +7198,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 500 */
+ { /* 503 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_i_i_i",
@@ -7171,7 +7210,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 501 */
+ { /* 504 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_i_ic_i",
@@ -7183,7 +7222,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 502 */
+ { /* 505 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_i_i_ic",
@@ -7195,7 +7234,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 503 */
+ { /* 506 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_n_n_n",
@@ -7207,7 +7246,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 504 */
+ { /* 507 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_n_nc_n",
@@ -7219,7 +7258,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 505 */
+ { /* 508 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_n_n_nc",
@@ -7231,7 +7270,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 506 */
+ { /* 509 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_p_p",
@@ -7243,7 +7282,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 507 */
+ { /* 510 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_p_i",
@@ -7255,7 +7294,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 508 */
+ { /* 511 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_p_ic",
@@ -7267,7 +7306,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 509 */
+ { /* 512 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_p_n",
@@ -7279,7 +7318,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 510 */
+ { /* 513 */
/* type PARROT_INLINE_OP, */
"sub",
"sub_p_p_nc",
@@ -7291,7 +7330,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 511 */
+ { /* 514 */
/* type PARROT_INLINE_OP, */
"sqrt",
"sqrt_n_n",
@@ -7303,7 +7342,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 512 */
+ { /* 515 */
/* type PARROT_FUNCTION_OP, */
"callmethodcc",
"callmethodcc_p_s",
@@ -7315,7 +7354,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 513 */
+ { /* 516 */
/* type PARROT_FUNCTION_OP, */
"callmethodcc",
"callmethodcc_p_sc",
@@ -7327,7 +7366,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 514 */
+ { /* 517 */
/* type PARROT_FUNCTION_OP, */
"callmethodcc",
"callmethodcc_p_p",
@@ -7339,7 +7378,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 515 */
+ { /* 518 */
/* type PARROT_FUNCTION_OP, */
"callmethod",
"callmethod_p_s_p",
@@ -7351,7 +7390,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 516 */
+ { /* 519 */
/* type PARROT_FUNCTION_OP, */
"callmethod",
"callmethod_p_sc_p",
@@ -7363,7 +7402,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 517 */
+ { /* 520 */
/* type PARROT_FUNCTION_OP, */
"callmethod",
"callmethod_p_p_p",
@@ -7375,7 +7414,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 518 */
+ { /* 521 */
/* type PARROT_FUNCTION_OP, */
"tailcallmethod",
"tailcallmethod_p_s",
@@ -7387,7 +7426,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 519 */
+ { /* 522 */
/* type PARROT_FUNCTION_OP, */
"tailcallmethod",
"tailcallmethod_p_sc",
@@ -7399,7 +7438,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 520 */
+ { /* 523 */
/* type PARROT_FUNCTION_OP, */
"tailcallmethod",
"tailcallmethod_p_p",
@@ -7411,7 +7450,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 521 */
+ { /* 524 */
/* type PARROT_INLINE_OP, */
"addmethod",
"addmethod_p_s_p",
@@ -7423,7 +7462,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 522 */
+ { /* 525 */
/* type PARROT_INLINE_OP, */
"addmethod",
"addmethod_p_sc_p",
@@ -7435,7 +7474,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 523 */
+ { /* 526 */
/* type PARROT_INLINE_OP, */
"can",
"can_i_p_s",
@@ -7447,7 +7486,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 524 */
+ { /* 527 */
/* type PARROT_INLINE_OP, */
"can",
"can_i_p_sc",
@@ -7459,7 +7498,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 525 */
+ { /* 528 */
/* type PARROT_INLINE_OP, */
"does",
"does_i_p_s",
@@ -7471,7 +7510,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 526 */
+ { /* 529 */
/* type PARROT_INLINE_OP, */
"does",
"does_i_p_sc",
@@ -7483,7 +7522,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 527 */
+ { /* 530 */
/* type PARROT_INLINE_OP, */
"does",
"does_i_p_p",
@@ -7495,7 +7534,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 528 */
+ { /* 531 */
/* type PARROT_INLINE_OP, */
"does",
"does_i_p_pc",
@@ -7507,7 +7546,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 529 */
+ { /* 532 */
/* type PARROT_INLINE_OP, */
"isa",
"isa_i_p_s",
@@ -7519,7 +7558,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 530 */
+ { /* 533 */
/* type PARROT_INLINE_OP, */
"isa",
"isa_i_p_sc",
@@ -7531,7 +7570,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 531 */
+ { /* 534 */
/* type PARROT_INLINE_OP, */
"isa",
"isa_i_p_p",
@@ -7543,7 +7582,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 532 */
+ { /* 535 */
/* type PARROT_INLINE_OP, */
"isa",
"isa_i_p_pc",
@@ -7555,7 +7594,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 533 */
+ { /* 536 */
/* type PARROT_INLINE_OP, */
"newclass",
"newclass_p_s",
@@ -7567,7 +7606,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 534 */
+ { /* 537 */
/* type PARROT_INLINE_OP, */
"newclass",
"newclass_p_sc",
@@ -7579,7 +7618,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 535 */
+ { /* 538 */
/* type PARROT_INLINE_OP, */
"newclass",
"newclass_p_p",
@@ -7591,7 +7630,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 536 */
+ { /* 539 */
/* type PARROT_INLINE_OP, */
"newclass",
"newclass_p_pc",
@@ -7603,7 +7642,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 537 */
+ { /* 540 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_p",
@@ -7615,7 +7654,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 538 */
+ { /* 541 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_pc",
@@ -7627,7 +7666,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 539 */
+ { /* 542 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_p_s",
@@ -7639,7 +7678,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 540 */
+ { /* 543 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_pc_s",
@@ -7651,7 +7690,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 541 */
+ { /* 544 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_p_sc",
@@ -7663,7 +7702,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 542 */
+ { /* 545 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_pc_sc",
@@ -7675,7 +7714,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 543 */
+ { /* 546 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_p_p",
@@ -7687,7 +7726,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 544 */
+ { /* 547 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_pc_p",
@@ -7699,7 +7738,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 545 */
+ { /* 548 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_p_pc",
@@ -7711,7 +7750,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 546 */
+ { /* 549 */
/* type PARROT_INLINE_OP, */
"subclass",
"subclass_p_pc_pc",
@@ -7723,7 +7762,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 547 */
+ { /* 550 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_s",
@@ -7735,7 +7774,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 548 */
+ { /* 551 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_sc",
@@ -7747,7 +7786,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 549 */
+ { /* 552 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_s_s",
@@ -7759,7 +7798,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 550 */
+ { /* 553 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_sc_s",
@@ -7771,7 +7810,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 551 */
+ { /* 554 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_s_sc",
@@ -7783,7 +7822,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 552 */
+ { /* 555 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_sc_sc",
@@ -7795,7 +7834,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 553 */
+ { /* 556 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_s_p",
@@ -7807,7 +7846,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 554 */
+ { /* 557 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_sc_p",
@@ -7819,7 +7858,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 555 */
+ { /* 558 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_s_pc",
@@ -7831,7 +7870,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 556 */
+ { /* 559 */
/* type PARROT_FUNCTION_OP, */
"subclass",
"subclass_p_sc_pc",
@@ -7843,7 +7882,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 557 */
+ { /* 560 */
/* type PARROT_INLINE_OP, */
"get_class",
"get_class_p_s",
@@ -7855,7 +7894,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 558 */
+ { /* 561 */
/* type PARROT_INLINE_OP, */
"get_class",
"get_class_p_sc",
@@ -7867,7 +7906,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 559 */
+ { /* 562 */
/* type PARROT_INLINE_OP, */
"get_class",
"get_class_p_p",
@@ -7879,7 +7918,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 560 */
+ { /* 563 */
/* type PARROT_INLINE_OP, */
"get_class",
"get_class_p_pc",
@@ -7891,7 +7930,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 561 */
+ { /* 564 */
/* type PARROT_INLINE_OP, */
"class",
"class_p_p",
@@ -7903,7 +7942,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 562 */
+ { /* 565 */
/* type PARROT_INLINE_OP, */
"addparent",
"addparent_p_p",
@@ -7915,7 +7954,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 563 */
+ { /* 566 */
/* type PARROT_INLINE_OP, */
"removeparent",
"removeparent_p_p",
@@ -7927,7 +7966,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 564 */
+ { /* 567 */
/* type PARROT_INLINE_OP, */
"addrole",
"addrole_p_p",
@@ -7939,7 +7978,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 565 */
+ { /* 568 */
/* type PARROT_INLINE_OP, */
"addattribute",
"addattribute_p_s",
@@ -7951,7 +7990,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 566 */
+ { /* 569 */
/* type PARROT_INLINE_OP, */
"addattribute",
"addattribute_p_sc",
@@ -7963,7 +8002,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 567 */
+ { /* 570 */
/* type PARROT_FUNCTION_OP, */
"removeattribute",
"removeattribute_p_s",
@@ -7975,7 +8014,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 568 */
+ { /* 571 */
/* type PARROT_FUNCTION_OP, */
"removeattribute",
"removeattribute_p_sc",
@@ -7987,7 +8026,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 569 */
+ { /* 572 */
/* type PARROT_INLINE_OP, */
"getattribute",
"getattribute_p_p_s",
@@ -7999,7 +8038,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 570 */
+ { /* 573 */
/* type PARROT_INLINE_OP, */
"getattribute",
"getattribute_p_p_sc",
@@ -8011,7 +8050,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 571 */
+ { /* 574 */
/* type PARROT_INLINE_OP, */
"getattribute",
"getattribute_p_p_p_s",
@@ -8023,7 +8062,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 572 */
+ { /* 575 */
/* type PARROT_INLINE_OP, */
"getattribute",
"getattribute_p_p_pc_s",
@@ -8035,7 +8074,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 573 */
+ { /* 576 */
/* type PARROT_INLINE_OP, */
"getattribute",
"getattribute_p_p_p_sc",
@@ -8047,7 +8086,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 574 */
+ { /* 577 */
/* type PARROT_INLINE_OP, */
"getattribute",
"getattribute_p_p_pc_sc",
@@ -8059,7 +8098,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 575 */
+ { /* 578 */
/* type PARROT_INLINE_OP, */
"setattribute",
"setattribute_p_s_p",
@@ -8071,7 +8110,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 576 */
+ { /* 579 */
/* type PARROT_INLINE_OP, */
"setattribute",
"setattribute_p_sc_p",
@@ -8083,7 +8122,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 577 */
+ { /* 580 */
/* type PARROT_INLINE_OP, */
"setattribute",
"setattribute_p_p_s_p",
@@ -8095,7 +8134,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 578 */
+ { /* 581 */
/* type PARROT_INLINE_OP, */
"setattribute",
"setattribute_p_pc_s_p",
@@ -8107,7 +8146,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 579 */
+ { /* 582 */
/* type PARROT_INLINE_OP, */
"setattribute",
"setattribute_p_p_sc_p",
@@ -8119,7 +8158,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 580 */
+ { /* 583 */
/* type PARROT_INLINE_OP, */
"setattribute",
"setattribute_p_pc_sc_p",
@@ -8131,7 +8170,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 581 */
+ { /* 584 */
/* type PARROT_INLINE_OP, */
"inspect",
"inspect_p_p",
@@ -8143,7 +8182,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 582 */
+ { /* 585 */
/* type PARROT_INLINE_OP, */
"inspect",
"inspect_p_pc",
@@ -8155,7 +8194,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 583 */
+ { /* 586 */
/* type PARROT_INLINE_OP, */
"inspect",
"inspect_p_p_s",
@@ -8167,7 +8206,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 584 */
+ { /* 587 */
/* type PARROT_INLINE_OP, */
"inspect",
"inspect_p_pc_s",
@@ -8179,7 +8218,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 585 */
+ { /* 588 */
/* type PARROT_INLINE_OP, */
"inspect",
"inspect_p_p_sc",
@@ -8191,7 +8230,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 586 */
+ { /* 589 */
/* type PARROT_INLINE_OP, */
"inspect",
"inspect_p_pc_sc",
@@ -8203,7 +8242,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 587 */
+ { /* 590 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_s",
@@ -8215,7 +8254,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 588 */
+ { /* 591 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_sc",
@@ -8227,7 +8266,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 589 */
+ { /* 592 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_s_p",
@@ -8239,7 +8278,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 590 */
+ { /* 593 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_sc_p",
@@ -8251,7 +8290,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 591 */
+ { /* 594 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_s_pc",
@@ -8263,7 +8302,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 592 */
+ { /* 595 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_sc_pc",
@@ -8275,7 +8314,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 593 */
+ { /* 596 */
/* type PARROT_INLINE_OP, */
"new",
"new_p_p",
@@ -8287,7 +8326,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 594 */
+ { /* 597 */
/* type PARROT_INLINE_OP, */
"new",
"new_p_pc",
@@ -8299,7 +8338,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 595 */
+ { /* 598 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_p_p",
@@ -8311,7 +8350,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 596 */
+ { /* 599 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_pc_p",
@@ -8323,7 +8362,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 597 */
+ { /* 600 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_p_pc",
@@ -8335,7 +8374,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 598 */
+ { /* 601 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_pc_pc",
@@ -8347,7 +8386,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 599 */
+ { /* 602 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_p",
@@ -8359,7 +8398,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 600 */
+ { /* 603 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_pc",
@@ -8371,7 +8410,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 601 */
+ { /* 604 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_p_p",
@@ -8383,7 +8422,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 602 */
+ { /* 605 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_pc_p",
@@ -8395,7 +8434,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 603 */
+ { /* 606 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_p_pc",
@@ -8407,7 +8446,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 604 */
+ { /* 607 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_pc_pc",
@@ -8419,7 +8458,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 605 */
+ { /* 608 */
/* type PARROT_INLINE_OP, */
"typeof",
"typeof_s_p",
@@ -8431,7 +8470,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 606 */
+ { /* 609 */
/* type PARROT_INLINE_OP, */
"typeof",
"typeof_p_p",
@@ -8443,7 +8482,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 607 */
+ { /* 610 */
/* type PARROT_FUNCTION_OP, */
"get_repr",
"get_repr_s_p",
@@ -8455,7 +8494,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 608 */
+ { /* 611 */
/* type PARROT_FUNCTION_OP, */
"find_method",
"find_method_p_p_s",
@@ -8467,7 +8506,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 609 */
+ { /* 612 */
/* type PARROT_FUNCTION_OP, */
"find_method",
"find_method_p_p_sc",
@@ -8479,7 +8518,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 610 */
+ { /* 613 */
/* type PARROT_INLINE_OP, */
"defined",
"defined_i_p",
@@ -8491,7 +8530,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 611 */
+ { /* 614 */
/* type PARROT_INLINE_OP, */
"defined",
"defined_i_p_ki",
@@ -8503,7 +8542,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 612 */
+ { /* 615 */
/* type PARROT_INLINE_OP, */
"defined",
"defined_i_p_kic",
@@ -8515,7 +8554,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 613 */
+ { /* 616 */
/* type PARROT_INLINE_OP, */
"defined",
"defined_i_p_k",
@@ -8527,7 +8566,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 614 */
+ { /* 617 */
/* type PARROT_INLINE_OP, */
"defined",
"defined_i_p_kc",
@@ -8539,7 +8578,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 615 */
+ { /* 618 */
/* type PARROT_INLINE_OP, */
"exists",
"exists_i_p_ki",
@@ -8551,7 +8590,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 616 */
+ { /* 619 */
/* type PARROT_INLINE_OP, */
"exists",
"exists_i_p_kic",
@@ -8563,7 +8602,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 617 */
+ { /* 620 */
/* type PARROT_INLINE_OP, */
"exists",
"exists_i_p_k",
@@ -8575,7 +8614,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 618 */
+ { /* 621 */
/* type PARROT_INLINE_OP, */
"exists",
"exists_i_p_kc",
@@ -8587,7 +8626,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 619 */
+ { /* 622 */
/* type PARROT_INLINE_OP, */
"delete",
"delete_p_k",
@@ -8599,7 +8638,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 620 */
+ { /* 623 */
/* type PARROT_INLINE_OP, */
"delete",
"delete_p_kc",
@@ -8611,7 +8650,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 621 */
+ { /* 624 */
/* type PARROT_INLINE_OP, */
"delete",
"delete_p_ki",
@@ -8623,7 +8662,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 622 */
+ { /* 625 */
/* type PARROT_INLINE_OP, */
"delete",
"delete_p_kic",
@@ -8635,7 +8674,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 623 */
+ { /* 626 */
/* type PARROT_INLINE_OP, */
"elements",
"elements_i_p",
@@ -8647,7 +8686,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 624 */
+ { /* 627 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_i",
@@ -8659,7 +8698,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 625 */
+ { /* 628 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_ic",
@@ -8671,7 +8710,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 626 */
+ { /* 629 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_n",
@@ -8683,7 +8722,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 627 */
+ { /* 630 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_nc",
@@ -8695,7 +8734,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 628 */
+ { /* 631 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_s",
@@ -8707,7 +8746,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 629 */
+ { /* 632 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_sc",
@@ -8719,7 +8758,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 630 */
+ { /* 633 */
/* type PARROT_INLINE_OP, */
"push",
"push_p_p",
@@ -8731,7 +8770,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 631 */
+ { /* 634 */
/* type PARROT_INLINE_OP, */
"pop",
"pop_i_p",
@@ -8743,7 +8782,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 632 */
+ { /* 635 */
/* type PARROT_INLINE_OP, */
"pop",
"pop_n_p",
@@ -8755,7 +8794,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 633 */
+ { /* 636 */
/* type PARROT_INLINE_OP, */
"pop",
"pop_s_p",
@@ -8767,7 +8806,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 634 */
+ { /* 637 */
/* type PARROT_INLINE_OP, */
"pop",
"pop_p_p",
@@ -8779,7 +8818,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 635 */
+ { /* 638 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_i",
@@ -8791,7 +8830,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 636 */
+ { /* 639 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_ic",
@@ -8803,7 +8842,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 637 */
+ { /* 640 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_n",
@@ -8815,7 +8854,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 638 */
+ { /* 641 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_nc",
@@ -8827,7 +8866,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 639 */
+ { /* 642 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_s",
@@ -8839,7 +8878,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 640 */
+ { /* 643 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_sc",
@@ -8851,7 +8890,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 641 */
+ { /* 644 */
/* type PARROT_INLINE_OP, */
"unshift",
"unshift_p_p",
@@ -8863,7 +8902,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 642 */
+ { /* 645 */
/* type PARROT_INLINE_OP, */
"shift",
"shift_i_p",
@@ -8875,7 +8914,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 643 */
+ { /* 646 */
/* type PARROT_INLINE_OP, */
"shift",
"shift_n_p",
@@ -8887,7 +8926,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 644 */
+ { /* 647 */
/* type PARROT_INLINE_OP, */
"shift",
"shift_s_p",
@@ -8899,7 +8938,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 645 */
+ { /* 648 */
/* type PARROT_INLINE_OP, */
"shift",
"shift_p_p",
@@ -8911,7 +8950,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 646 */
+ { /* 649 */
/* type PARROT_INLINE_OP, */
"splice",
"splice_p_p_i_i",
@@ -8923,7 +8962,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 647 */
+ { /* 650 */
/* type PARROT_INLINE_OP, */
"splice",
"splice_p_p_ic_i",
@@ -8935,7 +8974,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 648 */
+ { /* 651 */
/* type PARROT_INLINE_OP, */
"splice",
"splice_p_p_i_ic",
@@ -8947,7 +8986,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 649 */
+ { /* 652 */
/* type PARROT_INLINE_OP, */
"splice",
"splice_p_p_ic_ic",
@@ -8959,7 +8998,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 650 */
+ { /* 653 */
/* type PARROT_FUNCTION_OP, */
"setprop",
"setprop_p_s_p",
@@ -8971,7 +9010,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 651 */
+ { /* 654 */
/* type PARROT_FUNCTION_OP, */
"setprop",
"setprop_p_sc_p",
@@ -8983,7 +9022,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 652 */
+ { /* 655 */
/* type PARROT_FUNCTION_OP, */
"getprop",
"getprop_p_s_p",
@@ -8995,7 +9034,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 653 */
+ { /* 656 */
/* type PARROT_FUNCTION_OP, */
"getprop",
"getprop_p_sc_p",
@@ -9007,7 +9046,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 654 */
+ { /* 657 */
/* type PARROT_FUNCTION_OP, */
"delprop",
"delprop_p_s",
@@ -9019,7 +9058,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 655 */
+ { /* 658 */
/* type PARROT_FUNCTION_OP, */
"delprop",
"delprop_p_sc",
@@ -9031,7 +9070,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 656 */
+ { /* 659 */
/* type PARROT_FUNCTION_OP, */
"prophash",
"prophash_p_p",
@@ -9043,7 +9082,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 657 */
+ { /* 660 */
/* type PARROT_FUNCTION_OP, */
"freeze",
"freeze_s_p",
@@ -9055,7 +9094,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 658 */
+ { /* 661 */
/* type PARROT_FUNCTION_OP, */
"thaw",
"thaw_p_s",
@@ -9067,7 +9106,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 659 */
+ { /* 662 */
/* type PARROT_FUNCTION_OP, */
"thaw",
"thaw_p_sc",
@@ -9079,7 +9118,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 660 */
+ { /* 663 */
/* type PARROT_INLINE_OP, */
"add_multi",
"add_multi_s_s_p",
@@ -9091,7 +9130,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 661 */
+ { /* 664 */
/* type PARROT_INLINE_OP, */
"add_multi",
"add_multi_sc_s_p",
@@ -9103,7 +9142,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 662 */
+ { /* 665 */
/* type PARROT_INLINE_OP, */
"add_multi",
"add_multi_s_sc_p",
@@ -9115,7 +9154,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 663 */
+ { /* 666 */
/* type PARROT_INLINE_OP, */
"add_multi",
"add_multi_sc_sc_p",
@@ -9127,7 +9166,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 664 */
+ { /* 667 */
/* type PARROT_INLINE_OP, */
"find_multi",
"find_multi_p_s_s",
@@ -9139,7 +9178,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 665 */
+ { /* 668 */
/* type PARROT_INLINE_OP, */
"find_multi",
"find_multi_p_sc_s",
@@ -9151,7 +9190,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 666 */
+ { /* 669 */
/* type PARROT_INLINE_OP, */
"find_multi",
"find_multi_p_s_sc",
@@ -9163,7 +9202,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 667 */
+ { /* 670 */
/* type PARROT_INLINE_OP, */
"find_multi",
"find_multi_p_sc_sc",
@@ -9175,7 +9214,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 668 */
+ { /* 671 */
/* type PARROT_FUNCTION_OP, */
"register",
"register_p",
@@ -9187,7 +9226,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 669 */
+ { /* 672 */
/* type PARROT_FUNCTION_OP, */
"unregister",
"unregister_p",
@@ -9199,7 +9238,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 670 */
+ { /* 673 */
/* type PARROT_FUNCTION_OP, */
"box",
"box_p_i",
@@ -9211,7 +9250,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 671 */
+ { /* 674 */
/* type PARROT_FUNCTION_OP, */
"box",
"box_p_ic",
@@ -9223,7 +9262,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 672 */
+ { /* 675 */
/* type PARROT_FUNCTION_OP, */
"box",
"box_p_n",
@@ -9235,7 +9274,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 673 */
+ { /* 676 */
/* type PARROT_FUNCTION_OP, */
"box",
"box_p_nc",
@@ -9247,7 +9286,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 674 */
+ { /* 677 */
/* type PARROT_FUNCTION_OP, */
"box",
"box_p_s",
@@ -9259,7 +9298,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 675 */
+ { /* 678 */
/* type PARROT_FUNCTION_OP, */
"box",
"box_p_sc",
@@ -9271,7 +9310,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 676 */
+ { /* 679 */
/* type PARROT_INLINE_OP, */
"iter",
"iter_p_p",
@@ -9283,7 +9322,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 677 */
+ { /* 680 */
/* type PARROT_INLINE_OP, */
"morph",
"morph_p_p",
@@ -9295,7 +9334,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 678 */
+ { /* 681 */
/* type PARROT_INLINE_OP, */
"morph",
"morph_p_pc",
@@ -9307,7 +9346,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 679 */
+ { /* 682 */
/* type PARROT_INLINE_OP, */
"clone",
"clone_s_s",
@@ -9319,7 +9358,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 680 */
+ { /* 683 */
/* type PARROT_INLINE_OP, */
"clone",
"clone_s_sc",
@@ -9331,7 +9370,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 681 */
+ { /* 684 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_i",
@@ -9343,7 +9382,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 682 */
+ { /* 685 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_ic",
@@ -9355,7 +9394,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 683 */
+ { /* 686 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_n",
@@ -9367,7 +9406,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 684 */
+ { /* 687 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_nc",
@@ -9379,7 +9418,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 685 */
+ { /* 688 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_s",
@@ -9391,7 +9430,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 686 */
+ { /* 689 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_sc",
@@ -9403,7 +9442,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 687 */
+ { /* 690 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_n",
@@ -9415,7 +9454,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 688 */
+ { /* 691 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_nc",
@@ -9427,7 +9466,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 689 */
+ { /* 692 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_i",
@@ -9439,7 +9478,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 690 */
+ { /* 693 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_ic",
@@ -9451,7 +9490,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 691 */
+ { /* 694 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_s",
@@ -9463,7 +9502,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 692 */
+ { /* 695 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_sc",
@@ -9475,7 +9514,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 693 */
+ { /* 696 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_p",
@@ -9487,7 +9526,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 694 */
+ { /* 697 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_p",
@@ -9499,7 +9538,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 695 */
+ { /* 698 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_s",
@@ -9511,7 +9550,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 696 */
+ { /* 699 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_sc",
@@ -9523,7 +9562,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 697 */
+ { /* 700 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_i",
@@ -9535,7 +9574,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 698 */
+ { /* 701 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_ic",
@@ -9547,7 +9586,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 699 */
+ { /* 702 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_n",
@@ -9559,7 +9598,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 700 */
+ { /* 703 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_nc",
@@ -9571,7 +9610,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 701 */
+ { /* 704 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_pc",
@@ -9583,7 +9622,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 702 */
+ { /* 705 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_p",
@@ -9595,7 +9634,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 703 */
+ { /* 706 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_i",
@@ -9607,7 +9646,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 704 */
+ { /* 707 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ic",
@@ -9619,7 +9658,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 705 */
+ { /* 708 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_n",
@@ -9631,7 +9670,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 706 */
+ { /* 709 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_nc",
@@ -9643,7 +9682,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 707 */
+ { /* 710 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_s",
@@ -9655,7 +9694,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 708 */
+ { /* 711 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_sc",
@@ -9667,7 +9706,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 709 */
+ { /* 712 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_p",
@@ -9679,7 +9718,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 710 */
+ { /* 713 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_p",
@@ -9691,7 +9730,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 711 */
+ { /* 714 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_i",
@@ -9703,7 +9742,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 712 */
+ { /* 715 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_ic",
@@ -9715,7 +9754,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 713 */
+ { /* 716 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_n",
@@ -9727,7 +9766,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 714 */
+ { /* 717 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_nc",
@@ -9739,7 +9778,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 715 */
+ { /* 718 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_s",
@@ -9751,7 +9790,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 716 */
+ { /* 719 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_p_sc",
@@ -9763,7 +9802,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 717 */
+ { /* 720 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_s_s",
@@ -9775,7 +9814,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 718 */
+ { /* 721 */
/* type PARROT_INLINE_OP, */
"assign",
"assign_s_sc",
@@ -9787,7 +9826,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 719 */
+ { /* 722 */
/* type PARROT_INLINE_OP, */
"setref",
"setref_p_p",
@@ -9799,7 +9838,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 720 */
+ { /* 723 */
/* type PARROT_INLINE_OP, */
"deref",
"deref_p_p",
@@ -9811,7 +9850,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 721 */
+ { /* 724 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_i",
@@ -9823,7 +9862,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 722 */
+ { /* 725 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_i",
@@ -9835,7 +9874,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 723 */
+ { /* 726 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_ic",
@@ -9847,7 +9886,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 724 */
+ { /* 727 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_ic",
@@ -9859,7 +9898,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 725 */
+ { /* 728 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_n",
@@ -9871,7 +9910,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 726 */
+ { /* 729 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_n",
@@ -9883,7 +9922,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 727 */
+ { /* 730 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_nc",
@@ -9895,7 +9934,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 728 */
+ { /* 731 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_nc",
@@ -9907,7 +9946,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 729 */
+ { /* 732 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_s",
@@ -9919,7 +9958,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 730 */
+ { /* 733 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_s",
@@ -9931,7 +9970,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 731 */
+ { /* 734 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_sc",
@@ -9943,7 +9982,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 732 */
+ { /* 735 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_sc",
@@ -9955,7 +9994,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 733 */
+ { /* 736 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_ki_p",
@@ -9967,7 +10006,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 734 */
+ { /* 737 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kic_p",
@@ -9979,7 +10018,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 735 */
+ { /* 738 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_p_ki",
@@ -9991,7 +10030,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 736 */
+ { /* 739 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_p_kic",
@@ -10003,7 +10042,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 737 */
+ { /* 740 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_p_ki",
@@ -10015,7 +10054,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 738 */
+ { /* 741 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_p_kic",
@@ -10027,7 +10066,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 739 */
+ { /* 742 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_p_ki",
@@ -10039,7 +10078,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 740 */
+ { /* 743 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_p_kic",
@@ -10051,7 +10090,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 741 */
+ { /* 744 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_p_ki",
@@ -10063,7 +10102,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 742 */
+ { /* 745 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_p_kic",
@@ -10075,7 +10114,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 743 */
+ { /* 746 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_i",
@@ -10087,7 +10126,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 744 */
+ { /* 747 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_i",
@@ -10099,7 +10138,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 745 */
+ { /* 748 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_ic",
@@ -10111,7 +10150,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 746 */
+ { /* 749 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_ic",
@@ -10123,7 +10162,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 747 */
+ { /* 750 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_n",
@@ -10135,7 +10174,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 748 */
+ { /* 751 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_n",
@@ -10147,7 +10186,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 749 */
+ { /* 752 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_nc",
@@ -10159,7 +10198,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 750 */
+ { /* 753 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_nc",
@@ -10171,7 +10210,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 751 */
+ { /* 754 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_s",
@@ -10183,7 +10222,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 752 */
+ { /* 755 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_s",
@@ -10195,7 +10234,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 753 */
+ { /* 756 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_sc",
@@ -10207,7 +10246,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 754 */
+ { /* 757 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_sc",
@@ -10219,7 +10258,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 755 */
+ { /* 758 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_k_p",
@@ -10231,7 +10270,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 756 */
+ { /* 759 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_kc_p",
@@ -10243,7 +10282,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 757 */
+ { /* 760 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_p_k",
@@ -10255,7 +10294,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 758 */
+ { /* 761 */
/* type PARROT_INLINE_OP, */
"set",
"set_i_p_kc",
@@ -10267,7 +10306,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 759 */
+ { /* 762 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_p_k",
@@ -10279,7 +10318,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 760 */
+ { /* 763 */
/* type PARROT_INLINE_OP, */
"set",
"set_n_p_kc",
@@ -10291,7 +10330,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 761 */
+ { /* 764 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_p_k",
@@ -10303,7 +10342,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 762 */
+ { /* 765 */
/* type PARROT_INLINE_OP, */
"set",
"set_s_p_kc",
@@ -10315,7 +10354,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 763 */
+ { /* 766 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_p_k",
@@ -10327,7 +10366,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 764 */
+ { /* 767 */
/* type PARROT_INLINE_OP, */
"set",
"set_p_p_kc",
@@ -10339,7 +10378,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 765 */
+ { /* 768 */
/* type PARROT_INLINE_OP, */
"clone",
"clone_p_p",
@@ -10351,7 +10390,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 766 */
+ { /* 769 */
/* type PARROT_INLINE_OP, */
"clone",
"clone_p_p_p",
@@ -10363,7 +10402,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 767 */
+ { /* 770 */
/* type PARROT_INLINE_OP, */
"clone",
"clone_p_p_pc",
@@ -10375,7 +10414,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 768 */
+ { /* 771 */
/* type PARROT_INLINE_OP, */
"copy",
"copy_p_p",
@@ -10387,7 +10426,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 769 */
+ { /* 772 */
/* type PARROT_INLINE_OP, */
"null",
"null_s",
@@ -10399,7 +10438,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 770 */
+ { /* 773 */
/* type PARROT_INLINE_OP, */
"null",
"null_i",
@@ -10411,7 +10450,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 771 */
+ { /* 774 */
/* type PARROT_INLINE_OP, */
"null",
"null_p",
@@ -10423,7 +10462,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 772 */
+ { /* 775 */
/* type PARROT_INLINE_OP, */
"null",
"null_n",
@@ -10435,7 +10474,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 773 */
+ { /* 776 */
/* type PARROT_INLINE_OP, */
"ord",
"ord_i_s",
@@ -10447,7 +10486,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 774 */
+ { /* 777 */
/* type PARROT_INLINE_OP, */
"ord",
"ord_i_sc",
@@ -10459,7 +10498,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 775 */
+ { /* 778 */
/* type PARROT_INLINE_OP, */
"ord",
"ord_i_s_i",
@@ -10471,7 +10510,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 776 */
+ { /* 779 */
/* type PARROT_INLINE_OP, */
"ord",
"ord_i_sc_i",
@@ -10483,7 +10522,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 777 */
+ { /* 780 */
/* type PARROT_INLINE_OP, */
"ord",
"ord_i_s_ic",
@@ -10495,7 +10534,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 778 */
+ { /* 781 */
/* type PARROT_INLINE_OP, */
"ord",
"ord_i_sc_ic",
@@ -10507,7 +10546,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 779 */
+ { /* 782 */
/* type PARROT_INLINE_OP, */
"chr",
"chr_s_i",
@@ -10519,7 +10558,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 780 */
+ { /* 783 */
/* type PARROT_INLINE_OP, */
"chr",
"chr_s_ic",
@@ -10531,7 +10570,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 781 */
+ { /* 784 */
/* type PARROT_INLINE_OP, */
"chopn",
"chopn_s_s_i",
@@ -10543,7 +10582,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 782 */
+ { /* 785 */
/* type PARROT_INLINE_OP, */
"chopn",
"chopn_s_sc_i",
@@ -10555,7 +10594,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 783 */
+ { /* 786 */
/* type PARROT_INLINE_OP, */
"chopn",
"chopn_s_s_ic",
@@ -10567,7 +10606,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 784 */
+ { /* 787 */
/* type PARROT_INLINE_OP, */
"chopn",
"chopn_s_sc_ic",
@@ -10579,7 +10618,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 785 */
+ { /* 788 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_s_s",
@@ -10591,7 +10630,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 786 */
+ { /* 789 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_s_sc",
@@ -10603,7 +10642,7 @@
{ PARROT_ARGDIR_INOUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 787 */
+ { /* 790 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_p_p",
@@ -10615,7 +10654,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 788 */
+ { /* 791 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_p_s",
@@ -10627,7 +10666,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 789 */
+ { /* 792 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_p_sc",
@@ -10639,7 +10678,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 790 */
+ { /* 793 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_s_s_s",
@@ -10651,7 +10690,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 791 */
+ { /* 794 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_s_sc_s",
@@ -10663,7 +10702,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 792 */
+ { /* 795 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_s_s_sc",
@@ -10675,7 +10714,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 793 */
+ { /* 796 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_p_p_s",
@@ -10687,7 +10726,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 794 */
+ { /* 797 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_p_p_sc",
@@ -10699,7 +10738,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 795 */
+ { /* 798 */
/* type PARROT_INLINE_OP, */
"concat",
"concat_p_p_p",
@@ -10711,7 +10750,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 796 */
+ { /* 799 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_s_s_i",
@@ -10723,7 +10762,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 797 */
+ { /* 800 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_s_sc_i",
@@ -10735,7 +10774,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 798 */
+ { /* 801 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_s_s_ic",
@@ -10747,7 +10786,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 799 */
+ { /* 802 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_s_sc_ic",
@@ -10759,7 +10798,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 800 */
+ { /* 803 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_p_p_i",
@@ -10771,7 +10810,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 801 */
+ { /* 804 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_p_p_ic",
@@ -10783,7 +10822,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 802 */
+ { /* 805 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_p_p_p",
@@ -10795,7 +10834,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 803 */
+ { /* 806 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_p_i",
@@ -10807,7 +10846,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 804 */
+ { /* 807 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_p_ic",
@@ -10819,7 +10858,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 805 */
+ { /* 808 */
/* type PARROT_INLINE_OP, */
"repeat",
"repeat_p_p",
@@ -10831,7 +10870,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 806 */
+ { /* 809 */
/* type PARROT_INLINE_OP, */
"length",
"length_i_s",
@@ -10843,7 +10882,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 807 */
+ { /* 810 */
/* type PARROT_INLINE_OP, */
"length",
"length_i_sc",
@@ -10855,7 +10894,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 808 */
+ { /* 811 */
/* type PARROT_INLINE_OP, */
"bytelength",
"bytelength_i_s",
@@ -10867,7 +10906,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 809 */
+ { /* 812 */
/* type PARROT_INLINE_OP, */
"bytelength",
"bytelength_i_sc",
@@ -10879,7 +10918,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 810 */
+ { /* 813 */
/* type PARROT_FUNCTION_OP, */
"pin",
"pin_s",
@@ -10891,7 +10930,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 811 */
+ { /* 814 */
/* type PARROT_FUNCTION_OP, */
"unpin",
"unpin_s",
@@ -10903,7 +10942,7 @@
{ PARROT_ARGDIR_INOUT },
{ 0 }
},
- { /* 812 */
+ { /* 815 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_s_i",
@@ -10915,7 +10954,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 813 */
+ { /* 816 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_sc_i",
@@ -10927,7 +10966,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 814 */
+ { /* 817 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_s_ic",
@@ -10939,7 +10978,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 815 */
+ { /* 818 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_sc_ic",
@@ -10951,7 +10990,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 816 */
+ { /* 819 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_s_i_i",
@@ -10963,7 +11002,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 817 */
+ { /* 820 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_sc_i_i",
@@ -10975,7 +11014,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 818 */
+ { /* 821 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_s_ic_i",
@@ -10987,7 +11026,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 819 */
+ { /* 822 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_sc_ic_i",
@@ -10999,7 +11038,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 820 */
+ { /* 823 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_s_i_ic",
@@ -11011,7 +11050,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 821 */
+ { /* 824 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_sc_i_ic",
@@ -11023,7 +11062,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 822 */
+ { /* 825 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_s_ic_ic",
@@ -11035,7 +11074,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 823 */
+ { /* 826 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_sc_ic_ic",
@@ -11047,7 +11086,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 824 */
+ { /* 827 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_p_i_i",
@@ -11059,7 +11098,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 825 */
+ { /* 828 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_p_ic_i",
@@ -11071,7 +11110,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 826 */
+ { /* 829 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_p_i_ic",
@@ -11083,7 +11122,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 827 */
+ { /* 830 */
/* type PARROT_INLINE_OP, */
"substr",
"substr_s_p_ic_ic",
@@ -11095,7 +11134,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 828 */
+ { /* 831 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_i_i_s",
@@ -11107,7 +11146,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 829 */
+ { /* 832 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_i_i_s",
@@ -11119,7 +11158,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 830 */
+ { /* 833 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_ic_i_s",
@@ -11131,7 +11170,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 831 */
+ { /* 834 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_ic_i_s",
@@ -11143,7 +11182,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 832 */
+ { /* 835 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_i_ic_s",
@@ -11155,7 +11194,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 833 */
+ { /* 836 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_i_ic_s",
@@ -11167,7 +11206,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 834 */
+ { /* 837 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_ic_ic_s",
@@ -11179,7 +11218,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 835 */
+ { /* 838 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_ic_ic_s",
@@ -11191,7 +11230,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 836 */
+ { /* 839 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_i_i_sc",
@@ -11203,7 +11242,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 837 */
+ { /* 840 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_i_i_sc",
@@ -11215,7 +11254,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 838 */
+ { /* 841 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_ic_i_sc",
@@ -11227,7 +11266,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 839 */
+ { /* 842 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_ic_i_sc",
@@ -11239,7 +11278,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 840 */
+ { /* 843 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_i_ic_sc",
@@ -11251,7 +11290,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 841 */
+ { /* 844 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_i_ic_sc",
@@ -11263,7 +11302,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 842 */
+ { /* 845 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_s_ic_ic_sc",
@@ -11275,7 +11314,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 843 */
+ { /* 846 */
/* type PARROT_INLINE_OP, */
"replace",
"replace_s_sc_ic_ic_sc",
@@ -11287,7 +11326,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 844 */
+ { /* 847 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_s_s",
@@ -11299,7 +11338,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 845 */
+ { /* 848 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_sc_s",
@@ -11311,7 +11350,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 846 */
+ { /* 849 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_s_sc",
@@ -11323,7 +11362,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 847 */
+ { /* 850 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_sc_sc",
@@ -11335,7 +11374,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 848 */
+ { /* 851 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_s_s_i",
@@ -11347,7 +11386,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 849 */
+ { /* 852 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_sc_s_i",
@@ -11359,7 +11398,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 850 */
+ { /* 853 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_s_sc_i",
@@ -11371,7 +11410,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 851 */
+ { /* 854 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_sc_sc_i",
@@ -11383,7 +11422,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 852 */
+ { /* 855 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_s_s_ic",
@@ -11395,7 +11434,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 853 */
+ { /* 856 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_sc_s_ic",
@@ -11407,7 +11446,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 854 */
+ { /* 857 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_s_sc_ic",
@@ -11419,7 +11458,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 855 */
+ { /* 858 */
/* type PARROT_INLINE_OP, */
"index",
"index_i_sc_sc_ic",
@@ -11431,7 +11470,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 856 */
+ { /* 859 */
/* type PARROT_INLINE_OP, */
"sprintf",
"sprintf_s_s_p",
@@ -11443,7 +11482,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 857 */
+ { /* 860 */
/* type PARROT_INLINE_OP, */
"sprintf",
"sprintf_s_sc_p",
@@ -11455,7 +11494,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 858 */
+ { /* 861 */
/* type PARROT_INLINE_OP, */
"sprintf",
"sprintf_p_p_p",
@@ -11467,7 +11506,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 859 */
+ { /* 862 */
/* type PARROT_INLINE_OP, */
"new",
"new_s",
@@ -11479,7 +11518,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 860 */
+ { /* 863 */
/* type PARROT_INLINE_OP, */
"new",
"new_s_i",
@@ -11491,7 +11530,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 861 */
+ { /* 864 */
/* type PARROT_INLINE_OP, */
"new",
"new_s_ic",
@@ -11503,7 +11542,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 862 */
+ { /* 865 */
/* type PARROT_INLINE_OP, */
"stringinfo",
"stringinfo_i_s_i",
@@ -11515,7 +11554,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 863 */
+ { /* 866 */
/* type PARROT_INLINE_OP, */
"stringinfo",
"stringinfo_i_sc_i",
@@ -11527,7 +11566,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 864 */
+ { /* 867 */
/* type PARROT_INLINE_OP, */
"stringinfo",
"stringinfo_i_s_ic",
@@ -11539,7 +11578,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 865 */
+ { /* 868 */
/* type PARROT_INLINE_OP, */
"stringinfo",
"stringinfo_i_sc_ic",
@@ -11551,7 +11590,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 866 */
+ { /* 869 */
/* type PARROT_INLINE_OP, */
"upcase",
"upcase_s_s",
@@ -11563,7 +11602,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 867 */
+ { /* 870 */
/* type PARROT_INLINE_OP, */
"upcase",
"upcase_s_sc",
@@ -11575,7 +11614,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 868 */
+ { /* 871 */
/* type PARROT_INLINE_OP, */
"downcase",
"downcase_s_s",
@@ -11587,7 +11626,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 869 */
+ { /* 872 */
/* type PARROT_INLINE_OP, */
"downcase",
"downcase_s_sc",
@@ -11599,7 +11638,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 870 */
+ { /* 873 */
/* type PARROT_INLINE_OP, */
"titlecase",
"titlecase_s_s",
@@ -11611,7 +11650,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 871 */
+ { /* 874 */
/* type PARROT_INLINE_OP, */
"titlecase",
"titlecase_s_sc",
@@ -11623,7 +11662,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 872 */
+ { /* 875 */
/* type PARROT_FUNCTION_OP, */
"join",
"join_s_s_p",
@@ -11635,7 +11674,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 873 */
+ { /* 876 */
/* type PARROT_FUNCTION_OP, */
"join",
"join_s_sc_p",
@@ -11647,7 +11686,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 874 */
+ { /* 877 */
/* type PARROT_FUNCTION_OP, */
"split",
"split_p_s_s",
@@ -11659,7 +11698,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 875 */
+ { /* 878 */
/* type PARROT_FUNCTION_OP, */
"split",
"split_p_sc_s",
@@ -11671,7 +11710,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 876 */
+ { /* 879 */
/* type PARROT_FUNCTION_OP, */
"split",
"split_p_s_sc",
@@ -11683,7 +11722,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 877 */
+ { /* 880 */
/* type PARROT_FUNCTION_OP, */
"split",
"split_p_sc_sc",
@@ -11695,7 +11734,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 878 */
+ { /* 881 */
/* type PARROT_FUNCTION_OP, */
"charset",
"charset_i_s",
@@ -11707,7 +11746,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 879 */
+ { /* 882 */
/* type PARROT_FUNCTION_OP, */
"charset",
"charset_i_sc",
@@ -11719,7 +11758,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 880 */
+ { /* 883 */
/* type PARROT_FUNCTION_OP, */
"charsetname",
"charsetname_s_i",
@@ -11731,7 +11770,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 881 */
+ { /* 884 */
/* type PARROT_FUNCTION_OP, */
"charsetname",
"charsetname_s_ic",
@@ -11743,7 +11782,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 882 */
+ { /* 885 */
/* type PARROT_FUNCTION_OP, */
"find_charset",
"find_charset_i_s",
@@ -11755,7 +11794,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 883 */
+ { /* 886 */
/* type PARROT_FUNCTION_OP, */
"find_charset",
"find_charset_i_sc",
@@ -11767,7 +11806,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 884 */
+ { /* 887 */
/* type PARROT_FUNCTION_OP, */
"trans_charset",
"trans_charset_s_s_i",
@@ -11779,7 +11818,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 885 */
+ { /* 888 */
/* type PARROT_FUNCTION_OP, */
"trans_charset",
"trans_charset_s_sc_i",
@@ -11791,7 +11830,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 886 */
+ { /* 889 */
/* type PARROT_FUNCTION_OP, */
"trans_charset",
"trans_charset_s_s_ic",
@@ -11803,7 +11842,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 887 */
+ { /* 890 */
/* type PARROT_FUNCTION_OP, */
"trans_charset",
"trans_charset_s_sc_ic",
@@ -11815,7 +11854,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 888 */
+ { /* 891 */
/* type PARROT_FUNCTION_OP, */
"encoding",
"encoding_i_s",
@@ -11827,7 +11866,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 889 */
+ { /* 892 */
/* type PARROT_FUNCTION_OP, */
"encoding",
"encoding_i_sc",
@@ -11839,7 +11878,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 890 */
+ { /* 893 */
/* type PARROT_FUNCTION_OP, */
"encodingname",
"encodingname_s_i",
@@ -11851,7 +11890,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 891 */
+ { /* 894 */
/* type PARROT_FUNCTION_OP, */
"encodingname",
"encodingname_s_ic",
@@ -11863,7 +11902,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 892 */
+ { /* 895 */
/* type PARROT_FUNCTION_OP, */
"find_encoding",
"find_encoding_i_s",
@@ -11875,7 +11914,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 893 */
+ { /* 896 */
/* type PARROT_FUNCTION_OP, */
"find_encoding",
"find_encoding_i_sc",
@@ -11887,7 +11926,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 894 */
+ { /* 897 */
/* type PARROT_FUNCTION_OP, */
"trans_encoding",
"trans_encoding_s_s_i",
@@ -11899,7 +11938,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 895 */
+ { /* 898 */
/* type PARROT_FUNCTION_OP, */
"trans_encoding",
"trans_encoding_s_sc_i",
@@ -11911,7 +11950,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 896 */
+ { /* 899 */
/* type PARROT_FUNCTION_OP, */
"trans_encoding",
"trans_encoding_s_s_ic",
@@ -11923,7 +11962,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 897 */
+ { /* 900 */
/* type PARROT_FUNCTION_OP, */
"trans_encoding",
"trans_encoding_s_sc_ic",
@@ -11935,7 +11974,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 898 */
+ { /* 901 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_i_s_i",
@@ -11947,7 +11986,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 899 */
+ { /* 902 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_ic_s_i",
@@ -11959,7 +11998,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 900 */
+ { /* 903 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_i_sc_i",
@@ -11971,7 +12010,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 901 */
+ { /* 904 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_ic_sc_i",
@@ -11983,7 +12022,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 902 */
+ { /* 905 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_i_s_ic",
@@ -11995,7 +12034,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 903 */
+ { /* 906 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_ic_s_ic",
@@ -12007,7 +12046,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 904 */
+ { /* 907 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_i_sc_ic",
@@ -12019,7 +12058,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 905 */
+ { /* 908 */
/* type PARROT_INLINE_OP, */
"is_cclass",
"is_cclass_i_ic_sc_ic",
@@ -12031,7 +12070,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 906 */
+ { /* 909 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_s_i_i",
@@ -12043,7 +12082,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 907 */
+ { /* 910 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_s_i_i",
@@ -12055,7 +12094,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 908 */
+ { /* 911 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_sc_i_i",
@@ -12067,7 +12106,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 909 */
+ { /* 912 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_sc_i_i",
@@ -12079,7 +12118,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 910 */
+ { /* 913 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_s_ic_i",
@@ -12091,7 +12130,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 911 */
+ { /* 914 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_s_ic_i",
@@ -12103,7 +12142,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 912 */
+ { /* 915 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_sc_ic_i",
@@ -12115,7 +12154,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 913 */
+ { /* 916 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_sc_ic_i",
@@ -12127,7 +12166,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 914 */
+ { /* 917 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_s_i_ic",
@@ -12139,7 +12178,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 915 */
+ { /* 918 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_s_i_ic",
@@ -12151,7 +12190,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 916 */
+ { /* 919 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_sc_i_ic",
@@ -12163,7 +12202,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 917 */
+ { /* 920 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_sc_i_ic",
@@ -12175,7 +12214,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 918 */
+ { /* 921 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_s_ic_ic",
@@ -12187,7 +12226,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 919 */
+ { /* 922 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_s_ic_ic",
@@ -12199,7 +12238,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 920 */
+ { /* 923 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_i_sc_ic_ic",
@@ -12211,7 +12250,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 921 */
+ { /* 924 */
/* type PARROT_INLINE_OP, */
"find_cclass",
"find_cclass_i_ic_sc_ic_ic",
@@ -12223,7 +12262,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 922 */
+ { /* 925 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_s_i_i",
@@ -12235,7 +12274,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 923 */
+ { /* 926 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_s_i_i",
@@ -12247,7 +12286,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 924 */
+ { /* 927 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_sc_i_i",
@@ -12259,7 +12298,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 925 */
+ { /* 928 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_sc_i_i",
@@ -12271,7 +12310,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 926 */
+ { /* 929 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_s_ic_i",
@@ -12283,7 +12322,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 927 */
+ { /* 930 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_s_ic_i",
@@ -12295,7 +12334,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 928 */
+ { /* 931 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_sc_ic_i",
@@ -12307,7 +12346,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 929 */
+ { /* 932 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_sc_ic_i",
@@ -12319,7 +12358,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 930 */
+ { /* 933 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_s_i_ic",
@@ -12331,7 +12370,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 931 */
+ { /* 934 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_s_i_ic",
@@ -12343,7 +12382,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 932 */
+ { /* 935 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_sc_i_ic",
@@ -12355,7 +12394,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 933 */
+ { /* 936 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_sc_i_ic",
@@ -12367,7 +12406,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 934 */
+ { /* 937 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_s_ic_ic",
@@ -12379,7 +12418,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 935 */
+ { /* 938 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_s_ic_ic",
@@ -12391,7 +12430,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 936 */
+ { /* 939 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_i_sc_ic_ic",
@@ -12403,7 +12442,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 937 */
+ { /* 940 */
/* type PARROT_INLINE_OP, */
"find_not_cclass",
"find_not_cclass_i_ic_sc_ic_ic",
@@ -12415,7 +12454,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0, 0 }
},
- { /* 938 */
+ { /* 941 */
/* type PARROT_FUNCTION_OP, */
"escape",
"escape_s_s",
@@ -12427,7 +12466,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 939 */
+ { /* 942 */
/* type PARROT_FUNCTION_OP, */
"compose",
"compose_s_s",
@@ -12439,7 +12478,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 940 */
+ { /* 943 */
/* type PARROT_FUNCTION_OP, */
"compose",
"compose_s_sc",
@@ -12451,7 +12490,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 941 */
+ { /* 944 */
/* type PARROT_INLINE_OP, */
"spawnw",
"spawnw_i_s",
@@ -12463,7 +12502,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 942 */
+ { /* 945 */
/* type PARROT_INLINE_OP, */
"spawnw",
"spawnw_i_sc",
@@ -12475,7 +12514,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 943 */
+ { /* 946 */
/* type PARROT_INLINE_OP, */
"spawnw",
"spawnw_i_p",
@@ -12487,7 +12526,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 944 */
+ { /* 947 */
/* type PARROT_INLINE_OP, */
"err",
"err_i",
@@ -12499,7 +12538,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 945 */
+ { /* 948 */
/* type PARROT_FUNCTION_OP, */
"err",
"err_s",
@@ -12511,7 +12550,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 946 */
+ { /* 949 */
/* type PARROT_FUNCTION_OP, */
"err",
"err_s_i",
@@ -12523,7 +12562,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 947 */
+ { /* 950 */
/* type PARROT_FUNCTION_OP, */
"err",
"err_s_ic",
@@ -12535,7 +12574,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 948 */
+ { /* 951 */
/* type PARROT_INLINE_OP, */
"time",
"time_i",
@@ -12547,7 +12586,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 949 */
+ { /* 952 */
/* type PARROT_INLINE_OP, */
"time",
"time_n",
@@ -12559,7 +12598,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 950 */
+ { /* 953 */
/* type PARROT_INLINE_OP, */
"sleep",
"sleep_i",
@@ -12571,7 +12610,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 951 */
+ { /* 954 */
/* type PARROT_INLINE_OP, */
"sleep",
"sleep_ic",
@@ -12583,7 +12622,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 952 */
+ { /* 955 */
/* type PARROT_INLINE_OP, */
"sleep",
"sleep_n",
@@ -12595,7 +12634,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 953 */
+ { /* 956 */
/* type PARROT_INLINE_OP, */
"sleep",
"sleep_nc",
@@ -12607,7 +12646,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 954 */
+ { /* 957 */
/* type PARROT_FUNCTION_OP, */
"store_lex",
"store_lex_s_p",
@@ -12619,7 +12658,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 955 */
+ { /* 958 */
/* type PARROT_FUNCTION_OP, */
"store_lex",
"store_lex_sc_p",
@@ -12631,7 +12670,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 956 */
+ { /* 959 */
/* type PARROT_FUNCTION_OP, */
"store_dynamic_lex",
"store_dynamic_lex_s_p",
@@ -12643,7 +12682,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 957 */
+ { /* 960 */
/* type PARROT_FUNCTION_OP, */
"store_dynamic_lex",
"store_dynamic_lex_sc_p",
@@ -12655,7 +12694,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 958 */
+ { /* 961 */
/* type PARROT_FUNCTION_OP, */
"find_lex",
"find_lex_p_s",
@@ -12667,7 +12706,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 959 */
+ { /* 962 */
/* type PARROT_FUNCTION_OP, */
"find_lex",
"find_lex_p_sc",
@@ -12679,7 +12718,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 960 */
+ { /* 963 */
/* type PARROT_FUNCTION_OP, */
"find_dynamic_lex",
"find_dynamic_lex_p_s",
@@ -12691,7 +12730,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 961 */
+ { /* 964 */
/* type PARROT_FUNCTION_OP, */
"find_dynamic_lex",
"find_dynamic_lex_p_sc",
@@ -12703,7 +12742,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 962 */
+ { /* 965 */
/* type PARROT_FUNCTION_OP, */
"find_caller_lex",
"find_caller_lex_p_s",
@@ -12715,7 +12754,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 963 */
+ { /* 966 */
/* type PARROT_FUNCTION_OP, */
"find_caller_lex",
"find_caller_lex_p_sc",
@@ -12727,7 +12766,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 964 */
+ { /* 967 */
/* type PARROT_FUNCTION_OP, */
"get_namespace",
"get_namespace_p",
@@ -12739,7 +12778,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 965 */
+ { /* 968 */
/* type PARROT_FUNCTION_OP, */
"get_namespace",
"get_namespace_p_p",
@@ -12751,7 +12790,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 966 */
+ { /* 969 */
/* type PARROT_FUNCTION_OP, */
"get_namespace",
"get_namespace_p_pc",
@@ -12763,7 +12802,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 967 */
+ { /* 970 */
/* type PARROT_FUNCTION_OP, */
"get_hll_namespace",
"get_hll_namespace_p",
@@ -12775,7 +12814,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 968 */
+ { /* 971 */
/* type PARROT_FUNCTION_OP, */
"get_hll_namespace",
"get_hll_namespace_p_p",
@@ -12787,7 +12826,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 969 */
+ { /* 972 */
/* type PARROT_FUNCTION_OP, */
"get_hll_namespace",
"get_hll_namespace_p_pc",
@@ -12799,7 +12838,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 970 */
+ { /* 973 */
/* type PARROT_FUNCTION_OP, */
"get_root_namespace",
"get_root_namespace_p",
@@ -12811,7 +12850,7 @@
{ PARROT_ARGDIR_OUT },
{ 0 }
},
- { /* 971 */
+ { /* 974 */
/* type PARROT_FUNCTION_OP, */
"get_root_namespace",
"get_root_namespace_p_p",
@@ -12823,7 +12862,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 972 */
+ { /* 975 */
/* type PARROT_FUNCTION_OP, */
"get_root_namespace",
"get_root_namespace_p_pc",
@@ -12835,7 +12874,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 973 */
+ { /* 976 */
/* type PARROT_FUNCTION_OP, */
"get_global",
"get_global_p_s",
@@ -12847,7 +12886,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 974 */
+ { /* 977 */
/* type PARROT_FUNCTION_OP, */
"get_global",
"get_global_p_sc",
@@ -12859,7 +12898,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 975 */
+ { /* 978 */
/* type PARROT_FUNCTION_OP, */
"get_global",
"get_global_p_p_s",
@@ -12871,7 +12910,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 976 */
+ { /* 979 */
/* type PARROT_FUNCTION_OP, */
"get_global",
"get_global_p_pc_s",
@@ -12883,7 +12922,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 977 */
+ { /* 980 */
/* type PARROT_FUNCTION_OP, */
"get_global",
"get_global_p_p_sc",
@@ -12895,7 +12934,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 978 */
+ { /* 981 */
/* type PARROT_FUNCTION_OP, */
"get_global",
"get_global_p_pc_sc",
@@ -12907,7 +12946,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 979 */
+ { /* 982 */
/* type PARROT_FUNCTION_OP, */
"get_hll_global",
"get_hll_global_p_s",
@@ -12919,7 +12958,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 980 */
+ { /* 983 */
/* type PARROT_FUNCTION_OP, */
"get_hll_global",
"get_hll_global_p_sc",
@@ -12931,7 +12970,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 981 */
+ { /* 984 */
/* type PARROT_FUNCTION_OP, */
"get_hll_global",
"get_hll_global_p_p_s",
@@ -12943,7 +12982,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 982 */
+ { /* 985 */
/* type PARROT_FUNCTION_OP, */
"get_hll_global",
"get_hll_global_p_pc_s",
@@ -12955,7 +12994,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 983 */
+ { /* 986 */
/* type PARROT_FUNCTION_OP, */
"get_hll_global",
"get_hll_global_p_p_sc",
@@ -12967,7 +13006,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 984 */
+ { /* 987 */
/* type PARROT_FUNCTION_OP, */
"get_hll_global",
"get_hll_global_p_pc_sc",
@@ -12979,7 +13018,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 985 */
+ { /* 988 */
/* type PARROT_FUNCTION_OP, */
"get_root_global",
"get_root_global_p_s",
@@ -12991,7 +13030,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 986 */
+ { /* 989 */
/* type PARROT_FUNCTION_OP, */
"get_root_global",
"get_root_global_p_sc",
@@ -13003,7 +13042,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 987 */
+ { /* 990 */
/* type PARROT_FUNCTION_OP, */
"get_root_global",
"get_root_global_p_p_s",
@@ -13015,7 +13054,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 988 */
+ { /* 991 */
/* type PARROT_FUNCTION_OP, */
"get_root_global",
"get_root_global_p_pc_s",
@@ -13027,7 +13066,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 989 */
+ { /* 992 */
/* type PARROT_FUNCTION_OP, */
"get_root_global",
"get_root_global_p_p_sc",
@@ -13039,7 +13078,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 990 */
+ { /* 993 */
/* type PARROT_FUNCTION_OP, */
"get_root_global",
"get_root_global_p_pc_sc",
@@ -13051,7 +13090,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 991 */
+ { /* 994 */
/* type PARROT_FUNCTION_OP, */
"set_global",
"set_global_s_p",
@@ -13063,7 +13102,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 992 */
+ { /* 995 */
/* type PARROT_FUNCTION_OP, */
"set_global",
"set_global_sc_p",
@@ -13075,7 +13114,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 993 */
+ { /* 996 */
/* type PARROT_FUNCTION_OP, */
"set_global",
"set_global_p_s_p",
@@ -13087,7 +13126,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 994 */
+ { /* 997 */
/* type PARROT_FUNCTION_OP, */
"set_global",
"set_global_pc_s_p",
@@ -13099,7 +13138,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 995 */
+ { /* 998 */
/* type PARROT_FUNCTION_OP, */
"set_global",
"set_global_p_sc_p",
@@ -13111,7 +13150,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 996 */
+ { /* 999 */
/* type PARROT_FUNCTION_OP, */
"set_global",
"set_global_pc_sc_p",
@@ -13123,7 +13162,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 997 */
+ { /* 1000 */
/* type PARROT_FUNCTION_OP, */
"set_hll_global",
"set_hll_global_s_p",
@@ -13135,7 +13174,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 998 */
+ { /* 1001 */
/* type PARROT_FUNCTION_OP, */
"set_hll_global",
"set_hll_global_sc_p",
@@ -13147,7 +13186,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 999 */
+ { /* 1002 */
/* type PARROT_FUNCTION_OP, */
"set_hll_global",
"set_hll_global_p_s_p",
@@ -13159,7 +13198,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1000 */
+ { /* 1003 */
/* type PARROT_FUNCTION_OP, */
"set_hll_global",
"set_hll_global_pc_s_p",
@@ -13171,7 +13210,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1001 */
+ { /* 1004 */
/* type PARROT_FUNCTION_OP, */
"set_hll_global",
"set_hll_global_p_sc_p",
@@ -13183,7 +13222,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1002 */
+ { /* 1005 */
/* type PARROT_FUNCTION_OP, */
"set_hll_global",
"set_hll_global_pc_sc_p",
@@ -13195,7 +13234,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1003 */
+ { /* 1006 */
/* type PARROT_FUNCTION_OP, */
"set_root_global",
"set_root_global_s_p",
@@ -13207,7 +13246,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1004 */
+ { /* 1007 */
/* type PARROT_FUNCTION_OP, */
"set_root_global",
"set_root_global_sc_p",
@@ -13219,7 +13258,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1005 */
+ { /* 1008 */
/* type PARROT_FUNCTION_OP, */
"set_root_global",
"set_root_global_p_s_p",
@@ -13231,7 +13270,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1006 */
+ { /* 1009 */
/* type PARROT_FUNCTION_OP, */
"set_root_global",
"set_root_global_pc_s_p",
@@ -13243,7 +13282,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1007 */
+ { /* 1010 */
/* type PARROT_FUNCTION_OP, */
"set_root_global",
"set_root_global_p_sc_p",
@@ -13255,7 +13294,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1008 */
+ { /* 1011 */
/* type PARROT_FUNCTION_OP, */
"set_root_global",
"set_root_global_pc_sc_p",
@@ -13267,7 +13306,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1009 */
+ { /* 1012 */
/* type PARROT_FUNCTION_OP, */
"find_name",
"find_name_p_s",
@@ -13279,7 +13318,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1010 */
+ { /* 1013 */
/* type PARROT_FUNCTION_OP, */
"find_name",
"find_name_p_sc",
@@ -13291,7 +13330,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1011 */
+ { /* 1014 */
/* type PARROT_INLINE_OP, */
"find_sub_not_null",
"find_sub_not_null_p_s",
@@ -13303,7 +13342,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1012 */
+ { /* 1015 */
/* type PARROT_INLINE_OP, */
"find_sub_not_null",
"find_sub_not_null_p_sc",
@@ -13315,7 +13354,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1013 */
+ { /* 1016 */
/* type PARROT_FUNCTION_OP, */
"trap",
"trap",
@@ -13327,7 +13366,7 @@
{ (arg_dir_t) 0 },
{ 0 }
},
- { /* 1014 */
+ { /* 1017 */
/* type PARROT_INLINE_OP, */
"set_label",
"set_label_p_ic",
@@ -13339,7 +13378,7 @@
{ PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 1 }
},
- { /* 1015 */
+ { /* 1018 */
/* type PARROT_INLINE_OP, */
"get_label",
"get_label_i_p",
@@ -13351,7 +13390,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1016 */
+ { /* 1019 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_p_p",
@@ -13363,7 +13402,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1017 */
+ { /* 1020 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_p_p",
@@ -13375,7 +13414,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1018 */
+ { /* 1021 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_pc_p",
@@ -13387,7 +13426,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1019 */
+ { /* 1022 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_pc_p",
@@ -13399,7 +13438,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1020 */
+ { /* 1023 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_p_pc",
@@ -13411,7 +13450,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1021 */
+ { /* 1024 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_p_pc",
@@ -13423,7 +13462,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1022 */
+ { /* 1025 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_pc_pc",
@@ -13435,7 +13474,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1023 */
+ { /* 1026 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_pc_pc",
@@ -13447,7 +13486,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1024 */
+ { /* 1027 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_i_p",
@@ -13459,7 +13498,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1025 */
+ { /* 1028 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_i_p",
@@ -13471,7 +13510,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1026 */
+ { /* 1029 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_ic_p",
@@ -13483,7 +13522,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1027 */
+ { /* 1030 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_ic_p",
@@ -13495,7 +13534,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1028 */
+ { /* 1031 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_i_pc",
@@ -13507,7 +13546,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1029 */
+ { /* 1032 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_i_pc",
@@ -13519,7 +13558,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1030 */
+ { /* 1033 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_ic_pc",
@@ -13531,7 +13570,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1031 */
+ { /* 1034 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_ic_pc",
@@ -13543,7 +13582,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1032 */
+ { /* 1035 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_s_p",
@@ -13555,7 +13594,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1033 */
+ { /* 1036 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_s_p",
@@ -13567,7 +13606,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1034 */
+ { /* 1037 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_sc_p",
@@ -13579,7 +13618,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1035 */
+ { /* 1038 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_sc_p",
@@ -13591,7 +13630,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1036 */
+ { /* 1039 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_s_pc",
@@ -13603,7 +13642,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1037 */
+ { /* 1040 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_s_pc",
@@ -13615,7 +13654,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1038 */
+ { /* 1041 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_p_sc_pc",
@@ -13627,7 +13666,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1039 */
+ { /* 1042 */
/* type PARROT_INLINE_OP, */
"fetch",
"fetch_p_pc_sc_pc",
@@ -13639,7 +13678,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1040 */
+ { /* 1043 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_p_p",
@@ -13651,7 +13690,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1041 */
+ { /* 1044 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_p_p",
@@ -13663,7 +13702,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1042 */
+ { /* 1045 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_pc_p",
@@ -13675,7 +13714,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1043 */
+ { /* 1046 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_pc_p",
@@ -13687,7 +13726,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1044 */
+ { /* 1047 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_p_pc",
@@ -13699,7 +13738,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1045 */
+ { /* 1048 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_p_pc",
@@ -13711,7 +13750,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1046 */
+ { /* 1049 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_pc_pc",
@@ -13723,7 +13762,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1047 */
+ { /* 1050 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_pc_pc",
@@ -13735,7 +13774,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1048 */
+ { /* 1051 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_i_p",
@@ -13747,7 +13786,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1049 */
+ { /* 1052 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_i_p",
@@ -13759,7 +13798,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1050 */
+ { /* 1053 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_ic_p",
@@ -13771,7 +13810,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1051 */
+ { /* 1054 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_ic_p",
@@ -13783,7 +13822,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1052 */
+ { /* 1055 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_i_pc",
@@ -13795,7 +13834,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1053 */
+ { /* 1056 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_i_pc",
@@ -13807,7 +13846,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1054 */
+ { /* 1057 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_ic_pc",
@@ -13819,7 +13858,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1055 */
+ { /* 1058 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_ic_pc",
@@ -13831,7 +13870,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1056 */
+ { /* 1059 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_s_p",
@@ -13843,7 +13882,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1057 */
+ { /* 1060 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_s_p",
@@ -13855,7 +13894,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1058 */
+ { /* 1061 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_sc_p",
@@ -13867,7 +13906,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1059 */
+ { /* 1062 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_sc_p",
@@ -13879,7 +13918,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1060 */
+ { /* 1063 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_s_pc",
@@ -13891,7 +13930,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1061 */
+ { /* 1064 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_s_pc",
@@ -13903,7 +13942,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1062 */
+ { /* 1065 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_p_sc_pc",
@@ -13915,7 +13954,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1063 */
+ { /* 1066 */
/* type PARROT_INLINE_OP, */
"vivify",
"vivify_p_pc_sc_pc",
@@ -13927,7 +13966,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0, 0 }
},
- { /* 1064 */
+ { /* 1067 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_s_i",
@@ -13939,7 +13978,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1065 */
+ { /* 1068 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_sc_i",
@@ -13951,7 +13990,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1066 */
+ { /* 1069 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_s_ic",
@@ -13963,7 +14002,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1067 */
+ { /* 1070 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_sc_ic",
@@ -13975,7 +14014,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1068 */
+ { /* 1071 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_p_i",
@@ -13987,7 +14026,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1069 */
+ { /* 1072 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_pc_i",
@@ -13999,7 +14038,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1070 */
+ { /* 1073 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_p_ic",
@@ -14011,7 +14050,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1071 */
+ { /* 1074 */
/* type PARROT_FUNCTION_OP, */
"new",
"new_p_pc_ic",
@@ -14023,7 +14062,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1072 */
+ { /* 1075 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_p_i",
@@ -14035,7 +14074,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1073 */
+ { /* 1076 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_pc_i",
@@ -14047,7 +14086,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1074 */
+ { /* 1077 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_p_ic",
@@ -14059,7 +14098,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1075 */
+ { /* 1078 */
/* type PARROT_FUNCTION_OP, */
"root_new",
"root_new_p_pc_ic",
@@ -14071,7 +14110,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN, PARROT_ARGDIR_IN },
{ 0, 0, 0 }
},
- { /* 1076 */
+ { /* 1079 */
/* type PARROT_FUNCTION_OP, */
"find_codepoint",
"find_codepoint_i_s",
@@ -14083,7 +14122,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1077 */
+ { /* 1080 */
/* type PARROT_FUNCTION_OP, */
"find_codepoint",
"find_codepoint_i_sc",
@@ -14095,7 +14134,7 @@
{ PARROT_ARGDIR_OUT, PARROT_ARGDIR_IN },
{ 0, 0 }
},
- { /* 1078 */
+ { /* 1081 */
/* type PARROT_FUNCTION_OP, */
"finalize",
"finalize_p",
@@ -14107,7 +14146,7 @@
{ PARROT_ARGDIR_IN },
{ 0 }
},
- { /* 1079 */
+ { /* 1082 */
/* type PARROT_FUNCTION_OP, */
"finalize",
"finalize_pc",
@@ -14989,7 +15028,7 @@
Parrot_sweep_ic(opcode_t *cur_opcode, PARROT_INTERP) {
const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
if (cur_opcode[1])
- Parrot_gc_mark_and_sweep(interp, 0);
+ Parrot_gc_mark_and_sweep(interp, GC_trace_normal_FLAG);
else
if (Parrot_gc_impatient_pmcs(interp))
Parrot_gc_mark_and_sweep(interp, GC_lazy_FLAG);
@@ -17414,6 +17453,27 @@
return (opcode_t *)cur_opcode + 3;}
opcode_t *
+Parrot_getstdin_p(opcode_t *cur_opcode, PARROT_INTERP) {
+ const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
+ PREG(1) = _PIO_STDIN(interp);
+
+return (opcode_t *)cur_opcode + 2;}
+
+opcode_t *
+Parrot_getstdout_p(opcode_t *cur_opcode, PARROT_INTERP) {
+ const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
+ PREG(1) = _PIO_STDOUT(interp);
+
+return (opcode_t *)cur_opcode + 2;}
+
+opcode_t *
+Parrot_getstderr_p(opcode_t *cur_opcode, PARROT_INTERP) {
+ const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
+ PREG(1) = _PIO_STDERR(interp);
+
+return (opcode_t *)cur_opcode + 2;}
+
+opcode_t *
Parrot_abs_i(opcode_t *cur_opcode, PARROT_INTERP) {
const Parrot_Context * const CUR_CTX = Parrot_pcc_get_context_struct(interp, interp->ctx);
IREG(1) = abs(IREG(1));
@@ -24965,7 +25025,7 @@
2, /* major_version */
4, /* minor_version */
0, /* patch_version */
- 1080, /* op_count */
+ 1083, /* op_count */
core_op_info_table, /* op_info_table */
core_op_func_table, /* op_func_table */
get_op /* op_code() */
Modified: branches/gc_massacre/src/ops/io.ops
==============================================================================
--- branches/gc_massacre/src/ops/io.ops Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/ops/io.ops Sun Jun 6 04:04:09 2010 (r47420)
@@ -172,6 +172,35 @@
}
}
+=item B<getstdin>(out PMC)
+
+Create a new ParrotIO object for the stdin file descriptor and
+store it in $1
+
+=item B<getstdout>(out PMC)
+
+Create a new ParrotIO object for the stdout file descriptor and
+store it in $1
+
+=item B<getstderr>(out PMC)
+
+Create a new ParrotIO object for the stderr file descriptor and
+store it in $1
+
+=cut
+
+inline op getstdin(out PMC) :base_io {
+ $1 = _PIO_STDIN(interp);
+}
+
+inline op getstdout(out PMC) :base_io {
+ $1 = _PIO_STDOUT(interp);
+}
+
+inline op getstderr(out PMC) :base_io {
+ $1 = _PIO_STDERR(interp);
+}
+
###############################################################################
/*
Modified: branches/gc_massacre/src/packfile.c
==============================================================================
--- branches/gc_massacre/src/packfile.c Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/packfile.c Sun Jun 6 04:04:09 2010 (r47420)
@@ -4668,7 +4668,7 @@
else {
STRING *err;
PackFile_ByteCode * const cs =
- (PackFile_ByteCode *)IMCC_compile_file_s(interp,
+ (PackFile_ByteCode *)Parrot_compile_file(interp,
filename, &err);
Parrot_str_free_cstring(filename);
Modified: branches/gc_massacre/src/pmc/imageio.pmc
==============================================================================
--- branches/gc_massacre/src/pmc/imageio.pmc Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/pmc/imageio.pmc Sun Jun 6 04:04:09 2010 (r47420)
@@ -423,7 +423,7 @@
VTABLE void mark() {
PObj * const buffer = (PObj *)(PARROT_IMAGEIO(SELF)->buffer);
if (buffer)
- Parrot_gc_mark_PObj_alive(INTERP, (PObj *)(PARROT_IMAGEIO(SELF)->buffer));
+ Parrot_gc_mark_PObj_alive(INTERP, buffer);
Parrot_gc_mark_PMC_alive(INTERP, PARROT_IMAGEIO(SELF)->todo);
Parrot_gc_mark_PMC_alive(INTERP, PARROT_IMAGEIO(SELF)->seen);
}
Modified: branches/gc_massacre/src/pmc/orderedhash.pmc
==============================================================================
--- branches/gc_massacre/src/pmc/orderedhash.pmc Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/src/pmc/orderedhash.pmc Sun Jun 6 04:04:09 2010 (r47420)
@@ -263,7 +263,7 @@
PARROT_ORDEREDHASH(SELF);
if (attrs->hash)
- Parrot_gc_mark_PObj_alive(INTERP, (PObj *)attrs->hash);
+ Parrot_gc_mark_PMC_alive(INTERP, attrs->hash);
/* Don't mark C<first> and C<last>. They are in lookup hash anyway */
}
Modified: branches/gc_massacre/t/codingstd/c_function_docs.t
==============================================================================
--- branches/gc_massacre/t/codingstd/c_function_docs.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/codingstd/c_function_docs.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -91,11 +91,8 @@
}
__DATA__
-compilers/imcc/parser_util.c
-compilers/imcc/pbc.c
compilers/imcc/pcc.c
compilers/imcc/reg_alloc.c
-compilers/imcc/symreg.c
compilers/pirc/src/pircapi.c
config/gen/platform/ansi/dl.c
config/gen/platform/ansi/exec.c
Modified: branches/gc_massacre/t/op/sprintf.t
==============================================================================
--- branches/gc_massacre/t/op/sprintf.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/op/sprintf.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -59,8 +59,8 @@
.const int TESTS = 308
-.loadlib 'sys_ops'
-.loadlib 'io_ops'
+#.loadlib 'sys_ops'
+#.loadlib 'io_ops'
.sub main :main
load_bytecode 'Test/Builder.pbc'
@@ -124,7 +124,8 @@
# Open the test file
.local pmc file_handle # currently open file
- file_handle = open test_file, 'r'
+ file_handle = new ['FileHandle']
+ file_handle.'open'(test_file, 'r')
unless file_handle goto bad_file
@@ -135,7 +136,7 @@
$I0 = file_handle.'eof'()
if $I0 goto end_loop
- test_line = readline file_handle
+ test_line = file_handle.'readline'()
# skip lines without tabs, and comment lines
$I0 = index test_line, "\t"
@@ -232,7 +233,7 @@
goto loop
end_loop:
- close file_handle
+ file_handle.'close'()
goto outer_loop
end_outer_loop:
@@ -485,8 +486,10 @@
.local pmc it
it = iter skip_os
+ load_bytecode 'config.pbc'
+ $P1 = _config()
.local string osname
- osname = sysinfo .SYSINFO_PARROT_OS
+ osname = $P1['osname']
iter_loop:
unless it goto iter_end
Modified: branches/gc_massacre/t/op/string_cs.t
==============================================================================
--- branches/gc_massacre/t/op/string_cs.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/op/string_cs.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -411,7 +411,6 @@
SKIP: {
skip( 'no ICU lib', 17 ) unless $PConfig{has_icu};
pir_output_is( <<'CODE', <<"OUTPUT", "unicode downcase" );
-.loadlib 'io_ops'
.sub main :main
set $S0, iso-8859-1:"TÖTSCH"
find_charset $I0, "unicode"
@@ -623,7 +622,6 @@
OUTPUT
pir_output_is( <<'CODE', <<"OUTPUT", "unicode upcase" );
-.loadlib 'io_ops'
.sub main :main
set $S0, iso-8859-1:"tötsch"
find_charset $I0, "unicode"
@@ -640,7 +638,6 @@
OUTPUT
pir_output_is( <<'CODE', <<"OUTPUT", "unicode upcase to combined char" );
-.loadlib 'io_ops'
.sub main :main
set $S1, unicode:"hacek j \u01f0"
upcase $S1, $S1
@@ -671,7 +668,6 @@
# 0x844fb60: 0x005f 0x005f 0x005f 0x004a 0x030c 0x0031 0x0032 0x0000
pir_output_is( <<'CODE', <<"OUTPUT", "unicode upcase to combined char 3.2 bug?" );
-.loadlib 'io_ops'
.sub main :main
set $S1, unicode:"___\u01f0123"
upcase $S1, $S1
@@ -686,7 +682,6 @@
OUTPUT
pir_output_is( <<'CODE', <<"OUTPUT", "unicode titlecase" );
-.loadlib 'io_ops'
.sub main :main
set $S0, iso-8859-1:"tötsch leo"
find_charset $I0, "unicode"
@@ -703,7 +698,6 @@
OUTPUT
pir_output_is( <<'CODE', <<OUTPUT, "combose combined char" );
-.loadlib 'io_ops'
.sub main :main
set $S1, unicode:"___\u01f0___"
length $I0, $S1
Modified: branches/gc_massacre/t/pmc/eval.t
==============================================================================
--- branches/gc_massacre/t/pmc/eval.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/eval.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -331,9 +331,6 @@
print io, \$S0
io.'close'()
load_bytecode "$temp_pbc"
- \$P0 = loadlib 'os'
- os = new ['OS']
- os.'rm'("$temp_pbc")
f2 = compi("foo_2", "hello from foo_2")
io.'open'("$temp_pbc", 'w')
print io, f2
Modified: branches/gc_massacre/t/pmc/filehandle.t
==============================================================================
--- branches/gc_massacre/t/pmc/filehandle.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/filehandle.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -7,7 +7,7 @@
use lib qw( . lib ../lib ../../lib );
use Test::More;
-use Parrot::Test tests => 18;
+use Parrot::Test tests => 20;
use Parrot::Test::Util 'create_tempfile';
use Parrot::Test::Util 'create_tempfile';
@@ -453,26 +453,46 @@
\$P1.'open'('$temp_file')
- \$S1 = \$P1.'readline'()
- if \$S1 == "1234567890\\n" goto ok_1
-print \$S1
+ .local string line
+ line = \$P1.'readline'()
+ if line == "1234567890\\n" goto ok_1
+print line
print 'not '
ok_1:
say 'ok 1 - \$S1 = \$P1.readline() # read with utf8 encoding on'
- \$S2 = \$P1.'readline'()
- if \$S2 == \$S0 goto ok_2
-print \$S2
+ line = \$P1.'readline'()
+ if line == \$S0 goto ok_2
+print line
print 'not '
ok_2:
say 'ok 2 - \$S2 = \$P1.readline() # read iso-8859-1 string'
\$P1.'close'()
+ \$I1 = charset line
+ \$S2 = charsetname \$I1
+ if \$S2 == 'unicode' goto ok_3
+ print \$S2
+ print 'not '
+ ok_3:
+ say 'ok 3 # unicode charset'
+
+
+ \$I1 = encoding line
+ \$S2 = encodingname \$I1
+ if \$S2 == 'utf8' goto ok_4
+ print \$S2
+ print 'not '
+ ok_4:
+ say 'ok 4 # utf8 encoding'
+
.end
CODE
ok 1 - $S1 = $P1.readline() # read with utf8 encoding on
ok 2 - $S2 = $P1.readline() # read iso-8859-1 string
+ok 3 # unicode charset
+ok 4 # utf8 encoding
OUT
@@ -624,6 +644,84 @@
expect 1 exit status: 1
OUTPUT
+pir_output_is( sprintf(<<'CODE', $temp_file), <<'OUTPUT', "timely destruction", todo => 'TT #1659' );
+.const string temp_file = '%s'
+.sub main :main
+ interpinfo $I0, 2 # GC mark runs
+ $P0 = new ['FileHandle']
+ $P0.'open'(temp_file, 'w')
+ needs_destroy $P0
+ print $P0, "a line\n"
+ null $P0 # kill it
+ sweep 0 # a lazy GC has to close the PIO
+ $P0 = new ['FileHandle']
+ $P0.'open'(temp_file, 'r')
+ $S0 = $P0.'read'(20)
+ print $S0
+.end
+CODE
+a line
+OUTPUT
+
+my (undef, $no_such_file) = create_tempfile( UNLINK => 1, OPEN => 0 );
+
+pir_output_is( sprintf( <<'CODE', $no_such_file, $temp_file ), <<'OUTPUT', "get_bool" );
+.const string no_such_file = '%s'
+.const string temp_file = '%s'
+
+.sub main :main
+ push_eh read_non_existent_file
+ $P0 = new ['FileHandle']
+ $P0.'open'(no_such_file, 'r')
+
+ print "Huh: '"
+ print no_such_file
+ print "' exists? - not "
+ok1:
+ say "ok 1"
+
+ $P0 = new ['FileHandle']
+ $P0.'open'(temp_file, 'w')
+ $P0.'print'("a line\n")
+ $P0.'print'("a line\n")
+ $P0.'close'()
+
+ $P0 = new ['FileHandle']
+ $P0.'open'(temp_file, 'r')
+ if $P0, ok2
+ print "not "
+ok2: say "ok 2"
+ $S0 = $P0.'read'(1024)
+ $S0 = $P0.'read'(1024)
+ unless $P0, ok3
+ print "not "
+ok3: say "ok 3"
+ defined $I0, $P0
+ if $I0, ok4
+ print "not "
+ok4: say "ok 4"
+ $P0.'close'()
+ defined $I0, $P0 # closed file is still defined
+ if $I0, ok5
+ print "not "
+ok5: say "ok 5"
+ unless $P0, ok6 # but false
+ print "not "
+ok6: say "ok 6"
+ .return ()
+read_non_existent_file:
+ pop_eh
+ branch ok1
+.end
+CODE
+ok 1
+ok 2
+ok 3
+ok 4
+ok 5
+ok 6
+OUTPUT
+
# TT #1178
# L<PDD22/I\/O PMC API/=item get_fd>
# NOTES: this is going to be platform dependent
Modified: branches/gc_massacre/t/pmc/fixedintegerarray.t
==============================================================================
--- branches/gc_massacre/t/pmc/fixedintegerarray.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/fixedintegerarray.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -261,7 +261,7 @@
a1[0] = 7
a1[1] = 1
r = get_repr a1
- like(r, '[\s*7\s*\,\s*1\s*]', 'get_repr')
+ is(r, '[ 7, 1 ]', 'get_repr')
.end
.sub 'test_new_style_init'
Modified: branches/gc_massacre/t/pmc/io.t
==============================================================================
--- branches/gc_massacre/t/pmc/io.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/io.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -7,7 +7,7 @@
use lib qw( . lib ../lib ../../lib );
use Test::More;
-use Parrot::Test tests => 45;
+use Parrot::Test tests => 40;
use Parrot::Test::Util 'create_tempfile';
use Parrot::Test::Util 'create_tempfile';
@@ -41,20 +41,6 @@
my (undef, $temp_file) = create_tempfile( UNLINK => 1 );
-pir_output_is( <<"CODE", <<'OUTPUT', "open/close" );
-.sub main :main
- \$P0 = new ['FileHandle']
- \$P0.'open'("$temp_file", 'w')
- print \$P0, "a line\\n"
- \$P0.'close'()
- \$P0.'open'("$temp_file", 'r')
- \$S0 = \$P0.'read'(20)
- print \$S0
-.end
-CODE
-a line
-OUTPUT
-
pir_output_is( sprintf(<<'CODE', $temp_file), <<'OUTPUT', "timely destruction (ops)");
.loadlib 'io_ops'
.const string temp_file = '%s'
@@ -73,84 +59,6 @@
a line
OUTPUT
-pir_output_is( sprintf(<<'CODE', $temp_file), <<'OUTPUT', "timely destruction", todo => 'TT #1659' );
-.const string temp_file = '%s'
-.sub main :main
- interpinfo $I0, 2 # GC mark runs
- $P0 = new ['FileHandle']
- $P0.'open'(temp_file, 'w')
- needs_destroy $P0
- print $P0, "a line\n"
- null $P0 # kill it
- sweep 0 # a lazy GC has to close the PIO
- $P0 = new ['FileHandle']
- $P0.'open'(temp_file, 'r')
- $S0 = $P0.'read'(20)
- print $S0
-.end
-CODE
-a line
-OUTPUT
-
-my (undef, $no_such_file) = create_tempfile( UNLINK => 1, OPEN => 0 );
-
-pir_output_is( sprintf( <<'CODE', $no_such_file, $temp_file ), <<'OUTPUT', "get_bool" );
-.const string no_such_file = '%s'
-.const string temp_file = '%s'
-
-.sub main :main
- push_eh read_non_existent_file
- $P0 = new ['FileHandle']
- $P0.'open'(no_such_file, 'r')
-
- print "Huh: '"
- print no_such_file
- print "' exists? - not "
-ok1:
- say "ok 1"
-
- $P0 = new ['FileHandle']
- $P0.'open'(temp_file, 'w')
- $P0.'print'("a line\n")
- $P0.'print'("a line\n")
- $P0.'close'()
-
- $P0 = new ['FileHandle']
- $P0.'open'(temp_file, 'r')
- if $P0, ok2
- print "not "
-ok2: say "ok 2"
- $S0 = $P0.'read'(1024)
- $S0 = $P0.'read'(1024)
- unless $P0, ok3
- print "not "
-ok3: say "ok 3"
- defined $I0, $P0
- if $I0, ok4
- print "not "
-ok4: say "ok 4"
- $P0.'close'()
- defined $I0, $P0 # closed file is still defined
- if $I0, ok5
- print "not "
-ok5: say "ok 5"
- unless $P0, ok6 # but false
- print "not "
-ok6: say "ok 6"
- .return ()
-read_non_existent_file:
- pop_eh
- branch ok1
-.end
-CODE
-ok 1
-ok 2
-ok 3
-ok 4
-ok 5
-ok 6
-OUTPUT
-
pir_output_is( <<'CODE', <<'OUTPUT', "read on invalid fh should throw exception (ops)" );
.loadlib 'io_ops'
.sub main :main
@@ -376,22 +284,23 @@
Parrot overwrites
OUTPUT
-pasm_output_is( <<"CODE", '', "Parrot_io_flush on buffer full" );
-.loadlib 'io_ops'
- set I0, 0
- set I1, 10000
+pir_output_is( <<"CODE", '', "Parrot_io_flush on buffer full" );
+.sub "main"
+ set \$I0, 0
+ set \$I1, 10000
- open P0, "$temp_file", 'w'
+ new \$P0, ['FileHandle']
+ \$P0.'open'("$temp_file", 'w')
PRINT:
- ge I0, I1, END
- print P0, "words\\n"
- inc I0
+ ge \$I0, \$I1, END
+ print \$P0, "words\\n"
+ inc \$I0
branch PRINT
END:
- close P0
- end
+ \$P0.'close'()
+.end
CODE
file_content_is( $temp_file, <<'OUTPUT' x 10000, 'buffered file contents' );
@@ -813,65 +722,6 @@
print $FOO "T\xc3\xb6tsch\n";
close $FOO;
-pir_output_is( <<"CODE", <<"OUTPUT", "utf8 read enabled" );
-.loadlib 'io_ops'
-.sub main :main
- .local pmc pio
- .local int len
- .include "stat.pasm"
- .local string f
- f = '$temp_file'
- len = stat f, .STAT_FILESIZE
- pio = open f, 'r'
- pio.'encoding'("utf8")
- \$S0 = read pio, len
- close pio
- \$I1 = charset \$S0
- \$S2 = charsetname \$I1
- say \$S2
-
- \$I1 = encoding \$S0
- \$S2 = encodingname \$I1
- say \$S2
-
- \$I1 = find_charset 'iso-8859-1'
- trans_charset \$S1, \$S0, \$I1
- print \$S1
-.end
-CODE
-unicode
-utf8
-T\xf6tsch
-OUTPUT
-
-pir_output_is( <<"CODE", <<"OUTPUT", "utf8 read enabled - readline" );
-.sub main :main
- .local pmc pio
- .local string f
- f = '$temp_file'
- pio = new ['FileHandle']
- pio.'open'(f, 'r')
- pio.'encoding'("utf8")
- \$S0 = pio.'readline'()
- pio.'close'()
- \$I1 = charset \$S0
- \$S2 = charsetname \$I1
- say \$S2
-
- \$I1 = encoding \$S0
- \$S2 = encodingname \$I1
- say \$S2
-
- \$I1 = find_charset 'iso-8859-1'
- trans_charset \$S1, \$S0, \$I1
- print \$S1
-.end
-CODE
-unicode
-utf8
-T\xf6tsch
-OUTPUT
-
pir_output_is( <<"CODE", <<"OUTPUT", "utf8 read enabled, read parts" );
.loadlib 'io_ops'
.sub main :main
Modified: branches/gc_massacre/t/pmc/resizableintegerarray.t
==============================================================================
--- branches/gc_massacre/t/pmc/resizableintegerarray.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/resizableintegerarray.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -43,7 +43,7 @@
.sub main :main
.include 'test_more.pir'
- plan(45)
+ plan(46)
test_does_interfaces()
@@ -73,6 +73,7 @@
test_unshift()
test_cant_shift_empty()
test_iterator()
+ test_clone()
.end
.sub test_does_interfaces
@@ -587,6 +588,14 @@
is( $I0, 4, 'get_iter: iterator returns all values in correct sequence' )
.end
+.sub test_clone
+ $P0 = new ['ResizableIntegerArray']
+ push $P0, 1
+ $P1 = clone $P0
+ $I0 = iseq $P0, $P1
+ is( $I0, 1, 'cloned is equal to original')
+.end
+
# Local Variables:
# mode: pir
# fill-column: 100
Modified: branches/gc_massacre/t/pmc/resizablepmcarray.t
==============================================================================
--- branches/gc_massacre/t/pmc/resizablepmcarray.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/resizablepmcarray.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -755,7 +755,7 @@
push array, 'a'
push array, 'b'
$S0 = get_repr array
- like($S0, '[.*a.*\,.*b.*]', 'get_repr')
+ is($S0, '[ a, b ]', 'get_repr')
.end
.sub append_tests
Modified: branches/gc_massacre/t/pmc/stringhandle.t
==============================================================================
--- branches/gc_massacre/t/pmc/stringhandle.t Sun Jun 6 04:01:33 2010 (r47419)
+++ branches/gc_massacre/t/pmc/stringhandle.t Sun Jun 6 04:04:09 2010 (r47420)
@@ -133,7 +133,6 @@
pir_output_is(
<<'CODE', <<'OUT', 'read opcode' );
-.loadlib 'io_ops'
.sub 'test' :main
$P0 = new ['StringHandle']
$P0.'open'('README', 'w')
More information about the parrot-commits
mailing list