Skip to content

libfirm/bytecode2firm

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
adt
 
 
 
 
libfirm @ 1ffc842
 
 
liboo @ 87a3fb1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

bytecode2firm - a Java bytecode front end for libFirm.

  1. Introduction

bytecode2firm is a compiler that translates java bytecode to machine code. Code generation is done with the libfirm intermediate representatin and backend. It is a static (ahead of time) compiler.

It also includes "simplert" a minimal runtime library. This is partially implemented as a shared library and partially as java files.

  1. Building

Make sure you have libfirm and liboo in the current directory. If you have a git checkout you can do:

$ git submodule update --init

Then you can do the usual

$ make

This builds bytecode2firm along with our simple testing runtime.

To run the testsuite for regressions:

$ make test
  1. libgcj runtime

This step is optional.

If you want as much Java library as possible, you need libgcj on your system. Install gcj. bytecode2firm needs libgcj.so, and the precompiled runtime classes from gcj's rt.jar. In Ubuntu, install "libgcj-10 gcj-4.4-jre-lib". (Hint: you might want to make sure that gcj is not your default Java VM afterwards. See "update-alternatives --config X", where X = {java, javac, javah, ...})

For the initial setup, you can execute a script (you might need to adjust the paths used in that script).

$ ./setup_runtime_gcj.sh
  1. Running

Make sure build/bytecode2firm is in your PATH. A typical invokation looks like:

$ javac Main.java
$ bytecode2firm -cp . Main

There is also a little testsuite at http://pp.ipd.kit.edu/git/bytecode2firm-testsuite/

  1. Contact

You can contact us at firm@ipd.info.uni-karlsruhe.de

About

Convert Java bytecode to firm IR

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published