llScriptProfiler
Jump to navigation
Jump to search
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: llScriptProfiler( integer flags );0.0 | Forced Delay |
10.0 | Energy |
Enables or disables the scripts profiling state.
• integer | flags | – | PROFILE_* flags |
Specification
This function's behavior is dependent upon the VM the script is using. Mono is the new VM, LSO is the old VM. The big difference between Mono and LSO is that Mono scripts run faster and can utilize four times more memory.
Mono
Use this function with PROFILE_SCRIPT_MEMORY to enable memory profiling at a severe script performance penalty. Use it with PROFILE_NONE to disable profiling. During and after a profiling run llGetSPMaxMemory will return the most memory used at any one time.
LSO
This function has no effect for scripts not compiled to Mono.
Constant | Val | Description |
---|---|---|
PROFILE_NONE | 0 | Disables profiling |
PROFILE_SCRIPT_MEMORY | 1 | Enables memory profiling |
Caveats
- Scripts compiled to LSO can not be profiled for memory use.
- The profile state will reset to PROFILE_NONE if:
- the object the script is in is de-rezed, rezed or changes regions (via region cross or teleport)
- the region that object with the script is in shuts down or restarts
- if the script is reset or taken to or from inventory
- There is up to 100x performance penalty to the script being profiled (but not the region).
Examples
Calling llScriptProfiler can look like this:
llScriptProfiler(PROFILE_SCRIPT_MEMORY);
my_func();
llScriptProfiler(PROFILE_NONE);
llOwnerSay("This script used at most " + (string)llGetSPMaxMemory() + " bytes of memory during my_func.");
This is how it looks in a script as an example:
// need to run something for the profile to register...
workerMethod()
{
float mathNumber = 3 * PI + 3 * llSin( PI );
llSetText( "Answer: " + (string)mathNumber, <1, 0, 0>, 1.0 );
}
default
{
state_entry()
{
llSetMemoryLimit( 5000 ); // set the memory limit
// call up the profiler, execute a method, stop profiler
llScriptProfiler( PROFILE_SCRIPT_MEMORY );
workerMethod();
llScriptProfiler( PROFILE_NONE );
// display memory usage...
llSay(0, "Memory used: " + (string)llGetSPMaxMemory() + " bytes, total memory: " +
(string)llGetMemoryLimit() + " bytes." );
}
}
// outputs
// Object: Memory used: 4968 bytes, total memory: 5000 bytes.
See Also
Functions
• | llGetSPMaxMemory | |||
• | llGetMemoryLimit | |||
• | llSetMemoryLimit |