Difference between revisions of "User:Becky Pippen"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 104: Line 104:
|-
|-
|align="center" width="300" rowspan="2"|call to llSay(-2, "0123456789");
|align="center" width="300" rowspan="2"|call to llSay(-2, "0123456789");
where x = [ ZERO_VECTOR ]
|align="center"|LSL classic
|align="center"|LSL classic
|align="center"|LSL in Mono Region
|align="center"|LSL in Mono Region

Revision as of 11:44, 21 August 2008

About

I love helping new residents get addicted... er, I mean acclimated to Second Life. Here are some notes I've picked up along the way that might be of help.

SL Glossary

Second Life's most complete glossary

What is Mono?

John and Mary

John and Mary are LSL scripters. John prefers the old-fashioned way of doing things, while Mary enjoys all the latest new technology, like Mono. They both write LSL scripts. John runs his scripts under the old way, and Mary runs hers using Mono.

When John writes an LSL script and clicks the Save button, the client viewer compiles the script into proprietary bytecode and uploads it to the servers. The server runs the script by using a proprietary interpreter to interpret the bytecode. It runs slow.

Mary writes the identical script -- no change in the LSL language syntax. When she presses "Save", the client uploads her script text to the servers where it gets compiled into standardized CIL assembly language. (CIL is a bytecode that originally came from Microsoft's .NET technology.) Because the Linden servers are Linux machines, there's no .NET framework available to run the CIL code. So the servers use the open-source Mono framework to execute the CIL. Mono includes an open-source JIT ("Just in Time") compiler that converts the CIL bytecode into machine code as it's needed, and that compiled machine code is what makes the script execute faster than the old way.

How it all Flows

Old way:

LSL  ---> LSL compiler ---> proprietary bytecode ---> LSL bytecode interpreter

New way:

LSL                        ---> LSL compiler   | 
C# (future)                ---> C# compiler    |  ---> CIL bytecode ---> Mono CIL execution engine
Other languages (future)   ---> other compiler |

Do Scripts Running in Mono Get More Memory?

Yes, it's true that each Mono script gets 64K of memory to use. Non-Mono scripts have to fit inside 16K of memory. (That's compiled code plus stack plus heap.) Unfortunately, Mono-compiled code is a bit of a memory hog and can take up to 4 times as much memory as the old runtime environment. So, scripts using Mono end up with a little more memory to play with depending on the code-to-data ratio, but not four times as much. The advantage to the servers is that small Mono scripts only consume as much server memory as they actually use, while the older LSL virtual machine had to allocate a chunk of 16K of memory to every script regardless of how little memory it actually needed.

Evolving Terminology

LSL - Used to refer to the whole system -- the language, the front-end compiler, and the back-end interpreter. Now it's confusing because it's used in one of two ways and its meaning depends on the context: (1) LSL is the language, the source code, which has not changed with Mono. E.g., "Take this LSL script and compile it with Mono and it will run faster." Or (2) LSL refers to the old compiler front-end and interpreter virtual machine back-end. E.g., "When I compile this script with LSL it runs very slowly." Both meanings are used in the sentence, "This LSL script was compiled with LSL, but that LSL script was compiled with Mono."

Can We Use Other Languages?

Mono just runs CIL bytecode. It doesn't know or care what the original language was. At this time (mid-2008) only LSL source code can be compiled into CIL and run on Mono. But maybe someday we will be able to compile C# and possibly other languages into CIL which will run under Mono. A single object could contain scripts that originally were written in different languages.

The LSL language -- the source syntax -- will probably be supported for a very long time.

However, the servers will support both back-ends for a very long time -- the one that executes the old proprietary LSL bytecode, and the new Mono virtual machine that executes standard CIL. All the millions of existing LSL scripts compiled the old way will continue to run indefinitely. New LSL scripts may be compiled using the old LSL compiler or the new Mono compiler.

What To Expect After Mono Hits the Main Grid

  • Old LSL scripts already compiled: will continue to run indefinitely. You don't have to do a thing.
  • Any LSL script if you have the source code: can be recompiled under the old LSL compiler or the new Mono compiler, at your choice, for a long time to come.
  • C# and other languages: probably added at some future time.


LSL Timings and Rates

Here are some speeds, rates, and intervals for various LSL functions and features. There are three times reported for each: 1. LSL scripts compiled by the client-based LSL compiler on non-Mono regions executed by non-Mono VM back end, 2. LSL compiled by the sim-based LSL compiler on a Mono region and executed by the old LSL back end in a Mono region, and 3. LSL compiled by the Mono compiler and executed by the Mono back end.


call to empty f() { } LSL classic LSL in Mono Region All Mono Units
0.36 0.88 0.0027 ms/call


call to llGetInventoryName(INVENTORY_TEXTURE, 0); LSL classic LSL in Mono Region All Mono Units
0.52 1.4 0.16 ms/call


call to llSubStringIndex(s, "X"); where s is 10000 digits not containing "X" LSL classic LSL in Mono Region All Mono Units
16 23 22 ms/call


call to llList2Vector(x, 0);

where x = [ ZERO_VECTOR ]

LSL classic LSL in Mono Region All Mono Units
0.55 1.5 0.013 ms/call


call to llSay(-2, "0123456789"); LSL classic LSL in Mono Region All Mono Units
0.9 2.2 0.6 ms/call


Maximum rate of dataserver() events after llGetNotecardLine() LSL classic LSL in Mono Region All Mono Units
6.4 6.4 6.4 events/sec


Maximum rate of listen() events LSL classic LSL in Mono Region All Mono Units
~14 ~14 ~14 events/sec

The rate of incoming listen() events seems to be especially sensitive to sim load. It's not easy to get the maximum rate of 14 events/sec.


Maximum rate of sensor() events after llSensorRepeat() LSL classic LSL in Mono Region All Mono Units
11.2 22.5 22.5 events/sec

Hmmm... 11.2 and 22.5 look like divisions of the sim's basic frame rate


Maximum rate of touch() events LSL classic LSL in Mono Region All Mono Units
22.5 22.5 22.5 events/sec


Links