I'm the creator and sole developer of Tungsten, a platform for creating compilers for high level languages targeting multiple backends.
The goal of Tungsten is to make it as easy as possible to create a new compiler. Most of the work of a compiler is language agnostic: static analysis, type inference, optimization, code generation, etc. The developer of a language should only need to write a parser and a translator to a simple intermediate representation, and the rest of the work should be done by language agnostic tools.
Tungsten aims to fill this niche. It provides an SSA based intermediate representation. This is similar to LLVM, but it includes constructs used in most high level languages such as classes, polymorphic function calls, and type parameterization. An LLVM backend is provided, so any language supporting Tungsten can be optimized and compiled to native code on x86, ARM, and several other architectures. A JVM bytecode backend is also planned.