comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiResolvedMethod.java @ 5344:f47c770756e6

moved RiResolvedMethod.dumpProfile() to CiUtil.profileAsString()
author Doug Simon <doug.simon@oracle.com>
date Wed, 02 May 2012 18:04:36 +0200
parents fdd9dd4508fa
children
comparison
equal deleted inserted replaced
5343:20c14eb46238 5344:f47c770756e6
222 222
223 /** 223 /**
224 * @return {@code true} if this method can be inlined 224 * @return {@code true} if this method can be inlined
225 */ 225 */
226 boolean canBeInlined(); 226 boolean canBeInlined();
227
228 /**
229 * Dumps the recorded profiling information to TTY.
230 */
231 void dumpProfile();
232 } 227 }