diff src/share/vm/c1x/c1x_Compiler.hpp @ 1413:1ecc8f0aad00

Draft implementation of HotSpot CRI / first method compiling without exception.
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Tue, 18 May 2010 17:43:37 +0200
parents b30a2cd5e3a2
children e1a275dbc8cd
line wrap: on
line diff
--- a/src/share/vm/c1x/c1x_Compiler.hpp	Mon May 17 16:37:23 2010 +0200
+++ b/src/share/vm/c1x/c1x_Compiler.hpp	Tue May 18 17:43:37 2010 +0200
@@ -45,7 +45,14 @@
 	// Print compilation timers and statistics
 	virtual void print_timers();
 
-  static oop get_rimethod(ciMethod *ciMethod);
+  static oop get_RiMethod(ciMethod *ciMethod);
+  static oop get_RiField(ciField *ciField);
+  static oop get_RiType(ciType *klass);
+  static oop get_RiType(klassOop klass);
+  static oop get_RiMethod(methodOop method);
+  static oop get_RiType(symbolOop klass, klassOop accessingType);
+  static oop get_unresolved_RiType(symbolOop klass, klassOop accessingType);
+  static oop get_RiConstantPool(constantPoolOop cpOop);
 };