comparison graal/Runtime/src/com/sun/hotspot/c1x/VMExits.java @ 2492:4e5515d09314

Fixed merge issues. - Accessing static fields from the java.lang.Class object instead of the klassOop (1-line-change) - Fixed issue with RiField object caching (the caching was only taking the offset as a field ID, but need to take offset+is_static)
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 22 Apr 2011 19:00:07 +0200
parents 099e697d8934
children
comparison
equal deleted inserted replaced
2491:0654ee04b214 2492:4e5515d09314
37 37
38 RiMethod createRiMethodUnresolved(String name, String signature, RiType holder); 38 RiMethod createRiMethodUnresolved(String name, String signature, RiType holder);
39 39
40 RiSignature createRiSignature(String signature); 40 RiSignature createRiSignature(String signature);
41 41
42 RiField createRiField(RiType holder, String name, RiType type, int offset); 42 RiField createRiField(RiType holder, String name, RiType type, int offset, int flags);
43 43
44 RiType createRiType(long vmId, String name); 44 RiType createRiType(long vmId, String name);
45 45
46 RiType createRiTypePrimitive(int basicType); 46 RiType createRiTypePrimitive(int basicType);
47 47