Details on the Sifteo app runtime
Sifteo applications are deployed as ELF binaries, a standard file format, and run in a specialized sandbox called SVM. Your C++ source is compiled by Clang, the same top-notch C/C++ compiler used by Apple's iOS. Our slinky optimizing linker and code-generator performs very aggressive whole-program optimizations, so you can continue to use very high-level and modern C++ while keeping your binaries small and fast.
Sifteo applications run on the Sifteo Base, a (very) small mobile device with limited resources. The available memory is divided into read-only and writable address spaces:
Applications have a total of 32K RAM available, including static allocations and the stack. The system does not provide any built-in dynamic memory allocation facility.
The size of the stack is equal to the total RAM available (32K) minus the total size of your application's static allocations.
In the event that you overflow the stack, the SVM runtime faults and execution of your application is stopped. Overflows are detected in the emulator, making it easy to detect these errors during development.
--svm-stack
option to siftulator
. During execution it will log a message to the console each time it observes a new low water mark for the stack, indicating its total size.The maximum size of a binary on the Sifteo platform is 16MB. Currently, this is also the maximum amount of external storage available on the Sifteo Base, so it's not practical to assume that a shipping application can consume all 16MB.
The .elf binary for your application contains all of the code, data, and assets required to run your game, so the total size of the .elf binary is the effective size of your application.
This ROM is relatively slow, but it may be accessed via normal pointers. This memory is demand-paged into a small (16K) cache in system RAM. In some cases this cache may be a bottleneck for application performance. You can examine cache hits and misses by passing the --svm-flash-stats
option to siftulator
.
make clean && make RELEASE=1
.Your application has only a single thread of execution available to it. Typical applications implement their own main loop, and are driven either by polling for events or by registering callbacks with Sifteo::Events.
Applications may not create additional threads. Multithreading would require multiple separate stacks, which would use the limited available RAM much less efficiently than a single-threaded application could.
It isn't necessary for applications to write their own event dispatch code. Any handlers registered with Sifteo::Events will be invoked by the system at designated yield points. The Sifteo::System::paint() function includes an implicit yield point, whereas Sifteo::System::yield() is an explicit yield point.
At a yield point, any number of Sifteo::Events handlers may be called. From your application's point of view, these invocations look equivalent to a series of function calls placed directly after the yielding API function.
Most events are idempotent operations without any built-in side-effects. For example, if a cube registers several touches between two successive yield points, the touch event callback will only be invoked once.
The big exception to this rule is neighbor events. The system internally updates its matrix of neighbor states, if necessary, during a yield point. Neighbor states as seen by Sifteo::Neighborhood will not change between two yield points. Typical games only yield during Sifteo::System::paint(), so this means that neighbor states are only updated between frames.
The system runs using a combination of cooperative and preemptive multitasking. Many high-priority tasks, such as radio communication and audio output, can preempt the application at any time. These tasks are typically invisible to the application except in places where memory is specifically shared with these tasks, i.e. a Sifteo::VideoBuffer.
Other low-priority system tasks exist which expect to run via a form of cooperative multitasking, similar to how Event dispatch works. These low-priority tasks may be starved if your application spends too much time in very tight loops, without making any system calls.
Sifteo SDK v1.1.0 (see all versions)
Last updated Tue Dec 23 2014, by Doxygen