[llvm-commits] CVS: llvm-java/include/llvm/Java/Compiler.h

Alkis Evlogimenos alkis at cs.uiuc.edu
Sat May 22 01:00:12 PDT 2004


Changes in directory llvm-java/include/llvm/Java:

Compiler.h added (r1.1)

---
Log message:

Add an initial implementation of a Java bytecode to LLVM compiler.


---
Diffs of the changes:  (+25 -0)

Index: llvm-java/include/llvm/Java/Compiler.h
diff -c /dev/null llvm-java/include/llvm/Java/Compiler.h:1.1
*** /dev/null	Sat May 22 00:58:36 2004
--- llvm-java/include/llvm/Java/Compiler.h	Sat May 22 00:58:26 2004
***************
*** 0 ****
--- 1,25 ----
+ //===-- Compiler.h - Java bytecode compiler ---------------------*- C++ -*-===//
+ //
+ //                     The LLVM Compiler Infrastructure
+ //
+ // This file was developed by the LLVM research group and is distributed under
+ // the University of Illinois Open Source License. See LICENSE.TXT for details.
+ //
+ //===----------------------------------------------------------------------===//
+ //
+ // This file contains Java bytecode to LLVM bytecode compiler.
+ //
+ //===----------------------------------------------------------------------===//
+ 
+ #ifndef LLVM_JAVA_COMPILER_H
+ #define LLVM_JAVA_COMPILER_H
+ 
+ #include <llvm/Module.h>
+ 
+ namespace llvm { namespace Java {
+ 
+     Module* compile(const ClassFile& cf);
+ 
+ } } // namespace llvm::Java
+ 
+ #endif//LLVM_JAVA_COMPILER_H





More information about the llvm-commits mailing list