comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotRuntime.java @ 2274:360497545e85

Up-to-date with CRI changes.
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Thu, 03 Mar 2011 19:30:55 +0100
parents c0b1d6a44a02
children f21664b3dd1c 569d3fe7d65c
comparison
equal deleted inserted replaced
2273:2ab52cda08e5 2274:360497545e85
209 public boolean compareConstantObjects(Object x, Object y) { 209 public boolean compareConstantObjects(Object x, Object y) {
210 return x == y; 210 return x == y;
211 } 211 }
212 212
213 @Override 213 @Override
214 public boolean recordLeafMethodAssumption(RiMethod method) {
215 System.out.println("Trying to record leaf method assumption: " + method.toString());
216 return false;
217 }
218
219 @Override
220 public RiRegisterConfig getRegisterConfig(RiMethod method) { 214 public RiRegisterConfig getRegisterConfig(RiMethod method) {
221 return regConfig; 215 return regConfig;
222 } 216 }
223 217
224 /** 218 /**