Changes for version 0.9601 - 2022-06-01

  • CHANGE
    • Regex class support "i" (ignore case) option.
    • Logical operator can be used as operands.
      • my $ret = !1; my $ret = 1 && 1; my $ret = 1 || 1;
  • NON BACKWORD COMPATIBLE CHANGES
    • Change ByteList->new method definition
      • Before
        • static method new : ByteList ($array : byte[])
      • After
        • static method new : ByteList ($array : byte[]...)
    • Change DoubleList->new method definition
      • Before
        • static method new : DoubleList ($array : double[])
      • After
        • static method new : DoubleList ($array : double[]...)
    • Change FloatList->new method definition
      • Before
        • static method new : FloatList ($array : float[])
      • After
        • static method new : FloatList ($array : float[]...)
    • Change Hash->new method definition
      • Before
        • static method new : Hash ($key_values : object[])
      • After
        • static method new : Hash ($key_values : object[]...)
    • Change IntList->new method definition
      • Before
        • static method new : IntList ($array : int[])
      • After
        • static method new : IntList ($array : int[]...)
    • Change List->new method definition
      • Before
        • static method new : List ($array : object[])
      • After
        • static method new : List ($array : object[]...)
    • Change LongList->new method definition
      • Before
        • static method new : LongList ($array : long[])
      • After
        • static method new : LongList ($array : long[]...)
    • Change ShortList->new method definition
      • Before
        • static method new : ShortList ($array : short[])
      • After
        • static method new : ShortList ($array : short[]...)
    • Change StringList->new method definition
      • Before
        • static method new : StringList ($array : string[])
      • After
        • static method new : StringList ($array : string[]...)
    • Change Regex->new method definition
      • Before
        • static method new : Regex ($re_str : string)
      • After
        • static method new : Regex ($re_str_and_options : string[]...)
  • BUG FIX
    • Fix the bug that the tests of FreeBSD 9.1 fail.

Documentation

SPVM compiler to create exe file
The Command to Generate SPVM Native Modules

Modules

SPVM Language
Blessed object base class
Array based blessed object
Class based blessed object
String based blessed object
Bool object
Build SPVM program
SPVM Builder Public APIs
Compiler and Linker of Native Sources
Configurations of Compile and Link of Native Sources
Configurations of creating excutable files.
Create a Executable File
Object file information
Object file information
Build Utilities
Public APIs of the utility of SPVM Builder
Byte object
Dynamic Byte Array
A Interface Type to Clone a Object
Interface Type for the Callback to Clone a Object
Interface Type for Object Comparation Callback
Interface Type for byte Comparation Callback
Interface Type for double Comparation Callback
Interface Type for float Comparation Callback
Interface Type for int Comparation Callback
Interface Type for long Comparation Callback
Interface Type for short Comparation Callback
Interface Type for String Comparation Callback
double complex type
float complex type
SPVM Performance Benchmark
SPVM Exchange API
SPVM Language Specification
SPVM Standard Modules
SPVM Native APIs
SPVM Allocator Native APIs
SPVM Compiler Native APIs
SPVM Precompile Native APIs
SPVM Runtime Native APIs
SPVM String Buffer Native APIs
How to write native methods
SPVM Performance Tutorial
Double object
Dynamic double array
Interface Type for Object Equality Checking Callback
a callback implementation of EqualityChecker to check if the memory addresses of the two objects are equal.
SPVM Exchange API
Float object
Dynamic float array
SPVM Starndard Functions
Hash Data Structure
Hash entry
Int object
Dynamic int array
Dynamic object array
Long object
Dynamic long array
Point
Regular expression
Regular expression pattern
Interface Type for Regex Replacement Callback
Short object
Dynamic short array
String buffer
Dynamic string array
A Interface Type to Stringify a Object
Interface Type for Stringing Callback
Time manipulation
Time information
SPVM Unicode Utilities.

Provides

in lib/SPVM/Builder/Generator/Lib.pm

Examples