use 5.008007; package SPVM; use strict; use warnings; use Carp 'cluck'; use SPVM::Builder; use SPVM::Global; our $VERSION = '0.9696'; require XSLoader; XSLoader::load('SPVM', $VERSION); sub import { my ($class, $class_name) = @_; my ($file, $line) = (caller)[1, 2]; if (defined $class_name) { SPVM::Global::build_class($class_name, $file, $line); SPVM::Global::bind_to_perl($class_name); } } sub api { unless ($SPVM::Global::API) { SPVM::Global::init_api(); } return $SPVM::Global::API; } 1; =encoding utf8 =head1 Name SPVM - SPVM Language =head1 Caution C is not yet 1.0 release. It is quite often changed without warnings until I feel that the implementation is good enough. =head1 Usage Creating SPVM Module: # lib/SPVM/MyMath.spvm class MyMath { static method sum : int ($nums : int[]) { my $total = 0; for (my $i = 0; $i < @$nums; $i++) { $total += $nums->[$i]; } return $total; } } Calling SPVM methods from Perl: # sum.pl use strict; use warnings; use FindBin; use lib "$FindBin::Bin/lib"; use SPVM 'MyMath'; # Call method my $total = SPVM::MyMath->sum([3, 6, 8, 9]); print "$total\n"; =head1 Description B (Static Perl Virtual Machine) is a perl-ish static typed programing language. SPVM provides fast calculation, fast array operations, easy C/C++ binding, and creating executable files. =head1 Loading Module If you load SVPM module from Perl, use the following syntax. use SPVM 'Foo'; Suppose the following C is placed on a module search path. # SPVM/Foo.spvm class Foo { static method sum : int ($x1 : int, $x2 : int) { return $x1 + $x2; } } If you load SPVM C module, do the following. use SPVM 'Foo::Bar'; Suppose the following C is placed on a module search path. # SPVM/Foo/Bar.spvm class Foo::Bar { static method sum : int ($x1 : int, $x2 : int) { return $x1 + $x2; } } C compile the SPVM module and the dependent modules. Note that at this point a SPVM runtime has not yet been created. A default SPVM runtime is created the first time you call a method of SPVM module or call a function or method of the Exchange API. =head1 Class Method Call Let's call SPVM class method from Perl. use SPVM 'Foo'; my $total = SPVM::Foo->sum(1, 2); The definition of C module is the following. # SPVM/Foo.spvm class Foo { static method sum : int ($x1 : int, $x2 : int) { return $x1 + $x2; } } If the number of arguments does not match the number of arguments of the SPVM method, an exception occurs. The Perl values of the arguments are converted to the SPVM values by the rule of argument convertion. If the type is non-conforming, an exception occurs. The SPVM return value is converted to a Perl return value by the rule of return value convertion. The SPVM exception is converted to a Perl exception. =head1 Instance Method Call Let's call SPVM instance method from Perl. use SPVM 'Foo'; my $foo = SPVM::Foo->new; my $total = $foo->sum(1, 2); The definition of C module is the following. # SPVM/Foo.spvm class Foo { static method new : Foo () { return new Foo; } method sum : int ($x1 : int, $x2 : int) ( return $x1 + $x2; } } =head1 Exchange API Exchange API is APIs to convert Perl data structures to/from SPVM data structures and to call SPVM methods from Perl. =head2 api my $api = SPVM::api(); Gets the global L object. =head1 Document SPVM documents. =head2 Tutorial SPVM Tutorial. =over 2 =item * L =back =head2 Language Specification SPVM Language Specification. =over 2 =item * L =back =head2 Standard Modules SPVM Standard Modules. =over 2 =item * L =back =head2 Exchange APIs SPVM Exchange APIs is functions to convert between Perl data structures and SPVM data structures. =over 2 =item * L =back =head2 Native Module The native module is the module that is implemented by native language such as C or C. =over 2 =item * L =back =head2 Native APIs SPVM native APIs are public APIs that are used in native language sources such as C or C. =over 2 =item * L =back =head2 Resource A resource is a L that contains a set of sources and headers of native language such as C or C. =over 2 =item * L =back =head2 Creating Executable File C is the compiler and linker to create the executable file from SPVM source codes. =over 2 =item * L =back =head2 Creating SPVM Distribution C is the command to create SPVM distribution. =over 2 =item * L =back =head2 Benchmark SPVM performance benchmarks. =over 2 =item * L =back =head1 Environment Variables =head2 SPVM_BUILD_DIR SPVM building directory to build C and C methods. If the C environment variable is not set, the building of C and C methods fails. B export SPVM_BUILD_DIR=~/.spvm_build B setenv SPVM_BUILD_DIR ~/.spvm_build =head2 SPVM_CC_DEBUG Print debug messages of L to stderr. =head2 SPVM_CC_FORCE Force the compilation and the link of L. =head1 Repository L =head1 Bug Report L =head1 Support L =head1 Author Yuki Kimoto Ekimoto.yuki@gmail.comE =head1 Core Developers motiEmotohiko.ave@gmail.comE =head1 Contributors =over 2 =item * Mohammad S Anwar =item * akinomyoga =item * NAGAYASU Shinya =item * Reini Urban =item * chromatic =item * Kazutake Hiramatsu =item * Yasuaki Omokawa =item * Suman Khanal =item * L =item * L =item * L =item * L =back =head1 Copyright & LICENSE Copyright 2018-2022 Yuki Kimoto, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut