comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java @ 14545:4877b0cb446f

removed ResolvedJavaMethod.getCompiledCodeSize()
author Doug Simon <doug.simon@oracle.com>
date Fri, 14 Mar 2014 22:56:59 +0100
parents 8c306609eb68
children aa1a43bfdf4e
comparison
equal deleted inserted replaced
14544:8c306609eb68 14545:4877b0cb446f
250 long getClassInitializer(long metaspaceKlass); 250 long getClassInitializer(long metaspaceKlass);
251 251
252 boolean hasFinalizableSubclass(long metaspaceKlass); 252 boolean hasFinalizableSubclass(long metaspaceKlass);
253 253
254 /** 254 /**
255 * Gets the most recent {@link HotSpotInstalledCode} object associated with a given metaspace
256 * Method object as a result of
257 * {@linkplain #installCode(HotSpotCompiledCode, HotSpotInstalledCode, SpeculationLog)
258 * installing} code for the Method.
259 */
260 HotSpotInstalledCode getInstalledCode(long metaspaceMethod);
261
262 /**
263 * Gets the metaspace Method object corresponding to a given {@link Class} object and slot 255 * Gets the metaspace Method object corresponding to a given {@link Class} object and slot
264 * number. 256 * number.
265 * 257 *
266 * @param holder method holder 258 * @param holder method holder
267 * @param slot slot number of the method 259 * @param slot slot number of the method