Squawk virtual machine

From Wikipedia, the free encyclopedia

Squawk
Image:duke-squeak-transparent-anti-aliased.gif
Developed by Sun Microsystems
Written in C and Java
OS Cross-platform
Genre Java Virtual Machine
License GNU General Public License
Website https://squawk.dev.java.net/
The blue area is written in C/C++ while the yellow area is written in java
The blue area is written in C/C++ while the yellow area is written in java

Squawk is a Java virtual machine (JVM) for embedded system and small devices. Most JVMs, if not all, are written in low level languages such as C/C++ and assembler; what makes Squawk different is that Squawk's core is mostly written in Java.The Squawk Virtual Machine figure can be simplified as:

  • Write as much of the VM in Java as possible
  • Targeting small, resource constrained devices
  • Enable Java for micro-embedded development

The research project was inspired by Squeak, which has a Java Micro Edition heritage and features a small memory footprint.[1] It was developed to be simple with minimal external dependencies. Its simplicity made it portable and easy to debug and maintain. Squawk also provides an isolated mechanism by which an application is represented as an object. In Squawk, one or more applications can run in the single JVM. Conceptually, each application is completely isolated from all other applications.


[edit] References

  1. ^ A Java Virtual Machine Architecture for Very Small Devices[1]

[edit] See also

[edit] External links