comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMExits.java @ 1445:a7b84a5e16c6

Remove caching for constant pool entries (same index can be used to retrieve e.g. type and field). Fast fail on bailout in C1X.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Tue, 09 Nov 2010 13:42:06 +0100
parents 9e5e83ca2259
children 2c754f3a2722
comparison
equal deleted inserted replaced
1444:c0e244017dad 1445:a7b84a5e16c6
31 */ 31 */
32 public interface VMExits { 32 public interface VMExits {
33 33
34 boolean setOption(String option); 34 boolean setOption(String option);
35 35
36 void compileMethod(long methodVmId, String name, int entryBCI); 36 void compileMethod(long methodVmId, String name, int entryBCI) throws Throwable;
37 37
38 RiMethod createRiMethodResolved(long vmId, String name); 38 RiMethod createRiMethodResolved(long vmId, String name);
39 39
40 RiMethod createRiMethodUnresolved(String name, String signature, RiType holder); 40 RiMethod createRiMethodUnresolved(String name, String signature, RiType holder);
41 41