comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiResolvedMethod.java @ 4594:eb6df44a1374

bugfixes, added bytecode complexity estimation
author Christian Haeubl <christian.haeubl@oracle.com>
date Tue, 14 Feb 2012 13:53:25 -0800
parents e6e14d25e608
children fdd9dd4508fa
comparison
equal deleted inserted replaced
4592:f62db40b3b2e 4594:eb6df44a1374
53 * @return the size of the compiled machine code in bytes, or 0 if no compiled code exists. 53 * @return the size of the compiled machine code in bytes, or 0 if no compiled code exists.
54 */ 54 */
55 int compiledCodeSize(); 55 int compiledCodeSize();
56 56
57 /** 57 /**
58 * Gets an estimate how complex it is to compile this method.
59 * @return A value >= 0, where higher means more complex.
60 */
61 int compilationComplexity();
62
63 /**
58 * Gets the symbol used to link this method if it is native, otherwise {@code null}. 64 * Gets the symbol used to link this method if it is native, otherwise {@code null}.
59 */ 65 */
60 String jniSymbol(); 66 String jniSymbol();
61 67
62 /** 68 /**