diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-12 21:10:47 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-12 21:10:47 +0000 |
commit | 8559594c3dfb2d33d68b0e522cc3617cfad3ea07 (patch) | |
tree | 209a0c155511198ee51b5119c179d4d224a16e55 /docs/OpenProjects.html | |
parent | c78631f0e2cfd7808233176c638c7f9a50ccaff2 (diff) |
New open proj: C/C++ compiler in C++, with link to Ed Willink's C++ yacc grammar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14778 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/OpenProjects.html')
-rw-r--r-- | docs/OpenProjects.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/OpenProjects.html b/docs/OpenProjects.html index ebf28abb72..cc0f133d9a 100644 --- a/docs/OpenProjects.html +++ b/docs/OpenProjects.html @@ -319,11 +319,16 @@ profiling code to work with the generic profiling interfaces.</li> <div class="doc_text"> <ol> -<li>Port the <A HREF="http://www-sop.inria.fr/mimosa/fp/Bigloo/">Bigloo</A> +<li>Port the <a href="http://www-sop.inria.fr/mimosa/fp/Bigloo/">Bigloo</A> Scheme compiler, from Manuel Serrano at INRIA Sophia-Antipolis, to output LLVM bytecode. It seems that it can already output .NET bytecode, JVM bytecode, and C, so LLVM would ostensibly be another good candidate.</li> +<li>Write a new frontend for C/C++ <b>in</b> C++, giving us the ability to +directly use LLVM C++ classes from within a compiler rather than use +C-based wrapper functions a la llvm-gcc. One possible starting point is the <a +href="http://www.parashift.com/c++-faq-lite/compiler-dependencies.html#faq-37.11">C++ +yacc grammar by Ed Willink</a>.</li> <li>Write a new frontend for some other language (Java? OCaml? Forth?)</li> <li>Write a new backend for a target (IA64? MIPS? MMIX?)</li> <li>Write a disassembler for machine code that would use TableGen to output |