1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
=encoding UTF-8
=head1 NAME
moar - a runtime for Raku
=head1 SYNOPSIS
moar --version
moar [--dump] [--crash] [--libpath=...] [--full-cleanup] inputfile
=head1 DESCRIPTION
C<moar> is the binary of MoarVM, (short for Metamodel On A Runtime Virtual
Machine). It can be used to execute C<.moarvm> bytecode files.
=head1 ENVIRONMENT VARIABLES
moar respects the following environment variables:
=over
=item MVM_JIT_DISABLE
Disables the just-in-time compiler (JIT). This is ignored if MoarVM was built
without JIT support.
=item MVM_SPESH_DISABLE
Disables the runtime bytecode specializer / optimizer.
=item MVM_SPESH_INLINE_DISABLE
Disables inlining of call frames inside the bytecode specializer.
=item MVM_SPESH_OSR_DISABLE
Disables the on-stack replacement feature of the bytecode specializer.
=item MVM_CROSS_THREAD_WRITE_LOG
Tells MoarVM to insert instrumentation to detect when a thread does a write
to an object it didn't allocate and doesn't have a lock for.
=item MVM_CROSS_THREAD_WRITE_LOG_INCLUDE_LOCKED
Same as MVM_CROSS_THREAD_WRITE_LOG, except objects that are locked are included
as well.
=back
=head1 REPORTING BUGS
Please use the issue tracker at L<https://github.com/moarvm/moarvm/issues> to
report bugs.
=head1 COPYRIGHT
Copyright (C) 2012-2014 by the MoarVM contributors. See the F<CREDITS> file for
a list of contributors.
License: Artistic License 2.0. See the file F<Artistic2.txt> for more
information.
=cut
|