comparison src/share/vm/graal/graalVMExits.hpp @ 2925:b78b4ae0757c

Also call Compiler shutdown hook in case of System.exit call. Draft VMExits.Sandbox class.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 09 Jun 2011 14:42:24 +0200
parents d577d07cedec
children f00918f35c7f
comparison
equal deleted inserted replaced
2924:9d4e5b492521 2925:b78b4ae0757c
53 // public abstract void compileMethod(long vmId, String name, int entry_bci); 53 // public abstract void compileMethod(long vmId, String name, int entry_bci);
54 static void compileMethod(jlong vmId, Handle name, int entry_bci); 54 static void compileMethod(jlong vmId, Handle name, int entry_bci);
55 55
56 // public abstract void shutdownCompiler(); 56 // public abstract void shutdownCompiler();
57 static void shutdownCompiler(); 57 static void shutdownCompiler();
58
59 // public abstract void startCompiler();
60 static void startCompiler();
58 61
59 // public abstract RiMethod createRiMethodResolved(long vmId, String name); 62 // public abstract RiMethod createRiMethodResolved(long vmId, String name);
60 static oop createRiMethodResolved(jlong vmId, Handle name, TRAPS); 63 static oop createRiMethodResolved(jlong vmId, Handle name, TRAPS);
61 64
62 // public abstract RiMethod createRiMethodUnresolved(String name, String signature, RiType holder); 65 // public abstract RiMethod createRiMethodUnresolved(String name, String signature, RiType holder);