Skip to content

rservant/omr

 
 

Repository files navigation

Welcome to the Eclipse OMR Project!

Build Status

The Eclipse OMR project consists of a highly integrated set of open source C and C++ components that can be used to build robust language runtimes that will support many different hardware and operating system platforms. These components include but are not limited to: memory management, threading, platform port (abstraction) library, diagnostic support, monitoring support, garbage collection, and native Just In Time compilation.

The long term goal for the Eclipse OMR project is to foster an open ecosystem of language runtime developers to collaborate and collectively innovate with hardware platform designers, operating system developers, as well as tool and framework developers and to provide a robust runtime technology platform so that language implementers can much more quickly and easily create more fully featured languages to enrich the options available to programmers.

All Eclipse OMR project materials are made available under the Eclipse Public License V1.0 and the Apache 2.0 license. You can choose which license you wish to follow. Please see our LICENSE file for more details.

The initial set of Eclipse OMR components include:

  • port: platform porting library
  • thread: a cross platform pthread-like threading library
  • util: general utilities useful for building cross platform runtimes
  • omrsigcompat: signal handling compatibility library
  • omrtrace: tracing library for communication with IBM Health Center monitoring tools
  • tool: code generation tools for the build system
  • gc: garbage collection framework for managed heaps
  • vm: APIs to manage per-interpreter and per-thread contexts
  • example: demonstration code to show how a language runtime might consume some Eclipse OMR components
  • fvtest: a language-independent test framework so that Eclipse OMR components can be tested outside of a language runtime

It is our community's fervent goal to be one of active contribution, improvement, and continual consumption. We will be operating under the Eclipse Code of Conduct to promote fairness, openness, and inclusion.

There are some active contribution projects underway right now:

  • documentation: code comments are great, but we need more overview documentation so we're writing that
  • faq: Frequently Asked Questions from real people's questions (request: ask questions!)
  • starters: relatively simple but useful work items meant for people new to the project
  • diag: more diagnostic support for language runtimes to aid developers and users
  • hcagent: the core code for the IBM Health Center agent for interfacing to a runtime
  • jit: Just In Time compiler for generating native code for several platforms into managed code caches
  • gc: adding generational and other GC policies

The most comprehensive consumer of the Eclipse OMR technology is the IBM J9 Virtual Machine: a high performance, scalable, enterprise class Java Virtual Machine implementation representing hundreds of person years of effort. While not an open source project itself, J9 directly implements capabilites for Java using the core implementations provided by Eclipse OMR. The Ruby+OMR Technology Preview project also consumes the Eclipse OMR components by modifying the CRuby project. A SOM++ Smalltalk runtime has also been modified to use Eclipse OMR componentry. An experimental version of CPython using Eclipse OMR componentry has also been created but is not currently available in the open. (Our focus has been dominated by getting this code out into the open!)

Recent Presentations about Eclipse OMR

How to Build Standalone Eclipse OMR

Basic configuration and compile

To build standalone Eclipse OMR, run the following commands from the top of the source tree. The top of the Eclipe OMR source tree is the directory that contains run_configure.mk.

# Generate autotools makefiles with SPEC-specific presets
make -f run_configure.mk SPEC=linux_x86-64 OMRGLUE=./example/glue

# Build
make

# Run tests (note that no contribution should cause new test failures in "make test")
make test

Run "make -f run_configure.mk help" for a list of configure makefile targets. Run "make help" for a list of build targets.

Building Eclipse OMR on Windows

A shell script interpreter, such as bash, is required to run configure.

How to Configure with Custom Options

Run "./configure --help" to see the full list of configure command-line options.

To run configure using both SPEC presets and custom options, pass the EXTRA_CONFIGURE_ARGS option to run_configure.mk.

For example, to disable optimizations, run configure like this:

# Example configure
make -f run_configure.mk SPEC=linux_x86-64 OMRGLUE=./example/glue 'EXTRA_CONFIGURE_ARGS=--disable-optimized' clean all

To disable building fvtests, run configure like this:

# Example configure disabling fvtests
make -f run_configure.mk SPEC=linux_x86-64 OMRGLUE=./example/glue 'EXTRA_CONFIGURE_ARGS=--disable-fvtest' clean all

Note that the "clean" target of run_configure.mk deletes the header files and makefiles generated by configure. Invoking the "clean all" targets ensures that the header files and makefiles are regenerated using the custom options.

The minimal invocation of configure is:

# Basic configure example
$ ./configure OMRGLUE=./example/glue

About

Eclipse OMR™ Cross platform components for building reliable, high performance language runtimes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 87.4%
  • C 9.7%
  • Assembly 1.6%
  • Makefile 0.9%
  • Perl 0.1%
  • SourcePawn 0.1%
  • Other 0.2%