See the Wiki for more information.
An LLVM backend for the Atmel AVR microprocessor architecture.
Currently AVR-LLVM can generate assembly files and ELF object files.
As the project is still very much in development, it is likely that you will encounter bugs. If you think you've found one, submit an issue - we're aiming for AVR-LLVM to eventually be a production-quality compiler backend, so bugs will not be tolerated.
AVR-related code can be found in lib/Target/AVR
.
The mailing lists can be found here.
users
can be used for general user questions.
dev
is for commentary relating to AVR-LLVM development (bugs, feature requests, etc).
- Machine code generation
- Assembly and machine code support for the entire instruction set
- ELF object outputting
- AVR-GCC compatability
The original project started several years ago and then it was abandoned. It is hosted on SourceForge.net.
A fork was created which updated the project to a more recent version of LLVM, which is located on GitHub.
This repository is a fork of the updated version.
The AVR-LLVM project aims to keep to code updated (so that it's always compatible with LLVM master), and also to improve the backend.
We would like to be able to compile any program that AVR-GCC can, have comparable diagnostics, and on-par performance.
Ideally, the avr-llvm project would provide a drop-in 100% compatible replacement for AVR-GCC and binutils.
Any improvement, however minor, is welcomed :)
Take a look at the issues page for goals and bugs that currently exist. Pull requests are very welcome!
For more information, please read the Contributing page on the Wiki.
Bugs can be reported on the GitHub issue tracker.
It is useful to submit small testcases (generally LLVM IR files) that reproduce the bug. We prefer IR files over C/C++ sources for several reasons:
- They often require headers or libraries that we must also install (e.g. Arduino)
- They require building clang (which we don't often due, as it takes a long time)
- They are smaller and self-contained
If you want to submit a C/C++ testcase, please convert into IR form first.
To do this:
# compile `main.c` into `main.ll`
clang -S -emit-llvm main.c -o main.ll
This will add all included headers, and concatenate it into one simple file.
Any questions can be asked on the dev
mailing list.
Good luck!