Jump to content

Bartok (compiler): Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m →‎References: Rem stub tag(s) (class = non-stub & non-list) using AWB
Rescuing 1 sources and tagging 0 as dead. #IABot (v1.2.6)
Line 7: Line 7:


==References==
==References==
*[http://research.microsoft.com/act/ Microsoft Research]
*[https://web.archive.org/web/20060406184534/http://research.microsoft.com:80/act/ Microsoft Research]


{{Microsoft Research}}
{{Microsoft Research}}

Revision as of 20:23, 27 October 2016

Bartok is an optimizing compiler and managed runtime system for Common Intermediate Language (which .NET languages compile to), being developed by Microsoft Research. It aims to be efficient enough to be usable for writing operating systems. It provides services such as automatic memory management and garbage collection, threading, and marshalling data to and from native code, as well as verification of CIL code. Bartok is written in C#, including the garbage collector. Bartok is being used by Microsoft Research for the implementation of Singularity, a highly-dependable operating system written almost entirely in managed code.

Bartok allows various implementations of the garbage collector, base class library and other components to be chosen at runtime on a per-application basis. This feature is being used to write the different components of Singularity - kernel, device drivers, and applications - each using a separate class library that exposes functionality required by (and optimized for) the specific usage.

References