https://github.com/libfirm/bytecode2firm
Convert Java bytecode to firm IR
https://github.com/libfirm/bytecode2firm
Last synced: about 1 year ago
JSON representation
Convert Java bytecode to firm IR
- Host: GitHub
- URL: https://github.com/libfirm/bytecode2firm
- Owner: libfirm
- License: gpl-2.0
- Created: 2010-03-01T16:40:19.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2017-02-20T03:48:48.000Z (over 9 years ago)
- Last Synced: 2025-03-30T13:51:14.732Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 673 KB
- Stars: 18
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
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.
2. 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
3. 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
4. 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/
5. Contact
----------
You can contact us at