diff src/share/vm/graal/graalVMToCompiler.hpp @ 7786:8bbbde9d0a52

extended ResolvedJavaMethod API by getLocalVariableTable
author Matthias Grimmer <grimmer@ssw.jku.at>
date Wed, 13 Feb 2013 13:34:05 +0100
parents 0bf1c1c658c2
children bc26f978b0ce
line wrap: on
line diff
--- a/src/share/vm/graal/graalVMToCompiler.hpp	Wed Feb 13 11:37:14 2013 +1000
+++ b/src/share/vm/graal/graalVMToCompiler.hpp	Wed Feb 13 13:34:05 2013 +0100
@@ -94,6 +94,9 @@
 
   // public abstract Constant createConstantObject(long vmId);
   static oop createConstantObject(Handle object, TRAPS);
+
+  // public abstract Local createLocal(String name, int bci_start, int bci_end);
+  static oop createLocal(Handle name, Handle type, int bci_start, int bci_end, int slot, Handle holder, TRAPS);
 };
 
 inline void check_pending_exception(const char* message, bool dump_core = false) {