1;
=head1 Name
SPVM::Native::Runtime - Native::Runtime
=head1 Description
C<SPVM::Native::Runtime> is C<Native::Runtime> class in L<SPVM> language.
The instance
has
the runtime information such as operation codes, classes, methods, fields, class variables, constant strings.
This class provides only the minimal methods to get the information of classes and methods.
An instance of C<Native::Runtime> class is build by L<Native::Compiler
=head1 Usage
my
$runtime
=
$compiler
->get_runtime;
my
$stack
=
$env
->new_stack;
=head1 Pointer
The C<Native::Runtime> class is a L<pointer class|SPVM::Document::Language/
"Pointer Class"
>.
Its insntace
has
a pointer to a L<runtime|SPVM::Document::NativeAPI::Native::Runtime> object.
=head1 Fields
=head2 compiler
C<
has
compiler : L<Native::Compiler|SPVM::Native::Compiler>;>
The compiler that build this runtime.
=head2 env
C<
has
env : L<Native::Env|SPVM::Native::Env>;>
The runtime environment owned by this runtime.
=head1 Instance Methods
=head2 get_basic_types_length
C<method get_basic_types_length :
int
();>
Returns the
length
of the all basic types in the runtime.
=head2 get_basic_type_by_id
C<method get_basic_type_by_id : L<Native::BasicType|SPVM::Native::BasicType> (
$id
:
int
);>
Returns a L<Native::BasicType|SPVM::Native::BasicType> object by a basic type ID.
Exceptions:
If The basic type cannot be found, an exception is throen.
=head2 get_basic_type_by_name
C<method get_basic_type_by_name : L<Native::BasicType|SPVM::Native::BasicType> (
$name
: string);>
Returns a L<Native::BasicType|SPVM::Native::BasicType> object by a basic type name.
Exceptions:
If The basic type cannot be found, an exception is throen.
=head2 build_precompile_class_source
C<method build_precompile_class_source : string (
$basic_type
: L<Native::BasicType|SPVM::Native::BasicType>);>
Builds the C source code of the class that contains C<precompile> methods and returns it.
=head2 build_precompile_method_source
C<method method build_precompile_method_source : string (
$method
: L<Native::Method|SPVM::Native::Method>);>
Builds the C source code of a C<precompile> method and returns it.
=head2 get_compiler
C<method get_compiler : L<Native::Compiler|SPVM::Native::Compiler> ();>
Gets the compiler that built this runtime.
=head2 get_method_by_name
C<method get_method_by_name : L<Native::Method|SPVM::Native::Method> (
$class_name
: string,
$method_name
: string);>
Gets a method
given
the class name
$class_name
and the method name
$method_name
, returns it.
=head2 get_field_by_name
C<method get_field_by_name : L<Native::Field|SPVM::Native::Field> (
$class_name
: string,
$field_name
: string);>
Gets a field
given
the class name
$class_name
and the method name
$method_name
, returns it.
=head2 get_class_var_by_name
C<method get_class_var_by_name : L<Native::ClassVar|SPVM::Native::ClassVar> (
$class_name
: string,
$class_var_name
: string);>
Gets a class variable
given
the class name
$class_name
and the method name
$method_name
, returns it.
=head2 get_basic_types
C<method get_basic_types : L<Native::BasicType|SPVM::Native::BasicType>[] (
$options
: object[] =
undef
);>
Returns basic types
given
the options
$options
.
Options:
Options
$options
is key-value pairs.
=over 2
=item * C<category> :
int
[]
If the category ID of the basic type matches a value in this option
values
, only they are extracted.
For constant
values
, see L<Basic Type Category IDs|SPVM::Native::Constant/
"Basic Type Category IDs"
>.
=item * C<is_anon> : Int
If this option is a true value, only anon basic types are extracted.
If this option is a false value, only non-anon basic types are extracted.
=back
=head2 get_env
C<method get_env : L<Native::Env|SPVM::Native::Env> ();>
Returns the L<
"env"
> field.
=head1 See Also
=over 2
=item * L<Native::Compiler|SPVM::Native::Compiler>
=item * L<Native::Env|SPVM::Native::Env>
=back
=head1 Copyright & License
Copyright (c) 2023 Yuki Kimoto
MIT License